diff options
author | Jeff Sharkey <jsharkey@android.com> | 2012-05-14 20:51:05 -0700 |
---|---|---|
committer | Jeff Sharkey <jsharkey@android.com> | 2012-05-14 20:53:11 -0700 |
commit | caf15613c29870850da952e51aaebb8b84867c49 (patch) | |
tree | c17a8e5423921ec4b4fc138db9600e06f921649c /res/values/strings.xml | |
parent | e5050b1be72c5552bfc9c734d5a0e89f215bed62 (diff) | |
download | packages_apps_settings-caf15613c29870850da952e51aaebb8b84867c49.zip packages_apps_settings-caf15613c29870850da952e51aaebb8b84867c49.tar.gz packages_apps_settings-caf15613c29870850da952e51aaebb8b84867c49.tar.bz2 |
Enforce READ_EXTERNAL in Developer Options.
Move from Storage to Developer Options, and add interstitial dialog
with more details.
Bug: 6461446
Change-Id: I6d3d8fdc61a3e920ed58ab4d726949ac3c31feab
Diffstat (limited to 'res/values/strings.xml')
-rw-r--r-- | res/values/strings.xml | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/res/values/strings.xml b/res/values/strings.xml index 6261fc5..9a1f2cd 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -1904,8 +1904,6 @@ <!-- Storage setting. Menu option for USB transfer settings [CHAR LIMIT=30]--> <string name="storage_menu_usb">USB computer connection</string> - <!-- Storage setting. Menu option to enforce read external storage permission. [CHAR LIMIT=30]--> - <string name="storage_menu_enforce_read_external">Enforce read external</string> <!-- Storage setting. Title for USB transfer settings [CHAR LIMIT=30]--> <string name="storage_title_usb">USB computer connection</string> @@ -2806,6 +2804,24 @@ <!-- Warning text to user about the implications of enabling USB debugging --> <string name="dev_settings_warning_message">These settings are intended for development use only. They can cause your device and the applications on it to break or misbehave.</string> + <!-- Title of checkbox setting that protects external storage. [CHAR LIMIT=32] --> + <string name="enforce_read_external_title" product="nosdcard">Protect USB storage</string> + <!-- Summary of checkbox setting that protects external storage. [CHAR LIMIT=64] --> + <string name="enforce_read_external_summary" product="nosdcard">Apps must request permission to read USB storage</string> + <!-- Title of dialog confirming that user wants to protect external storage. [CHAR LIMIT=32] --> + <string name="enforce_read_external_confirm_title" product="nosdcard">Protect USB storage?</string> + <!-- Message of dialog confirming that user wants to protect external storage. [CHAR LIMIT=NONE] --> + <string name="enforce_read_external_confirm_message" product="nosdcard">When USB storage is protected, apps must request permission to read data from external storage.\n\nSome apps may not work until updated by their developers.</string> + + <!-- Title of checkbox setting that protects external storage. [CHAR LIMIT=32] --> + <string name="enforce_read_external_title" product="default">Protect SD card</string> + <!-- Summary of checkbox setting that protects external storage. [CHAR LIMIT=64] --> + <string name="enforce_read_external_summary" product="default">Apps must request permission to read SD card</string> + <!-- Title of dialog confirming that user wants to protect external storage. [CHAR LIMIT=32] --> + <string name="enforce_read_external_confirm_title" product="default">Protect SD card?</string> + <!-- Message of dialog confirming that user wants to protect external storage. [CHAR LIMIT=NONE] --> + <string name="enforce_read_external_confirm_message" product="default">When SD card is protected, apps must request permission to read data from external storage.\n\nSome apps may not work until updated by their developers.</string> + <!-- Title for the screen that lets the user choose a gadget to add to the home screen (or other screens that can host gadgets). Note to translators: we're still determining the final name for Gadgets/Widgets, so please translate both for now. --> |