OSDN Git Service

am 5f301797: am 4e4ed14e: Fix issue #3146784: ANR in manage applications
[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 in 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     <!-- Security settings.  The delay after screen is turned off until device locks. 
102          These are shown in a list dialog. -->
103     <string-array name="lock_after_timeout_entries">
104         <item>immediately</item>
105         <item>5 seconds</item>
106         <item>15 seconds</item>
107         <item>30 seconds</item>
108         <item>1 minute</item>
109         <item>2 minutes</item>
110         <item>10 minutes</item>
111         <item>30 minutes</item>
112     </string-array>
113
114     <!-- Do not translate. -->
115     <string-array name="lock_after_timeout_values" translatable="false">
116         <!-- Do not translate. -->
117         <item>0</item>
118         <!-- Do not translate. -->
119         <item>5000</item>
120         <!-- Do not translate. -->
121         <item>15000</item>
122         <!-- Do not translate. -->
123         <item>30000</item>
124         <!-- Do not translate. -->
125         <item>60000</item>
126         <!-- Do not translate. -->
127         <item>120000</item>
128         <!-- Do not translate. -->
129         <item>600000</item>
130         <!-- Do not translate. -->
131         <item>1800000</item>
132     </string-array>
133     
134     <!-- TTS settings -->
135
136     <!-- Default speech rate choices -->
137     <string-array name="tts_rate_entries">
138         <item>Very slow</item>
139         <item>Slow</item>
140         <item>Normal</item>
141         <item>Fast</item>
142         <item>Very fast</item>
143     </string-array>
144     <!-- Do not translate. -->
145     <string-array name="tts_rate_values">
146         <item>60</item>
147         <item>80</item>
148         <item>100</item>
149         <item>150</item>
150         <item>200</item>
151     </string-array>
152
153     <!-- Default pitch choices -->
154     <string-array name="tts_pitch_entries">
155         <item>Very low</item>
156         <item>Low</item>
157         <item>Normal</item>
158         <item>High</item>
159         <item>Very high</item>
160     </string-array>
161     <!-- Do not translate. -->
162     <string-array name="tts_pitch_values">
163         <item>50</item>
164         <item>80</item>
165         <item>100</item>
166         <item>120</item>
167         <item>150</item>
168     </string-array>
169
170     <!-- Default language choices -->
171     <string-array name="tts_lang_entries">
172         <item>American English</item>
173         <item>British English</item>
174         <item>French</item>
175         <item>German</item>
176         <item>Italian</item>
177         <item>Spanish</item>
178     </string-array>
179     <!-- Do not translate. -->
180     <string-array name="tts_lang_values">
181         <item>eng-USA</item>
182         <item>eng-GBR</item>
183         <item>fra-FRA</item>
184         <item>deu-DEU</item>
185         <item>ita-ITA</item>
186         <item>spa-ESP</item>
187     </string-array>
188     <!-- Do not translate. -->
189     <string-array name="tts_demo_strings">
190         <item>This is an example of speech synthesis in English.</item>
191         <item>This is an example of speech synthesis in English.</item>
192         <item>Voici un échantillon de synthèse vocale en français.</item>
193         <item>Dies ist ein Beispiel für Sprachsynthese in Deutsch.</item>
194         <item>Questo è un esempio di sintesi vocale in italiano.</item>
195         <item>Este es un ejemplo de síntesis de voz en español.</item>
196     </string-array>
197     <!-- Do not translate. -->
198     <string-array name="tts_engine_entries">
199         <item>Pico TTS</item>
200     </string-array>
201     <!-- Do not translate. -->
202     <string-array name="tts_engine_values">
203         <item>com.svox.pico</item>
204     </string-array>
205
206
207     <!-- Wi-Fi settings -->
208
209     <!-- Match this with the order of NetworkInfo.DetailedState. --> <skip />
210     <!-- Wi-Fi settings. The status messages when the network is unknown. -->
211     <string-array name="wifi_status">
212         <!-- Status message of Wi-Fi when it is idle. -->
213         <item></item>
214         <!-- Status message of Wi-Fi when it is scanning. -->
215         <item>Scanning\u2026</item>
216         <!-- Status message of Wi-Fi when it is connecting. -->
217         <item>Connecting\u2026</item>
218         <!-- Status message of Wi-Fi when it is authenticating. -->
219         <item>Authenticating\u2026</item>
220         <!-- Status message of Wi-Fi when it is obtaining IP address. -->
221         <item>Obtaining IP address\u2026</item>
222         <!-- Status message of Wi-Fi when it is connected. -->
223         <item>Connected</item>
224         <!-- Status message of Wi-Fi when it is suspended. -->
225         <item>Suspended</item>
226         <!-- Status message of Wi-Fi when it is disconnecting. -->
227         <item>Disconnecting\u2026</item>
228         <!-- Status message of Wi-Fi when it is disconnected. -->
229         <item>Disconnected</item>
230         <!-- Status message of Wi-Fi when it is a failure. -->
231         <item>Unsuccessful</item>
232     </string-array>
233
234     <!-- Match this with the order of NetworkInfo.DetailedState. --> <skip />
235     <!-- Wi-Fi settings. The status messages when the network is known. -->
236     <string-array name="wifi_status_with_ssid">
237         <!-- Status message of Wi-Fi when it is idle. -->
238         <item></item>
239         <!-- Status message of Wi-Fi when it is scanning. -->
240         <item>Scanning\u2026</item>
241         <!-- Status message of Wi-Fi when it is connecting to a network. -->
242         <item>Connecting to <xliff:g id="network_name">%1$s</xliff:g>\u2026</item>
243         <!-- Status message of Wi-Fi when it is authenticating with a network. -->
244         <item>Authenticating with <xliff:g id="network_name">%1$s</xliff:g>\u2026</item>
245         <!-- Status message of Wi-Fi when it is obtaining IP address from a network. -->
246         <item>Obtaining IP address from <xliff:g id="network_name">%1$s</xliff:g>\u2026</item>
247         <!-- Status message of Wi-Fi when it is connected to a network. -->
248         <item>Connected to <xliff:g id="network_name">%1$s</xliff:g></item>
249         <!-- Status message of Wi-Fi when it is suspended. -->
250         <item>Suspended</item>
251         <!-- Status message of Wi-Fi when it is disconnecting from a network. -->
252         <item>Disconnecting from <xliff:g id="network_name">%1$s</xliff:g>\u2026</item>
253         <!-- Status message of Wi-Fi when it is disconnected. -->
254         <item>Disconnected</item>
255         <!-- Status message of Wi-Fi when it is a failure. -->
256         <item>Unsuccessful</item>
257     </string-array>
258
259     <!-- Match this with the constants in AccessPoint. --> <skip />
260     <!-- Wi-Fi settings.  The type of security a Wi-Fi network has. -->
261     <string-array name="wifi_security">
262         <!-- The Wi-Fi network does not have any security. -->
263         <item>Open</item>
264         <!-- Do not translate. -->
265         <item>WEP</item>
266         <!-- Do not translate. -->
267         <item>WPA/WPA2 PSK</item>
268         <!-- Do not translate. -->
269         <item>802.1x EAP</item>
270     </string-array>
271
272    <!-- Wi-Fi AP settings.  The type of security a Wi-Fi AP supports. -->
273    <!-- Note that adding/removing/moving the items will need wifi settings code change. -->
274     <string-array name="wifi_ap_security" translatable="false">
275         <item>Open</item>
276         <!-- Do not translate. -->
277         <item>WPA2 PSK</item>
278     </string-array>
279
280     <!-- Match this with the constants in WifiDialog. --> <skip />
281     <!-- Wi-Fi settings.  The type of EAP method a Wi-Fi network has. -->
282     <string-array name="wifi_eap_method">
283         <!-- Do not translate. -->
284         <item>PEAP</item>
285         <!-- Do not translate. -->
286         <item>TLS</item>
287         <!-- Do not translate. -->
288         <item>TTLS</item>
289     </string-array>
290
291     <!-- Match this with drawable.wifi_signal. --> <skip />
292     <!-- Wi-Fi settings. The signal strength a Wi-Fi network has. -->
293     <string-array name="wifi_signal">
294         <item>Poor</item>
295         <item>Fair</item>
296         <item>Good</item>
297         <item>Excellent</item>
298     </string-array>
299
300     <!-- Wi-Fi settings. Presented as a list dialog to the user to choose the Wi-Fi sleep policy. -->
301     <string-array name="wifi_sleep_policy_entries">
302         <!-- Wi-Fi should go to sleep when the screen turns off. -->
303         <item>When screen turns off</item>
304         <!-- When plugged in, never go to sleep.  When on battery, go to sleep when screen turns off. -->
305         <item>Never when plugged in</item>
306         <!-- Never go to sleep. -->
307         <item>Never</item>
308     </string-array>
309
310     <!-- Match with wifi_sleep_policy_entries and the values of the settings in Settings class. --> <skip />
311     <!-- Do not translate. -->
312     <string-array name="wifi_sleep_policy_values">
313         <!-- Do not translate. -->
314         <item>0</item>
315         <!-- Do not translate. -->
316         <item>1</item>
317         <!-- Do not translate. -->
318         <item>2</item>
319     </string-array>
320
321     <!-- Display options for UsageStats class -->
322     <string-array name="usage_stats_display_order_types">
323         <item>Usage Time</item>
324         <item>Launch Count</item>
325         <item>Application Name</item>
326     </string-array>
327
328     <!-- EAP method -->
329     <string-array name="wifi_eap_entries">
330         <item>PEAP</item>
331         <item>TLS</item>
332         <item>TTLS</item>
333     </string-array>
334
335     <!-- Phase 2 options -->
336     <string-array name="wifi_phase2_entries">
337         <item>None</item>
338         <item>PAP</item>
339         <item>MSCHAP</item>
340         <item>MSCHAPV2</item>
341         <item>GTC</item>
342     </string-array>
343
344     <!-- Wi-Fi set up options -->
345     <!-- Note that adding/removing/moving items will need wifi settings code change. -->
346     <string-array name="wifi_network_setup">
347         <!-- Manual wifi configuration [CHAR LIMIT=25]-->
348         <item>Manual</item>
349         <!-- WPS is a new standard that allowes secure connection establishment to a home wireless network using a simplified process. WPS push button based configuration involves pushing a button on the router and the device [CHAR LIMIT=25]-->
350         <item>WPS push button</item>
351         <!-- WPS pin method based configuration. This requires entering a pin obtained from the access point [CHAR LIMIT=25] -->
352         <item>WPS pin from access point</item>
353         <!-- WPS pin method based configuration. This requires generating a pin from this device [CHAR LIMIT=25] -->
354         <item>WPS pin from this device</item>
355     </string-array>
356
357     <!-- Wi-Fi IP settings. -->
358    <!-- Note that adding/removing/moving the items will need wifi settings code change. -->
359     <string-array name="wifi_ip_settings">
360         <!-- Use DHCP (Dynamic Host Configuration Protocol) for obtaining IP settings [CHAR LIMIT=25] -->
361         <item>DHCP</item>
362         <!-- Use statically defined IP settings [CHAR LIMIT=25]-->
363         <item>Static</item>
364     </string-array>
365
366     <!-- Wi-Fi proxy settings. -->
367     <!-- Note that adding/removing/moving the items will need wifi settings code change. -->
368     <string-array name="wifi_proxy_settings">
369         <!-- No HTTP proxy is used for the current wifi network [CHAR LIMIT=25] -->
370         <item>None</item>
371         <!-- Static HTTP proxy settings are used for the current wifi network [CHAR LIMIT=25] -->
372         <item>Static</item>
373     </string-array>
374
375     <!-- Sound settings for emergency tone. -->
376     <string-array name="emergency_tone_entries">
377         <item>Off</item>
378         <item>Alert</item>
379         <item>Vibrate</item>
380     </string-array>
381
382     <!-- Do not translate. -->
383     <string-array name="emergency_tone_values">
384         <item>0</item>
385         <item>1</item>
386         <item>2</item>
387     </string-array>
388
389     <!-- Locales in this list are displayed with the corresponding
390          name from special_locale_names instead of using the name
391          from Locale.getDisplayName(). -->
392     <string-array translatable="false" name="special_locale_codes">
393         <item>zh_CN</item>
394         <item>zh_TW</item>
395     </string-array>
396
397     <string-array translatable="false" name="special_locale_names">
398         <item>中文 (简体)</item>
399         <item>中文 (繁體)</item>
400     </string-array>
401
402     <!-- Authentication Types used in APN editor -->
403     <string-array name="apn_auth_entries">
404         <item>None</item>
405         <item>PAP</item>
406         <item>CHAP</item>
407         <item>PAP or CHAP</item>
408     </string-array>
409
410     <string-array translatable="false" name="apn_auth_values">
411         <!-- Do not translate. -->
412         <item>0</item>
413         <!-- Do not translate. -->
414         <item>1</item>
415         <!-- Do not translate. -->
416         <item>2</item>
417         <!-- Do not translate. -->
418         <item>3</item>
419     </string-array>
420
421     <!-- Apps on SD instalaltion location options in ApplicationSettings -->
422     <string-array name="app_install_location_entries">
423         <item>Internal device storage</item>
424         <item>Removable SD card</item>
425         <item>Let the system decide</item>
426     </string-array>
427
428     <!-- Do not translate. -->
429     <string-array name="app_install_location_values" translatable="false">
430         <item>device</item>
431         <item>sdcard</item>
432         <item>auto</item>
433     </string-array>
434
435     <!-- New incoming call vibrate options. -->
436     <string-array name="vibrate_entries">
437         <item>Always</item>
438         <item>Never</item>
439         <item>Only in Silent mode</item>
440         <item>Only when not in Silent mode</item>
441     </string-array>
442
443     <!-- Values for vibrate_entries matching constants in SoundSettings. Do not translate. -->
444     <string-array name="vibrate_values" translatable="false">
445         <item>always</item>
446         <item>never</item>
447         <item>silent</item>
448         <item>notsilent</item>
449     </string-array>
450 </resources>