annotate doc/catalogs.txt @ 24:6c2c9fc7d787

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