From: Jo-Philipp Wich Date: Tue, 19 May 2009 17:32:27 +0000 (+0000) Subject: build/i18n-update.pl: disable fuzzy maching for po updates, does not work well with... X-Git-Tag: 0.9.0~409 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=bcbaad34e1e9ab77f18786179a8a8124b327bb47;p=oweals%2Fluci.git build/i18n-update.pl: disable fuzzy maching for po updates, does not work well with our key format --- diff --git a/build/i18n-update.pl b/build/i18n-update.pl index c41b039b7..0dd213a53 100755 --- a/build/i18n-update.pl +++ b/build/i18n-update.pl @@ -14,7 +14,7 @@ if( open F, "find $source -type f -name '$pattern' |" ) if( -f "$source/templates/$basename.pot" ) { printf "Updating %-40s", $file; - system("msgmerge", "-U", $file, "$source/templates/$basename.pot"); + system("msgmerge", "-U", "-N", $file, "$source/templates/$basename.pot"); } }