lazarus/components/codetools/languages
2012-08-06 22:32:03 +00:00
..
codetoolsstrconsts.ar.po Translations: huge Arabic translation update by Khaled Shagrouni, first part, bug #22583 2012-08-06 22:32:03 +00:00
codetoolsstrconsts.ca.po codetools: cfgscript: nicer error message if semicolon is missing 2012-05-22 10:53:35 +00:00
codetoolsstrconsts.cs.po codetools: cfgscript: nicer error message if semicolon is missing 2012-05-22 10:53:35 +00:00
codetoolsstrconsts.de.po codetools: cfgscript: nicer error message if semicolon is missing 2012-05-22 10:53:35 +00:00
codetoolsstrconsts.es.po codetools: cfgscript: nicer error message if semicolon is missing 2012-05-22 10:53:35 +00:00
codetoolsstrconsts.fi.po codetools: cfgscript: nicer error message if semicolon is missing 2012-05-22 10:53:35 +00:00
codetoolsstrconsts.fr.po codetools: cfgscript: nicer error message if semicolon is missing 2012-05-22 10:53:35 +00:00
codetoolsstrconsts.he.po codetools: cfgscript: nicer error message if semicolon is missing 2012-05-22 10:53:35 +00:00
codetoolsstrconsts.id.po codetools: cfgscript: nicer error message if semicolon is missing 2012-05-22 10:53:35 +00:00
codetoolsstrconsts.it.po codetools: cfgscript: nicer error message if semicolon is missing 2012-05-22 10:53:35 +00:00
codetoolsstrconsts.lt.po codetools: cfgscript: nicer error message if semicolon is missing 2012-05-22 10:53:35 +00:00
codetoolsstrconsts.nl.po codetools: cfgscript: nicer error message if semicolon is missing 2012-05-22 10:53:35 +00:00
codetoolsstrconsts.pl.po codetools: cfgscript: nicer error message if semicolon is missing 2012-05-22 10:53:35 +00:00
codetoolsstrconsts.po codetools: cfgscript: nicer error message if semicolon is missing 2012-05-22 10:53:35 +00:00
codetoolsstrconsts.pt_BR.po Translations: Brazilian Portuguese translation update by Marcelo B Paula, bug #22382 2012-07-07 10:06:18 +00:00
codetoolsstrconsts.pt.po codetools: cfgscript: nicer error message if semicolon is missing 2012-05-22 10:53:35 +00:00
codetoolsstrconsts.ru.po Codetools: updated Russian translation 2012-05-22 20:50:56 +00:00
codetoolsstrconsts.sk.po codetools: cfgscript: nicer error message if semicolon is missing 2012-05-22 10:53:35 +00:00
codetoolsstrconsts.uk.po codetools: cfgscript: nicer error message if semicolon is missing 2012-05-22 10:53:35 +00:00
codetoolsstrconsts.zh_CN.po codetools: cfgscript: nicer error message if semicolon is missing 2012-05-22 10:53:35 +00:00
README.txt

The <lazarusdir>/components/codetools/languages directory contains all the stuff
for internationalization of the codetools.

All text and messages used in the codetools should be placed into the unit
codetoolsstrconsts.pas. This unit uses a resourcestring section, so that the
compiler will create the
<lazarusdir>/components/units/codetoolsstrconsts.rst file.

The following is a in detail description of updating the language files for
the codetools. Normally you can just execute the <lazarusdir>/localize.sh
script.

Since this is a fpc-only format it must be converted with the rstconv program:

cd <lazarusdir>/components/codetools/languages
rstconv -i ../../units/codetoolsstrconsts.rst -o codetools.po

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

german: codetools.de.po


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

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

where xx is the language id.