lazarus/components/codetools/languages
2010-09-24 17:04:51 +00:00
..
codetoolsstrconsts.ca.po codetools: parsing deeper nodes, even if higher node has errors, bug #8093 2010-07-24 10:07:57 +00:00
codetoolsstrconsts.cs.po * 1) renamed Czech translation files to *.cs.po (in accordance with ISO 639-1 standard). This makes automatic Czech translation selection work. Bug #17048. 2010-07-28 20:58:37 +00:00
codetoolsstrconsts.de.po translations: german: updates from Swen Heinig 2010-09-10 16:35:01 +00:00
codetoolsstrconsts.es.po codetools: parsing deeper nodes, even if higher node has errors, bug #8093 2010-07-24 10:07:57 +00:00
codetoolsstrconsts.esutf.po codetools: parsing deeper nodes, even if higher node has errors, bug #8093 2010-07-24 10:07:57 +00:00
codetoolsstrconsts.fi.po codetools: parsing deeper nodes, even if higher node has errors, bug #8093 2010-07-24 10:07:57 +00:00
codetoolsstrconsts.fr.po codetools: parsing deeper nodes, even if higher node has errors, bug #8093 2010-07-24 10:07:57 +00:00
codetoolsstrconsts.he.po Translations: Hebrew translation update by Ezik Shulamy, bugs #17477-17484 2010-09-24 17:04:51 +00:00
codetoolsstrconsts.id.po codetools: parsing deeper nodes, even if higher node has errors, bug #8093 2010-07-24 10:07:57 +00:00
codetoolsstrconsts.it.po codetools: parsing deeper nodes, even if higher node has errors, bug #8093 2010-07-24 10:07:57 +00:00
codetoolsstrconsts.lt.po codetools: parsing deeper nodes, even if higher node has errors, bug #8093 2010-07-24 10:07:57 +00:00
codetoolsstrconsts.nl.po codetools: parsing deeper nodes, even if higher node has errors, bug #8093 2010-07-24 10:07:57 +00:00
codetoolsstrconsts.pb.po Portuguese translation update by Marcelo B Paula, bug #17176. 2010-08-15 14:01:26 +00:00
codetoolsstrconsts.pl.po codetools: parsing deeper nodes, even if higher node has errors, bug #8093 2010-07-24 10:07:57 +00:00
codetoolsstrconsts.po codetools: parsing deeper nodes, even if higher node has errors, bug #8093 2010-07-24 10:07:57 +00:00
codetoolsstrconsts.ru.po regenerated translations; updated Russian translation 2010-07-24 23:11:09 +00:00
codetoolsstrconsts.sk.po codetools: parsing deeper nodes, even if higher node has errors, bug #8093 2010-07-24 10:07:57 +00:00
codetoolsstrconsts.ua.po codetools: parsing deeper nodes, even if higher node has errors, bug #8093 2010-07-24 10:07:57 +00:00
codetoolsstrconsts.zh_CN.po codetools: parsing deeper nodes, even if higher node has errors, bug #8093 2010-07-24 10:07:57 +00:00
README.txt renamed README files to README.txt 2006-07-21 18:31:15 +00:00

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.