Closed GoogleCodeExporter closed 9 years ago
I tried v.1.3.3 from this thread:
http://forum.xda-developers.com/showthread.php?t=1063055
and it works!
The problem is that 1.4.2 (and 1.4.1) decompiles the wrong parameters in
/res/values/arrays.xml
the right string are:
<string-array name="alarm_set">
<item>This alarm is set for less than 1 minute from now.</item>
<item>This alarm is set for %1$s from now.</item>
<item>This alarm is set for %2$s from now.</item>
<item>This alarm is set for %1$s and %2$s from now.</item>
<item>This alarm is set for %3$s from now.</item>
<item>This alarm is set for %1$s and %3$s from now.</item>
<item>This alarm is set for %2$s and %3$s from now.</item>
<item>This alarm is set for %1$s, %2$s, and %3$s from now.</item>
</string-array>
wrong strings:
<string-array name="alarm_set">
<item>This alarm is set for less than 1 minute from now.</item>
<item>This alarm is set for %1$s from now.</item>
<item>This alarm is set for %2$s from now.</item>
<item>This alarm is set for %1$1$s and %2$2$s from now.</item>
<item>This alarm is set for %3$s from now.</item>
<item>This alarm is set for %1$1$s and %2$3$s from now.</item>
<item>This alarm is set for %1$2$s and %2$3$s from now.</item>
<item>This alarm is set for %1$1$s, %2$2$s, and %3$3$s from now.</item>
</string-array>
Original comment by mrja...@gmail.com
on 3 Oct 2011 at 4:32
can confirm this issue with sevral APKs.
this happens with values in arrays.xml and plurals.xml.
noticeable apks:
clockpackage.apk
mms.apk
Original comment by shauli.b...@gmail.com
on 18 Nov 2011 at 8:56
Original comment by Brut.alll
on 2 Dec 2011 at 2:40
Original issue reported on code.google.com by
mrja...@gmail.com
on 3 Oct 2011 at 2:50Attachments: