Home | History | Annotate | Download | only in values
      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     <string name="fragment_support_preferences_demo">Support PreferenceFragment</string>
     20     <string name="fragment_support_preferences_compat_demo">Support PreferenceFragmentCompat</string>
     21     <string name="fragment_support_preferences_leanback_demo">Support LeanbackPreferenceFragment</string>
     22 
     23     <string name="root_title">Demo Preferences</string>
     24 
     25     <string name="title_basic_preference">Basic preference</string>
     26     <string name="summary_basic_preference">This is a basic preference</string>
     27 
     28     <string name="title_stylish_preference"><b>Very</b> <i>stylish</i> <u>preference</u></string>
     29     <string name="summary_stylish_preference">This is a <b>very</b> <i>stylish</i> <u>preference</u></string>
     30 
     31     <string name="inline_preferences">In-line preferences</string>
     32     <string name="dialog_based_preferences">Dialog-based preferences</string>
     33     <string name="launch_preferences">Launch preferences</string>
     34     <string name="preference_attributes">Preference attributes</string>
     35 
     36     <string name="title_checkbox_preference">Checkbox preference</string>
     37     <string name="summary_checkbox_preference">This is a checkbox</string>
     38 
     39     <string name="title_dropdown_preference">Dropdown preference</string>
     40     <string name="summary_dropdown_preference">This is a dropdown</string>
     41 
     42     <string name="title_switch_preference">Switch preference</string>
     43     <string name="summary_switch_preference">This is a switch</string>
     44     <string name="summary_switch_preference_yes_no">This is a switch with custom text</string>
     45 
     46     <string name="title_yesno_preference">Yes or no preference</string>
     47     <string name="summary_yesno_preference">An example that uses a yes/no dialog</string>
     48     <string name="dialog_title_yesno_preference">Do you like bananas?</string>
     49 
     50     <string name="title_edittext_preference">Edit text preference</string>
     51     <string name="summary_edittext_preference">An example that uses an edit text dialog</string>
     52     <string name="dialog_title_edittext_preference">Enter your favorite animal</string>
     53 
     54     <string name="title_list_preference">List preference</string>
     55     <string name="summary_list_preference">An example that uses a list dialog</string>
     56     <string name="dialog_title_list_preference">Choose one</string>
     57 
     58     <string name="title_multi_list_preference">Multi-select list preference</string>
     59     <string name="summary_multi_list_preference">An example that uses a multi-select list dialog</string>
     60     <string name="dialog_title_multi_list_preference">Choose some</string>
     61 
     62     <string name="title_screen_preference">Screen preference</string>
     63     <string name="summary_screen_preference">Shows another screen of preferences</string>
     64 
     65     <string name="title_fragment_preference">Fragment preference</string>
     66     <string name="summary_fragment_preference">Shows another fragment of preferences</string>
     67 
     68     <string name="title_next_screen_toggle_preference">Toggle preference</string>
     69     <string name="summary_next_screen_toggle_preference">Preference that is on the next screen but same hierarchy</string>
     70 
     71     <string name="title_intent_preference">Intent preference</string>
     72     <string name="summary_intent_preference">Launches an Activity from an Intent</string>
     73 
     74     <string name="title_my_preference">My preference</string>
     75     <string name="summary_my_preference">This is a custom counter preference</string>
     76 
     77     <string name="title_advanced_toggle_preference">Haunted preference</string>
     78     <string name="summary_on_advanced_toggle_preference">I\'m on! :)</string>
     79     <string name="summary_off_advanced_toggle_preference">I\'m off! :(</string>
     80 
     81     <string name="title_parent_preference">Parent checkbox preference</string>
     82     <string name="summary_parent_preference">This is visually a parent</string>
     83     <string name="title_child_preference">Child checkbox preference</string>
     84     <string name="summary_child_preference">This is visually a child</string>
     85 
     86     <string name="example_preference_dependency">Example preference dependency</string>
     87     <string name="title_wifi">WiFi</string>
     88     <string name="title_wifi_settings">WiFi settings</string>
     89 
     90     <string name="default_value_list_preference">beta</string>
     91     <string name="default_value_edittext_preference">Default value</string>
     92 
     93 </resources>
     94