Extra gettext keywords handling in Django
Project description
© 2014-2015 Thomas Khyn
Tested with Django 1.4 to 1.8 and all supported versions of Python.
About
The django makemessage management command parses the code of an application to generate .pot and .po files, provided the strings to be translated are called by the gettext-like functions (gettext, ugettext, ngettext, ugettext_lazy, etc.) or the _ alias.
However, it is quite common to use other aliases than _, for example for lazy translation, where _l can be used.
Before version 1.7, Django does not provide a way to specify other aliases that may be used for translation strings. This plugin fills this gap, without having to patch the django code itself.
From version 1.7, it is possible to use the xgettext_options in a custom makemessages command. Using this app saves you the hassle of programming a custom command.
Installation
As straightforward as it can be, using pip:
pip install django-extra_keywords
Then you will need to add 'extra_keywords' to your INSTALLED_APPS. Note that it does not make any sense to have this application installed in production and that it may only used in a development settings module.
Usage
Once installed, you can:
either define GETTEXT_EXTRA_KEYWORDS in your settings module as a tuple or list containing the keywords you would like to add:
GETTEXT_EXTRA_KEYWORDS = ('_l', '_n:1,2')
or use it from the command line, using the --extra-keyword option (with no s, to add several keywords you have to repeat the option):
manage.py makemessages [...] --extra-keyword=_l [...]
Keyword format
When using aliases for one-argument functions (ugettext, ugettext_lazy …), simply use the alias as a keyword. When using aliases for several arguments functions, you need to specify them, according to the following table:
Function type |
Keyword format |
---|---|
gettext* |
X |
ngettext* |
X:1,2 |
pgettext* |
X:1c,2 |
npgettext* |
X:1c,2,3 |
Example: if _n is an alias for ungettext, the keyword to use in GETTEXT_EXTRA_KEYWORDS or the makemessages command is '_n:1,2'.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-extra_keywords-1.1.2.zip
.
File metadata
- Download URL: django-extra_keywords-1.1.2.zip
- Upload date:
- Size: 11.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9ff99ee6118de1a79e20dba3c8f04f32dbbb5e13ac45d85b64051e5d557b316a |
|
MD5 | 1c1784861f8a3e1711e0339b086d33b2 |
|
BLAKE2b-256 | e078aa87a2c1baa5355a65bab311ce609045e9c148bf82bd6421c296ea8f7029 |