Wednesday, June 26, 2013

What is PO file?

PO file is the file format to save message for internationalization and localization (I18n, L10n)

It is from a open source project: gettext
http://www.gnu.org/software/gettext/

The format like:
# translator-comments
#. extracted-comments
#: reference...
#, flag...
#| msgid previous-untranslated-string
msgid untranslated-string
msgstr translated-string

Example:
#: lib/error.c:116
msgid "Unknown system error"
msgstr "Error desconegut del sistema"


It is very friendly for developer and translator working together, and also make code more readable. To ASP.NET developer is another choice than resource file.

No comments:

Post a Comment