我知道如何在.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,用户注释就会消失。
是否缺少某些内容,或者无法保留用户评论?