i18n 与 webpy

发布于 2024-09-04 23:30:04 字数 1152 浏览 4 评论 0原文

我使用 webpy 时遇到 i18n 问题。

我已经遵循了: http://webpy.org/cookbook/i18n_support_in_template_file

所以,在我的 .wsgi 中有:

#i18n
gettext.install('messages',I18N_PATH,unicode=True)
gettext.translation('messages',I18N_PATH,languages=['fr_FR','en_US']).install(True)

所以我跑了:

pygettext.py -a -v -d messages -o i18n/messages.po controllers/*.py views/*.html 

我已经复制并翻译了 messages.po,我还更改了“内容类型”和“内容传输编码”:

"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: UTF-8\n"

我运行了这个命令:

msgfmt -v -o i18n/fr_FR/LC_MESSAGES/messages.mo i18n/fr_FR/LC_MESSAGES/messages.po
>>>93 messages traduits.

这是 i18n 文件夹的树状结构:

i18n/:
en_US  fr_FR  messages.po

i18n/en_US:
LC_MESSAGES

i18n/en_US/LC_MESSAGES:
messages.mo  messages.po

i18n/fr_FR:
LC_MESSAGES

i18n/fr_FR/LC_MESSAGES:
messages.mo  messages.po

但是当我进入我的网站时(我的浏览器的语言是“fr_fr”),我没有翻译该字符串,

我不知道为什么。 有人有主意吗?

谢谢

i Have a problem with i18n, using webpy.

I have followed this : http://webpy.org/cookbook/i18n_support_in_template_file

So, in my .wsgi there is :

#i18n
gettext.install('messages',I18N_PATH,unicode=True)
gettext.translation('messages',I18N_PATH,languages=['fr_FR','en_US']).install(True)

So i ran :

pygettext.py -a -v -d messages -o i18n/messages.po controllers/*.py views/*.html 

I have copied and translated messages.po, I have also change the "content-type" and the "content-transfer-encoding:

"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: UTF-8\n"

And i ran this command:

msgfmt -v -o i18n/fr_FR/LC_MESSAGES/messages.mo i18n/fr_FR/LC_MESSAGES/messages.po
>>>93 messages traduits.

here is the arborescence of i18n folder:

i18n/:
en_US  fr_FR  messages.po

i18n/en_US:
LC_MESSAGES

i18n/en_US/LC_MESSAGES:
messages.mo  messages.po

i18n/fr_FR:
LC_MESSAGES

i18n/fr_FR/LC_MESSAGES:
messages.mo  messages.po

But when i go in my website (my browser's language is "fr_fr"), i haven't the string translated.

And I don't know why.
Anyone has an idea?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

笑脸一如从前 2024-09-11 23:30:04

web.py 文档在此处进行了解释。

http://webpy.org/cookbook/runtime-language-switch

web.py documentation explains it in here.

http://webpy.org/cookbook/runtime-language-switch

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文