Build: Fix the tagged string with '75%'

which causes gettext to add a java-printf-format directive,
then the testscript fails if the translated
string doesn't have a '%' in it; strip out the directive
Bump for review
This commit is contained in:
zzz
2021-11-26 11:13:41 -05:00
parent ee68aec647
commit ef1e2b02de
2 changed files with 6 additions and 4 deletions

View File

@@ -115,9 +115,11 @@ do
RC=1
break
fi
rm -f ${i}t
# so we don't do this again
touch $i
# the string with '75%' causes it to add a java-printf-format directive,
# and then the testscript fails if the translated
# string doesn't have a '%' in it; strip out the directive
grep -v java-printf-format $i > ${i}t
mv ${i}t ${i}
fi
if [ "$LG" != "en" ]