polib似乎是在 Python 中处理 gettext/po 文件的首选库。文档展示了如何遍历消息字符串、保存 po 和 mo 文件等。但是,我不清楚,如何编辑特定条目?
比方说,我遍历现有 po 文件中的所有消息,并以带有 textareas 的 HTML 表单显示它们。通过提交表单,我得到 - 例如 - 原始 msgid = "Hello World" 和 via textarea 翻译的 msgstr = "Hallo Welt"
po 文件中的原始部分可能如下所示:
#: .\accounts\forms.py:26 .\accounts\registration\forms.py:48
msgid "Hello World"
msgstr ""
或设置模糊标志:
#: .\accounts\forms.py:26 .\accounts\registration\forms.py:48
#, fuzzy
msgid "Hello World"
msgstr "Hallo"
现在我如何在实际的 po 文件中更新这个特定的翻译?如果这条消息被标记为“模糊”,我该如何删除这个标志?
任何帮助表示赞赏...