Login

ugettext tag

Author:
jezdez
Posted:
May 28, 2008
Language:
Python
Version:
.96
Score:
-1 (after 3 ratings)

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

  1. Template tag - list punctuation for a list of items by shapiromatron 3 months, 1 week ago
  2. JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 3 months, 2 weeks ago
  3. Serializer factory with Django Rest Framework by julio 10 months, 2 weeks ago
  4. Image compression before saving the new model / work with JPG, PNG by Schleidens 11 months ago
  5. Help text hyperlinks by sa2812 12 months ago

Comments

gehel (on May 29, 2008):

That might be a dumb question, but how is this different from using that standard {%trans "some message" %} ?

#

jezdez (on June 2, 2008):

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.