Improved and complement gettext support for javascript for Django
Project description
It is an improvement to the implementation of django gettext for javascrtipt.
Features:
Now parse javascript teplates for translatable strings (tested with underscore.template)
New I18n view more extensible (build on top of CBV) that exposes the djangojs gettext domain and djsgettext domain generated for translation scrings from js templates. Aditionaly the performance is improved with caching of this view (does not supports by django view as default behavior).
How it works?
Django makemesages command generates a djangojs domain po file from *.js files, django-jsgettext generates a djgettext domain po file from .html files (javascript templates) and the new view exposes the two gettext domains to the javascript.
Currently, only is tested with underscore templates. Example:
<div><%= gettext('sample message') %></div>
<div><%= ngettext('1 message', 'some messages', num) %></div>
<div><%= interpolate(gettext('sample %s'), [1]) %></div>
How use it?
Urls files:
from djsgettext.views import I18n
urlpatterns = patterns('',
url(r'^js-gettext/$', I18n.as_view()),
)
Collect messages from templates:
python manage.py jsgettext_makemessages
Project details
Release history Release notifications | RSS feed
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-jsgettext-0.5.tar.gz
.
File metadata
- Download URL: django-jsgettext-0.5.tar.gz
- Upload date:
- Size: 5.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c834735a722d310c90320751d1a5f1cb8ed938f6e52c422a0522b07da985433e |
|
MD5 | 5ab619ebc29090cfc73df648a8570a3c |
|
BLAKE2b-256 | 1a9e08614cfd3e1c05444b7ae7901af79cd55c51db84855ace09172ce4264d07 |