summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoremkael <emkael@tlen.pl>2016-06-10 16:15:45 +0200
committeremkael <emkael@tlen.pl>2016-06-10 16:15:45 +0200
commit35e9e7202f0f56ad3acfc9fc1547aec9c445dacd (patch)
tree98b4b680d29e22e6169ddb851d31fee34b7c4491
parente98c34018893d7edae69e5978c58d7bcac505b22 (diff)
* disable fuzzy gettext matching
-rwxr-xr-xbin/prado-locales-build2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/prado-locales-build b/bin/prado-locales-build
index 10f8178..992a6e2 100755
--- a/bin/prado-locales-build
+++ b/bin/prado-locales-build
@@ -22,7 +22,7 @@ find app/frontend/i18n -mindepth 1 -type d | while read LANGDIR; do
if [ ! -f $MOFILE ]; then
msginit -i $POTFILE -l $LANG_CODE -o $POFILE
fi
- msgmerge $POFILE $POTFILE -o $POFILE
+ msgmerge -N $POFILE $POTFILE -o $POFILE
msgfmt $POFILE -o $MOFILE
chown www-data:www-data $POFILE $MOFILE
chmod 777 $POFILE $MOFILE