开发者

How to change language from Django URL?

开发者 https://www.devze.com 2023-01-03 10:21 出处:网络
I want to change the language when the user introduce in the url the locale, something like this http://example.com/es/, http://example.com/es/article-name, http://exam开发者_Go百科ple.com/en/.

I want to change the language when the user introduce in the url the locale, something like this http://example.com/es/, http://example.com/es/article-name, http://exam开发者_Go百科ple.com/en/.

how can I do that?


Checkout django-locale-url.

It provides a middleware that does exactly what you are asking for, so you don't need to check for the language in urls.py


A number of ways to do this that come to mind. Arguably the most "standards compliant" way would be to use the HTTP Accept-Language header, which is available to views as request.META['HTTP_ACCEPT_LANGUAGE'] to determine the language in which the user prefers to receive resources and simply return a translated HttpResponse in the appropriate language.

Another common way, more along the lines of what you are describing, is to ask the user to select a language on their first arrival and store the selection in the session. Once the user makes a choice, redirect the browser to the appropriate language subdirectory and use relative links in your views so as not to have to worry about crossing languages. You can adjust your URLconf to pass a language keyword to your view like so:

urlpatterns = patterns('',
    (r'^(?P<lang>[a-zA-Z]{2})/ ...

There is an Internationalization/Localization page on the Django documentation site about i18n that might help you get started.


Nowadays the best way is using the built-in language prefix in url patterns: https://docs.djangoproject.com/en/1.8/topics/i18n/translation/#language-prefix-in-url-patterns

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号