replace some ugly code with not-too-ugly code..

replaced this kind of code
   string + " " + number + "out of" + " " + number
with this
   String.format("%1$d out of %2$d", number, number);

Change-Id: If1cc296da48dd6823e9081a55b6eab2e3fcee552
diff --git a/res/values/strings.xml b/res/values/strings.xml
index 49d939c..721b7e1 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -3270,10 +3270,10 @@
     <string name="delete">Delete</string>
     <!-- Misc files [CHAR LIMIT=25] -->
     <string name="misc_files">Misc Files</string>
-    <!-- number of misc files selected [CHAR LIMIT=20] -->
-    <string name="misc_files_selected_count">selected</string>
-    <!-- the string 'out of' displayed when saying "selected N out of M" [CHAR LIMIT=20] -->
-    <string name="misc_files_selected_count_out_of">out of</string>
+    <!-- number of misc files selected [CHAR LIMIT=40] -->
+    <string name="misc_files_selected_count">selected %1$d out of %2$d</string>
+    <!-- number of bytes represented by the selected misc files [CHAR LIMIT=40] -->
+    <string name="misc_files_selected_count_bytes">%1$s out of %2$s</string>
     <!--  action to select all [CHAR LIMIT=30] -->
     <string name="select_all">Select All</string>
 </resources>