提问人:K.KLAI 提问时间:11/8/2023 最后编辑:Peter MortensenK.KLAI 更新时间:11/14/2023 访问量:63
有没有办法将 Python 变量字符串传递到 gettext 函数 _()?
Is there a way to pass a Python variable string into gettext function _()?
问:
有没有办法将变量字符串传递到 gettext 函数中?_()
喜欢:
my_str = 'Hello, World!'
print(_(my_str ))
当我运行 pygettext 时,这不起作用。 我该如何解决?
my_str = 'Hello, World!'
print(_(my_str ))
我希望在 .po 文件中作为 pygettext 的输出
.
.
.
msgid "Hello, World!"
msgstr ""
.
.
.
答: 暂无答案
评论
mystr
莫。m_str
gettext
应该使用字符串变量,但你不能指望程序这样做,因为它只是分析你的源代码而不运行它。pygettext.py
_()