# HG changeset patch # User Mads Kiilerich # Date 1670880290 -3600 # Node ID 36a36ebdf4bbc4da77c41cabdbdf4a688e8fbeea # Parent a900f8dc9308b4c797dc14ffa2e1288d61634bf0 i18n: prevent msgmerge fuzzy matching - it is too random diff -r a900f8dc9308 -r 36a36ebdf4bb scripts/i18n_utils.py --- a/scripts/i18n_utils.py Tue Dec 13 08:13:07 2022 +0100 +++ 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'