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 committed by Daniel Martí
parent ef17cc3489
commit 31fe8343ad

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>