summaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
authorJeff Sharkey <jsharkey@android.com>2012-11-13 15:56:15 -0800
committerAndroid Git Automerger <android-git-automerger@android.com>2012-11-13 15:56:15 -0800
commit8b6080fef4115cad1b3ee3070e8665ddb6871899 (patch)
tree6aee47fcf287bc8b8cc4ab4f355ed201bc07b8c7 /res
parent917ed8a6b211a7f7c74be32bed0bfc7ca805eeda (diff)
parenta40a349c0107660bfb4004467550725a3ca3ec97 (diff)
downloadandroid_packages_providers_DownloadProvider-8b6080fef4115cad1b3ee3070e8665ddb6871899.tar.gz
android_packages_providers_DownloadProvider-8b6080fef4115cad1b3ee3070e8665ddb6871899.tar.bz2
android_packages_providers_DownloadProvider-8b6080fef4115cad1b3ee3070e8665ddb6871899.zip
am a40a349c: Rewrite of download notifications.
* commit 'a40a349c0107660bfb4004467550725a3ca3ec97': Rewrite of download notifications.
Diffstat (limited to 'res')
-rw-r--r--res/values/strings.xml34
1 files changed, 17 insertions, 17 deletions
diff --git a/res/values/strings.xml b/res/values/strings.xml
index 56352951..c607e35f 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -116,23 +116,6 @@
for a download that doesn't have a title associated with it. -->
<string name="download_unknown_title">&lt;Untitled&gt;</string>
- <!-- When there are multiple simultaneous outstanding downloads from a
- single application, they are displayed as a single notification,
- and the expanded notification view displays the first two download
- names separated with this string, i.e. "[title], [title]"
- or "[title], [title] and [n] more". This is the comma + space
- that separates the first two titles, and it's used both when there
- are exactly two and more than two titles. -->
- <string name="notification_filename_separator">", "</string>
-
- <!-- When there are three or more simultaneous outstanding downloads from a
- single application, they are displayed as a single notification,
- and the expanded notification view uses this string to indicate
- downloads beyond the first two, i.e. "[title], [title] and [n] more".
- This is the " and [n] more" part, including the leading space, and it's
- used regardless of the number of additional downloads. -->
- <string name="notification_filename_extras">" and <xliff:g id="number" example="27">%d</xliff:g> more"</string>
-
<!-- When a download completes, a notification is displayed, and this
string is used to indicate that the download successfully completed.
Note that such a download could have been initiated by a variety of
@@ -210,4 +193,21 @@
<!-- Short representation of download progress percentage. [CHAR LIMIT=8] -->
<string name="download_percent"><xliff:g id="number">%d</xliff:g><xliff:g id="percent">%%</xliff:g></string>
+ <!-- Title summarizing active downloads. [CHAR LIMIT=32] -->
+ <plurals name="notif_summary_active">
+ <item quantity="one">1 file downloading</item>
+ <item quantity="other"><xliff:g id="number">%d</xliff:g> files downloading</item>
+ </plurals>
+
+ <!-- Title summarizing waiting downloads. [CHAR LIMIT=32] -->
+ <plurals name="notif_summary_waiting">
+ <item quantity="one">1 file waiting</item>
+ <item quantity="other"><xliff:g id="number">%d</xliff:g> files waiting</item>
+ </plurals>
+
+ <!-- Text for a toast appearing when a user clicks on a completed download, informing the user
+ that there is no application on the device that can open the file that was downloaded
+ [CHAR LIMIT=200] -->
+ <string name="download_no_application_title">Can\'t open file</string>
+
</resources>