Removing all fuzzy entries of a PO file

2019-03-26 03:34发布

Does anyone know a method to mass delete all fuzzy translations from a PO file. Something like:

if #, fuzzy == TRUE Then SET msgstr="" AND REMOVE #, fuzzy

3条回答
欢心
2楼-- · 2019-03-26 04:04

You can remove fuzzy strings with polib, which is THE library in Python for working with gettext po files:

import os, polib
for dirname, dirnames, filenames in os.walk('/path/to/your/project/'):
    for filename in filenames:
        try: ext = filename.rsplit('.', 1)[1]
        except: ext = ''
        if ext == 'po':
            po = polib.pofile(os.path.join(dirname, filename))
            for entry in po.fuzzy_entries():
                entry.msgstr = ''
                if entry.msgid_plural: entry.msgstr_plural['0'] = ''
                if entry.msgid_plural and '1' in entry.msgstr_plural: entry.msgstr_plural['1'] = ''
                if entry.msgid_plural and '2' in entry.msgstr_plural: entry.msgstr_plural['2'] = ''
                entry.flags.remove('fuzzy')
            po.save()

This script removes the fuzzy translation strings + fuzzy flags, but keeps the untranslated original msgids intact. Some languages (ru, cz, ...) have more than two plural forms, therefore, we check on msgstr_plural['2']. The list index has to be a string. Don't use integers for that.

查看更多
Ridiculous、
3楼-- · 2019-03-26 04:11

If gettext is installed you can use the msgattrib command to accomplish this:

msgattrib --clear-fuzzy --empty -o /path/to/output.po /path/to/input.po

The full documentation for msgattrib is here:

https://www.gnu.org/software/gettext/manual/html_node/msgattrib-Invocation.html

查看更多
你好瞎i
4楼-- · 2019-03-26 04:24

If you have GNU gettext installed then you can use this command to remove fuzzy messages:

msgattrib --no-fuzzy -o path/to/your/output/po/file path/to/your/input/po/file

查看更多
登录 后发表回答