mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-23 10:35:35 -04:00
943f91f928
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
16 lines
886 B
Batchfile
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) |