Hi,
looking for a while with i18n problem in django:
this work fine :
{% trans cat.name %}
cat.name will be translated
but this doesn't work:
{% blocktrans with cat.name|slugify as cat_slug %}{{ cat_slug }}{% endblocktrans %}
cat.name is not translated
if I change the filter :
{% blocktrans with cat.name|capfirst as cat_slug %}{{ cat_slug }}{% endblocktrans %}
I can see that the filter is working, but there is no tranlation...
anyone can help ?
tkx