summaryrefslogtreecommitdiffstats
path: root/res/values/arrays.xml
blob: 4a60c36e19367172e285b72352f65db2b5a6b780 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
<?xml version="1.0" encoding="utf-8"?>
<!--
/*
**
** Copyright 2007 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.
*/
-->
<resources>
    <!-- Choices for timezone picker first level.
         These values will be used as search terms for TimeZone displayName
         strings. --> <skip />
    <!-- The time zone picker screen has two levels.  The first level allows the user to choose a region. -->
    <string-array name="timezone_filters">
	<!-- The next level of the time zoner picker should show time zones from the Americas. -->
        <item>America</item>
	<!-- The next level of the time zoner picker should show time zones from Europe. -->
        <item>Europe</item>
	<!-- The next level of the time zoner picker should show time zones from Africa. -->
        <item>Africa</item>
	<!-- The next level of the time zoner picker should show time zones from Asia. -->
        <item>Asia</item>
	<!-- The next level of the time zoner picker should show time zones from Australia. -->
        <item>Australia</item>
	<!-- The next level of the time zoner picker should show time zones from Pacific. -->
        <item>Pacific</item>
	<!-- The next level of the time zoner picker should show time zones from ALL regions. -->
        <item>All</item>
    </string-array>

    <!-- There is a setting to control the format of dates displayed throughout the system.  This is in the Date & Time Settings screen.  Unfortunately, these cannot be changed at all. --> <skip />
    <!-- Do not translate.  This is fed directly to the formatter. -->
    <string-array name="date_format_values">
        <!-- Do not translate.  This is fed directly to the formatter. -->
        <item>MM-dd-yyyy</item>
        <!-- Do not translate.  This is fed directly to the formatter. -->
        <item>dd-MM-yyyy</item>
        <!-- Do not translate.  This is fed directly to the formatter. -->
        <item>MMM d, yyyy</item>
        <!-- Do not translate.  This is fed directly to the formatter. -->
        <item>d-MMM-yyyy</item>
        <!-- Do not translate.  This is fed directly to the formatter. -->
        <item>yyyy-MM-dd</item>
    </string-array>

    <!-- Display settings.  The delay in inactivity before the screen is turned off. These are shown ain a list dialog. -->
    <string-array name="screen_timeout_entries">
        <item>15 seconds</item>
        <item>30 seconds</item>
        <item>1 minute</item>
        <item>2 minutes</item>
        <item>10 minutes</item>
        <!-- Choosing this means the screen will only turn off after the user manually does so.  There will be no inactivity check. -->
        <item>Never timeout</item>
    </string-array>

    <!-- Do not translate. -->
    <string-array name="screen_timeout_values">
        <!-- Do not translate. -->
        <item>15000</item>
        <!-- Do not translate. -->
        <item>30000</item>
        <!-- Do not translate. -->
        <item>60000</item>
        <!-- Do not translate. -->
        <item>120000</item>
        <!-- Do not translate. -->
        <item>600000</item>
        <!-- Do not translate. -->
        <item>-1</item>
    </string-array>

    <!-- TTS settings -->

    <!-- Default speech rate choices -->
    <string-array name="tts_rate_entries">
        <item>Very slow</item>
        <item>Slow</item>
        <item>Normal</item>
        <item>Fast</item>
        <item>Very fast</item>
    </string-array>
    <!-- Do not translate. -->
    <string-array name="tts_rate_values">
        <item>60</item>
        <item>100</item>
        <item>140</item>
        <item>180</item>
        <item>220</item>
    </string-array>

    <!-- Default pitch choices -->
    <string-array name="tts_pitch_entries">
        <item>Very low</item>
        <item>Low</item>
        <item>Normal</item>
        <item>High</item>
        <item>Very high</item>
    </string-array>
    <!-- Do not translate. -->
    <string-array name="tts_pitch_values">
        <item>50</item>
        <item>80</item>
        <item>100</item>
        <item>120</item>
        <item>150</item>
    </string-array>
    
    <!-- Default language choices -->
    <string-array name="tts_lang_entries">
        <item>American English</item>
        <item>British English</item>
        <item>French</item>
        <item>German</item>
        <item>Italian</item>
        <item>Spanish</item>
    </string-array>
    <!-- Do not translate. -->
    <string-array name="tts_lang_values">
        <item>en-rUS</item>
        <item>en-rGB</item>
        <item>fr-rFR</item>
        <item>de-rDE</item>
        <item>it-rIT</item>
        <item>es-rES</item>
    </string-array>

    <!-- Wi-Fi settings -->

    <!-- Match this with code. --> <skip />
    <!-- Wi-Fi settings.  The type of security a Wi-Fi network has.  The user can choose this when he adds a manual network, or configures an existing network. -->
    <string-array name="wifi_security_entries">
        <!-- Let the phone figure out the security type auutomatically. -->
        <item>Auto</item>
        <!-- The Wi-Fi network does not have any security. -->
        <item>None</item>
        <!-- Do not translate. The Wi-Fi network has WEP security. -->
        <item>WEP</item>
        <!-- The Wi-Fi network has WPA personal security. WPA Personal is a tech term, and might be better left untranslated? -->
        <item>WPA personal</item>
        <!-- The Wi-Fi network has WPA2 personal security. WPA Personal is a tech term, and might be better left untranslated? -->
        <item>WPA2 personal</item>
        <!-- The Wi-Fi network has WPA EAP extensible authentication protocol. -->
        <item>WPA-EAP</item>
        <!-- IEEE 802.1X key management -->
        <item>IEEE 802.1x</item>
    </string-array>

    <!-- Match this with code. --> <skip />
    <!-- Wi-Fi settings.  The type of security a Wi-Fi network has.  The user can choose this when he adds a manual network, or configures an existing network. -->
    <string-array name="wifi_security_without_auto_entries">
        <!-- The Wi-Fi network does not have any security. -->
        <item>None</item>
        <!-- Do not translate. The Wi-Fi network has WEP security. -->
        <item>WEP</item>
        <!-- The Wi-Fi network has WPA personal security. WPA Personal is a tech term, and might be better left untranslated? -->
        <item>WPA personal</item>
        <!-- The Wi-Fi network has WPA2 personal security. WPA Personal is a tech term, and might be better left untranslated? -->
        <item>WPA2 personal</item>
        <!-- The Wi-Fi network has WPA enterprise security. WPA Enterprise is a tech term, and might be better left untranslated? -->
        <!-- The Wi-Fi network has WPA EAP extensible authentication protocol. -->
        <item>WPA-EAP</item>
        <!-- IEEE 802.1X key management -->
        <item>IEEE 802.1x</item>
    </string-array>

    <!-- Match this with code. --> <skip />
    <!-- Wi-Fi settings.  Presented as a list dialog to the user.  He chooses the type of WEP key he entered. -->
    <string-array name="wifi_wep_type">
        <!-- This means the phone should figure out the type automatically the best it can. -->
        <item>Auto</item>
        <!-- Do not translate. -->
        <item>WEP ASCII</item>
        <!-- WEP key that is in hexadecimal. -->
        <item>WEP hexadecimal</item>
    </string-array>
    
    <!-- Wi-Fi settings. Presented as a list dialog to the user to choose the Wi-Fi sleep policy. -->
    <string-array name="wifi_sleep_policy_entries">
        <!-- Wi-Fi should go to sleep when the screen turns off. -->
        <item>When screen turns off</item>
        <!-- When plugged in, never go to sleep.  When on battery, go to sleep when screen turns off. -->
        <item>Never when plugged in</item>
        <!-- Never go to sleep. -->
        <item>Never</item>
    </string-array>

    <!-- Match with wifi_sleep_policy_entries and the values of the settings in Settings class. --> <skip />
    <!-- Do not translate. -->
    <string-array name="wifi_sleep_policy_values">
        <!-- Do not translate. -->
        <item>0</item>
        <!-- Do not translate. -->
        <item>1</item>
        <!-- Do not translate. -->
        <item>2</item>
    </string-array>

    <!-- Match with constants in BatteryHistory class -->
    <string-array name="battery_history_type_spinner">
        <item>CPU usage</item>
        <item>Network usage</item>
        <item>GPS usage</item>
        <item>Sensor usage</item>
        <item>Partial wake usage</item>
        <item>Other usage</item>
    </string-array>

    <!-- Match with constants in BatteryStats class -->
    <string-array name="battery_history_which_spinner">
        <item>Since last unplugged</item>
        <item>Total since boot</item>
        <item>Total in all time</item>
    </string-array>

    <!-- Display options for UsageStats class -->
    <string-array name="usage_stats_display_order_types">
        <item>Usage Time</item>
        <item>Launch Count</item>
        <item>Application Name</item>
    </string-array>

    <!-- EAP method -->
    <string-array name="wifi_eap_entries">
        <item>PEAP</item>
        <item>TLS</item>
        <item>TTLS</item>
    </string-array>

    <!-- Phase 2 options -->
    <string-array name="wifi_phase2_entries">
        <item>None</item>
        <item>PAP</item>
        <item>MSCHAP</item>
        <item>MSCHAP2</item>
        <item>GTC</item>
    </string-array>

</resources>