gettext

gettext
Original author(s) Sun Microsystems
Developer(s) various
Initial release 1990 (1990)[1]
Stable release
0.19.8
Repository various based on OpenSolaris and GNU gettext
Operating system Cross-platform
Type Internationalization and localization
License Various free software licenses
Website https://www.gnu.org/software/gettext/

In computing, gettext is an internationalization and localization (i18n) system commonly used for writing multilingual programs on Unix-like computer operating systems. The most commonly used implementation of gettext is GNU gettext, released by the GNU Project in 1995.

History

gettext was originally written by Sun Microsystems in the early 1990s. The GNU Project released GNU gettext, a free software implementation of the system in 1995.[1]

Operation

Programming

Typical gettext workflow. The de.po instance on the left shows that no string translation was found, so the original string is passed through.

Source code is first modified to use the GNU gettext calls. For most programming languages, this is done by wrapping strings that the user will see in the gettext function. To save typing time, and to reduce code clutter, this function is commonly aliased to _, so that the C code:

printf(gettext("My name is %s.\n"), my_name);

would become:

printf(_("My name is %s.\n"), my_name);

Comments (starting with ///) placed directly above strings thus marked are made available as hints to translators by helper programs.

gettext then uses the supplied strings as keys for looking up alternative translations, and will return the original string when no translation is available. This is in contrast to POSIX catgets[2], AmigaOS GetString, or the use of LoadString under Microsoft Windows where a programmatic ID (often an integer) is used.

xgettext is run on the sources to produce a .pot (Portable Object Template) file, which contains a list of all the translatable strings extracted from the sources.

For example, an input file with a comment might look like:

/// TRANSLATORS: Please leave %s as it is, because it is needed by the program.
/// Thank you for contributing to this project.
printf(_("My name is %s.\n"), my_name);

xgettext is run using the command:

xgettext -c /

The resultant .pot file looks like this with the comment:

#. TRANSLATORS: Please leave %s as it is, because it is needed by the program.
#. Thank you for contributing to this project.
#: src/name.c:36
msgid "My name is %s.\n"
msgstr ""

Translating

The translator derives a .po (Portable Object) file from the template using the msginit program, then fills out the translations.[3] msginit initializes the translations so, for instance, for a French language translation, the command to run would be:[4]

msginit --locale=fr --input=name.pot

This will create fr.po. The translator then edits the resultant file, either by hand or with a translation tool like Poedit, or Emacs with its editing mode for .po files. An edited entry will look like:

#: src/name.c:36
msgid "My name is %s.\n"
msgstr "Je m'appelle %s.\n"

Finally, the .po files are compiled with msgfmt into binary .mo (Machine Object) files. GNU gettext has its own file name extension: .gmo.[5] These are now ready for distribution with the software package.

Running

The user, on Unix-type systems, sets the environment variable LC_MESSAGES, and the program will display strings in the selected language, if there is an .mo file for it.

The user, on GNU variants, sets the environment variable LANGUAGE (LC_MESSAGES is also supported),[6] and the program will display strings in the selected language, if there is an .mo file for it.

Implementations

In addition to C, GNU gettext has the following implementations: C# for ASP.NET,[7][8] Perl,[9] PHP,[10] Python,[11] Scala,[12] and Node.js.[13]

See also

References

  1. 1 2 "History of gettext() et al? - comp.unix.solaris". Compgroups.net. Retrieved 2016-04-03.
  2. "About catgets". gnu.org. Retrieved 2017-10-24.
  3. "GNU gettext utilities: PO Files". Gnu.org. Retrieved 2016-04-03.
  4. "How to Translate With GetText PO and POT Files". Icanlocalize.com. Retrieved 2016-04-03.
  5. "Files Conveying Translations". Gnu.org. Retrieved 2014-04-22.
  6. "GNU gettext utilities: Locale Environment Variables". Gnu.org. Retrieved 2016-04-03.
  7. "Google Code Archive - Long-term storage for Google Code Project Hosting". Code.google.com. Retrieved 2016-04-03.
  8. "turquoiseowl/i18n: Smart internationalization for ASP.NET". GitHub.com. Retrieved 2016-04-03.
  9. "libintl-perl - An Internationalization Library for Perl That Aims To Be Compatible With the Uniforum Message Translations System as Implemented For Example in GNU Gettext". github.com. Retrieved 2017-09-14.
  10. "Gettext". php.net. Retrieved 2017-10-24.
  11. {{cite web|url=https://docs.python.org/library/gettext.html%7Ctitle=gettext — Multilingual internationalization services — Python 3.7.0 documentation|website=docs.python.org|accessdate=2018-09-21}
  12. "makkarpov/scalingua: A simple gettext-like internationalization library for Scala". github.com. Retrieved 2016-04-28.
  13. "DanielBaulig/node-gettext: An adaption of Joshua I. Miller's Javascript Gettext library for node.js". GitHub.com. Retrieved 2016-04-03.

This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.