mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 16:18:15 +02:00
80 lines
2.7 KiB
Bash
80 lines
2.7 KiB
Bash
#!/usr/bin/env bash
|
|
#
|
|
# Usage: sh localize.sh
|
|
#
|
|
# This script should be executed after adding new resource strings and after
|
|
# udating the translated .po files.
|
|
#
|
|
# This script
|
|
# - converts all compiled .rst files to .po files,
|
|
# - updates all translated xx.po files
|
|
# - converts all translated .po files into .mo files
|
|
#
|
|
|
|
set -x
|
|
set -e
|
|
|
|
if [ ! -x tools/updatepofiles ]; then
|
|
cd tools
|
|
make
|
|
cd -
|
|
fi
|
|
|
|
# IDE
|
|
IDE_RST=`find . -name lazarusidestrconsts.rst | xargs ls -1t | head -1`;
|
|
rstconv -i $IDE_RST -o languages/lazaruside.po
|
|
./tools/updatepofiles languages/lazaruside.po
|
|
for lang in ca de es esutf fi fr he it itiso pl pliso plwin ru ruwin ruutf ; do
|
|
msgfmt languages/lazaruside.$lang.po -o languages/lazaruside.$lang.mo
|
|
done
|
|
|
|
# IDEIntf
|
|
ObjInsp_RST=`find . -name objinspstrconsts.rst | xargs ls -1t | head -1`;
|
|
rstconv -i $ObjInsp_RST -o languages/objinspstrconsts.po
|
|
tools/updatepofiles languages/objinspstrconsts.po
|
|
for lang in ca de es fi fr it itiso pl pliso plwin ru ruwin ruutf ; do
|
|
msgfmt languages/objinspstrconsts.$lang.po \
|
|
-o languages/objinspstrconsts.$lang.mo
|
|
done
|
|
|
|
# CodeTools
|
|
CodeTools_RST=`find components/units -name codetoolsstrconsts.rst | xargs ls -1t | head -1`;
|
|
rstconv -i $CodeTools_RST \
|
|
-o components/codetools/languages/codetools.po
|
|
./tools/updatepofiles components/codetools/languages/codetools.po
|
|
for lang in ca de es fi fr it itiso pl pliso plwin ru ruwin ruutf; do
|
|
msgfmt components/codetools/languages/codetools.$lang.po \
|
|
-o components/codetools/languages/codetools.$lang.mo
|
|
done
|
|
|
|
# SynEdit
|
|
SynEdit_RST=`find components/units -name syneditstrconst.rst | xargs ls -1t | head -1`;
|
|
rstconv -i $SynEdit_RST \
|
|
-o components/synedit/languages/synedit.po
|
|
./tools/updatepofiles components/synedit/languages/synedit.po
|
|
for lang in ca de fi fr it itiso pl pliso plwin ru ruwin ruutf; do
|
|
msgfmt components/synedit/languages/synedit.$lang.po \
|
|
-o components/synedit/languages/synedit.$lang.mo
|
|
done
|
|
|
|
# SynMacroRecorder
|
|
SynMacroRec_RST=`find components/units -name synmacrorecorder.rst | xargs ls -1t | head -1`;
|
|
rstconv -i $SynMacroRec_RST \
|
|
-o components/synedit/languages/synmacrorecorder.po
|
|
./tools/updatepofiles components/synedit/languages/synmacrorecorder.po
|
|
for lang in ca de fr it itiso pl pliso plwin ru ruwin ruutf; do
|
|
msgfmt components/synedit/languages/synmacrorecorder.$lang.po \
|
|
-o components/synedit/languages/synmacrorecorder.$lang.mo || true
|
|
done
|
|
|
|
# LCL
|
|
LCL_RST=`find lcl/units -name lclstrconsts.rst | xargs ls -1t | head -1`;
|
|
rstconv -i $LCL_RST -o lcl/languages/lcl.po
|
|
./tools/updatepofiles lcl/languages/lcl.po
|
|
for lang in ca de es fi fr it itiso pl pliso plwin ru ruwin ruutf ; do
|
|
msgfmt lcl/languages/lcl.$lang.po -o lcl/languages/lcl.$lang.mo || true
|
|
done
|
|
|
|
# end.
|
|
|