Skip to main content

Translate Django model data using gettext

Project description

Vinaigrette translates Django model data – stored in the database – using GNU gettext and Django’s standard internationalization features.

Installing

Add 'vinaigrette' to INSTALLED_APPS in your settings.

Then, tell vinaigrette which fields you want to translate. In the appropriate models.py files:

import vinaigrette
vinaigrette.register(Ingredient, ['name', 'description'])

This tells vinaigrette to translate the name and description fields on Ingredient objects.

Using

After installing vinaigrette, the PO files generated by manage.py makemessages will include strings from the registered fields. If a particular string is translated, the model value will be the string translated into the appropriate language:

>>> from django.utils.translation import activate
>>> i = Ingredient(name=u'Lettuce')
>>> i.name
u'Lettuce'
>>> activate('fr')
>>> i.name
u'Laitue'

Et cetera

There are a couple of options to restrict which objects translation strings will be collected from. See the docstring for vinaigrette.register.

Vinaigrette adds a --keep-obsolete option to manage.py makemessages, which prevents gettext from deactivating translated messages no longer present in code or in registered database fields.

Vinaigrette is designed for database content that is:

  • always edited in the default language

  • edited by site administrators, not users

Only model instances are translated. Data accessed via the Django QuerySet values method will not be translated.

In general, when a field is accessed, it will always return the translated version, if one exists. However, if a value is set, the exact value entered (and not the translated version) should be saved to the database. For example:

>>> from django.utils.translation import activate
>>> i = Ingredient(name=u'Lettuce')
>>> activate('fr')
>>> i.name
u'Laitue'
>>> i.name = 'Cabbage'
>>> i.name
u'Chou'
>>> i.save()
>>> Ingredient.objects.get(name='Cabbage').name
u'Chou'

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

django-vinaigrette-0.1.3.tar.gz (5.5 kB view details)

Uploaded Source

File details

Details for the file django-vinaigrette-0.1.3.tar.gz.

File metadata

File hashes

Hashes for django-vinaigrette-0.1.3.tar.gz
Algorithm Hash digest
SHA256 79ed623a290c778f2e3b8714f58b37eb6916ffceb875f9d3efca8d6ce4d220ee
MD5 4265d2142747408ff1b2c30bf42d2271
BLAKE2b-256 44e73038a695ea6b1f4bbf2389c5aa4dc3a1553aa950f5852d326498873a6217

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page