You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This package contains various utilities for integration of Babel into the
5
4
Django web framework:
@@ -8,6 +7,254 @@ Django web framework:
8
7
* A middleware class that adds the Babel `Locale` object to requests.
9
8
* A set of template tags for date and number formatting.
10
9
11
-
For more information please visit the wiki page for this package:
12
10
13
-
<http://babel.edgewall.org/wiki/BabelDjango>
11
+
## Extracting Messages
12
+
13
+
Babel provides a message extraction framework similar to GNU `xgettext`, but more extensible and geared towards Python applications. While Django does provide [http://www.djangoproject.com/documentation/i18n/#how-to-create-language-files wrapper scripts] for making the use of `xgettext` more convenient, the extraction functionality is rather limited. For example, you can't use template files with an extension other than `.html`, and everything needs to be in your project package directory.
14
+
15
+
### Extraction Method Mapping
16
+
17
+
So !BabelDjango comes with an extraction method plugin that can extract localizable messages from Django template files. Python is supported out of the box by Babel. To use this extraction functionality, create a file called `babel.cfg` in your project directory (the directory above your project package), with the content:
18
+
19
+
```ini
20
+
[django: templates/**.*, mypkg/*/templates/**.*]
21
+
[python: mypkg/**.py]
22
+
```
23
+
24
+
This instructs Babel to look for any files in the top-level `templates` directory, or any files in application `templates` directories, and use the extraction method named “django” to extract messages from those template files. You'll need to adjust those glob patterns to wherever you my be storing your templates.
25
+
26
+
Also, any files with the extension `.py` inside your package directory (replace “mypkg” with the actual name of your Django project package) are processed by the “python” extraction method.
27
+
28
+
If you don't use setuptools, or for some reason haven't installed !BabelDjango using setuptools/easy_install, you'll need to define what function the extraction method “django” maps to. This is done in an extra section at the top of the configuration file:
29
+
30
+
```ini
31
+
[extractors]
32
+
django = babeldjango.extract:extract_django
33
+
```
34
+
35
+
### Running the Extraction Process
36
+
37
+
Once you've set up the configuration file, the actual extraction is performed by executing the command-line program `pybabel` which is installed alongside the Babel package:
This should create two files: `mypkg/locale/en_US/django.po` and `mypkg/locale/de_DE/django.po`. These files are where you put the actual translations.
56
+
57
+
When you modify your Python source files or your templates, you genereally need to sync the translation catalogs. For that, you first perform a fresh extraction as described in the previous section, so that the `django.pot` file gets updated.
58
+
59
+
Then, you run the `pybabel update` command to merge the changes into the translation catalogs:
Much of the above process can be automated if you add a `setup.py` script to your project and use the distutils/setuptools commands that come with Babel. This is described at [wiki:Documentation/setup.html Distutils/Setuptools Integration].
84
+
85
+
## Using the Middleware
86
+
87
+
To use the Babel middleware, add it to the list of `MIDDLEWARE_CLASSES` in your settings module. If you're also using Django's own `LocaleMiddleware` to vary the locale based on user preference, the Babel middleware must be inserted after the Django one:
88
+
89
+
```python
90
+
MIDDLEWARE_CLASSES= (
91
+
...
92
+
'django.middleware.locale.LocaleMiddleware',
93
+
'babeldjango.middleware.LocaleMiddleware',
94
+
...
95
+
)
96
+
```
97
+
98
+
This adds a `locale` attribute to the request object, which is an instance of the Babel `Locale` class. You can access the locale via `request.locale` when the request object is available, or otherwise use the `babeldjango.middleware.get_current_locale()` function to get the current locale from a thread-local cache.
99
+
100
+
## Using the Template Tags
101
+
102
+
The template filters provided by !BabelDjango allow formatting of date/time and number values in a locale-sensitive manner, providing much more powerful alternatives to the `date`, `time`, and `floatformat` filters that come with Django.
103
+
104
+
To make the template filters/tags available, you need to add !BabelDjango to the list of `INSTALLED_APPS` in your settings module:
105
+
106
+
```python
107
+
INSTALLED_APPS= (
108
+
...
109
+
'babeldjango',
110
+
...
111
+
)
112
+
```
113
+
114
+
And in every template you want to use the filters, you need to explicitly load the !BabelDjango library:
115
+
116
+
```jinja
117
+
{% load babel %}
118
+
```
119
+
120
+
General information on date/time and number formatting can be found at [wiki:Documentation/dates.html Date Formatting] and [wiki:Documentation/numbers.html Number Formatting].
121
+
122
+
The following filters are made available. The examples assume a locale of `en_US`.
123
+
124
+
### `datefmt`
125
+
126
+
Renders a string representation of a date.
127
+
128
+
*__Input__: `datetime.date`, `datetime.datetime`, or a float/int timestamp
129
+
*__Parameters__: the format name or pattern (optional)
130
+
131
+
Assuming that `book.pubdate` returns a `datetime.date` or `datetime.datetime` object:
132
+
133
+
```jinja
134
+
{{ book.pubdate|datefmt:"short" }}
135
+
```
136
+
137
+
would render: **4/1/07**, and
138
+
139
+
```jinja
140
+
{{ book.pubdate|datefmt:"E, MMM dd yyyy GGG" }}
141
+
```
142
+
143
+
would render: **Sun, Apr 01 2007 AD**
144
+
145
+
### `datetimefmt`
146
+
147
+
Renders a string representation of a date and time.
148
+
149
+
*__Input__: `datetime.datetime`, or a float/int timestamp
150
+
*__Parameters__: the format name or pattern (optional)
0 commit comments