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

  • Home
  • SEARCH
  • 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 930131
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T20:17:12+00:00 2026-05-15T20:17:12+00:00

What is the best way to support multilanguage URLs in Django? Like: http://myenglishwebsite.com/user/foo http://mygermanwebsite.com/benutzer/foo

  • 0

What is the best way to support multilanguage URLs in Django? Like:

http://myenglishwebsite.com/user/foo
http://mygermanwebsite.com/benutzer/foo

Should I use multilang in urls.py like:

(r'^%s/(?P<slug>[-w]+)/$' % _('user'), 'myapp.view.relatedaction')

It doesn’t seem like a good solution and I couldn’t make it work :))

  • 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-15T20:17:12+00:00Added an answer on May 15, 2026 at 8:17 pm

    This solution doesn’t work because urls.py file is loading once in Django server before first user actually can make any request, so it must be user-independent file (any module level code should be user-independent, because it is loading only once).

    My guess is that Django url resolver makes str() casting somewhere in the middle of the request, so you can use some decorator class:

    (URLLangDecorator(r'^%s/(?P<slug>[-w]+)/$', ['user']), 'myapp.view.relatedaction')
    class URLLangDecorator:
        def __init__(self, url, params):
            self.url, self.params = url, params
    
        def __str__(self):
            return self.url % map(_, self.params)
        # Django can also preform "%" operation, so to be safe:
        def __mod__(self, arg):
            return str(self) % arg
    

    This is guess, so I’m not sure if it will work.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

what's the best way to add multilanguage support to a C++ program? If possible,
I am wondering what is the best way to support audio/video chat on a
What is the best way to support multiple languages for the interface in an
What is the best way to give support nth-child in one shot to all
What is the best way to make my C#/WPF application support different languages? I
What is the best way to implement multi-language support in the Zend Framework? I
I came across this code http://support.microsoft.com/kb/320348 which made me wonder what would be the
Qt has built-in PDF export support ( QPrinter::PdfFormat ). What's the best way to
What's the best way to design such a container, which can support randomized value
Is there support for Java Swing to use 2 way binding like WPF? If

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.