OSDN Git Service

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