summaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
authorKenny Root <kroot@google.com>2011-02-16 11:17:30 -0800
committerKenny Root <kroot@google.com>2011-02-16 11:22:41 -0800
commit6550126afda6f14a46f03fdd47624d940b71bcce (patch)
tree1f69c50ef5bed26b1be18fcb61c26b79a88351cd /res
parent38199c5efdb4e650b0ffbe873d8cf27c35f51db6 (diff)
downloadandroid_packages_apps_PackageInstaller-6550126afda6f14a46f03fdd47624d940b71bcce.tar.gz
android_packages_apps_PackageInstaller-6550126afda6f14a46f03fdd47624d940b71bcce.tar.bz2
android_packages_apps_PackageInstaller-6550126afda6f14a46f03fdd47624d940b71bcce.zip
Update PackageInstaller strings to split on product
There were not separate strings for tablet versus phone, so some of the strings on the tablets referred to the user's phone. Bug: 3460520 Change-Id: I34a98d1e3db5c7d1775ab09696bd85767620c24c
Diffstat (limited to 'res')
-rw-r--r--res/values/strings.xml10
1 files changed, 8 insertions, 2 deletions
diff --git a/res/values/strings.xml b/res/values/strings.xml
index d6bc6d47..5dbae68a 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -26,10 +26,16 @@
<string name="install_done">Application installed</string>
<string name="install_confirm_question">Do you want to install this application?</string>
<string name="install_failed">Application not installed</string>
- <string name="install_failed_msg"><xliff:g id="app_name">%1$s</xliff:g> could not be installed on this phone.</string>
+ <!-- Message presented when an application could not be installed on the tablet for some reason. [CHAR LIMIT=100] -->
+ <string name="install_failed_msg" product="tablet"><xliff:g id="app_name">%1$s</xliff:g> could not be installed on this tablet.</string>
+ <!-- Message presented when an application could not be installed on the phone for some reason. [CHAR LIMIT=100] -->
+ <string name="install_failed_msg" product="default"><xliff:g id="app_name">%1$s</xliff:g> could not be installed on this phone.</string>
<string name="launch">Open</string>
<string name="unknown_apps_dlg_title">Install blocked</string>
- <string name="unknown_apps_dlg_text">For security, your phone is set to block installation of applications not obtained from Android Market.</string>
+ <!-- Message presented in a dialog box when a package is requested to be installed, but the "Allow unknown applications" checkbox is not enabled. [CHAR LIMIT=100] -->
+ <string name="unknown_apps_dlg_text" product="tablet">For security, your tablet is set to block installation of applications not obtained from Android Market.</string>
+ <!-- Message presented in a dialog box when a package is requested to be installed, but the "Allow unknown applications" checkbox is not enabled. [CHAR LIMIT=100] -->
+ <string name="unknown_apps_dlg_text" product="default">For security, your phone is set to block installation of applications not obtained from Android Market.</string>
<string name="ok">OK</string>
<string name="settings">Settings</string>
<string name="manage_applications">Manage applications</string>