annotate doc/catalogs.txt @ 7:f4cd4d60de67

Fix usage of `write_po` in frontends (follow-up to [7]).
author cmlenz
date Wed, 30 May 2007 11:55:02 +0000
parents b2492365f186
children 4525549aa6cc
rev   line source
2
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
1 .. -*- mode: rst; encoding: utf-8 -*-
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
2
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
3 =============================
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
4 Working with Message Catalogs
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
5 =============================
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
6
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
7 .. contents:: Contents
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
8 :depth: 2
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
9 .. sectnum::
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
10
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
11
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
12 Introduction
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
13 ============
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
14
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
15 The ``gettext`` translation system enables you to mark any strings used in your
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
16 application as subject to localization, by wrapping them in functions such as
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
17 ``gettext(str)`` and ``ngettext(singular, plural, num)``. For brevity, the
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
18 ``gettext`` function is often aliased to ``_(str)``, so you can write::
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
19
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
20 print _("Hello")
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
21
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
22 instead of just::
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
23
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
24 print "Hello"
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
25
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
26 to make the string "Hello" localizable.
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
27
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
28 Message catalogs are collections of translations for such localizable messages
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
29 used in an application. They are commonly stored in PO (Portable Object) and MO
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
30 (Machine Object) files, the formats of which are defined by the GNU `gettext`_
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
31 tools and the GNU `translation project`_.
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
32
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
33 .. _`gettext`: http://www.gnu.org/software/gettext/
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
34 .. _`translation project`: http://sourceforge.net/projects/translation
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
35
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
36 The general procedure for building message catalogs looks something like this:
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
37
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
38 * use a tool (such as ``xgettext``) to extract localizable strings from the
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
39 code base and write them to a POT (PO Template) file.
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
40 * make a copy of the POT file for a specific locale (for example, "en_US")
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
41 and start translating the messages
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
42 * use a tool such as ``msgfmt`` to compile the locale PO file into an binary
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
43 MO file
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
44 * later, when code changes make it necessary to update the translations, you
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
45 regenerate the POT file and merge the changes into the various
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
46 locale-specific PO files, for example using ``msgmerge``
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
47
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
48 Python provides the `gettext module`_ as part of the standard library, which
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
49 enables applications to work with appropriately generated MO files.
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
50
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
51 .. _`gettext module`: http://docs.python.org/lib/module-gettext.html
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
52
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
53 As ``gettext`` provides a solid and well supported foundation for translating
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
54 application messages, Babel does not reinvent the wheel, but rather reuses this
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
55 infrastructure, and makes it easier to build message catalogs for Python
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
56 applications.
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
57
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
58
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
59 Message Extraction
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
60 ==================
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
61
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
62 Babel provides functionality similar to that of the ``xgettext`` program,
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
63 except that only extraction from Python source files is built-in, while support
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
64 for other file formats can be added using a simple extension mechanism.
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
65
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
66 (TODO: more)
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
67
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
68
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
69 --------------------------
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
70 Writing Extraction Methods
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
71 --------------------------
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
72
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
73 (TODO: write)
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
74
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
75 ---------------------
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
76 ``setup.py`` Commands
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
77 ---------------------
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
78
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
79 (TODO: overview)
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
80
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
81 See `Distutils/Setuptools Integration <setup.html>`_ for more information.
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
82
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
83 -------------------
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
84 Command-line script
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
85 -------------------
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
86
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
87 (TODO: overview)
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
88
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
89 See `Command-Line Interface <cmdline.html>`_ for more information.
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
90
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
91
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
92 Extended ``Translations`` Class
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
93 ===============================
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
94
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
95 Many web-based applications are composed of a variety of different components
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
96 (possibly using some kind of plugin system), and some of those components may
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
97 provide their own message catalogs that need to be integrated into the larger
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
98 system.
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
99
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
100 To support this usage pattern, Babel provides a ``Translations`` class that is
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
101 derived from the ``GNUTranslations`` class in the ``gettext`` module. This
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
102 class adds a ``merge()`` method that takes another ``Translations`` instance,
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
103 and merges its contents into the catalog::
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
104
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
105 translations = Translations.load('main')
b2492365f186 Forgot to check in the doc directory.
cmlenz
parents:
diff changeset
106 translations.merge(Translations.load('plugin1'))
Copyright (C) 2012-2017 Edgewall Software