lazarus/lcl/languages
2020-04-05 22:00:12 +00:00
..
lclstrconsts.ca.po LCL: regenerated translations 2020-01-02 21:49:09 +00:00
lclstrconsts.cs.po LCL: regenerated translations 2020-01-02 21:49:09 +00:00
lclstrconsts.de.po LCL: regenerated translations 2020-01-02 21:49:09 +00:00
lclstrconsts.es.po LCL: regenerated translations 2020-01-02 21:49:09 +00:00
lclstrconsts.fi.po LCL: regenerated translations 2020-01-02 21:49:09 +00:00
lclstrconsts.fr.po LCL: regenerated translations 2020-01-02 21:49:09 +00:00
lclstrconsts.he.po LCL: regenerated translations 2020-01-02 21:49:09 +00:00
lclstrconsts.hu.po Translations: Hungarian translation update by Péter Gábor, bug #36873 2020-04-05 22:00:12 +00:00
lclstrconsts.id.po LCL: regenerated translations 2020-01-02 21:49:09 +00:00
lclstrconsts.it.po LCL: regenerated translations 2020-01-02 21:49:09 +00:00
lclstrconsts.ja.po LCL: regenerated translations 2020-01-02 21:49:09 +00:00
lclstrconsts.lt.po LCL: regenerated translations 2020-01-02 21:49:09 +00:00
lclstrconsts.nl.po LCL: regenerated translations 2020-01-02 21:49:09 +00:00
lclstrconsts.no.po LCL: regenerated translations 2020-01-02 21:49:09 +00:00
lclstrconsts.pl.po LCL: regenerated translations 2020-01-02 21:49:09 +00:00
lclstrconsts.po LCL: regenerated translations 2020-01-02 21:49:09 +00:00
lclstrconsts.pt_BR.po Merged relevant parts of revisions 62359 #655b966c04, 62367 #9307a89215, 62449 #ce0447a6e0 from trunk: 2020-01-02 22:09:14 +00:00
lclstrconsts.pt.po LCL: regenerated translations 2020-01-02 21:49:09 +00:00
lclstrconsts.ru.po Merged relevant parts of revisions 62359 #655b966c04, 62367 #9307a89215, 62449 #ce0447a6e0 from trunk: 2020-01-02 22:09:14 +00:00
lclstrconsts.sk.po LCL: regenerated translations 2020-01-02 21:49:09 +00:00
lclstrconsts.tr.po LCL: regenerated translations 2020-01-02 21:49:09 +00:00
lclstrconsts.uk.po Merged relevant parts of revisions 62359 #655b966c04, 62367 #9307a89215, 62449 #ce0447a6e0 from trunk: 2020-01-02 22:09:14 +00:00
lclstrconsts.zh_CN.po LCL: regenerated translations 2020-01-02 21:49:09 +00:00
README.txt

The lcl/languages directory contains all the stuff for internationalization of
the lcl.

All text and messages used in the lcl should be placed into the unit
lcl/lclstrconsts.pas. This unit uses a resourcestring section, so that the
compiler will create the lcl/units/lclstrconsts.rst file.
Since this is a fpc-only format it must be converted with the rstconv program:

cd lcl/languages
rstconv -i ../units/lclstrconsts.rst -o lcl.po

This will create the file lcl.po, which should be translated in all required
languages to a lcl.xx.po file. For the xx see the gettext unit in the procedure
TranslateResourceStrings.

german: lcl.de.po


After the translation, the lcl.xx.po file is converted to an .mo file with the
msgfmt program:

msgfmt -v -o lcl.xx.mo lcl.xx.po

where xx is the language id.