diff options
author | Samuel Thibault <sthibault@debian.org> | 2016-05-25 21:25:41 +0000 |
---|---|---|
committer | Samuel Thibault <sthibault@debian.org> | 2016-05-25 21:25:41 +0000 |
commit | e936cdc6c3bc9271485ec6fc765d7bdaa22b8cd8 (patch) | |
tree | 18d5f0f230f2175d200e0b18deacac01e7f14a91 | |
parent | f7f0cd8c19cec2c44cfe1c392ea7706b569638f6 (diff) | |
download | installation-guide-e936cdc6c3bc9271485ec6fc765d7bdaa22b8cd8.zip |
Make create_xml use original english text for fuzzy entries.
-rw-r--r-- | debian/changelog | 4 | ||||
-rwxr-xr-x | scripts/create_xml | 14 |
2 files changed, 17 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 04d18965f..acec8829f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -10,6 +10,10 @@ installation-guide (20160408) UNRELEASED unstable; urgency=medium * Improve package description of MIPS and PowerPC manuals. Thanks Mathieu Malaterre. + [ Ryuunosuke Ayanokouzi ] + * Make create_xml use original english text for fuzzy entries. Closes: + #825270. + installation-guide (20160121) unstable; urgency=medium [ Martin Michlmayr ] 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 |