lazarus/lcl/languages
2020-06-01 21:40:02 +00:00
..
lclstrconsts.ca.po cocoa: adding a new resource string to display on file open dialog 2020-05-31 01:49:37 +00:00
lclstrconsts.cs.po cocoa: adding a new resource string to display on file open dialog 2020-05-31 01:49:37 +00:00
lclstrconsts.de.po cocoa: adding a new resource string to display on file open dialog 2020-05-31 01:49:37 +00:00
lclstrconsts.es.po cocoa: adding a new resource string to display on file open dialog 2020-05-31 01:49:37 +00:00
lclstrconsts.fi.po cocoa: adding a new resource string to display on file open dialog 2020-05-31 01:49:37 +00:00
lclstrconsts.fr.po cocoa: adding a new resource string to display on file open dialog 2020-05-31 01:49:37 +00:00
lclstrconsts.he.po cocoa: adding a new resource string to display on file open dialog 2020-05-31 01:49:37 +00:00
lclstrconsts.hu.po cocoa: adding a new resource string to display on file open dialog 2020-05-31 01:49:37 +00:00
lclstrconsts.id.po cocoa: adding a new resource string to display on file open dialog 2020-05-31 01:49:37 +00:00
lclstrconsts.it.po cocoa: adding a new resource string to display on file open dialog 2020-05-31 01:49:37 +00:00
lclstrconsts.ja.po cocoa: adding a new resource string to display on file open dialog 2020-05-31 01:49:37 +00:00
lclstrconsts.lt.po cocoa: adding a new resource string to display on file open dialog 2020-05-31 01:49:37 +00:00
lclstrconsts.nl.po cocoa: adding a new resource string to display on file open dialog 2020-05-31 01:49:37 +00:00
lclstrconsts.no.po cocoa: adding a new resource string to display on file open dialog 2020-05-31 01:49:37 +00:00
lclstrconsts.pl.po cocoa: adding a new resource string to display on file open dialog 2020-05-31 01:49:37 +00:00
lclstrconsts.pot cocoa: adding a new resource string to display on file open dialog 2020-05-31 01:49:37 +00:00
lclstrconsts.pt_BR.po Translations: Brazilian Portuguese translation update by Marcelo B Paula, bug #37162 2020-06-01 21:40:02 +00:00
lclstrconsts.pt.po cocoa: adding a new resource string to display on file open dialog 2020-05-31 01:49:37 +00:00
lclstrconsts.ru.po LCL: updated Russian translation 2020-05-31 22:32:42 +00:00
lclstrconsts.sk.po cocoa: adding a new resource string to display on file open dialog 2020-05-31 01:49:37 +00:00
lclstrconsts.tr.po cocoa: adding a new resource string to display on file open dialog 2020-05-31 01:49:37 +00:00
lclstrconsts.uk.po cocoa: adding a new resource string to display on file open dialog 2020-05-31 01:49:37 +00:00
lclstrconsts.zh_CN.po cocoa: adding a new resource string to display on file open dialog 2020-05-31 01:49:37 +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.