Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
每次我向 Django 项目添加一些字符串时,我都会运行“django-admin.py makemessages -all”来为所有语言环境生成 .PO 文件。
问题是即使我只添加了 5 个新闻字符串,makemessages 命令也会在 .PO 文件中将 50 个字符串标记为模糊,这为我们的语言环境维护人员带来了很多额外的工作。
这也使得整个 i18n 在他们手动修改那些模糊字符串之前无法使用。
消除模糊正是我正在做的......看看这个。
http://code.djangoproject.com/ticket/10852
听起来我们需要额外的 sh 脚本来自动删除 po 中的所有模糊。