lazarus/localize.bat
2023-01-11 01:19:00 +03:00

39 lines
760 B
Batchfile

@echo off
REM
REM Usage: localize
REM
REM This script should be executed after adding new resource strings and after
REM udating the translated .po files.
REM
REM This script
REM - converts all compiled .rsj files to .pot files,
REM - updates all translated xx.po files
REM
echo.
REM Compile tools if updatepofiles is missing
if exist tools\updatepofiles.exe goto SkipTools
echo The updatepofiles tool was not found, compiling tools ...
echo.
cd tools
make updatepofiles.exe
cd..
if not exist tools\updatepofiles.exe goto Exit_Error
:SkipTools
echo on
@echo Updating IDE language file
@tools\updatepofiles --searchdir=units lazarusidestrconsts.rsj languages\lazaruside.pot
@echo.
@goto Exit
:Exit_Error
echo Unable to compile updatepofiles tool
:Exit