Update of /cvsroot/phpwebsite-comm/l10n/da
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1888
Added Files:
copy_da.txt
Log Message:
Copy-Tool to integrate language-files in PhpWebSite
--- NEW FILE: copy_da.txt ---
@echo off
cls
echo.
echo Copy-Tool to integrate language-files in PhpWebSite 0.9.3-x Full Stable.
echo Only the basic-modules are installed.
echo.
echo.
pause
IF [%1] ==[] GOTO NOPATH
IF NOT EXIST %1 GOTO NOTEXIST
:COPY
echo working...
xcopy /Y /S *.* %1
CD %1
del copy_da.bat > NUL
rmdir /S /Q 3th_party_mods > NUL
GOTO END
:NOPATH
cls
echo.
echo No PATH entered !
echo Start the program with the path to your phpWebSite-directory
echo e.g. copy_da c:/homepages/phpws
echo.
echo.
GOTO END
:NOTEXIST
cls
echo.
echo The Path you entered does not exist.
echo.
echo.
GOTO END
:END
pause
|