lazarus/components/codetools/languages
2007-01-29 20:04:36 +00:00
..
codetoolsstrconsts.ca.po IDE: implemented loading .po files of packages 2007-01-10 01:29:36 +00:00
codetoolsstrconsts.de.po IDE: implemented loading .po files of packages 2007-01-10 01:29:36 +00:00
codetoolsstrconsts.es.po IDE: implemented loading .po files of packages 2007-01-10 01:29:36 +00:00
codetoolsstrconsts.esutf.po IDE: implemented loading .po files of packages 2007-01-10 01:29:36 +00:00
codetoolsstrconsts.fi.po IDE: implemented loading .po files of packages 2007-01-10 01:29:36 +00:00
codetoolsstrconsts.fr.po IDE: implemented loading .po files of packages 2007-01-10 01:29:36 +00:00
codetoolsstrconsts.id.po updated Indonesian translations from Zaenal Mutaqin 2007-01-29 20:04:36 +00:00
codetoolsstrconsts.it.po * new and modified italian translations from Mario Bonati 2007-01-23 00:19:44 +00:00
codetoolsstrconsts.nl.po IDE: implemented loading .po files of packages 2007-01-10 01:29:36 +00:00
codetoolsstrconsts.pb.po IDE: implemented loading .po files of packages 2007-01-10 01:29:36 +00:00
codetoolsstrconsts.pl.po updated polish translations from Paweł (ACD) 2007-01-14 19:08:59 +00:00
codetoolsstrconsts.pliso.po IDE: implemented loading .po files of packages 2007-01-10 01:29:36 +00:00
codetoolsstrconsts.plwin.po IDE: implemented loading .po files of packages 2007-01-10 01:29:36 +00:00
codetoolsstrconsts.po translations: finnish: updates from Seppo 2007-01-11 19:46:12 +00:00
codetoolsstrconsts.ru.po IDE: implemented loading .po files of packages 2007-01-10 01:29:36 +00:00
codetoolsstrconsts.ua.po IDE: implemented loading .po files of packages 2007-01-10 01:29:36 +00:00
codetoolsstrconsts.zh-cn.po IDE: implemented loading .po files of packages 2007-01-10 01:29:36 +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.