summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Fischer <enf@google.com>2009-06-16 16:34:08 -0700
committerEric Fischer <enf@google.com>2009-06-16 16:34:08 -0700
commite2beeb108d4f1dc2b5959008fe3a608798032cc6 (patch)
tree179e8d9bb550f8d519a138b6ee80a48edfacc4e6
parentcb5486eae642cbf330591a2af2b84885e4caae67 (diff)
downloadandroid_packages_providers_DownloadProvider-e2beeb108d4f1dc2b5959008fe3a608798032cc6.tar.gz
android_packages_providers_DownloadProvider-e2beeb108d4f1dc2b5959008fe3a608798032cc6.tar.bz2
android_packages_providers_DownloadProvider-e2beeb108d4f1dc2b5959008fe3a608798032cc6.zip
Make name of Download Provider localizable.
-rw-r--r--AndroidManifest.xml2
-rw-r--r--res/values/strings.xml3
2 files changed, 4 insertions, 1 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 3b9c1060..23986048 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -37,7 +37,7 @@
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<application android:process="android.process.media"
- android:label="Download Manager">
+ android:label="@string/app_label">
<provider android:name=".DownloadProvider"
android:authorities="downloads"
android:permission="android.permission.ACCESS_DOWNLOAD_MANAGER" />
diff --git a/res/values/strings.xml b/res/values/strings.xml
index 3a8fa076..e8abf5f5 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -15,6 +15,9 @@
-->
<resources>
+ <!-- This is the name of the Download Manager application. -->
+ <string name="app_label">Download Manager</string>
+
<!-- This is the short description of a permission associated with the
Android Download Manager. It is displayed as part of the description
of any application that was granted that permission.