使用python distutils将用户评论保存在.pot或.po文件中

时间:2018-10-18 07:52:53

标签: python babel

我知道如何在.pot / .po文件中添加自动注释,但是babel po文件读取器和写入器还支持用户注释。 read_po函数docstring的示例:

... # A user comment
... #. An auto comment
... #: main.py:3
... msgid "bar"
... msgid_plural "baz"
... msgstr[0] "bar"
... msgstr[1] "baaz"

我想使用用户注释,但是问题是,一旦我通过setup.py运行extract_messages / update_catalog,用户注释就会消失。

是否缺少某些内容,或者无法保留用户评论?

0 个答案:

没有答案