1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3 ~ Copyright (C) 2016 The Android Open Source Project 4 ~ 5 ~ Licensed under the Apache License, Version 2.0 (the "License"); 6 ~ you may not use this file except in compliance with the License. 7 ~ You may obtain a copy of the License at 8 ~ 9 ~ http://www.apache.org/licenses/LICENSE-2.0 10 ~ 11 ~ Unless required by applicable law or agreed to in writing, software 12 ~ distributed under the License is distributed on an "AS IS" BASIS, 13 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 ~ See the License for the specific language governing permissions and 15 ~ limitations under the License 16 --> 17 18<resources> 19 <!--App title--> 20 <string name="title">Preferences Demo</string> 21 22 <!--Fragment titles--> 23 <string name="preferences">Preferences</string> 24 <string name="leanback_preferences">Leanback Preferences</string> 25 <string name="twopane_preferences">TwoPane Preferences</string> 26 27 <!--This section is for basic attributes --> 28 <string name="basic_preferences">Basic attributes</string> 29 30 <string name="title_basic_preference">Preference</string> 31 <string name="summary_basic_preference">Simple preference with no special attributes</string> 32 33 <string name="title_stylish_preference"><b>Very</b> <i>stylish</i> <u>preference</u></string> 34 <string name="summary_stylish_preference">Define style tags such as <b> in a string resource to customize a preference\'s text</string> 35 36 <string name="title_icon_preference">Icon preference</string> 37 <string name="summary_icon_preference">Define a drawable to display it at the start of the preference</string> 38 39 <string name="title_single_line_title_preference">Single line title preference - no matter how long the title is it will never wrap to multiple lines</string> 40 <string name="summary_single_line_title_preference">This title will be ellipsized instead of wrapping to another line</string> 41 42 <!--This section is for preferences that contain a widget in their layout --> 43 <string name="widgets">Widgets</string> 44 45 <string name="title_checkbox_preference">Checkbox preference</string> 46 <string name="summary_checkbox_preference">Tap anywhere in this preference to toggle state</string> 47 48 <string name="title_switch_preference">Switch preference</string> 49 <string name="summary_switch_preference">Tap anywhere in this preference to toggle state</string> 50 51 <string name="title_dropdown_preference">Dropdown preference</string> 52 53 <string name="title_seekbar_preference">Seekbar preference</string> 54 55 <!--This section is for preferences that launch a dialog to edit the preference --> 56 <string name="dialogs">Dialogs</string> 57 58 <string name="title_edittext_preference">EditText preference</string> 59 <string name="dialog_title_edittext_preference">This title can be changed!</string> 60 61 <string name="title_list_preference">List preference</string> 62 <string name="dialog_title_list_preference">Choose one option!</string> 63 64 <string name="title_multi_list_preference">Multi-select list preference</string> 65 <string name="summary_multi_list_preference">Shows a dialog with multiple choice options</string> 66 <string name="dialog_title_multi_list_preference">Choose some options!</string> 67 68 <!--This section is for advanced attributes--> 69 <string name="advanced_attributes">Advanced attributes</string> 70 71 <string name="title_expandable_preference">Expandable preference group</string> 72 <string name="summary_expandable_preference">This group shows one item and collapses the rest into the advanced button below</string> 73 74 <string name="title_intent_preference">Intent preference</string> 75 <string name="summary_intent_preference">Launches an intent when pressed</string> 76 77 <string name="title_parent_preference">Parent preference</string> 78 <string name="summary_parent_preference">Toggling this preference will change the enabled state of the preference below</string> 79 80 <string name="title_child_preference">Child preference</string> 81 <string name="summary_child_preference">The enabled state of this preference is controlled by the preference above</string> 82 83 <string name="title_toggle_summary_preference">Variable summary preference</string> 84 <string name="summary_on_toggle_summary_preference">On! :) - the summary of this preference changes depending on its state</string> 85 <string name="summary_off_toggle_summary_preference">Off! :( - the summary of this preference changes depending on its state</string> 86 87 <string name="title_copyable_preference">Copyable preference</string> 88 <string name="summary_copyable_preference">Long press on this preference to copy its summary</string> 89 <string name="summary_dialogs">Dialog preferences</string> 90 <string name="summary_basic_preferences">Basic preferences</string> 91 <string name="summary_widgets">widgets</string> 92 <string name="summary_advanced_attributes">Advanced attributes of preferences</string> 93 94 <string name="multi_preference_screen">Multi Preference Screens</string> 95 <string name="title_multi_preference_screen">Next Preference Screen</string> 96 <string name="summary_multi_preference_screen">Click to launch another preference screen</string> 97 98 <string name="title_next_preference_screen">Next Preference Screen</string> 99 <string name="title_information">Basic Information</string> 100 <string name="summary_information">Basic Information about the demo app</string> 101 <string name="title_details">Details</string> 102 <string name="summary_details">Detailed Information about the demo app</string> 103</resources> 104