lazarus/components/codetools/languages
marc 3393285e94 * Improved localization of Package Links dialog by Maxim Ganetsky
* updateed po files

git-svn-id: trunk@14548 -
2008-03-16 23:58:17 +00:00
..
codetoolsstrconsts.ca.po IDE: added Lithuanian to the list of translations 2007-08-27 22:12:31 +00:00
codetoolsstrconsts.de.po translations: german: from Joerg Braun 2007-09-08 10:29:16 +00:00
codetoolsstrconsts.es.po * updated Spanish translation by Jose Angel 2008-02-28 22:22:19 +00:00
codetoolsstrconsts.esutf.po IDE: added Lithuanian to the list of translations 2007-08-27 22:12:31 +00:00
codetoolsstrconsts.fi.po updated translations using patch rstconv which adds the CharSet header 2007-12-27 12:03:06 +00:00
codetoolsstrconsts.fr.po Update French languages 2008-03-12 21:20:46 +00:00
codetoolsstrconsts.id.po updated Indonesian translations from Zaenal Mutaqin 2007-09-24 11:12:37 +00:00
codetoolsstrconsts.it.po * Updated translation by Mario Bonati 2007-10-01 21:40:27 +00:00
codetoolsstrconsts.lt.po updated translations using patch rstconv which adds the CharSet header 2007-12-27 12:03:06 +00:00
codetoolsstrconsts.nl.po IDE: added Lithuanian to the list of translations 2007-08-27 22:12:31 +00:00
codetoolsstrconsts.pb.po updated translations using patch rstconv which adds the CharSet header 2007-12-27 12:03:06 +00:00
codetoolsstrconsts.pl.po IDE: added Lithuanian to the list of translations 2007-08-27 22:12:31 +00:00
codetoolsstrconsts.pliso.po IDE: added Lithuanian to the list of translations 2007-08-27 22:12:31 +00:00
codetoolsstrconsts.plwin.po IDE: added Lithuanian to the list of translations 2007-08-27 22:12:31 +00:00
codetoolsstrconsts.po * Improved localization of Package Links dialog by Maxim Ganetsky 2008-03-16 23:58:17 +00:00
codetoolsstrconsts.ru.po * updated Russian translation by Maxim Ganetsky 2008-02-29 23:23:56 +00:00
codetoolsstrconsts.ua.po updated translations using patch rstconv which adds the CharSet header 2007-12-27 12:03:06 +00:00
codetoolsstrconsts.zh-cn.po IDE: added Lithuanian to the list of translations 2007-08-27 22:12:31 +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.