Skip to main content

Translate fields of django models without having to restart the server, without changing the model code.

Project description

GitHub issues GitHub stars GitHub Release Date GitHub commits since latest release GitHub last commit GitHub license Codacy Badge codecov

PyPI PyPI PyPI - Downloads

django-tof

Django models translation on fly 🛸️


This project was initiated, promoted and accompanied by winePad GmbH. All development based on ideas, experience and financing by winePad GmbH (winePad.at).


IMAGE ALT TEXT HERE

Russian readme


The background and objectives of this projects are described here

An Application for dynamic translation of existing Django models into any number of languages.

  • without need to change existing model classes
  • without need to reboot servers
  • without changing the use of translated fields
  • ready to work after install and indicated in INSTALLED_APPS
  • fully integrated in Django admin

Installation

pip install django-tof after version 0.3.0

python manage.py migrate tof

# settings.py
...
INSTALLED_APPS = [
...
'tof',
...
]

Don't forget to do if it necessary python manage.py collectstatic

How to use

  1. In the simplest use case django-tof allows you to store translation into the current language. You don't need special settings for this, just add this field into admin panel to the "Translatable fields" model. In this case if current language is 'en', then the value saved in the model will be displayed only if the current language is 'en'.
  2. If you need to support a certain number of languages and add them at the same time, you can use TofAdmin. Using the class CustomModelAdmin(TofAdmin) will cause the translated fields (added to the "Translatable fields") will be able to specify a specific language. At the same time, it is possible to leave some fields in the previous form by specify them in TofAdmin with attribute only_current_lang = ('description', ).
    Widget for translatable fields
  3. You can also use inline translation submission forms. To do this, specify admin class (always inherited from "TofAdmin") inlines = (TranslationTabularInline, ) or inlines = (TranslationStackedInline, )

Programmatic use

Like a standard using, but it is possible to get a specific translation.

from django.utils.translation import activate

activate('en')
book = Book.objects.first()
book.title  # => Title en
book.title.de  # => Title de

Settings

The value for these variables can be specified in your settings.py

DEFAULT_LANGUAGE: default "en" - Default language is stub, used if not other translations is found.

FALLBACK_LANGUAGES: default {SITE_ID: ('en', 'de', 'ru'), 'fr': ('nl', ),} - Determinate the order of search of languages for translation if the translation is in desired no language. The key can be SITE_ID, None or language.

The processing order is this, if a translation into current/requested language is not found, then first we checked by the language key, if there is, looking translations for requested languages, if not - we take the SIDE_ID key. For example:

  • if current language "fr", then searching order will be next: "fr" -> "nl" -> DEFAULT_LANGUAGE -> then if there is an original value that was before the declaration of this field like translatable.
  • if current language "en", then searching order will be next "en" -> "de" -> "ru" -> DEFAULT_LANGUAGE -> then if there is an original value that was before the declaration of this field like translatable.

DEFAULT_FILTER_LANGUAGE: default "current" - Indicates in which translations search/filter values. May be in the next forms __all__, current, ['en', 'de'], {'en', ('en', 'de', 'ru')}

  • current - if this value is assigned, the filtering is occurs only on the translation into the current language. This is a default value.
  • __all__ - if this value is assigned, the filtering is occurs for all translations.
  • ['en', 'de'] - if this value is assigned, the filtering is occurs according to translations of the specified languages.
  • {'en', ('en', 'de', 'ru')} - if this value is assigned, the filtering is occurs according to translations of languages received by the key of current language.

CHANGE_DEFAULT_MANAGER: default "True" - Changing the default manager of the model. If it True, then standard manager is transferred into class attribute "objects_origin", and "objects" becomes the standard manager inherited from standard with adding the functionality that recognized translated fields and takes into account settings from DEFAULT_FILTER_LANGUAGE.

Requirements

  • Python (>=3.6)
  • Django (>=2.2)

How to start development

  1. Fork this project
  2. Clone the repo
  3. Create new branch
  4. Change directory example_project
  5. You can use pyenv to select the version of python pyenv local 3.8.0
  6. We are using poetry
  7. Run: poetry env use python to use your python version.
  8. Run: poetry install to install all requirements.
  9. Run: poetry shell for activation virtual environment.
  10. Run: python manage.py runserver to start the development server.

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-tof-0.3.0.tar.gz (23.5 kB view hashes)

Uploaded Source

Built Distribution

django_tof-0.3.0-py3-none-any.whl (28.1 kB view hashes)

Uploaded Python 3

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