diff options
author | Thierry Crozat | 2010-08-20 17:14:46 +0000 |
---|---|---|
committer | Thierry Crozat | 2010-08-20 17:14:46 +0000 |
commit | 5dae3780a4640231a77ecbf524f57a3888e5d752 (patch) | |
tree | 317ecfde68975b36561645d5ed23005ffeba9390 /po | |
parent | b55a70acb88a7375ac21351450ea99ed2f72d820 (diff) | |
download | scummvm-rg350-5dae3780a4640231a77ecbf524f57a3888e5d752.tar.gz scummvm-rg350-5dae3780a4640231a77ecbf524f57a3888e5d752.tar.bz2 scummvm-rg350-5dae3780a4640231a77ecbf524f57a3888e5d752.zip |
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
Diffstat (limited to 'po')
-rw-r--r-- | po/module.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/po/module.mk b/po/module.mk index b2e4ef0c9e..26e709903f 100644 --- a/po/module.mk +++ b/po/module.mk @@ -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 \ |