lazarus/lcl/languages
2018-05-22 22:58:25 +00:00
..
lclstrconsts.ca.po Translations: regenerated translations 2018-02-21 23:53:05 +00:00
lclstrconsts.cs.po lcl: THTMLHelpDatabase: added published readonly property BuiltInBaseURL to show the default in the IDE options 2017-11-11 14:21:11 +00:00
lclstrconsts.de.po lcl: THTMLHelpDatabase: added published readonly property BuiltInBaseURL to show the default in the IDE options 2017-11-11 14:21:11 +00:00
lclstrconsts.es.po lcl: THTMLHelpDatabase: added published readonly property BuiltInBaseURL to show the default in the IDE options 2017-11-11 14:21:11 +00:00
lclstrconsts.fi.po lcl: THTMLHelpDatabase: added published readonly property BuiltInBaseURL to show the default in the IDE options 2017-11-11 14:21:11 +00:00
lclstrconsts.fr.po Translations: French translation update by Gilles Vasseur, bug #32758 2017-12-03 22:51:44 +00:00
lclstrconsts.he.po lcl: THTMLHelpDatabase: added published readonly property BuiltInBaseURL to show the default in the IDE options 2017-11-11 14:21:11 +00:00
lclstrconsts.hu.po Translations: Hungarian translation update by Péter Gábor, bug #32764 2017-12-04 00:08:30 +00:00
lclstrconsts.id.po Translations: regenerated translations 2018-02-21 23:53:05 +00:00
lclstrconsts.it.po lcl: THTMLHelpDatabase: added published readonly property BuiltInBaseURL to show the default in the IDE options 2017-11-11 14:21:11 +00:00
lclstrconsts.ja.po lcl: THTMLHelpDatabase: added published readonly property BuiltInBaseURL to show the default in the IDE options 2017-11-11 14:21:11 +00:00
lclstrconsts.lt.po lcl: THTMLHelpDatabase: added published readonly property BuiltInBaseURL to show the default in the IDE options 2017-11-11 14:21:11 +00:00
lclstrconsts.nl.po lcl: THTMLHelpDatabase: added published readonly property BuiltInBaseURL to show the default in the IDE options 2017-11-11 14:21:11 +00:00
lclstrconsts.no.po lcl: THTMLHelpDatabase: added published readonly property BuiltInBaseURL to show the default in the IDE options 2017-11-11 14:21:11 +00:00
lclstrconsts.pl.po Translations: LCL Polish translation update by Jacek Kruszniewski, bug #33200 2018-02-24 21:49:40 +00:00
lclstrconsts.po lcl: THTMLHelpDatabase: added published readonly property BuiltInBaseURL to show the default in the IDE options 2017-11-11 14:21:11 +00:00
lclstrconsts.pt_BR.po Translations: fixed typo in Brazilian Portuguese translation (atuak -> atual). Hint by Jean Patrick, bug #33773. 2018-05-22 22:58:25 +00:00
lclstrconsts.pt.po lcl: THTMLHelpDatabase: added published readonly property BuiltInBaseURL to show the default in the IDE options 2017-11-11 14:21:11 +00:00
lclstrconsts.ru.po LCL: regenerated translations and updated Russian translation 2017-11-12 22:43:27 +00:00
lclstrconsts.sk.po lcl: THTMLHelpDatabase: added published readonly property BuiltInBaseURL to show the default in the IDE options 2017-11-11 14:21:11 +00:00
lclstrconsts.tr.po Translations: regenerated translations 2018-02-21 23:53:05 +00:00
lclstrconsts.uk.po Translations: Ukrainian translation update by Olexandr Pylypchuk, bug #32695 2017-11-14 23:01:39 +00:00
lclstrconsts.zh_CN.po Translations: Simplified Chinese translation update by robsean, bug #33242 2018-02-27 23:23:20 +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.