Files
GDevelop/IDE/scripts/TranslationsUpdate.bat
T
Florian 943f91f928 Added date and time to log file messages.
Deleted deprecated "localisation" radio buttons in ChoixCondition dialog.
Added GDCore directory to TranslationsUpdate.bat script.
Minor corrections.

git-svn-id: svn://localhost@725 8062f311-0dae-4547-b526-b8ab9ac864a5
2012-05-23 15:22:01 +00:00

16 lines
886 B
Batchfile

@echo off
echo Listing all sources files...
dir ..\*.cpp /L /b /s |find /v /i "\bin\" > %TEMP%\listfile.txt
dir ..\*.h /L /b /s |find /v /i "\bin\" >> %TEMP%\listfile.txt
dir ..\..\GDL\GDL\*.cpp /L /B /S >> %TEMP%\listfile.txt
dir ..\..\GDL\GDL\*.h /L /B /S >> %TEMP%\listfile.txt
dir ..\..\Extensions\*.cpp /L /B /S |find /v /i "\Widgets-Extension\" >> %TEMP%\listfile.txt
dir ..\..\Extensions\*.h /L /B /S |find /v /i "\Widgets-Extension\" >> %TEMP%\listfile.txt
dir ..\..\Core\GDCore\*.cpp /L /B /S >> %TEMP%\listfile.txt
dir ..\..\Core\GDCore\*.h /L /B /S >> %TEMP%\listfile.txt
echo Generating .POT file...
xgettext --from-code iso-8859-1 -o useMeToUpdateCatalogsWithPoEdit.pot --c++ --no-wrap -f %TEMP%\listfile.txt -k_
echo .POT file generated: Update now .po catalogs using poEdit ( Open .po catalog with PoEdit, and choose Catalog:Update from .POT file)