lazarus/components/synedit/languages
2018-10-16 22:48:41 +00:00
..
README.txt
syndesignstringconstants.cs.po
syndesignstringconstants.de.po
syndesignstringconstants.es.po
syndesignstringconstants.fr.po
syndesignstringconstants.he.po
syndesignstringconstants.hu.po
syndesignstringconstants.it.po
syndesignstringconstants.lt.po
syndesignstringconstants.po
syndesignstringconstants.pt_BR.po
syndesignstringconstants.ru.po
syndesignstringconstants.uk.po
syndesignstringconstants.zh_CN.po
syneditstrconst.ca.po
syneditstrconst.cs.po
syneditstrconst.de.po
syneditstrconst.es.po
syneditstrconst.fi.po
syneditstrconst.fr.po Translations: French translation update by Gilles Vasseur, bug #34428 2018-10-16 22:48:41 +00:00
syneditstrconst.he.po
syneditstrconst.hu.po Translations: Hungarian translation update by Péter Gábor, bug #34397 2018-10-09 22:41:03 +00:00
syneditstrconst.id.po
syneditstrconst.it.po
syneditstrconst.lt.po
syneditstrconst.nl.po
syneditstrconst.pl.po
syneditstrconst.po
syneditstrconst.pt_BR.po Translations: Brazilian Portuguese translation update by Marcelo B Paula, bug #34139 2018-08-19 23:08:36 +00:00
syneditstrconst.ru.po
syneditstrconst.uk.po Translations: Ukrainian translation update by Olexandr Pylypchuk, bug #34005 2018-07-19 22:41:44 +00:00
syneditstrconst.zh_CN.po
synhighlighterunixshellscript.cs.po
synhighlighterunixshellscript.de.po
synhighlighterunixshellscript.es.po
synhighlighterunixshellscript.fr.po
synhighlighterunixshellscript.he.po
synhighlighterunixshellscript.hu.po
synhighlighterunixshellscript.id.po
synhighlighterunixshellscript.it.po
synhighlighterunixshellscript.lt.po
synhighlighterunixshellscript.po
synhighlighterunixshellscript.pt_BR.po
synhighlighterunixshellscript.ru.po
synhighlighterunixshellscript.uk.po
synhighlighterunixshellscript.zh_CN.po
synmacrorecorder.cs.po
synmacrorecorder.de.po
synmacrorecorder.es.po
synmacrorecorder.fr.po
synmacrorecorder.he.po
synmacrorecorder.hu.po
synmacrorecorder.id.po
synmacrorecorder.it.po
synmacrorecorder.lt.po
synmacrorecorder.pl.po
synmacrorecorder.po
synmacrorecorder.pt_BR.po
synmacrorecorder.ru.po
synmacrorecorder.uk.po
synmacrorecorder.zh_CN.po

The <lazarusdir>/components/synedit/languages directory contains all the stuff
for localization of synedit.

All text and messages used in synedit should be placed into the unit
syneditstrconst.pp. This unit uses resourcestring sections, so that the
compiler will create the
<lazarusdir>/components/units/syneditstrconst.rst file.
<lazarusdir>/components/units/synmacrorecorder.rst file.

The following is a in detail description of updating the language files for
synedit. Normally you can just execute the <lazarusdir>/localize.sh script.

Because this is a fpc-only format it must be converted with the rstconv program:

cd <lazarusdir>/components/synedit/languages
rstconv -i ../../units/syneditstrconst.rst -o synedit.po
rstconv -i ../../units/synmacrorecorder.rst -o synmacrorecorder.po

This will create the files synedit.po and synmacrorecorder.po, which should be
translated in all required languages to a synedit.xx.po and a
synmacrorecorder.xx.po file. For the xx see the gettext unit in the procedure
TranslateResourceStrings of the IDE.

german: synedit.de.po and synmacrorecorder.de.po


After the translation, the both po file are converted to .mo files with the
msgfmt program:

msgfmt -v -o synedit.xx.mo synedit.xx.po
msgfmt -v -o synmacrorecorder.xx.mo synmacrorecorder.xx.po

where xx is the language id.