summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2009-05-19 17:32:27 +0000
committerJo-Philipp Wich <jow@openwrt.org>2009-05-19 17:32:27 +0000
commitbcbaad34e1e9ab77f18786179a8a8124b327bb47 (patch)
tree5328a9030ad92c8ea7f63be09baa21f7b7f1c77b
parent4d7042045a5df17ca8bc1f2c42b31a0e945ad60c (diff)
build/i18n-update.pl: disable fuzzy maching for po updates, does not work well with our key format
-rwxr-xr-xbuild/i18n-update.pl2
1 files changed, 1 insertions, 1 deletions
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");
}
}