This translates a given message with ugettext. That's it.
{% load where_you_have_it %}
{% ugettext "German" %}
1 2 3 4 5 6 7 8 9 | from django.utils.translation import ugettext
from django import template
register = template.Library()
def do_ugettext(msg):
"""Returns the gettext translation of the given message"""
return ugettext(msg)
register.simple_tag('ugettext', do_ugettext)
|
More like this
- Template tag - list punctuation for a list of items by shapiromatron 10 months, 1 week ago
- JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 10 months, 2 weeks ago
- Serializer factory with Django Rest Framework by julio 1 year, 5 months ago
- Image compression before saving the new model / work with JPG, PNG by Schleidens 1 year, 6 months ago
- Help text hyperlinks by sa2812 1 year, 6 months ago
Comments
That might be a dumb question, but how is this different from using that standard {%trans "some message" %} ?
#
It's smaller, doesn't use a Node subclass and doesn't force me to load the whole i18n tag lib.
#
Please login first before commenting.