# HG changeset patch # User Mads Kiilerich # Date 1670880290 -3600 # Node ID 0c9c91ac38732d3837cba4a44aa163c78846b47f # Parent e19ca5912d57792873c68dc1382a7551f24542a0 i18n: prevent msgmerge fuzzy matching - it is too random diff -r e19ca5912d57 -r 0c9c91ac3873 scripts/i18n_utils.py --- a/scripts/i18n_utils.py Wed Aug 10 21:23:26 2022 +0200 +++ b/scripts/i18n_utils.py Mon Dec 12 22:24:50 2022 +0100 @@ -168,7 +168,7 @@ def _normalize_po_file(po_file, merge_pot_file=None, strip=False): if merge_pot_file: - runcmd(['msgmerge', '--width=76', '--backup=none', '--previous', + runcmd(['msgmerge', '--width=76', '--backup=none', '--previous', '--no-fuzzy-matching', '--update', po_file, '-q', merge_pot_file]) if strip: po_tmp = po_file + '.tmp'