prymitive / bootstrap-breadcrumbs

Django template tags for easy breadcrumbs using twitter bootstrap css classes or custom template
django-bootstrap-breadcrumbs.readthedocs.org
MIT License
93 stars 48 forks source link

Labels translation not working #59

Open bgeneto opened 4 years ago

bgeneto commented 4 years ago

Only Django default words like 'home', 'user' are translated while using:

{% breadcrumb "Home" "/" %} {% breadcrumb "User" "users" %}

But any word not recognized (by default) by Django is not translated, for example:

{% breadcrumb "Your Account" "account" %} {% breadcrumb "Profile" "profile" %}

I'm loading i18n in the template and USE_I18N is set to True in settings.py but I cannot find any .po file containing the label text to be translated. If I use the trans tag in the very same template then the text appears correctly in the .po file after running makemassages.

Any ideias?