mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-19 00:15:30 +00:00
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:
parent
b55a70acb8
commit
5dae3780a4
@ -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 \
|
||||
|
Loading…
x
Reference in New Issue
Block a user