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" ]

View File

@@ -18,7 +18,7 @@ public class RouterVersion {
/** deprecated */
public final static String ID = "Git";
public final static String VERSION = CoreVersion.VERSION;
public final static long BUILD = 7;
public final static long BUILD = 8;
/** for example "-test" */
public final static String EXTRA = "-rc";