freeipa/install/po
John Dennis 97fc2ed0ef Ticket 1718 - Fix Spanish po translation file
There were quite errors in es.po, it was difficult or impossible to
track down where they came from, Transifex does not have good revision
history.

I fixed about 20% of the msgstr's in the file that had obvious
problems which could be spotted by a non-Spanish speaking person.

Spurious backslashes and backslash-newlines had been introduced. I
tracked this particular problem down to a bug in polib. polib is a
Python library which can read/write po/mo files. In Fedora it's
packaged as python-polib. polib is used by the Transifex instance to
read/write po files. We don't currently use polib in IPA (that will
change soon though) but I wrote utilities using polib to help fix the
bad po file and analyze what had gone wrong. I discovered that if one
simply uses polib to read a po file into memory and they write that po
file back out from memory you don't end up with the same contents if
there are backslashed escapes in the file. I tracked this down to the
escape() and unescape() functions in polib. This caused me to look to
see if upstream polib had been fixed. It had. Therefore I think the
spurious backslashes were introduced when Transifex was using an older
broken version of polib. I filed this Fedora bug
https://bugzilla.redhat.com/show_bug.cgi?id=744419 to get the fixes
into python-polib. I manually corrected all the backslash errors.

I compared all 1329 translations from a known good version of es.po
with the current version and generated a new es.po by taking the
translation (e.g. msgstr) from the two po files which was obviously
correct. In those instances where neither msgstr was obviosuly correct
the deleted the translation entirely.

I also wrote utilities to validate any "substitution" variables
appearing in the text. I discovered a number of instances where the
substitution variable had been malformed by the translator such that
it was syntactically invalid. This is how we originally discovered
problems with the translation, it was throwing Python exceptions. I
fixed all those errors.

I also found approximately 80 translations where the leading
whitespace had been altered by the translator. Those also were fixed.

I cannot verify that the remaining translations are a correct Spanish
translation of the original text (in fact a number of them I looked at
seemed dubious to me, for example it omitted recongnizable
keywords). But I do believe that the obvious errors are fixed and we
shouldn't be throwing any more Python exceptions because of malformed
substitution variables.
2011-10-11 22:46:02 -04:00
..
as.po ticket 1661 - Update all po files 2011-08-18 13:20:40 +02:00
bn_IN.po ticket 1661 - Update all po files 2011-08-18 13:20:40 +02:00
contributing_translators.txt Add Ukrainian translations 2010-03-16 13:59:48 -04:00
de.po ticket 1661 - Update all po files 2011-08-18 13:20:40 +02:00
el.po ticket 1661 - Update all po files 2011-08-18 13:20:40 +02:00
es.po Ticket 1718 - Fix Spanish po translation file 2011-10-11 22:46:02 -04:00
fa.po ticket 1660 - update LINGUAS file, add missing po files 2011-08-18 13:20:06 +02:00
fr.po ticket 1661 - Update all po files 2011-08-18 13:20:40 +02:00
gu.po ticket 1661 - Update all po files 2011-08-18 13:20:40 +02:00
he.po ticket 1661 - Update all po files 2011-08-18 13:20:40 +02:00
id.po ticket 1661 - Update all po files 2011-08-18 13:20:40 +02:00
ipa.pot Update translation files 2011-06-21 19:21:55 -04:00
it.po ticket 1661 - Update all po files 2011-08-18 13:20:40 +02:00
ja_JP.po ticket 1661 - Update all po files 2011-08-18 13:20:40 +02:00
ja.po ticket 1661 - Update all po files 2011-08-18 13:20:40 +02:00
kn.po ticket 1661 - Update all po files 2011-08-18 13:20:40 +02:00
ko.po ticket 1661 - Update all po files 2011-08-18 13:20:40 +02:00
LINGUAS ticket 1660 - update LINGUAS file, add missing po files 2011-08-18 13:20:06 +02:00
Makefile.in 25 Create Tool for Enabling/Disabling Managed Entry Plugins 2011-09-21 09:22:13 +02:00
nl.po ticket 1660 - update LINGUAS file, add missing po files 2011-08-18 13:20:06 +02:00
pl.po ticket 1661 - Update all po files 2011-08-18 13:20:40 +02:00
pt_BR.po ticket 1661 - Update all po files 2011-08-18 13:20:40 +02:00
pt.po ticket 1661 - Update all po files 2011-08-18 13:20:40 +02:00
pygettext.py Several improvements of the lint script. 2011-05-05 11:54:07 +02:00
README Initial gettext support for C utils 2010-10-12 15:46:27 -04:00
ru.po ticket 1661 - Update all po files 2011-08-18 13:20:40 +02:00
sv.po ticket 1661 - Update all po files 2011-08-18 13:20:40 +02:00
test_i18n.py Fix some minor issues uncovered by pylint. 2011-04-20 14:38:02 -04:00
uk.po transifex translation adjustment 2011-08-12 09:38:11 +02:00
zh_CN.po ticket 1661 - Update all po files 2011-08-18 13:20:40 +02:00
zh_TW.po ticket 1661 - Update all po files 2011-08-18 13:20:40 +02:00

Q: I've added a new source file, how do I make sure it's strings get translated?

A: Edit Makefile.in and add the source file to the appropriate *_POTFILES list.
   Then run "make update-po".

   NOTE: Now this i only necessary for python files that lack the .py
         extension. All .py, .c and .h files are automatically sourced.

Q: How do I pick up new strings to translate from the source files after the
   source have been modified?

A: make update-po
   This regenerates the pot template file by scanning all the source files.
   Then the new strings are merged into each .po file from the new pot file.

Q: How do I just regenerate the pot template file without regenerating all the
   .po files?

A: make update-pot

Q: How do I add a new language for translation?

A: Edit the LINGUAS file and add the new language. Then run "make create-po".
   This will generate a new .po file for each language which doesn't have one
   yet. Be sure to add the new .po file(s) to the source code repository.  For
   certain languages, you may have to edit the Plurals line.  See:
   http://www.gnu.org/software/hello/manual/gettext/Plural-forms.html
   However, if this line is wrong, it is often an indicator that the locale
   value is incorrect.  For example, using 'jp' for Japanese in stead of 'ja'
   will result in an invailid Plural's line.

Q: What files must be under source code control?

A: The files Makefile.in, LINGUAS control the build, they must be in the SCM.
   The *.pot and *.po files are used by translators, they must be in SCM so the
   translator can checkout out a .po files, add the translations, and then check
   the .po file back in.

   Be careful, .po files may be automatically updated when the source files
   change (or the .pot changes, usually the .pot file changes only as a result
   of rescanning the source files). This mean a .po file might be automatically
   updated while a translator has the file out for editing, all the caveats
   about SCM merging apply.

Q: Which are automatically generated and thus do not need to be in SCM?

A: The *.mo files are automatically generated on demand from their corresponding
   .po file. 

Q: What role does the .pot file play?

A: The .pot file is called a template file. It is generated by scanning all the
   source files (e.g. *.py *.c *.h) in the project using xgettext. xgettext
   locates every translatable string (e.g. strings marked with _()) and adds
   that string along with metadata about it's location to the .pot file. Thus
   the .pot file is a collection of every translatable string in the project. If
   you edit a source file and add a translatable string you will have to
   regenerate the .pot file in order to pick up the new string.

Q: What is the relationship between a .po file and the .pot file?

A: A .po file contains the translations for particular language. It derives from
   the .pot file. When the .pot file is updated with new strings to translate
   each .po will merge the new strings in. The .po file is where translators
   work providing translations for their language. Thus it's important the .po
   not be recreated from scratch and is kept in SCM, otherwise the translators
   work will be lost.

   Let's use an example for French, it's .po file will be fr.po.

   1)  Developer creates main.c with one translatable sting _("Begin").

   2)  Produce the .pot file by running xgettext on main.c

   3)  .pot file contains one msgid, "Begin" 

   4)  fr.po is created from the .pot file, it also contains one msgid, "Begin"

   5)  Translator edits fr.po and provide the French translation of "Begin".

   6)  Developer adds new translatable sting _("End") to main.c

   7)  Generate a new .pot file by running xgettext on main.c

   8)  .pot file contains two msgid's, "Begin", and "End"

   9)  fr.po is missing the new msgid in the .pot file, so the .pot is merged
       into fr.po by running msgmerge. This copies into fr.po the new "End" msgid
       but preserves the existing translations in fr.po (e.g. "Begin"). The fr.po
       will now have 2 msgid's one which is translated already (e.g. "Begin") and
       one that untranslated (e.g. "End").

   10) Sometime later the French translator comes back to see if he/she needs to
       add more translations to fr.po. They see there is a missing translation,
       they check fr.po out from SCM, add the missing translation, and then
       check fr.po back into SCM.

   This means at any given moment the set of .po files will have varying degrees
   of translation completeness. Because the .po files are merged when the source
   code files are updated existing translations are not lost. It also means a
   .po file which was fully translated may need new translations after a .pot
   update. It is permissible to have incomplete translations in a message
   catalog, at run time if a translation for a particular string is available in
   the message catalog the user will be presented with the string in their
   language. However if the string is not yet translated in the .po file then
   they just get the original string (typically in English).

Q: What are .mo files?

A: .mo files are the content of a .po file but in "machine" format for fast
   run time access (mo = Machine Object, po = Portable Object). .mo files are
   what gets installed along with the package. Think of a .po as a source file
   which is compiled into a object file for run time use.

Q: Why don't we use gettexize and autopoint?

A: Because the framework they produce is too limited. Specifically there is no
   way to pass the source language to xgettext when it scans a file. xgettext
   only knows how to automatically determine the language from the source files
   extension. However we have many files without extensions, thus we have to
   group all Python (et. al.) files together and run xgettext on every file *we*
   know to Python (because xgettext can't figure this out itself if there is no
   file extension). There is another added benefit of avoiding gettextize and
   autopoint, simplicity. Managing translations is complex and hard enough as it
   is, gettextize and autopoint adds another whole layer of complexity which
   just further obscures things.

Q: Who created the awful mess and who do I ask when things don't work as I
   expect or I have further questions?

A: John Dennis <jdennis@redhat.com>