1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- Copyright (C) 2008 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 17 <resources> 18 19 <!-- Do not change any of the values in this array without checking/changing --> 20 <!-- related values in: AccountSetupBasics.java & AccountSetupOptions.java --> 21 22 <!-- In particular, 15 minutes is hardcoded as the default for new accounts. --> 23 24 <string-array name="account_settings_check_frequency_entries"> 25 <item>@string/account_setup_options_mail_check_frequency_never</item> 26 <item>@string/account_setup_options_mail_check_frequency_5min</item> 27 <item>@string/account_setup_options_mail_check_frequency_10min</item> 28 <item>@string/account_setup_options_mail_check_frequency_15min</item> 29 <item>@string/account_setup_options_mail_check_frequency_30min</item> 30 <item>@string/account_setup_options_mail_check_frequency_1hour</item> 31 </string-array> 32 33 <string-array name="account_settings_check_frequency_values" translatable="false"> 34 <item>-1</item> 35 <item>5</item> 36 <item>10</item> 37 <item>15</item> 38 <item>30</item> 39 <item>60</item> 40 </string-array> 41 42 43 <!-- The arrays that are presented to push-enabled accounts --> 44 <string-array name="account_settings_check_frequency_entries_push"> 45 <item>@string/account_setup_options_mail_check_frequency_push</item> 46 <item>@string/account_setup_options_mail_check_frequency_never</item> 47 <item>@string/account_setup_options_mail_check_frequency_5min</item> 48 <item>@string/account_setup_options_mail_check_frequency_10min</item> 49 <item>@string/account_setup_options_mail_check_frequency_15min</item> 50 <item>@string/account_setup_options_mail_check_frequency_30min</item> 51 <item>@string/account_setup_options_mail_check_frequency_1hour</item> 52 </string-array> 53 54 <string-array name="account_settings_check_frequency_values_push" translatable="false"> 55 <item>-2</item> 56 <item>-1</item> 57 <item>5</item> 58 <item>10</item> 59 <item>15</item> 60 <item>30</item> 61 <item>60</item> 62 </string-array> 63 64 <!-- Mail sync window sizes for EAS accounts --> 65 <string-array name="account_settings_mail_window_entries"> 66 <item>@string/account_setup_options_mail_window_auto</item> 67 <item>@string/account_setup_options_mail_window_1day</item> 68 <item>@string/account_setup_options_mail_window_3days</item> 69 <item>@string/account_setup_options_mail_window_1week</item> 70 <item>@string/account_setup_options_mail_window_2weeks</item> 71 <item>@string/account_setup_options_mail_window_1month</item> 72 <item>@string/account_setup_options_mail_window_all</item> 73 </string-array> 74 75 <!-- Mail sync window size codes for EAS accounts --> 76 <string-array name="account_settings_mail_window_values" translatable="false"> 77 <item>-2</item> 78 <item>1</item> 79 <item>2</item> 80 <item>3</item> 81 <item>4</item> 82 <item>5</item> 83 <item>6</item> 84 </string-array> 85 86 <!-- Mail sync window sizes for EAS mailboxes. It's the same thing as 87 account_settings_mail_window_entries, but has 0=default. --> 88 <string-array name="account_settings_mail_window_entries_with_default"> 89 <item>@string/account_setup_options_mail_window_default</item> 90 <item>@string/account_setup_options_mail_window_auto</item> 91 <item>@string/account_setup_options_mail_window_1day</item> 92 <item>@string/account_setup_options_mail_window_3days</item> 93 <item>@string/account_setup_options_mail_window_1week</item> 94 <item>@string/account_setup_options_mail_window_2weeks</item> 95 <item>@string/account_setup_options_mail_window_1month</item> 96 <item>@string/account_setup_options_mail_window_all</item> 97 </string-array> 98 99 <!-- Mail sync window size codes for EAS milboxes. It's the same thing as 100 account_settings_mail_window_values, but has 0=default. --> 101 <string-array name="account_settings_mail_window_values_with_default" translatable="false"> 102 <item>0</item> 103 <item>-2</item> 104 <item>1</item> 105 <item>2</item> 106 <item>3</item> 107 <item>4</item> 108 <item>5</item> 109 <item>6</item> 110 </string-array> 111 112 <!-- The vibrate notification modes --> 113 <string-array name="account_settings_vibrate_when_entries"> 114 <!-- Always --> 115 <item>@string/account_settings_vibrate_when_always</item> 116 <!-- Only when the phone is in Silent mode --> 117 <item>@string/account_settings_vibrate_when_silent</item> 118 <!-- Never --> 119 <item>@string/account_settings_vibrate_when_never</item> 120 </string-array> 121 122 <!-- The vibrate notification values --> 123 <string-array translatable="false" name="account_settings_vibrate_when_values"> 124 <item>always</item> 125 <item>silent</item> 126 <item>never</item> 127 </string-array> 128 129 <!-- Auto-advance options (DO NOT change the order. Code assumes this order)--> 130 <string-array name="general_preference_auto_advance_entries"> 131 <!-- Move to newer --> 132 <item>@string/general_preference_auto_advance_newer</item> 133 <!-- Move to older --> 134 <item>@string/general_preference_auto_advance_older</item> 135 <!-- Move to message list --> 136 <item>@string/general_preference_auto_advance_message_list</item> 137 </string-array> 138 139 <!-- Auto-advance option values (DO NOT change the order. Code assumes this order)--> 140 <string-array translatable="false" name="general_preference_auto_advance_values"> 141 <!-- Move to newer --> 142 <item>newer</item> 143 <!-- Move to older --> 144 <item>older</item> 145 <!-- Move to message list --> 146 <item>list</item> 147 </string-array> 148 149 <!-- Text Zoom options (DO NOT change the order. Code assumes this order)--> 150 <string-array name="general_preference_text_zoom_entries"> 151 <item>@string/general_preference_text_zoom_tiny</item> 152 <item>@string/general_preference_text_zoom_small</item> 153 <item>@string/general_preference_text_zoom_normal</item> 154 <item>@string/general_preference_text_zoom_large</item> 155 <item>@string/general_preference_text_zoom_huge</item> 156 </string-array> 157 158 <!-- Text Zoom option values (DO NOT change the order. Code assumes this order)--> 159 <string-array translatable="false" name="general_preference_text_zoom_values"> 160 <item>tiny</item> 161 <item>small</item> 162 <item>normal</item> 163 <item>large</item> 164 <item>huge</item> 165 </string-array> 166 167 <!-- Arrays "mailbox_display_names" and "mailbox_display_icons" MUST match the order 168 of the types of mailboxes defined in EmailContent --> 169 <string-array name="mailbox_display_names" translatable="false"> 170 <!-- TYPE_INBOX = 0 --> 171 <item>@string/mailbox_name_display_inbox</item> 172 <!-- TYPE_MAIL = 1 --> 173 <item></item> 174 <!-- TYPE_PARENT = 2 --> 175 <item></item> 176 <!-- TYPE_DRAFTS = 3 --> 177 <item>@string/mailbox_name_display_drafts</item> 178 <!-- TYPE_OUTBOX = 4 --> 179 <item>@string/mailbox_name_display_outbox</item> 180 <!-- TYPE_SENT = 5 --> 181 <item>@string/mailbox_name_display_sent</item> 182 <!-- TYPE_TRASH = 6 --> 183 <item>@string/mailbox_name_display_trash</item> 184 <!-- TYPE_JUNK = 7 --> 185 <item>@string/mailbox_name_display_junk</item> 186 </string-array> 187 188 <!-- Arrays "mailbox_display_names" and "mailbox_display_icons" MUST match the order 189 of the types of mailboxes defined in EmailContent --> 190 <array name="mailbox_display_icons" translatable="false"> 191 <!-- TYPE_INBOX = 0 --> 192 <item>@drawable/ic_folder_inbox_holo_light</item> 193 <!-- TYPE_MAIL = 1 --> 194 <item></item> 195 <!-- TYPE_PARENT = 2 --> 196 <item></item> 197 <!-- TYPE_DRAFTS = 3 --> 198 <item>@drawable/ic_folder_drafts_holo_light</item> 199 <!-- TYPE_OUTBOX = 4 --> 200 <item>@drawable/ic_folder_outbox_holo_light</item> 201 <!-- TYPE_SENT = 5 --> 202 <item>@drawable/ic_folder_sent_holo_light</item> 203 <!-- TYPE_TRASH = 6 --> 204 <item>@drawable/ic_menu_trash_holo_light</item> 205 <!-- TYPE_JUNK = 7 --> 206 <item>@drawable/ic_spam_normal_holo_light</item> 207 </array> 208 209 <!-- Account color chips on combined view --> 210 <array name="combined_view_account_colors" translatable="false"> 211 <item>@color/combined_view_account_color_1</item> 212 <item>@color/combined_view_account_color_2</item> 213 <item>@color/combined_view_account_color_3</item> 214 <item>@color/combined_view_account_color_4</item> 215 <item>@color/combined_view_account_color_5</item> 216 <item>@color/combined_view_account_color_6</item> 217 <item>@color/combined_view_account_color_7</item> 218 <item>@color/combined_view_account_color_8</item> 219 <item>@color/combined_view_account_color_9</item> 220 </array> 221 222 <!-- Length of the subject text in the message list items in dips for the 223 various modes: wide, and narrow --> 224 <integer-array name="subject_lengths"> 225 <item>50</item> 226 <item>25</item> 227 </integer-array> 228 </resources> 229