pygettext:看到意外的标记“%”
我目前正在尝试在应用程序(Python 2.6)中实现国际化,并且遇到了涉及字符串格式的错误。 标记为可翻译的字符串如下所示:
foo = _("I would like to have %d磅奶酪" % amount)
在我的源代码树上运行 pygettext
然后在以下情况下抱怨它击中了这一行:
$ pygettext .
*** ./foobar.py:45: Seen unexpected token "%"
pygettext 完成工作后,生成的 messages.pot
文件不包含字符串。 使用 gettext 进行字符串格式化的方法是什么?
I am currently trying to implement internationalization in an application (Python 2.6) and have run into an error involving string formatting.
A string marked translatable looks like this:
foo = _("I would like to have %d pounds of cheese" % amount)
Running pygettext
on my source tree then complains when it hits this line:
$ pygettext .
*** ./foobar.py:45: Seen unexpected token "%"
The resulting messages.pot
file does not contain the string after pygettext has done its work.
What is the way to go for string formatting with gettext?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
翻译未替换的字符串。或者替换翻译后的字符串。
Translate the unreplaced string. Or replace on the translated string.