From e936cdc6c3bc9271485ec6fc765d7bdaa22b8cd8 Mon Sep 17 00:00:00 2001 From: Samuel Thibault Date: Wed, 25 May 2016 21:25:41 +0000 Subject: Make create_xml use original english text for fuzzy entries. --- scripts/create_xml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) (limited to 'scripts') diff --git a/scripts/create_xml b/scripts/create_xml index 5a4ce3721..dda6705c2 100755 --- a/scripts/create_xml +++ b/scripts/create_xml @@ -59,7 +59,19 @@ for ORIGXML in `find $SOURCEDIR -name "*.xml"` ; do echo "Error: error $RC while executing msgconv" continue fi - po2xml $ORIGXML /tmp/tmp.po.$$ > $XML + msgattrib \ + --translated \ + --no-fuzzy \ + --output-file="/tmp/tmp.po2.$$" \ + "/tmp/tmp.po.$$" \ + ; + RC=$? + if [ $RC -ne 0 ] ; then + RET=$RC + echo "Error: error $RC while executing msgattrib" + continue + fi + po2xml $ORIGXML /tmp/tmp.po2.$$ > $XML RC=$? if [ $RC -ne 0 ] ; then RET=$RC -- cgit v1.2.3