lazarus/lcl/languages
2010-12-13 20:48:03 +00:00
..
lclstrconsts.ca.po Translations: 2010-09-22 16:29:13 +00:00
lclstrconsts.cs.po Translations: 2010-09-22 16:29:13 +00:00
lclstrconsts.de.po Translations: 2010-09-22 16:29:13 +00:00
lclstrconsts.es.po Translations: 2010-09-22 16:29:13 +00:00
lclstrconsts.fi.po Translations: 2010-09-22 16:29:13 +00:00
lclstrconsts.fr.po Translations: 2010-09-22 16:29:13 +00:00
lclstrconsts.he.po Translations: Hebrew translation update by Ezik Shulamy, bug #18210 2010-12-13 20:48:03 +00:00
lclstrconsts.id.po Translations: 2010-09-22 16:29:13 +00:00
lclstrconsts.it.po Translations: 2010-09-22 16:29:13 +00:00
lclstrconsts.lt.po LCL: Lithuanian translation update by Žilvinas Ledas, bug #17605. 2010-10-11 20:10:45 +00:00
lclstrconsts.nl.po Translations: 2010-09-22 16:29:13 +00:00
lclstrconsts.pb.po Translations: Portuguese translation update by Marcelo B Paula, bug #17613 2010-10-12 20:49:14 +00:00
lclstrconsts.pl.po Translations: 2010-09-22 16:29:13 +00:00
lclstrconsts.po Translations: 2010-09-22 16:29:13 +00:00
lclstrconsts.ru.po Translations: 2010-09-22 16:29:13 +00:00
lclstrconsts.sk.po Translations: 2010-09-22 16:29:13 +00:00
lclstrconsts.tr.po Translations: 2010-09-22 16:29:13 +00:00
lclstrconsts.ua.po Translations: 2010-09-22 16:29:13 +00:00
lclstrconsts.zh_CN.po Translations: 2010-09-22 16:29:13 +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.