i18n: Do not use fuzzy matching when updating po files.

When updating the template pot file from source code and then
merging it with existing translations po file, it was trying to translate
automatically new string using a fuzzy matching. I have never seen
it work, so I am disabling the option. I prefer to have an untranslated
string rather than a wrongly translated string. And after discussing
with another translator it seems I am not the only one.

svn-id: r52233
This commit is contained in:
Thierry Crozat 2010-08-20 17:14:46 +00:00
parent b55a70acb8
commit 5dae3780a4

View File

@ -25,7 +25,7 @@ updatepot:
fi;
%.po: $(POTFILE)
msgmerge $@ $(POTFILE) -o $@.new
msgmerge -N $@ $(POTFILE) -o $@.new
if cmp $@ $@.new >/dev/null 2>&1; then \
rm -f $@.new; \
else \