python - django some translations are not updated -
when change translations keeping previous value not new one.
first, have file
#: choices/__init__.py:14 msgid "power on" msgstr "encendido"
then, changed this
#: choices/__init__.py:14 msgid "power on" msgstr "dispositivo encendido"
i compile messages, translation not updated. happens translation not all. in development mode, not behind ningx. restart runserver.
what reason?
that because of app loading order. if app, defined later in installed_apps
defines different translation same literal.
Comments
Post a Comment