summaryrefslogtreecommitdiff
path: root/res
diff options
context:
space:
mode:
authorAndrew Sapperstein <asapperstein@google.com>2019-04-23 16:26:20 -0700
committerandroid-build-merger <android-build-merger@google.com>2019-04-23 16:26:20 -0700
commit1ed7498c8b285ea3e5676b8ac4cfc1509fc831e5 (patch)
tree692120b208dbeaae7d8276a399c9545618bd0eac /res
parent572a4dd693d791468bf225206f96cea985f578fa (diff)
parent8838601226f9cebb17e8800259d4508131bd6fca (diff)
downloadphotoviewer-1ed7498c8b285ea3e5676b8ac4cfc1509fc831e5.tar.gz
Merge "Fix multiple string substitutions" am: 95108c9e8a am: c35bc35ee8
am: 8838601226 Change-Id: I4e4c3a999398020cb37212e7e77813a13910b6e6
Diffstat (limited to 'res')
-rw-r--r--res/values/strings.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/res/values/strings.xml b/res/values/strings.xml
index eb4896a..d60afdb 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -17,10 +17,10 @@
-->
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Photo view sub-title for current photo position [CHAR LIMIT=10] -->
- <string name="photo_view_count"><xliff:g id="current_pos">%d</xliff:g> of <xliff:g id="count">%d</xliff:g></string>
+ <string name="photo_view_count"><xliff:g id="current_pos">%1$d</xliff:g> of <xliff:g id="count">%2$d</xliff:g></string>
<string name="retry">Retry</string>
<!-- Photo view error message shown below thumbnail if full image could not be shown [CHAR LIMIT=30] -->
<string name="failed">Couldn\'t load image</string>
<!-- Title and subtitle combined into a single string -->
- <string name="titles"><xliff:g id="title">%s</xliff:g>, <xliff:g id="subtitle">%s</xliff:g></string>
+ <string name="titles"><xliff:g id="title">%1$s</xliff:g>, <xliff:g id="subtitle">%2$s</xliff:g></string>
</resources>