# HG changeset patch # User Mads Kiilerich # Date 2022-12-12 21:24:50 # Node ID 36a36ebdf4bbc4da77c41cabdbdf4a688e8fbeea # Parent a900f8dc9308b4c797dc14ffa2e1288d61634bf0 i18n: prevent msgmerge fuzzy matching - it is too random diff --git a/scripts/i18n_utils.py b/scripts/i18n_utils.py --- a/scripts/i18n_utils.py +++ b/scripts/i18n_utils.py @@ -168,7 +168,7 @@ def _normalize_po(raw_content): 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'