Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 912977
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T17:28:34+00:00 2026-05-15T17:28:34+00:00

In a Django template, I need to transanlate some strings to a specific language

  • 0

In a Django template, I need to transanlate some strings to a specific language (different from current one).

I would need something like this:

{% tans_to "de" "my string to translate" %}
or
{% blocktrans_to "de" %}my bloc to translate {% endblocktrans_to %}

to force translation to German.

I know I can call the following code in a view:

gettext.translation('django', 'locale', ['de'], fallback=True).ugettext("my string to translate")

Do I need to create a specific template tag ? Or does it already exist a dedicated tag in Django ?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T17:28:34+00:00Added an answer on May 15, 2026 at 5:28 pm

    templatetags/trans_to.py:

    from django.utils import translation
    from django.utils.translation import ugettext
    from django.template import Library, Node,  Variable, TemplateSyntaxError
    register = Library()
    
    class TransNode(Node):
        def __init__(self, value, lc):
            self.value = Variable(value)
            self.lc = lc
    
        def render(self, context):        
            translation.activate(self.lc)
            val = ugettext(self.value.resolve(context))        
            translation.deactivate()        
            return val
    
    def trans_to(parser, token):
        try:
            tag_name, value, lc = token.split_contents()
        except ValueError:
            raise TemplateSyntaxError, "%r tag requires arguments" % token.contents.split()[0]
        if not (lc[0] == lc[-1] and lc[0] in ('"', "'")):
            raise TemplateSyntaxError, "%r locale should be in quotes" % tag_name 
        return TransNode(value, lc[1:-1])
    
    register.tag('trans_to', trans_to)
    

    html:

    {% load trans_to %}
    {# pass string #}   
    <p>{% trans_to "test" "de" %}</p>
    <p>{% trans "test" %}</p>
    {# pass variable #}
    {% with "test" as a_variable %}
    <p>{% trans_to a_variable "de" %}</p>
    <p>{% trans a_variable %}</p>       
    {% endwith %}
    

    result:

    <p>test in deutsch</p>
    <p>test</p>
    <p>test in deutsch</p>
    <p>test</p>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

From a Django template, I would like to include an html snippet from a
I need to perform a filtered query from within a django template, to get
I have some template code that looks like: <input type='submit' value='{{ need.satisfied|yesno:Resend this document
I currently have my Django custom template filter like this: from django import template
In my Django template I need to return the index of an item in
I need a link in django template which turns into logout if user is
i have a django template - one that is normally loaded via a standard
Im trying to render a django template from a database outside of djangos normal
I have a basic question, in the Django template language how can you tell
I got a little confusing situation here when I use the Context from django.template.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.