mom1 / django-tof

Django models translation on fly
MIT License
28 stars 10 forks source link

settings FALLBACK LANGUAGES #15

Closed mom1 closed 4 years ago

mom1 commented 4 years ago

If there is no translation into the current language, return the translation in accordance with the settings


При отсутствии перевода на текущий язык вернуть перевод в соответствии настройки FALLBACK_LANGUAGES

    FALLBACK_LANGUAGES = {
      None: ('en', 'de', 'fr'),  # for common site
      2: ('de', 'da', 'en'),  # for site Germany
      'fr': ('nl', 'en', de)  # for current language France
    }