fix RO translation's formats, based on lint warning

Inconsistent formatting types for argument #1 in format string
searchres_napps ('%s'): Found both 'd' and 's' (in values/strings.xml)

This lint check ensures the following: (1) If there are multiple
translations of the format string, then all translations use the same type
for the same numbered arguments (2) The usage of the format string in Java
consistent with the format string, meaning that the parameter types passed
to String.format matches those in the format string.

<string name="searchres_napps">Sa gasit o aplicatie potrivita cu %s\'</string>
  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
This commit is contained in:
Hans-Christoph Steiner 2014-02-14 23:17:48 -05:00
parent 739ecfdea3
commit 3a1b814603

View File

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="searchres_napps">Sa gasit o aplicatie potrivita cu %s\'</string>
<string name="searchres_oneapp">Sa gasit o aplicatie potrivita cu %s\'</string>
<string name="searchres_noapps">Nu exita aplicatii potrivite cu %s\':</string>
<string name="searchres_napps">Sa gasit %1$d aplicații potrivita cu \'%2$s\'</string>
<string name="searchres_oneapp">Sa gasit o aplicatie potrivita cu \'%s\'</string>
<string name="searchres_noapps">Nu exita aplicatii potrivite cu \'%s\':</string>
<string name="version">Versiune</string>
<string name="cache_downloaded">Istoric aplicatii descarcate</string>
<string name="updates">Noutati</string>