annotate babel/__init__.py @ 369:c2ae38340540 stable-0.9.x

Ported [388:405/trunk] to 0.9.x branch.
author cmlenz
date Fri, 27 Jun 2008 15:22:12 +0000
parents a2c54ef107c2
children 1c54b64a93bf
rev   line source
1
f71ca60f2a4a Import of initial code base.
cmlenz
parents:
diff changeset
1 # -*- coding: utf-8 -*-
f71ca60f2a4a Import of initial code base.
cmlenz
parents:
diff changeset
2 #
12
a2c54ef107c2 * Removed pkg_resources/setuptools requirement from various places.
cmlenz
parents: 4
diff changeset
3 # Copyright (C) 2007 Edgewall Software
1
f71ca60f2a4a Import of initial code base.
cmlenz
parents:
diff changeset
4 # All rights reserved.
f71ca60f2a4a Import of initial code base.
cmlenz
parents:
diff changeset
5 #
f71ca60f2a4a Import of initial code base.
cmlenz
parents:
diff changeset
6 # This software is licensed as described in the file COPYING, which
f71ca60f2a4a Import of initial code base.
cmlenz
parents:
diff changeset
7 # you should have received as part of this distribution. The terms
f71ca60f2a4a Import of initial code base.
cmlenz
parents:
diff changeset
8 # are also available at http://babel.edgewall.org/wiki/License.
f71ca60f2a4a Import of initial code base.
cmlenz
parents:
diff changeset
9 #
f71ca60f2a4a Import of initial code base.
cmlenz
parents:
diff changeset
10 # This software consists of voluntary contributions made by many
f71ca60f2a4a Import of initial code base.
cmlenz
parents:
diff changeset
11 # individuals. For the exact contribution history, see the revision
f71ca60f2a4a Import of initial code base.
cmlenz
parents:
diff changeset
12 # history and logs, available at http://babel.edgewall.org/log/.
f71ca60f2a4a Import of initial code base.
cmlenz
parents:
diff changeset
13
f71ca60f2a4a Import of initial code base.
cmlenz
parents:
diff changeset
14 """Integrated collection of utilities that assist in internationalizing and
f71ca60f2a4a Import of initial code base.
cmlenz
parents:
diff changeset
15 localizing applications.
f71ca60f2a4a Import of initial code base.
cmlenz
parents:
diff changeset
16
f71ca60f2a4a Import of initial code base.
cmlenz
parents:
diff changeset
17 This package is basically composed of two major parts:
f71ca60f2a4a Import of initial code base.
cmlenz
parents:
diff changeset
18
f71ca60f2a4a Import of initial code base.
cmlenz
parents:
diff changeset
19 * tools to build and work with ``gettext`` message catalogs
f71ca60f2a4a Import of initial code base.
cmlenz
parents:
diff changeset
20 * a Python interface to the CLDR (Common Locale Data Repository), providing
f71ca60f2a4a Import of initial code base.
cmlenz
parents:
diff changeset
21 access to various locale display names, localized number and date
f71ca60f2a4a Import of initial code base.
cmlenz
parents:
diff changeset
22 formatting, etc.
f71ca60f2a4a Import of initial code base.
cmlenz
parents:
diff changeset
23
f71ca60f2a4a Import of initial code base.
cmlenz
parents:
diff changeset
24 :see: http://www.gnu.org/software/gettext/
f71ca60f2a4a Import of initial code base.
cmlenz
parents:
diff changeset
25 :see: http://docs.python.org/lib/module-gettext.html
f71ca60f2a4a Import of initial code base.
cmlenz
parents:
diff changeset
26 :see: http://www.unicode.org/cldr/
f71ca60f2a4a Import of initial code base.
cmlenz
parents:
diff changeset
27 """
f71ca60f2a4a Import of initial code base.
cmlenz
parents:
diff changeset
28
4
0c01c3b6af7e Fixes for the extended translations class.
cmlenz
parents: 1
diff changeset
29 from babel.core import *
1
f71ca60f2a4a Import of initial code base.
cmlenz
parents:
diff changeset
30
f71ca60f2a4a Import of initial code base.
cmlenz
parents:
diff changeset
31 __docformat__ = 'restructuredtext en'
12
a2c54ef107c2 * Removed pkg_resources/setuptools requirement from various places.
cmlenz
parents: 4
diff changeset
32 try:
a2c54ef107c2 * Removed pkg_resources/setuptools requirement from various places.
cmlenz
parents: 4
diff changeset
33 __version__ = __import__('pkg_resources').get_distribution('Babel').version
a2c54ef107c2 * Removed pkg_resources/setuptools requirement from various places.
cmlenz
parents: 4
diff changeset
34 except ImportError:
a2c54ef107c2 * Removed pkg_resources/setuptools requirement from various places.
cmlenz
parents: 4
diff changeset
35 pass
Copyright (C) 2012-2017 Edgewall Software