1<?xml version="1.0" encoding="utf-8"?> 2<!-- Copyright (C) 2017 The Android Open Source Project 3 4 Licensed under the Apache License, Version 2.0 (the "License"); 5 you may not use this file except in compliance with the License. 6 You may obtain a copy of the License at 7 8 http://www.apache.org/licenses/LICENSE-2.0 9 10 Unless required by applicable law or agreed to in writing, software 11 distributed under the License is distributed on an "AS IS" BASIS, 12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 See the License for the specific language governing permissions and 14 limitations under the License. 15--> 16<resources> 17 <string name="app_name" translatable="false">Obd2App</string> 18 <string name="title_activity_settings" translatable="false">Settings</string> 19 20 <!-- Strings related to Settings --> 21 22 <!-- Example General settings --> 23 <string name="pref_header_general" translatable="false">General</string> 24 25 <string name="pref_title_social_recommendations" translatable="false">Enable social recommendations</string> 26 <string name="pref_description_social_recommendations" translatable="false">Recommendations for people to contact based 27 on your message history 28 </string> 29 30 <string name="pref_title_display_name" translatable="false">Display name</string> 31 <string name="pref_default_display_name" translatable="false">John Smith</string> 32 33 <string name="pref_title_add_friends_to_messages" translatable="false">Add friends to messages</string> 34 <string-array name="pref_example_list_titles" translatable="false"> 35 <item>Always</item> 36 <item>When possible</item> 37 <item>Never</item> 38 </string-array> 39 <string-array name="pref_example_list_values" translatable="false"> 40 <item>1</item> 41 <item>0</item> 42 <item>-1</item> 43 </string-array> 44 45 <!-- Example settings for Data & Sync --> 46 <string name="pref_header_data_sync" translatable="false">Data & sync</string> 47 48 <string name="pref_title_sync_frequency" translatable="false">Sync frequency</string> 49 <string-array name="pref_sync_frequency_titles" translatable="false"> 50 <item>15 minutes</item> 51 <item>30 minutes</item> 52 <item>1 hour</item> 53 <item>3 hours</item> 54 <item>6 hours</item> 55 <item>Never</item> 56 </string-array> 57 <string-array name="pref_sync_frequency_values" translatable="false"> 58 <item>15</item> 59 <item>30</item> 60 <item>60</item> 61 <item>180</item> 62 <item>360</item> 63 <item>-1</item> 64 </string-array> 65 66 <string-array name="list_preference_entries" translatable="false"> 67 <item>Entry 1</item> 68 <item>Entry 2</item> 69 <item>Entry 3</item> 70 </string-array> 71 72 <string-array name="list_preference_entry_values" translatable="false"> 73 <item>1</item> 74 <item>2</item> 75 <item>3</item> 76 </string-array> 77 78 <string-array name="multi_select_list_preference_default_value"/> 79 80 <string name="pref_title_system_sync_settings" translatable="false">System sync settings</string> 81 82 <!-- Example settings for Notifications --> 83 <string name="pref_header_notifications" translatable="false">Notifications</string> 84 85 <string name="pref_title_new_message_notifications" translatable="false">New message notifications</string> 86 87 <string name="pref_title_ringtone" translatable="false">Ringtone</string> 88 <string name="pref_ringtone_silent" translatable="false">Silent</string> 89 90 <string name="pref_title_vibrate" translatable="false">Vibrate</string> 91</resources> 92