lazarus/languages
vincents 8a4bb1671a updated Dutch translation from Mattijs
git-svn-id: trunk@7764 -
2005-09-21 08:38:24 +00:00
..
lazaruside.ar.po updated dutch translation from Darius 2005-09-17 14:18:15 +00:00
lazaruside.ca.po updated dutch translation from Darius 2005-09-17 14:18:15 +00:00
lazaruside.de.po updated dutch translation from Darius 2005-09-17 14:18:15 +00:00
lazaruside.es.po updated dutch translation from Darius 2005-09-17 14:18:15 +00:00
lazaruside.fi.po updated finnish translation from Seppo 2005-09-19 20:20:32 +00:00
lazaruside.fiwin.po updated dutch translation from Darius 2005-09-17 14:18:15 +00:00
lazaruside.fr.po updated dutch translation from Darius 2005-09-17 14:18:15 +00:00
lazaruside.he.po updated dutch translation from Darius 2005-09-17 14:18:15 +00:00
lazaruside.it.po updated dutch translation from Darius 2005-09-17 14:18:15 +00:00
lazaruside.itiso.po updated dutch translation from Darius 2005-09-17 14:18:15 +00:00
lazaruside.nl.po updated Dutch translation from Mattijs 2005-09-21 08:38:24 +00:00
lazaruside.pb.po updated dutch translation from Darius 2005-09-17 14:18:15 +00:00
lazaruside.pl.po updated dutch translation from Darius 2005-09-17 14:18:15 +00:00
lazaruside.pliso.po updated dutch translation from Darius 2005-09-17 14:18:15 +00:00
lazaruside.plwin.po updated dutch translation from Darius 2005-09-17 14:18:15 +00:00
lazaruside.po updated dutch translation from Darius 2005-09-17 14:18:15 +00:00
lazaruside.ru.po updated dutch translation from Darius 2005-09-17 14:18:15 +00:00
lazaruside.ruutf.po updated dutch translation from Darius 2005-09-17 14:18:15 +00:00
lazaruside.ruwin.po updated dutch translation from Darius 2005-09-17 14:18:15 +00:00
objinspstrconsts.ca.po updated german translation from Joerg Braun 2005-08-28 23:27:21 +00:00
objinspstrconsts.de.po fixed german translation from iso-8859-1 to utf8 2005-08-30 19:44:41 +00:00
objinspstrconsts.es.po updated spanish translation 2005-09-07 22:13:37 +00:00
objinspstrconsts.fi.po updated german translation from Joerg Braun 2005-08-28 23:27:21 +00:00
objinspstrconsts.fiwin.po updated german translation from Joerg Braun 2005-08-28 23:27:21 +00:00
objinspstrconsts.fr.po updated german translation from Joerg Braun 2005-08-28 23:27:21 +00:00
objinspstrconsts.it.po updated german translation from Joerg Braun 2005-08-28 23:27:21 +00:00
objinspstrconsts.itiso.po updated german translation from Joerg Braun 2005-08-28 23:27:21 +00:00
objinspstrconsts.nl.po updated german translation from Joerg Braun 2005-08-28 23:27:21 +00:00
objinspstrconsts.pb.po updated german translation from Joerg Braun 2005-08-28 23:27:21 +00:00
objinspstrconsts.pl.po updated german translation from Joerg Braun 2005-08-28 23:27:21 +00:00
objinspstrconsts.pliso.po updated german translation from Joerg Braun 2005-08-28 23:27:21 +00:00
objinspstrconsts.plwin.po updated german translation from Joerg Braun 2005-08-28 23:27:21 +00:00
objinspstrconsts.po updated german translation from Joerg Braun 2005-08-28 23:27:21 +00:00
objinspstrconsts.ru.po updated german translation from Joerg Braun 2005-08-28 23:27:21 +00:00
objinspstrconsts.ruutf.po updated german translation from Joerg Braun 2005-08-28 23:27:21 +00:00
objinspstrconsts.ruwin.po updated german translation from Joerg Braun 2005-08-28 23:27:21 +00:00
README added ldocktree.pas 2005-07-01 18:20:41 +00:00

Quick Start for translators:

For example finnish translation:
Search for all *.fi.po files. They are simple text files, with an easy format.
Edit them with programs like kbabel.
Run 'sh localize.sh' to update translations. This will create the various .mo
files.
Send the updated xxx.fi.po files to patch@dommelstein.net.
Do not send diffs for .po files.


Now the background:

The <lazarusdir>/languages directory contains all the stuff for
internationalization of the lazarus IDE.

There are a few other directories for the codetools and the lcl. They work
all the same. All language files can easily be updated with the
<lazarusdir>/localize.sh script.


All text and messages used in the IDE (except the special designer units)
should be placed into the unit lazarusidestrconsts.pas. This unit uses a
resourcestring section, so that the compiler will create the
<lazarusdir>/lazarusidestrconsts.rst file.
Since this is a fpc-only format it must be converted with the rstconv program:

cd <lazarusdir>/languages
rstconv -i ../lazarusidestrconsts.rst -o lazaruside.po

Hint: this is done by <lazarusdir>/localize.sh

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

german:           lazaruside.de.po
russian (KOI8-R): lazaruside.ru.po
spanish:          lazaruside.es.po
french:           lazaruside.fr.po
italian:          lazaruside.it.po


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

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

where xx is the language id.
Hint: this is done by <lazarusdir>/localize.sh too


(The same for objinspstrconsts.xx.po, codetoolsstrconsts.xx.po, lcl.xx.po)
Hint: this is also done by <lazarusdir>/localize.sh