summaryrefslogtreecommitdiff
path: root/docs/intro.rst
blob: db36f32d30155e389c6755a21cee32b6de3562d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
.. -*- mode: rst; encoding: utf-8 -*-

============
Introduction
============

The functionality Babel provides for internationalization (I18n) and
localization (L10N) can be separated into two different aspects:

 * tools to build and work with ``gettext`` message catalogs, and
 * a Python interface to the CLDR (Common Locale Data Repository), providing
   access to various locale display names, localized number and date
   formatting, etc.


Message Catalogs
================

While the Python standard library includes a :mod:`gettext` module that
enables applications to use message catalogs, it requires developers to
build these catalogs using GNU tools such as ``xgettext``, ``msgmerge``,
and ``msgfmt``.  And while ``xgettext`` does have support for extracting
messages from Python files, it does not know how to deal with other kinds
of files commonly found in Python web-applications, such as templates, nor
does it provide an easy extensibility mechanism to add such support.

Babel addresses this by providing a framework where various extraction
methods can be plugged in to a larger message extraction framework, and
also removes the dependency on the GNU ``gettext`` tools for common tasks,
as these aren't necessarily available on all platforms. See
:ref:`messages` for details on this aspect of Babel.


Locale Data
===========

Furthermore, while the Python standard library does include support for
basic localization with respect to the formatting of numbers and dates
(the :mod:`locale` module, among others), this support is based on the
assumption that there will be only one specific locale used per process
(at least simultaneously.) Also, it doesn't provide access to other kinds
of locale data, such as the localized names of countries, languages, or
time-zones, which are frequently needed in web-based applications.

For these requirements, Babel includes data extracted from the `Common
Locale Data Repository (CLDR) <http://unicode.org/cldr/>`_, and provides a
number of convenient methods for accessing and using this data. See
:ref:`locale-data`, :ref:`date-and-time`, and :ref:`numbers` for more
information on this aspect of Babel.