diff options
Diffstat (limited to 'res')
-rw-r--r-- | res/menu/storage.xml | 25 | ||||
-rw-r--r-- | res/values/strings.xml | 3 |
2 files changed, 28 insertions, 0 deletions
diff --git a/res/menu/storage.xml b/res/menu/storage.xml new file mode 100644 index 0000000..fa9639c --- /dev/null +++ b/res/menu/storage.xml @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2012 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<menu xmlns:android="http://schemas.android.com/apk/res/android"> + <item + android:id="@+id/storage_usb" + android:title="@string/storage_menu_usb" /> + <item + android:id="@+id/storage_enforce_read_external" + android:title="@string/storage_menu_enforce_read_external" + android:checkable="true" /> +</menu> diff --git a/res/values/strings.xml b/res/values/strings.xml index fddc6cb..e31a83a 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -1878,6 +1878,9 @@ <!-- 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> <!-- Storage setting. USB connection category [CHAR LIMIT=30]--> |