build/i18n-update.pl: disable fuzzy maching for po updates, does not work well with our key format

This commit is contained in:
Jo-Philipp Wich 2009-05-19 17:32:27 +00:00
parent 4d7042045a
commit bcbaad34e1

View file

@ -14,7 +14,7 @@ if( open F, "find $source -type f -name '$pattern' |" )
if( -f "$source/templates/$basename.pot" ) if( -f "$source/templates/$basename.pot" )
{ {
printf "Updating %-40s", $file; printf "Updating %-40s", $file;
system("msgmerge", "-U", $file, "$source/templates/$basename.pot"); system("msgmerge", "-U", "-N", $file, "$source/templates/$basename.pot");
} }
} }