internationalization - Django I18n Translation of The whole document -
when start translating django application.
{% trans 'profilbild'%}
all other trans blocks with umlaut not translated. solution ?
regards
that's not how works, i18n
tag translates string or variable, takes one argument. did read documentation?
you want blocktrans
update (the op changed question):
- did run
makemessages -l <desired_lang>
successfully - did run
compilemessages
successfully - did restart django process after these steps?
Comments
Post a Comment