OSDN Git Service

Merge "Changed the text input type of APN name to plain text"
[android-x86/packages-apps-Settings.git] / res / values / arrays.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <!--
3 /*
4 **
5 ** Copyright 2007 The Android Open Source Project
6 **
7 ** Licensed under the Apache License, Version 2.0 (the "License");
8 ** you may not use this file except in compliance with the License.
9 ** You may obtain a copy of the License at
10 **
11 **     http://www.apache.org/licenses/LICENSE-2.0
12 **
13 ** Unless required by applicable law or agreed to in writing, software
14 ** distributed under the License is distributed on an "AS IS" BASIS,
15 ** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 ** See the License for the specific language governing permissions and
17 ** limitations under the License.
18 */
19 -->
20 <resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
21     <!-- Choices for timezone picker first level.
22          These values will be used as search terms for TimeZone displayName
23          strings. --> <skip />
24     <!-- The time zone picker screen has two levels.  The first level allows the user to choose a region. -->
25     <string-array name="timezone_filters">
26     <!-- The next level of the time zoner picker should show time zones from the Americas. -->
27         <item>America</item>
28     <!-- The next level of the time zoner picker should show time zones from Europe. -->
29         <item>Europe</item>
30     <!-- The next level of the time zoner picker should show time zones from Africa. -->
31         <item>Africa</item>
32     <!-- The next level of the time zoner picker should show time zones from Asia. -->
33         <item>Asia</item>
34     <!-- The next level of the time zoner picker should show time zones from Australia. -->
35         <item>Australia</item>
36     <!-- The next level of the time zoner picker should show time zones from Pacific. -->
37         <item>Pacific</item>
38     <!-- The next level of the time zoner picker should show time zones from ALL regions. -->
39         <item>All</item>
40     </string-array>
41
42     <!-- There is a setting to control the format of dates displayed throughout the system.  This is in the Date & Time Settings screen.  These will be adjusted to use punctuation appropriate to the user's locale. -->
43     <string-array name="date_format_values" translatable="false">
44         <!-- The blank item means to use whatever the locale calls for. -->
45         <item></item>
46         <item>MM-dd-yyyy</item>
47         <item>dd-MM-yyyy</item>
48         <item>yyyy-MM-dd</item>
49     </string-array>
50
51     <!-- Display settings.  The type of animations to show. -->
52     <string-array name="animations_entries">
53         <item>No animations</item>
54         <item>Some animations</item>
55         <item>All animations</item>
56     </string-array>
57
58     <!-- Display settings.  Summary for each type of animation. -->
59     <string-array name="animations_summaries">
60         <item>No window animations are shown</item>
61         <item>Some window animations are shown</item>
62         <item>All window animations are shown</item>
63     </string-array>
64
65     <!-- Do not translate. -->
66     <string-array name="animations_values">
67         <!-- Do not translate. -->
68         <item>00</item>
69         <!-- Do not translate. -->
70         <item>01</item>
71         <!-- Do not translate. -->
72         <item>11</item>
73     </string-array>
74
75     <!-- Display settings.  The delay in inactivity before the screen is turned off. These are shown ain a list dialog. -->
76     <string-array name="screen_timeout_entries">
77         <item>15 seconds</item>
78         <item>30 seconds</item>
79         <item>1 minute</item>
80         <item>2 minutes</item>
81         <item>10 minutes</item>
82         <item>30 minutes</item>
83     </string-array>
84
85     <!-- Do not translate. -->
86     <string-array name="screen_timeout_values" translatable="false">
87         <!-- Do not translate. -->
88         <item>15000</item>
89         <!-- Do not translate. -->
90         <item>30000</item>
91         <!-- Do not translate. -->
92         <item>60000</item>
93         <!-- Do not translate. -->
94         <item>120000</item>
95         <!-- Do not translate. -->
96         <item>600000</item>
97         <!-- Do not translate. -->
98         <item>1800000</item>
99     </string-array>
100
101     <!-- TTS settings -->
102
103     <!-- Default speech rate choices -->
104     <string-array name="tts_rate_entries">
105         <item>Very slow</item>
106         <item>Slow</item>
107         <item>Normal</item>
108         <item>Fast</item>
109         <item>Very fast</item>
110     </string-array>
111     <!-- Do not translate. -->
112     <string-array name="tts_rate_values">
113         <item>60</item>
114         <item>80</item>
115         <item>100</item>
116         <item>150</item>
117         <item>200</item>
118     </string-array>
119
120     <!-- Default pitch choices -->
121     <string-array name="tts_pitch_entries">
122         <item>Very low</item>
123         <item>Low</item>
124         <item>Normal</item>
125         <item>High</item>
126         <item>Very high</item>
127     </string-array>
128     <!-- Do not translate. -->
129     <string-array name="tts_pitch_values">
130         <item>50</item>
131         <item>80</item>
132         <item>100</item>
133         <item>120</item>
134         <item>150</item>
135     </string-array>
136
137     <!-- Default language choices -->
138     <string-array name="tts_lang_entries">
139         <item>American English</item>
140         <item>British English</item>
141         <item>French</item>
142         <item>German</item>
143         <item>Italian</item>
144         <item>Spanish</item>
145     </string-array>
146     <!-- Do not translate. -->
147     <string-array name="tts_lang_values">
148         <item>eng-USA</item>
149         <item>eng-GBR</item>
150         <item>fra-FRA</item>
151         <item>deu-DEU</item>
152         <item>ita-ITA</item>
153         <item>spa-ESP</item>
154     </string-array>
155     <!-- Do not translate. -->
156     <string-array name="tts_demo_strings">
157         <item>This is an example of speech synthesis in English.</item>
158         <item>This is an example of speech synthesis in English.</item>
159         <item>Voici un échantillon de synthèse vocale en français.</item>
160         <item>Dies ist ein Beispiel für Sprachsynthese in Deutsch.</item>
161         <item>Questo è un esempio di sintesi vocale in italiano.</item>
162         <item>Este es un ejemplo de síntesis de voz en español.</item>
163     </string-array>
164     <!-- Do not translate. -->
165     <string-array name="tts_engine_entries">
166         <item>Pico TTS</item>
167     </string-array>
168     <!-- Do not translate. -->
169     <string-array name="tts_engine_values">
170         <item>com.svox.pico</item>
171     </string-array>
172
173
174     <!-- Wi-Fi settings -->
175
176     <!-- Match this with the order of NetworkInfo.DetailedState. --> <skip />
177     <!-- Wi-Fi settings. The status messages when the network is unknown. -->
178     <string-array name="wifi_status">
179         <!-- Status message of Wi-Fi when it is idle. -->
180         <item></item>
181         <!-- Status message of Wi-Fi when it is scanning. -->
182         <item>Scanning\u2026</item>
183         <!-- Status message of Wi-Fi when it is connecting. -->
184         <item>Connecting\u2026</item>
185         <!-- Status message of Wi-Fi when it is authenticating. -->
186         <item>Authenticating\u2026</item>
187         <!-- Status message of Wi-Fi when it is obtaining IP address. -->
188         <item>Obtaining IP address\u2026</item>
189         <!-- Status message of Wi-Fi when it is connected. -->
190         <item>Connected</item>
191         <!-- Status message of Wi-Fi when it is suspended. -->
192         <item>Suspended</item>
193         <!-- Status message of Wi-Fi when it is disconnecting. -->
194         <item>Disconnecting\u2026</item>
195         <!-- Status message of Wi-Fi when it is disconnected. -->
196         <item>Disconnected</item>
197         <!-- Status message of Wi-Fi when it is a failure. -->
198         <item>Unsuccessful</item>
199     </string-array>
200
201     <!-- Match this with the order of NetworkInfo.DetailedState. --> <skip />
202     <!-- Wi-Fi settings. The status messages when the network is known. -->
203     <string-array name="wifi_status_with_ssid">
204         <!-- Status message of Wi-Fi when it is idle. -->
205         <item></item>
206         <!-- Status message of Wi-Fi when it is scanning. -->
207         <item>Scanning\u2026</item>
208         <!-- Status message of Wi-Fi when it is connecting to a network. -->
209         <item>Connecting to <xliff:g id="network_name">%1$s</xliff:g>\u2026</item>
210         <!-- Status message of Wi-Fi when it is authenticating with a network. -->
211         <item>Authenticating with <xliff:g id="network_name">%1$s</xliff:g>\u2026</item>
212         <!-- Status message of Wi-Fi when it is obtaining IP address from a network. -->
213         <item>Obtaining IP address from <xliff:g id="network_name">%1$s</xliff:g>\u2026</item>
214         <!-- Status message of Wi-Fi when it is connected to a network. -->
215         <item>Connected to <xliff:g id="network_name">%1$s</xliff:g></item>
216         <!-- Status message of Wi-Fi when it is suspended. -->
217         <item>Suspended</item>
218         <!-- Status message of Wi-Fi when it is disconnecting from a network. -->
219         <item>Disconnecting from <xliff:g id="network_name">%1$s</xliff:g>\u2026</item>
220         <!-- Status message of Wi-Fi when it is disconnected. -->
221         <item>Disconnected</item>
222         <!-- Status message of Wi-Fi when it is a failure. -->
223         <item>Unsuccessful</item>
224     </string-array>
225
226     <!-- Match this with the constants in AccessPoint. --> <skip />
227     <!-- Wi-Fi settings.  The type of security a Wi-Fi network has. -->
228     <string-array name="wifi_security">
229         <!-- The Wi-Fi network does not have any security. -->
230         <item>Open</item>
231         <!-- Do not translate. -->
232         <item>WEP</item>
233         <!-- Do not translate. -->
234         <item>WPA/WPA2 PSK</item>
235         <!-- Do not translate. -->
236         <item>802.1x EAP</item>
237     </string-array>
238
239    <!-- Wi-Fi AP settings.  The type of security a Wi-Fi AP supports. -->
240    <!-- Note that adding/removing/moving the items will need wifi settings code change. -->
241     <string-array name="wifi_ap_security" translatable="false">
242         <item>Open</item>
243         <!-- Do not translate. -->
244         <item>WPA2 PSK</item>
245     </string-array>
246
247     <!-- Match this with the constants in WifiDialog. --> <skip />
248     <!-- Wi-Fi settings.  The type of EAP method a Wi-Fi network has. -->
249     <string-array name="wifi_eap_method">
250         <!-- Do not translate. -->
251         <item>PEAP</item>
252         <!-- Do not translate. -->
253         <item>TLS</item>
254         <!-- Do not translate. -->
255         <item>TTLS</item>
256     </string-array>
257
258     <!-- Match this with drawable.wifi_signal. --> <skip />
259     <!-- Wi-Fi settings. The signal strength a Wi-Fi network has. -->
260     <string-array name="wifi_signal">
261         <item>Poor</item>
262         <item>Fair</item>
263         <item>Good</item>
264         <item>Excellent</item>
265     </string-array>
266
267     <!-- Wi-Fi settings. Presented as a list dialog to the user to choose the Wi-Fi sleep policy. -->
268     <string-array name="wifi_sleep_policy_entries">
269         <!-- Wi-Fi should go to sleep when the screen turns off. -->
270         <item>When screen turns off</item>
271         <!-- When plugged in, never go to sleep.  When on battery, go to sleep when screen turns off. -->
272         <item>Never when plugged in</item>
273         <!-- Never go to sleep. -->
274         <item>Never</item>
275     </string-array>
276
277     <!-- Match with wifi_sleep_policy_entries and the values of the settings in Settings class. --> <skip />
278     <!-- Do not translate. -->
279     <string-array name="wifi_sleep_policy_values">
280         <!-- Do not translate. -->
281         <item>0</item>
282         <!-- Do not translate. -->
283         <item>1</item>
284         <!-- Do not translate. -->
285         <item>2</item>
286     </string-array>
287
288     <!-- Display options for UsageStats class -->
289     <string-array name="usage_stats_display_order_types">
290         <item>Usage Time</item>
291         <item>Launch Count</item>
292         <item>Application Name</item>
293     </string-array>
294
295     <!-- EAP method -->
296     <string-array name="wifi_eap_entries">
297         <item>PEAP</item>
298         <item>TLS</item>
299         <item>TTLS</item>
300     </string-array>
301
302     <!-- Phase 2 options -->
303     <string-array name="wifi_phase2_entries">
304         <item>None</item>
305         <item>PAP</item>
306         <item>MSCHAP</item>
307         <item>MSCHAPV2</item>
308         <item>GTC</item>
309     </string-array>
310
311     <!-- Sound settings for emergency tone. -->
312     <string-array name="emergency_tone_entries">
313         <item>Off</item>
314         <item>Alert</item>
315         <item>Vibrate</item>
316     </string-array>
317
318     <!-- Do not translate. -->
319     <string-array name="emergency_tone_values">
320         <item>0</item>
321         <item>1</item>
322         <item>2</item>
323     </string-array>
324
325     <!-- Locales in this list are displayed with the corresponding
326          name from special_locale_names instead of using the name
327          from Locale.getDisplayName(). -->
328     <string-array translatable="false" name="special_locale_codes">
329         <item>zh_CN</item>
330         <item>zh_TW</item>
331     </string-array>
332
333     <string-array translatable="false" name="special_locale_names">
334         <item>中文 (简体)</item>
335         <item>中文 (繁體)</item>
336     </string-array>
337
338     <!-- Authentication Types used in APN editor -->
339     <string-array name="apn_auth_entries">
340         <item>None</item>
341         <item>PAP</item>
342         <item>CHAP</item>
343         <item>PAP or CHAP</item>
344     </string-array>
345
346     <string-array translatable="false" name="apn_auth_values">
347         <!-- Do not translate. -->
348         <item>0</item>
349         <!-- Do not translate. -->
350         <item>1</item>
351         <!-- Do not translate. -->
352         <item>2</item>
353         <!-- Do not translate. -->
354         <item>3</item>
355     </string-array>
356
357     <!-- Apps on SD instalaltion location options in ApplicationSettings -->
358     <string-array name="app_install_location_entries">
359         <item>Internal device storage</item>
360         <item>Removable SD card</item>
361         <item>Let the system decide</item>
362     </string-array>
363
364     <!-- Do not translate. -->
365     <string-array name="app_install_location_values" translatable="false">
366         <item>device</item>
367         <item>sdcard</item>
368         <item>auto</item>
369     </string-array>
370
371     <!-- New incoming call vibrate options. -->
372     <string-array name="vibrate_entries">
373         <item>Always</item>
374         <item>Never</item>
375         <item>Only in Silent mode</item>
376         <item>Only when not in Silent mode</item>
377     </string-array>
378
379     <!-- Values for vibrate_entries matching constants in SoundSettings. Do not translate. -->
380     <string-array name="vibrate_values" translatable="false">
381         <item>always</item>
382         <item>never</item>
383         <item>silent</item>
384         <item>notsilent</item>
385     </string-array>
386 </resources>