lazarus/languages
marc 2fe9b2eafc * updated ca.po from Jordi
git-svn-id: trunk@6882 -
2005-03-03 22:59:53 +00:00
..
lazaruside.ar.po * updated ca.po from Jordi 2005-03-03 22:59:53 +00:00
lazaruside.ca.po * updated ca.po from Jordi 2005-03-03 22:59:53 +00:00
lazaruside.de.po * updated ca.po from Jordi 2005-03-03 22:59:53 +00:00
lazaruside.es.po * updated ca.po from Jordi 2005-03-03 22:59:53 +00:00
lazaruside.esutf.po * updated ca.po from Jordi 2005-03-03 22:59:53 +00:00
lazaruside.fi.po * updated ca.po from Jordi 2005-03-03 22:59:53 +00:00
lazaruside.fiwin.po * updated ca.po from Jordi 2005-03-03 22:59:53 +00:00
lazaruside.fr.po * updated ca.po from Jordi 2005-03-03 22:59:53 +00:00
lazaruside.he.po * updated ca.po from Jordi 2005-03-03 22:59:53 +00:00
lazaruside.it.po * updated ca.po from Jordi 2005-03-03 22:59:53 +00:00
lazaruside.itiso.po * updated ca.po from Jordi 2005-03-03 22:59:53 +00:00
lazaruside.pl.po * updated ca.po from Jordi 2005-03-03 22:59:53 +00:00
lazaruside.pliso.po * updated ca.po from Jordi 2005-03-03 22:59:53 +00:00
lazaruside.plwin.po * updated ca.po from Jordi 2005-03-03 22:59:53 +00:00
lazaruside.po * updated ca.po from Jordi 2005-03-03 22:59:53 +00:00
lazaruside.ru.po * updated ca.po from Jordi 2005-03-03 22:59:53 +00:00
lazaruside.ruutf.po * updated ca.po from Jordi 2005-03-03 22:59:53 +00:00
lazaruside.ruwin.po * updated ca.po from Jordi 2005-03-03 22:59:53 +00:00
objinspstrconsts.ca.po * updated ca.po from Jordi 2005-03-03 22:59:53 +00:00
objinspstrconsts.de.po added resource string for TDefaultComponentEditor.Edit 2005-01-28 17:06:30 +00:00
objinspstrconsts.es.po added resource string for TDefaultComponentEditor.Edit 2005-01-28 17:06:30 +00:00
objinspstrconsts.esutf.po added resource string for TDefaultComponentEditor.Edit 2005-01-28 17:06:30 +00:00
objinspstrconsts.fi.po added resource string for TDefaultComponentEditor.Edit 2005-01-28 17:06:30 +00:00
objinspstrconsts.fiwin.po added finnish translation for windows codepage from Seppo 2005-02-20 11:03:36 +00:00
objinspstrconsts.fr.po added resource string for TDefaultComponentEditor.Edit 2005-01-28 17:06:30 +00:00
objinspstrconsts.it.po added resource string for TDefaultComponentEditor.Edit 2005-01-28 17:06:30 +00:00
objinspstrconsts.itiso.po added resource string for TDefaultComponentEditor.Edit 2005-01-28 17:06:30 +00:00
objinspstrconsts.pl.po added resource string for TDefaultComponentEditor.Edit 2005-01-28 17:06:30 +00:00
objinspstrconsts.pliso.po added resource string for TDefaultComponentEditor.Edit 2005-01-28 17:06:30 +00:00
objinspstrconsts.plwin.po added resource string for TDefaultComponentEditor.Edit 2005-01-28 17:06:30 +00:00
objinspstrconsts.po added resource string for TDefaultComponentEditor.Edit 2005-01-28 17:06:30 +00:00
objinspstrconsts.ru.po added resource string for TDefaultComponentEditor.Edit 2005-01-28 17:06:30 +00:00
objinspstrconsts.ruutf.po added resource string for TDefaultComponentEditor.Edit 2005-01-28 17:06:30 +00:00
objinspstrconsts.ruwin.po added resource string for TDefaultComponentEditor.Edit 2005-01-28 17:06:30 +00:00
README added italian localization 2003-09-02 08:39:16 +00:00

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