lazarus/components/codetools/languages
maxim 37c1e7a386 Merged revision(s) 56604 #0a5c680e3e from trunk:
Translations: Hungarian translation update by Péter Gábor, bug #32764
........

git-svn-id: branches/fixes_1_8@56605 -
2017-12-04 00:13:51 +00:00
..
codetoolsstrconsts.ca.po codetools: fixed reparsing on changed module name 2017-10-10 09:18:37 +00:00
codetoolsstrconsts.cs.po codetools: fixed reparsing on changed module name 2017-10-10 09:18:37 +00:00
codetoolsstrconsts.de.po codetools: fixed reparsing on changed module name 2017-10-10 09:18:37 +00:00
codetoolsstrconsts.es.po codetools: fixed reparsing on changed module name 2017-10-10 09:18:37 +00:00
codetoolsstrconsts.fi.po codetools: fixed reparsing on changed module name 2017-10-10 09:18:37 +00:00
codetoolsstrconsts.fr.po Merged revision(s) 56149-56150 #7f8d55f135-#7f8d55f135 from trunk: 2017-10-22 22:35:39 +00:00
codetoolsstrconsts.he.po codetools: fixed reparsing on changed module name 2017-10-10 09:18:37 +00:00
codetoolsstrconsts.hu.po Merged revision(s) 56604 #0a5c680e3e from trunk: 2017-12-04 00:13:51 +00:00
codetoolsstrconsts.id.po codetools: fixed reparsing on changed module name 2017-10-10 09:18:37 +00:00
codetoolsstrconsts.it.po codetools: fixed reparsing on changed module name 2017-10-10 09:18:37 +00:00
codetoolsstrconsts.lt.po codetools: fixed reparsing on changed module name 2017-10-10 09:18:37 +00:00
codetoolsstrconsts.nl.po codetools: fixed reparsing on changed module name 2017-10-10 09:18:37 +00:00
codetoolsstrconsts.pl.po codetools: fixed reparsing on changed module name 2017-10-10 09:18:37 +00:00
codetoolsstrconsts.po codetools: fixed reparsing on changed module name 2017-10-10 09:18:37 +00:00
codetoolsstrconsts.pt_BR.po Merged revision(s) 56535 #682a383e55 from trunk: 2017-11-29 23:04:59 +00:00
codetoolsstrconsts.ru.po Merged revision(s) 56036 #eb93f4654b from trunk: 2017-10-12 22:38:45 +00:00
codetoolsstrconsts.sk.po codetools: fixed reparsing on changed module name 2017-10-10 09:18:37 +00:00
codetoolsstrconsts.uk.po Merged revision(s) 56063 #e7b82afeec from trunk: 2017-10-15 21:54:35 +00:00
codetoolsstrconsts.zh_CN.po Merged revision(s) 56534 #926062dcfd from trunk: 2017-11-29 22:53:41 +00:00
README.txt

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.