From 580c3ff30befbec6eff551e824ba0ee120945f69 Mon Sep 17 00:00:00 2001 From: Luigi Toscano Date: Sun, 7 Dec 2014 16:14:27 +0100 Subject: [PATCH] Ignore fuzzy messages when importing translations Fuzzy messages are de-facto untranslated messages. CCBUG: 341632 --- StaticMessages.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/StaticMessages.sh b/StaticMessages.sh index 6f6c3724..e88164cb 100644 --- a/StaticMessages.sh +++ b/StaticMessages.sh @@ -15,7 +15,7 @@ function export_pot_file # First parameter will be the path of the pot file we h function import_po_files # First parameter will be a path that will contain several .po files with the format LANG.po { podir=$1 - a2po import --android res/ --gettext $podir + a2po import --ignore-fuzzy --android res/ --gettext $podir }