##// END OF EJS Templates
i18n: prevent msgmerge fuzzy matching - it is too random
Mads Kiilerich -
r8776:36a36ebd tip stable
parent child Browse files
Show More
@@ -168,7 +168,7 b' def _normalize_po(raw_content):'
168
168
169 def _normalize_po_file(po_file, merge_pot_file=None, strip=False):
169 def _normalize_po_file(po_file, merge_pot_file=None, strip=False):
170 if merge_pot_file:
170 if merge_pot_file:
171 runcmd(['msgmerge', '--width=76', '--backup=none', '--previous',
171 runcmd(['msgmerge', '--width=76', '--backup=none', '--previous', '--no-fuzzy-matching',
172 '--update', po_file, '-q', merge_pot_file])
172 '--update', po_file, '-q', merge_pot_file])
173 if strip:
173 if strip:
174 po_tmp = po_file + '.tmp'
174 po_tmp = po_file + '.tmp'
General Comments 0
You need to be logged in to leave comments. Login now