lazarus/lcl/languages
juha 71dbce1d30 Finnish translation.
git-svn-id: trunk@59324 -
2018-10-19 16:12:41 +00:00
..
lclstrconsts.ca.po LCL: restored VK_HELP key i18n and made sure its resource string is not reused in button captions (added a separate resource string for them). Regenerated translations and updated Russian translation. 2018-08-27 23:06:05 +00:00
lclstrconsts.cs.po LCL: restored VK_HELP key i18n and made sure its resource string is not reused in button captions (added a separate resource string for them). Regenerated translations and updated Russian translation. 2018-08-27 23:06:05 +00:00
lclstrconsts.de.po LCL: restored VK_HELP key i18n and made sure its resource string is not reused in button captions (added a separate resource string for them). Regenerated translations and updated Russian translation. 2018-08-27 23:06:05 +00:00
lclstrconsts.es.po Translations: Spanish translation update by Alonso Cárdenas Márquez, bug #34304 2018-09-20 22:30:35 +00:00
lclstrconsts.fi.po Finnish translation. 2018-10-19 16:12:41 +00:00
lclstrconsts.fr.po Translations: French translation update by Gilles Vasseur, bug #34403 2018-10-09 22:50:15 +00:00
lclstrconsts.he.po LCL: restored VK_HELP key i18n and made sure its resource string is not reused in button captions (added a separate resource string for them). Regenerated translations and updated Russian translation. 2018-08-27 23:06:05 +00:00
lclstrconsts.hu.po Translations: Hungarian translation update by Péter Gábor, bug #34397 2018-10-09 22:41:03 +00:00
lclstrconsts.id.po LCL: restored VK_HELP key i18n and made sure its resource string is not reused in button captions (added a separate resource string for them). Regenerated translations and updated Russian translation. 2018-08-27 23:06:05 +00:00
lclstrconsts.it.po LCL: restored VK_HELP key i18n and made sure its resource string is not reused in button captions (added a separate resource string for them). Regenerated translations and updated Russian translation. 2018-08-27 23:06:05 +00:00
lclstrconsts.ja.po LCL: restored VK_HELP key i18n and made sure its resource string is not reused in button captions (added a separate resource string for them). Regenerated translations and updated Russian translation. 2018-08-27 23:06:05 +00:00
lclstrconsts.lt.po LCL: restored VK_HELP key i18n and made sure its resource string is not reused in button captions (added a separate resource string for them). Regenerated translations and updated Russian translation. 2018-08-27 23:06:05 +00:00
lclstrconsts.nl.po LCL: restored VK_HELP key i18n and made sure its resource string is not reused in button captions (added a separate resource string for them). Regenerated translations and updated Russian translation. 2018-08-27 23:06:05 +00:00
lclstrconsts.no.po LCL: restored VK_HELP key i18n and made sure its resource string is not reused in button captions (added a separate resource string for them). Regenerated translations and updated Russian translation. 2018-08-27 23:06:05 +00:00
lclstrconsts.pl.po LCL: restored VK_HELP key i18n and made sure its resource string is not reused in button captions (added a separate resource string for them). Regenerated translations and updated Russian translation. 2018-08-27 23:06:05 +00:00
lclstrconsts.po LCL: restored VK_HELP key i18n and made sure its resource string is not reused in button captions (added a separate resource string for them). Regenerated translations and updated Russian translation. 2018-08-27 23:06:05 +00:00
lclstrconsts.pt_BR.po Translations: Brazilian Portuguese translation update by Marcelo B Paula, bug #34426 2018-10-16 22:42:07 +00:00
lclstrconsts.pt.po LCL: restored VK_HELP key i18n and made sure its resource string is not reused in button captions (added a separate resource string for them). Regenerated translations and updated Russian translation. 2018-08-27 23:06:05 +00:00
lclstrconsts.ru.po LCL: restored VK_HELP key i18n and made sure its resource string is not reused in button captions (added a separate resource string for them). Regenerated translations and updated Russian translation. 2018-08-27 23:06:05 +00:00
lclstrconsts.sk.po LCL: restored VK_HELP key i18n and made sure its resource string is not reused in button captions (added a separate resource string for them). Regenerated translations and updated Russian translation. 2018-08-27 23:06:05 +00:00
lclstrconsts.tr.po Translations: Turkish translation update by Hakan KIZILHAN, bug #34296 2018-09-20 22:23:48 +00:00
lclstrconsts.uk.po Translations: Ukrainian translation update by Olexandr Pylypchuk, bug #34247 2018-09-10 21:47:12 +00:00
lclstrconsts.zh_CN.po LCL: restored VK_HELP key i18n and made sure its resource string is not reused in button captions (added a separate resource string for them). Regenerated translations and updated Russian translation. 2018-08-27 23:06:05 +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.