我的Django APP存在问题。
我尝试使用javascript_catalogue在JS文件中翻译一个字符串。如果我在local / en / LC_MESSAGES / Djangojs.po
中给我的字符串赋值,我的字符串只能翻译成英文管理员用户可以使用Ajax更改WebApp语言,如下所示:
def language(request):
'''
'''
if not request.is_ajax(): #on verifi qu'on accede à la fonction par une requete ajax
return HttpResponse('Not an ajax request...')
if not request.method == 'GET':
return HttpResponse('Not a post ajax request...')#on verifie que le type de requete est valide
language_code = request.GET.get('langue')
settings.LANGUAGE_CODE = language_code
return HttpResponse()
Django发送这样的模板:
template = loader.get_template('my_template')
translation.activate(settings.LANGUAGE_CODE)
html = template.render()
return HttpResponse(html)
在urls.py中:
js_info_dict = {
'domain': 'djangojs',
'packages': ('IHMWEB',),
}
urlpatterns = [
url(r'^jsi18n/$', javascript_catalog, js_info_dict, name='javascript-catalog'),
url(r'^$', IHMWEB.views.login),
..
..
MyAPP.settings:
INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'IHMWEB'
]
LANGUAGE_CODE = 'fr'
gettext = lambda s: s
LANGUAGES = (
('en', gettext('English')),
('fr', gettext('French')),
('de', gettext('German')),
('it', gettext('Italian')),
('qa', gettext('Arabic')),
)
在我的模板中,我创建了一个标题为
的菜单 textnode = document.createElement('i');
textnode.setAttribute("class", "fa fa-plus");
title = gettext("Ajouter un module"); //"Ajouter un module" is french translation for "Add module"
textnode.setAttribute("title", title);
最后是Djangojs.po: 烯/ LC_MESSAGES / djangojs.po
#: frontend/src/MODS/index/js/index.js:70
msgid "Ajouter un module"
msgstr "Add new bundle"
FR / LC_MESSAGES / djangojs.po
#: frontend/src/MODS/index/js/index.js:70
msgid "Ajouter un module"
msgstr "Ajouter un module"
如果管理员选择法语,我的整个HTML都是用法语翻译的,但是我的js中的字符串是用英语翻译的。
如果管理员选择英语,我的整个HTML都是用英语翻译的,我的js中的字符串是用英语翻译的。
更新:我忘了提一下 template.html
<script type="text/javascript" src="{% url 'javascript-catalog' %}"></script>
答案 0 :(得分:1)
您可以采取的另一种方法是写出所有模板,并将字符串放在trans
和blocktrans
标记中,i18n
位于顶部。
这将使用您的字符串更新您的django.po并处理翻译。
您还可以使用get_language()
来获取用户当前语言。