summaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
authorDavid Brown <dab@google.com>2011-02-07 18:03:23 -0800
committerDavid Brown <dab@google.com>2011-02-08 11:41:52 -0800
commit205d05d5f2c616e29772c7fbeb2a4200cf073dfe (patch)
tree7eefdef30eb4647c0eb2b11717d0dc88c340b205 /res
parent9dd054fb2a64da44b7a6830eac3de86d027d9035 (diff)
downloadandroid_packages_providers_TelephonyProvider-205d05d5f2c616e29772c7fbeb2a4200cf073dfe.tar.gz
android_packages_providers_TelephonyProvider-205d05d5f2c616e29772c7fbeb2a4200cf073dfe.tar.bz2
android_packages_providers_TelephonyProvider-205d05d5f2c616e29772c7fbeb2a4200cf073dfe.zip
Make TelephonyProvider's android:label more meaningful
Previously it was "Dialer Storage", which makes no sense (especially on non-voice-capable devices). Now it's "Phone/Messaging Storage" on phones and "Mobile Network Configuration" on tablets. Bug: 3378543 Change-Id: If8ea17b0ec41e16ac4d5646afdf8c77c05de115a
Diffstat (limited to 'res')
-rw-r--r--res/values/strings.xml14
1 files changed, 11 insertions, 3 deletions
diff --git a/res/values/strings.xml b/res/values/strings.xml
index c61a41b..42a91f5 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -16,8 +16,16 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
- <!-- This is the label for the application that stores phone data -->
- <string name="app_label">Dialer Storage</string>
+ <!-- Official label of the TelephonyProvider, as seen in the "Manage
+ Applications" UI. This is the version of the label for tablet
+ devices, where the TelephonyProvider stores configuration info
+ about the mobile data network. [CHAR LIMIT=40] -->
+ <string name="app_label" product="tablet">Mobile Network Configuration</string>
-</resources>
+ <!-- Official label of the TelephonyProvider, as seen in the "Manage
+ Applications" UI. The TelephonyProvider stores configuration
+ info about the carrier and cell network, and also provides
+ storage for SMS and MMS messages. [CHAR LIMIT=25] -->
+ <string name="app_label" product="default">Phone/Messaging Storage</string>
+</resources>