strings.xml revision 4dd81467e33a694138da6916fc68ca79501a9429
1<?xml version="1.0" encoding="utf-8"?>
2<!--
3/* //device/apps/common/assets/res/any/strings.xml
4**
5** Copyright 2006, 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    <!-- Suffix added to a number to signify size in bytes. -->
22    <string name="byteShort">B</string>
23    <!-- Suffix added to a number to signify size in kilobytes. -->
24    <string name="kilobyteShort">KB</string>
25    <!-- Suffix added to a number to signify size in megabytes. -->
26    <string name="megabyteShort">MB</string>
27    <!-- Suffix added to a number to signify size in gigabytes. -->
28    <string name="gigabyteShort">GB</string>
29    <!-- Suffix added to a number to signify size in terabytes. -->
30    <string name="terabyteShort">TB</string>
31    <!-- Suffix added to a number to signify size in petabytes. -->
32    <string name="petabyteShort">PB</string>
33    <!-- Format string used to add a suffix like "KB" or "MB" to a number
34         to display a size in kilobytes, megabytes, or other size units.
35         Some languages (like French) will want to add a space between
36         the placeholders. -->
37    <string name="fileSizeSuffix"><xliff:g id="number" example="123">%1$s</xliff:g><xliff:g id="unit" example="KB">%2$s</xliff:g></string>
38
39    <!-- [CHAR_LIMIT=10] Suffix added to signify duration in days -->
40    <string name="durationDays"><xliff:g id="days">%1$d</xliff:g> days</string>
41
42    <!-- [CHAR_LIMIT=10] Suffix added to signify duration of one day with hours -->
43    <string name="durationDayHours"><xliff:g id="days">%1$d</xliff:g> day
44            <xliff:g id="hours">%2$d</xliff:g> hrs</string>
45
46    <!-- [CHAR_LIMIT=10] Suffix added to signify duration of one day with one hours -->
47    <string name="durationDayHour"><xliff:g id="days">%1$d</xliff:g> day
48            <xliff:g id="hours">%2$d</xliff:g> hr</string>
49
50    <!-- [CHAR_LIMIT=10] Suffix added to signify duration in hours -->
51    <string name="durationHours"><xliff:g id="hours">%1$d</xliff:g> hrs</string>
52
53    <!-- [CHAR_LIMIT=10] Suffix added to signify duration of one hour with minutes -->
54    <string name="durationHourMinutes"><xliff:g id="hours">%1$d</xliff:g> hr
55            <xliff:g id="minutes">%2$d</xliff:g> mins</string>
56
57    <!-- [CHAR_LIMIT=10] Suffix added to signify duration of one hour with one minute -->
58    <string name="durationHourMinute"><xliff:g id="hours">%1$d</xliff:g> hr
59            <xliff:g id="minutes">%2$d</xliff:g> min</string>
60
61    <!-- [CHAR_LIMIT=10] Suffix added to signify duration in minutes -->
62    <string name="durationMinutes"><xliff:g id="minutes">%1$d</xliff:g> mins</string>
63
64    <!-- [CHAR_LIMIT=10] Suffix added to signify duration of one minute with seconds -->
65    <string name="durationMinuteSeconds"><xliff:g id="minutes">%1$d</xliff:g> min
66            <xliff:g id="seconds">%2$d</xliff:g> secs</string>
67
68    <!-- [CHAR_LIMIT=10] Suffix added to signify duration of one minute with one second -->
69    <string name="durationMinuteSecond"><xliff:g id="minutes">%1$d</xliff:g> min
70            <xliff:g id="seconds">%2$d</xliff:g> sec</string>
71
72    <!-- [CHAR_LIMIT=10] Suffix added to signify duration in seconds -->
73    <string name="durationSeconds"><xliff:g id="seconds">%1$d</xliff:g> secs</string>
74
75    <!-- [CHAR_LIMIT=10] Suffix added to signify duration of one second -->
76    <string name="durationSecond"><xliff:g id="seconds">%1$d</xliff:g> sec</string>
77
78    <!-- Used in Contacts for a field that has no label and in Note Pad
79         for a note with no name. -->
80    <string name="untitled">&lt;Untitled&gt;</string>
81
82    <!-- Used to replace a range of characters in text that is too wide
83         for the space allocated to it (three dots). -->
84    <string name="ellipsis">\u2026</string>
85
86    <!-- Used to replace a range of characters in text that is too wide
87         for the space allocated to it (two dots). -->
88    <string name="ellipsis_two_dots">\u2025</string>
89
90    <!-- How to display the lack of a phone number -->
91    <string name="emptyPhoneNumber">(No phone number)</string>
92
93    <!-- How to display the lack of a name -->
94    <string name="unknownName">(Unknown)</string>
95
96    <!-- What the UI should display for "voice mail" unless overridden by the SIM-->
97    <string name="defaultVoiceMailAlphaTag">Voicemail</string>
98
99    <!-- What the UI should display for "Msisdn" unless overridden by the SIM-->
100    <string name="defaultMsisdnAlphaTag">MSISDN1</string>
101
102    <!-- For GsmMmiCode.java --> <skip />
103    <!-- Displayed when the user dialed an MMI code whose function
104         could not be performed. This will be displayed in a toast. -->
105    <string name="mmiError">Connection problem or invalid MMI code.</string>
106    <!-- Displayed when the user dialed an MMI code whose function
107         could not be performed because FDN is enabled. This will be displayed in a toast. -->
108    <string name="mmiFdnError">Operation is restricted to fixed dialing numbers only.</string>
109
110    <!-- Displayed when a phone feature such as call barring was activated. -->
111    <string name="serviceEnabled">Service was enabled.</string>
112    <!-- Displayed in front of the list of a set of service classes
113         (voice, data, fax, etc.) that were enabled. -->
114    <string name="serviceEnabledFor">Service was enabled for:</string>
115    <!-- Displayed when a phone feature such as call forwarding was deactivated. -->
116    <string name="serviceDisabled">Service has been disabled.</string>
117    <!-- Displayed when a phone property such as a SIM password was registered. -->
118    <string name="serviceRegistered">Registration was successful.</string>
119    <!-- Displayed when a phone property such as a SIM password was erased. -->
120    <string name="serviceErased">Erasure was successful.</string>
121    <!-- Displayed when a SIM password was entered incorrectly. -->
122    <string name="passwordIncorrect">Incorrect password.</string>
123    <!-- Displayed when a phone feature triggered by an MMI code is complete. -->
124    <string name="mmiComplete">MMI complete.</string>
125    <!-- Displayed when a SIM PIN password is entered incorrectly. -->
126    <string name="badPin">The old PIN you typed isn\'t correct.</string>
127    <!-- Displayed when a SIM PUK password is entered incorrectly. -->
128    <string name="badPuk">The PUK you typed isn\'t correct.</string>
129    <!-- Displayed when SIM PIN passwords are entered inconsistently. -->
130    <string name="mismatchPin">The PINs you typed don\'t match.</string>
131    <!-- Displayed when a SIM PIN password is too long or too short. -->
132    <string name="invalidPin">Type a PIN that is 4 to 8 numbers.</string>
133    <!-- Displayed when a SIM PUK password is too short. -->
134    <string name="invalidPuk">Type a PUK that is 8 numbers or longer.</string>
135    <!-- Displayed to prompt the user to type the PUK password to unlock
136         the SIM card. -->
137    <string name="needPuk">Your SIM card is PUK-locked. Type the PUK code to unlock it.</string>
138    <string name="needPuk2">Type PUK2 to unblock SIM card.</string>
139    <!-- Displayed when user attempts to change SIM PIN1 without enabling PIN1. -->
140    <string name="enablePin">Unsuccessful, enable SIM/RUIM Lock.</string>
141    <!-- Displayed when a SIM PIN/PUK is entered incorrectly. -->
142    <plurals name="pinpuk_attempts">
143        <item quantity="one">You have <xliff:g id="number">%d</xliff:g> remaining attempt before SIM is locked.</item>
144        <item quantity="other">You have <xliff:g id="number">%d</xliff:g> remaining attempts before SIM is locked.</item>
145    </plurals>
146    <!-- Title for the dialog used to display the user's IMEI number [CHAR LIMIT=10] -->
147    <string name="imei">IMEI</string>
148
149    <!-- Title for the dialog used to display the user's MEID number on CDMA network
150         [CHAR LIMIT=10] -->
151    <string name="meid">MEID</string>
152
153    <!-- Displayed as the title for a success/failure report enabling/disabling caller ID. -->
154    <string name="ClipMmi">Incoming Caller ID</string>
155    <!-- Displayed as the title for a success/failure report enabling/disabling caller ID. -->
156    <string name="ClirMmi">Outgoing Caller ID</string>
157    <!-- Displayed as the title for a success/failure report enabling/disabling connected line ID. -->
158    <string name="ColpMmi">Connected Line ID</string>
159    <!-- Displayed as the title for a success/failure report enabling/disabling connected line ID restriction. -->
160    <string name="ColrMmi">Connected Line ID Restriction</string>
161    <!-- Displayed as the title for a success/failure report enabling/disabling call forwarding. -->
162    <string name="CfMmi">Call forwarding</string>
163    <!-- Displayed as the title for a success/failure report enabling/disabling call waiting. -->
164    <string name="CwMmi">Call waiting</string>
165    <!-- Displayed as the title for a success/failure report enabling/disabling call barring. -->
166    <string name="BaMmi">Call barring</string>
167    <!-- Displayed as the title for a success/failure report changing the SIM password. -->
168    <string name="PwdMmi">Password change</string>
169    <!-- Displayed as the title for a success/failure report changing the SIM PIN. -->
170    <string name="PinMmi">PIN change</string>
171    <string name="CnipMmi">Calling number present</string>
172    <string name="CnirMmi">Calling number restricted</string>
173    <string name="ThreeWCMmi">Three way calling</string>
174    <string name="RuacMmi">Rejection of undesired annoying calls</string>
175    <string name="CndMmi">Calling number delivery</string>
176    <string name="DndMmi">Do not disturb</string>
177
178    <!-- Displayed to confirm to the user that caller ID will be restricted on the next call as usual. -->
179    <string name="CLIRDefaultOnNextCallOn">Caller ID defaults to restricted. Next call: Restricted</string>
180    <!-- Displayed to confirm to the user that caller ID will be not restricted on the next call even though it usually is. -->
181    <string name="CLIRDefaultOnNextCallOff">Caller ID defaults to restricted. Next call: Not restricted</string>
182    <!-- Displayed to confirm to the user that caller ID will not be restricted on the next call but usually is. -->
183    <string name="CLIRDefaultOffNextCallOn">Caller ID defaults to not restricted. Next call: Restricted</string>
184    <!-- Displayed to confirm to the user that caller ID will not be restricted on the next call or in general. -->
185    <string name="CLIRDefaultOffNextCallOff">Caller ID defaults to not restricted. Next call: Not restricted</string>
186
187
188    <!-- Displayed to tell the user that caller ID is not provisioned for their SIM. -->
189    <string name="serviceNotProvisioned">Service not provisioned.</string>
190    <!-- Displayed to tell the user that they cannot change the caller ID setting. -->
191    <string name="CLIRPermanent">You can\'t change the caller ID setting.</string>
192
193    <!-- Notification title to tell the user that restricted state is changed by access control. -->
194    <string name="RestrictedChangedTitle">Restricted access changed</string>
195    <!-- Displayed to tell the user that data service is blocked by access control. -->
196    <string name="RestrictedOnData">Data service is blocked.</string>
197    <!-- Displayed to tell the user that emergency service is blocked by access control. -->
198    <string name="RestrictedOnEmergency">Emergency service is blocked.</string>
199    <!-- Displayed to tell the user that normal service is blocked by access control. -->
200    <string name="RestrictedOnNormal">Voice service is blocked.</string>
201    <!-- Displayed to tell the user that all emergency and normal voice services are blocked by access control. -->
202    <string name="RestrictedOnAllVoice">All voice services are blocked.</string>
203    <!-- Displayed to tell the user that sms service is blocked by access control. -->
204    <string name="RestrictedOnSms">SMS service is blocked.</string>
205    <!-- Displayed to tell the user that voice/data service is blocked by access control. -->
206    <string name="RestrictedOnVoiceData">Voice/data services are blocked.</string>
207    <!-- Displayed to tell the user that voice and sms service are blocked by access control. -->
208    <string name="RestrictedOnVoiceSms">Voice/SMS services are blocked.</string>
209    <!-- Displayed to tell the user that all service is blocked by access control. -->
210    <string name="RestrictedOnAll">All voice/data/SMS services are blocked.</string>
211
212    <!-- Mappings between TS 27.007 +CFCC/+CLCK "service classes" and human-readable strings--> <skip />
213    <!-- Example: Service was enabled for: Voice, Data -->
214    <string name="serviceClassVoice">Voice</string>
215    <!-- Example: Service was enabled for: Voice, Data -->
216    <string name="serviceClassData">Data</string>
217    <!-- Example: Service was enabled for: Voice, FAX -->
218    <string name="serviceClassFAX">FAX</string>
219    <!-- Example: Service was enabled for: Voice, SMS -->
220    <string name="serviceClassSMS">SMS</string>
221    <!-- Meaning: asynchronous data.  Example: Service was enabled for: Voice, Async -->
222    <string name="serviceClassDataAsync">Async</string>
223    <!-- Meaning: synchronous data.  Example: Service was enabled for: Voice, Async -->
224    <string name="serviceClassDataSync">Sync</string>
225    <!-- Meaning: packet data.  Example: Service was enabled for: Voice, Packet -->
226    <string name="serviceClassPacket">Packet</string>
227    <!-- Meaning: unknown.  Example: Service was enabled for: Voice, PAD -->
228    <string name="serviceClassPAD">PAD</string>
229
230    <!-- CDMA Roaming Indicator Strings (non ERI)--> <skip />
231    <!-- Default roaming indicator text -->
232    <string name="roamingText0">Roaming Indicator On</string>
233    <string name="roamingText1">Roaming Indicator Off</string>
234    <string name="roamingText2">Roaming Indicator Flashing</string>
235    <string name="roamingText3">Out of Neighborhood</string>
236    <string name="roamingText4">Out of Building</string>
237    <string name="roamingText5">Roaming - Preferred System</string>
238    <string name="roamingText6">Roaming - Available System</string>
239    <string name="roamingText7">Roaming - Alliance Partner</string>
240    <string name="roamingText8">Roaming - Premium Partner</string>
241    <string name="roamingText9">Roaming - Full Service Functionality</string>
242    <string name="roamingText10">Roaming - Partial Service Functionality</string>
243    <string name="roamingText11">Roaming Banner On</string>
244    <string name="roamingText12">Roaming Banner Off</string>
245    <string name="roamingTextSearching">Searching for Service</string>
246
247
248    <!--
249        {0} is one of "bearerServiceCode*"
250        {1} is dialing number
251        {2} is time in seconds
252
253        cfTemplateRegistered and cfTemplateRegisteredTime mean that a phone number
254        has been set but forwarding is not on.
255    --> <skip />
256    <!-- Displayed when the call forwarding query was not able to be forwarded. -->
257    <string name="cfTemplateNotForwarded"><xliff:g id="bearer_service_code">{0}</xliff:g>: Not forwarded</string>
258    <!-- Displayed when the call forwarding query was forwarded. -->
259    <string name="cfTemplateForwarded"><xliff:g id="bearer_service_code">{0}</xliff:g>: <xliff:g id="dialing_number">{1}</xliff:g></string>
260    <!-- Displayed when the call forwarding query will be forwarded after some time. -->
261    <string name="cfTemplateForwardedTime"><xliff:g id="bearer_service_code">{0}</xliff:g>: <xliff:g id="dialing_number">{1}</xliff:g> after <xliff:g id="time_delay">{2}</xliff:g> seconds</string>
262    <!-- Displayed when the call forwarding query was set but forwarding is not enabled. -->
263    <string name="cfTemplateRegistered"><xliff:g id="bearer_service_code">{0}</xliff:g>: Not forwarded</string>
264    <!-- Displayed when the call forwarding query was set but forwarding is not enabled. -->
265    <string name="cfTemplateRegisteredTime"><xliff:g id="bearer_service_code">{0}</xliff:g>: Not forwarded</string>
266
267    <!-- android.net.http Error strings --> <skip />
268    <!-- Displayed when a feature code (non-phone number) is dialed and completes successfully. -->
269    <string name="fcComplete">Feature code complete.</string>
270    <!-- Displayed when a feature code (non-phone number) is dialed and completes unsuccessfully. -->
271    <string name="fcError">Connection problem or invalid feature code.</string>
272    <!-- android.net.http Error strings --> <skip />
273    <!-- Displayed when a web request was successful. -->
274    <string name="httpErrorOk">OK</string>
275    <!-- Displayed when a web request failed with a generic network error. -->
276    <string name="httpError">There was a network error.</string>
277    <!-- Displayed when a web request failed because the URL could not be found. -->
278    <string name="httpErrorLookup">Couldn\'t find the URL.</string>
279    <!-- Displayed when a web request failed because the site's authentication scheme is not supported by us. -->
280    <string name="httpErrorUnsupportedAuthScheme">The site authentication scheme isn\'t supported.</string>
281    <!-- Displayed when a web request failed because the authentication failed. -->
282    <string name="httpErrorAuth">Couldn\'t authenticate.</string>
283    <!-- Displayed when a web request failed because the authentication with the proxy failed. -->
284    <string name="httpErrorProxyAuth">Authentication via the proxy server was unsuccessful.</string>
285    <!-- Displayed when a web request failed because there was a connection error. -->
286    <string name="httpErrorConnect">Couldn\'t connect to the server.</string>
287    <!-- Displayed when a web request failed because there was an input or output error. -->
288    <string name="httpErrorIO">Couldn\'t communicate with the server. Try again later.</string>
289    <!-- Displayed when a web request failed because the request timed out -->
290    <string name="httpErrorTimeout">The connection to the server timed out.</string>
291    <!-- Displayed when a web request failed because the site tried to redirect us one too many times -->
292    <string name="httpErrorRedirectLoop">The page contains too many server redirects.</string>
293    <!-- Displayed when a web request failed because the protocol of the server is not supported. -->
294    <string name="httpErrorUnsupportedScheme">The protocol isn\'t supported.</string>
295    <!-- Displayed when a web request failed because the a secure connection couldn't be made to the server.-->
296    <string name="httpErrorFailedSslHandshake">Couldn\'t establish a secure connection.</string>
297    <!-- Displayed when a web request failed because the URL isn't in a valid form. -->
298    <string name="httpErrorBadUrl">Couldn\'t open the page because the URL is invalid.</string>
299    <!-- Displayed when a request failed because we failed to open the file. -->
300    <string name="httpErrorFile">Couldn\'t access the file.</string>
301    <!-- Displayed when a request failed because the file wasn't found. -->
302    <string name="httpErrorFileNotFound">Couldn\'t find the requested file.</string>
303    <!-- Displayed when a request failed because there are too many requests right now. -->
304    <string name="httpErrorTooManyRequests">Too many requests are being processed. Try again later.</string>
305
306    <!-- Account notifications --> <skip />
307    <!-- A notification is shown when the AccountManager is unable to
308    supply an auth token without prompting the user to re-enter the
309    password.  This is the text that will scroll through the
310    notification bar (will be seen by the user as he uses another application). -->
311    <string name="notification_title">Signin error for <xliff:g id="account" example="foo@gmail.com">%1$s</xliff:g></string>
312
313    <!-- Sync notifications --> <skip />
314    <!-- A notification is shown when there is a sync error.  This is the text that will scroll through the notification bar (will be seen by the user as he uses another application). -->
315    <string name="contentServiceSync">Sync</string>
316    <!-- A notification is shown when there is a sync error.  This is the title of the notification.  It will be seen in the pull-down notification tray. -->
317    <string name="contentServiceSyncNotificationTitle">Sync</string>
318    <!-- A notification is shown when there is a sync error.  This is the message of the notification.  It describes the error, in this case is there were too many deletes. The argument is the type of content, for example Gmail or Calendar. It will be seen in the pull-down notification tray. -->
319    <string name="contentServiceTooManyDeletesNotificationDesc">Too many <xliff:g id="content_type">%s</xliff:g> deletes.</string>
320
321    <!-- If MMS discovers there isn't much space left on the device, it will show a toast with this message. -->
322    <string name="low_memory" product="tablet">Tablet storage is full. Delete some files to free space.</string>
323    <!-- If MMS discovers there isn't much space left on the device, it will show a toast with this message. -->
324    <string name="low_memory" product="watch">Watch storage is full. Delete some files to free space.</string>
325    <!-- If MMS discovers there isn't much space left on the device, it will show a toast with this message. -->
326    <string name="low_memory" product="default">Phone storage is full. Delete some files to free space.</string>
327
328    <!-- SSL CA cert notification --> <skip />
329    <!-- Shows up when there is a user SSL CA Cert installed on the
330         device.  Indicates to the user that SSL traffic can be intercepted.  [CHAR LIMIT=NONE] -->
331    <string name="ssl_ca_cert_warning">Network may be monitored</string>
332    <!-- Content text for a notification. The Title of the notification is "ssl_ca_cert_warning",
333         i.e.  "Network may be monitored". This says that an unknown party is doing the monitoring.
334         [CHAR LIMIT=100]-->
335    <string name="ssl_ca_cert_noti_by_unknown">By an unknown third party</string>
336    <!-- Content text for a notification. The Title of the notification is "ssl_ca_cert_warning",
337         i.e.  "Network may be monitored". This indicates who is doing the monitoring.
338         [CHAR LIMIT=100]-->
339    <string name="ssl_ca_cert_noti_managed">By <xliff:g id="managing_domain">%s</xliff:g></string>
340
341    <!-- Display name for any time a piece of data refers to the owner of the phone. For example, this could be used in place of the phone's phone number. -->
342    <string name="me">Me</string>
343
344    <!-- Power Dialog --> <skip />
345    <!-- Title for the Phone Options dialog to lock the screen, turn off the phone etc. -->
346    <string name="power_dialog" product="tablet">Tablet options</string>
347    <!-- Title for the Phone Options dialog to lock the screen, turn off the phone etc. -->
348    <string name="power_dialog" product="default">Phone options</string>
349    <!-- Button to turn on silent mode, within the Phone Options dialog -->
350    <string name="silent_mode">Silent mode</string>
351    <!-- Button to turn on the radio, within the Phone Options dialog -->
352    <string name="turn_on_radio">Turn on wireless</string>
353    <!-- Button to turn off the radio, within the Phone Options dialog -->
354    <string name="turn_off_radio">Turn off wireless</string>
355    <!-- Button to lock the screen, within the Phone Options dialog -->
356    <string name="screen_lock">Screen lock</string>
357    <!-- Button to turn off the phone, within the Phone Options dialog -->
358    <string name="power_off">Power off</string>
359    <!-- Spoken description for ringer silent option. [CHAR LIMIT=NONE] -->
360    <string name="silent_mode_silent">Ringer off</string>
361    <!-- Spoken description for ringer vibrate option. [CHAR LIMIT=NONE] -->
362    <string name="silent_mode_vibrate">Ringer vibrate</string>
363    <!-- Spoken description for ringer normal option. [CHAR LIMIT=NONE] -->
364    <string name="silent_mode_ring">Ringer on</string>
365
366    <!-- Shutdown Progress Dialog. This is shown if the user chooses to power off the phone. -->
367    <string name="shutdown_progress">Shutting down\u2026</string>
368
369    <!-- Shutdown Confirmation Dialog.  When the user chooses to power off the phone, there will
370         be a confirmation dialog.  This is the message. -->
371    <string name="shutdown_confirm" product="tablet">Your tablet will shut down.</string>
372    <!-- Shutdown Confirmation Dialog.  When the user chooses to power off the watch, there will
373         be a confirmation dialog.  This is the message. -->
374    <string name="shutdown_confirm" product="watch">Your watch will shut down.</string>
375    <!-- Shutdown Confirmation Dialog.  When the user chooses to power off the phone, there will
376         be a confirmation dialog.  This is the message. -->
377    <string name="shutdown_confirm" product="default">Your phone will shut down.</string>
378
379    <!-- Shutdown Confirmation Dialog.  When the user chooses to power off the phone, it asks
380         the user if they'd like to shut down.  This is the message.  This is used instead of
381         shutdown_confirm when the system is configured to use long press to go directly to the
382         power off dialog instead of the global actions menu. -->
383    <string name="shutdown_confirm_question">Do you want to shut down?</string>
384
385    <!-- Title of dialog to confirm rebooting into safe mode. [CHAR LIMIT=50] -->
386    <string name="reboot_safemode_title">Reboot to safe mode</string>
387
388    <!-- Shutdown Confirmation Dialog.  Message in the confirmation dialog
389         when the user asks to reboot into safe mode. [CHAR LIMIT=NONE] -->
390    <string name="reboot_safemode_confirm">Do you want to reboot into safe mode?
391         This will disable all third party applications you have installed.
392         They will be restored when you reboot again.</string>
393
394    <!-- Recent Tasks dialog: title
395     TODO: this should move to SystemUI.apk, but the code for the old
396            recent dialog is still in the framework
397     -->
398    <string name="recent_tasks_title">Recent</string>
399    <!-- Recent Tasks dialog: message when there are no recent applications
400     TODO: this should move to SystemUI.apk, but the code for the old
401            recent dialog is still in the framework
402     -->
403    <string name="no_recent_tasks">No recent apps.</string>
404
405    <!-- Title of the Global Actions Dialog -->
406    <string name="global_actions" product="tablet">Tablet options</string>
407    <!-- Title of the Global Actions Dialog -->
408    <string name="global_actions" product="default">Phone options</string>
409
410    <!-- label for item that locks the phone in the phone options dialog -->
411    <string name="global_action_lock">Screen lock</string>
412
413    <!-- label for item that turns off power in phone options dialog -->
414    <string name="global_action_power_off">Power off</string>
415
416    <!-- label for item that generates a bug report in the phone options dialog -->
417    <string name="global_action_bug_report">Bug report</string>
418
419    <!-- Take bug report menu title [CHAR LIMIT=NONE] -->
420    <string name="bugreport_title">Take bug report</string>
421    <!-- Message in bugreport dialog describing what it does [CHAR LIMIT=NONE] -->
422    <string name="bugreport_message">This will collect information about your
423        current device state, to send as an e-mail message.  It will take a little
424        time from starting the bug report until it is ready to be sent; please be
425        patient.</string>
426    <!-- Format for build summary info [CHAR LIMIT=NONE] -->
427    <string name="bugreport_status" translatable="false">%s (%s)</string>
428
429    <!-- label for item that enables silent mode in phone options dialog -->
430    <string name="global_action_toggle_silent_mode">Silent mode</string>
431
432    <!-- status message in phone options dialog for when silent mode is enabled -->
433    <string name="global_action_silent_mode_on_status">Sound is OFF</string>
434
435    <!-- status message in phone options dialog for when silent mode is disabled -->
436    <string name="global_action_silent_mode_off_status">Sound is ON</string>
437
438    <!-- label for item that toggles airplane mode -->
439    <string name="global_actions_toggle_airplane_mode">Airplane mode</string>
440
441    <!-- status message in phone options dialog for when airplane mode is on -->
442    <string name="global_actions_airplane_mode_on_status">Airplane mode is ON</string>
443
444    <!-- status message in phone options dialog for when airplane mode is off -->
445    <string name="global_actions_airplane_mode_off_status">Airplane mode is OFF</string>
446
447    <!-- label for item that launches settings in phone options dialog [CHAR LIMIT=15]-->
448    <string name="global_action_settings">Settings</string>
449
450    <!-- label for item that locks the phone and enforces that it can't be unlocked without entering a credential. [CHAR LIMIT=15] -->
451    <string name="global_action_lockdown">Lock now</string>
452
453    <!-- Text to use when the number in a notification info is too large
454         (greater than status_bar_notification_info_maxnum, defined in
455         values/config.xml) and must be truncated. May need to be localized
456         for most appropriate textual indicator of "more than X".
457         [CHAR LIMIT=4] -->
458    <string name="status_bar_notification_info_overflow">999+</string>
459
460    <!-- Displayed to the user to tell them that they have started up the phone in "safe mode" -->
461    <string name="safeMode">Safe mode</string>
462
463    <!-- Label for the Android system components when they are shown to the user. -->
464    <string name="android_system_label">Android System</string>
465
466    <!-- Label for the user owner in the intent forwarding app. -->
467    <string name="user_owner_label">Personal apps</string>
468
469    <!-- Label for a corporate profile in the intent forwarding app. -->
470    <string name="managed_profile_label">Work</string>
471
472    <!-- Title of a category of application permissions, listed so the user can choose whether they want to allow the application to do this. -->
473    <string name="permgrouplab_costMoney">Services that cost you money</string>
474    <!-- Description of a category of application permissions, listed so the user can choose whether they want to allow the application to do this. -->
475    <string name="permgroupdesc_costMoney">Do things that can cost you money.</string>
476
477    <!-- Title of a category of application permissions, listed so the user can choose whether they want to allow the application to do this. -->
478    <string name="permgrouplab_messages">Your messages</string>
479    <!-- Description of a category of application permissions, listed so the user can choose whether they want to allow the application to do this. -->
480    <string name="permgroupdesc_messages">Read and write your SMS, email, and other messages.</string>
481
482    <!-- Title of a category of application permissions, listed so the user can choose whether they want to allow the application to do this. -->
483    <string name="permgrouplab_personalInfo">Your personal information</string>
484    <!-- Description of a category of application permissions, listed so the user can choose whether they want to allow the application to do this. -->
485    <string name="permgroupdesc_personalInfo">Direct access to information about you, stored in on your contact card.</string>
486
487    <!-- Title of a category of application permissions, listed so the user can choose whether they want to allow the application to do this. -->
488    <string name="permgrouplab_socialInfo">Your social information</string>
489    <!-- Description of a category of application permissions, listed so the user can choose whether they want to allow the application to do this. -->
490    <string name="permgroupdesc_socialInfo">Direct access to information about your contacts and social connections.</string>
491
492    <!-- Title of a category of application permissions, listed so the user can choose whether they want to allow the application to do this. -->
493    <string name="permgrouplab_location">Your location</string>
494    <!-- Description of a category of application permissions, listed so the user can choose whether they want to allow the application to do this. -->
495    <string name="permgroupdesc_location">Monitor your physical location.</string>
496
497    <!-- Title of a category of application permissions, listed so the user can choose whether they want to allow the application to do this. -->
498    <string name="permgrouplab_network">Network communication</string>
499    <!-- Description of a category of application permissions, listed so the user can choose whether they want to allow the application to do this. -->
500    <string name="permgroupdesc_network">Access various network features.</string>
501
502    <!-- Title of a category of application permissions, listed so the user can choose whether they want to allow the application to do this. -->
503    <string name="permgrouplab_bluetoothNetwork">Bluetooth</string>
504    <!-- Description of a category of application permissions, listed so the user can choose whether they want to allow the application to do this. -->
505    <string name="permgroupdesc_bluetoothNetwork">Access devices and networks through Bluetooth.</string>
506
507    <!-- Title of a category of application permissions, listed so the user can choose whether they want to allow the application to do this. -->
508    <string name="permgrouplab_audioSettings">Audio Settings</string>
509    <!-- Description of a category of application permissions, listed so the user can choose whether they want to allow the application to do this. -->
510    <string name="permgroupdesc_audioSettings">Change audio settings.</string>
511
512    <!-- Title of a category of application permissions, listed so the user can choose whether they want to allow the application to do this. -->
513    <string name="permgrouplab_affectsBattery">Affects Battery</string>
514    <!-- Description of a category of application permissions, listed so the user can choose whether they want to allow the application to do this. -->
515    <string name="permgroupdesc_affectsBattery">Use features that can quickly drain battery.</string>
516
517    <!-- Title of a category of application permissions, listed so the user can choose whether they want to allow the application to do this. -->
518    <string name="permgrouplab_calendar">Calendar</string>
519    <!-- Description of a category of application permissions, listed so the user can choose whether they want to allow the application to do this. -->
520    <string name="permgroupdesc_calendar">Direct access to calendar and events.</string>
521
522    <!-- Title of a category of application permissions, listed so the user can choose whether they want to allow the application to do this. -->
523    <string name="permgrouplab_dictionary">Read User Dictionary</string>
524    <!-- Description of a category of application permissions, listed so the user can choose whether they want to allow the application to do this. -->
525    <string name="permgroupdesc_dictionary">Read words in user dictionary.</string>
526
527    <!-- Title of a category of application permissions, listed so the user can choose whether they want to allow the application to do this. -->
528    <string name="permgrouplab_writeDictionary">Write User Dictionary</string>
529    <!-- Description of a category of application permissions, listed so the user can choose whether they want to allow the application to do this. -->
530    <string name="permgroupdesc_writeDictionary">Add words to the user dictionary.</string>
531
532    <!-- Title of a category of application permissions, listed so the user can choose whether they want to allow the application to do this. -->
533    <string name="permgrouplab_bookmarks">Bookmarks and History</string>
534    <!-- Description of a category of application permissions, listed so the user can choose whether they want to allow the application to do this. -->
535    <string name="permgroupdesc_bookmarks">Direct access to bookmarks and browser history.</string>
536
537    <!-- Title of a category of application permissions, listed so the user can choose whether they want to allow the application to do this. -->
538    <string name="permgrouplab_deviceAlarms">Alarm</string>
539    <!-- Description of a category of application permissions, listed so the user can choose whether they want to allow the application to do this. -->
540    <string name="permgroupdesc_deviceAlarms">Set the alarm clock.</string>
541
542    <!-- Title of a category of application permissions, listed so the user can choose whether they want to allow the application to do this. -->
543    <string name="permgrouplab_voicemail">Voicemail</string>
544    <!-- Description of a category of application permissions, listed so the user can choose whether they want to allow the application to do this. -->
545    <string name="permgroupdesc_voicemail">Direct access to voicemail.</string>
546
547    <!-- Title of a category of application permissions, listed so the user can choose whether they want to allow the application to do this. -->
548    <string name="permgrouplab_microphone">Microphone</string>
549    <!-- Description of a category of application permissions, listed so the user can choose whether they want to allow the application to do this. -->
550    <string name="permgroupdesc_microphone">Direct access to the microphone to record audio.</string>
551
552    <!-- Title of a category of application permissions, listed so the user can choose whether they want to allow the application to do this. -->
553    <string name="permgrouplab_camera">Camera</string>
554    <!-- Description of a category of application permissions, listed so the user can choose whether they want to allow the application to do this. -->
555    <string name="permgroupdesc_camera">Direct access to camera for image or video capture.</string>
556
557    <!-- Title of a category of application permissions, listed so the user can choose whether they want to allow the application to do this. -->
558    <string name="permgrouplab_screenlock">Lock screen</string>
559    <!-- Description of a category of application permissions, listed so the user can choose whether they want to allow the application to do this. -->
560    <string name="permgroupdesc_screenlock">Ability to affect behavior of the lock screen on your device.</string>
561
562    <!-- Title of a category of application permissions, listed so the user can choose whether they want to allow the application to do this. -->
563    <string name="permgrouplab_appInfo">Your applications information</string>
564    <!-- Description of a category of application permissions, listed so the user can choose whether they want to allow the application to do this. -->
565    <string name="permgroupdesc_appInfo">Ability to affect behavior of other applications on your device.</string>
566
567    <!-- Title of a category of application permissions, listed so the user can choose whether they want to allow the application to do this. -->
568    <string name="permgrouplab_wallpaper">Wallpaper</string>
569    <!-- Description of a category of application permissions, listed so the user can choose whether they want to allow the application to do this. -->
570    <string name="permgroupdesc_wallpaper">Change the device wallpaper settings.</string>
571
572    <!-- Title of a category of application permissions, listed so the user can choose whether they want to allow the application to do this. -->
573    <string name="permgrouplab_systemClock">Clock</string>
574    <!-- Description of a category of application permissions, listed so the user can choose whether they want to allow the application to do this. -->
575    <string name="permgroupdesc_systemClock">Change the device time or timezone.</string>
576
577    <!-- Title of a category of application permissions, listed so the user can choose whether they want to allow the application to do this. -->
578    <string name="permgrouplab_statusBar">Status Bar</string>
579    <!-- Description of a category of application permissions, listed so the user can choose whether they want to allow the application to do this. -->
580    <string name="permgroupdesc_statusBar">Change the device status bar settings.</string>
581
582    <!-- Title of a category of application permissions, listed so the user can choose whether they want to allow the application to do this. -->
583    <string name="permgrouplab_syncSettings">Sync Settings</string>
584    <!-- Description of a category of application permissions, listed so the user can choose whether they want to allow the application to do this. -->
585    <string name="permgroupdesc_syncSettings">Access to the sync settings.</string>
586
587    <!-- Title of a category of application permissions, listed so the user can choose whether they want to allow the application to do this. -->
588    <string name="permgrouplab_accounts">Your accounts</string>
589    <!-- Description of a category of application permissions, listed so the user can choose whether they want to allow the application to do this. -->
590    <string name="permgroupdesc_accounts">Access the available accounts.</string>
591
592    <!-- Title of a category of application permissions, listed so the user can choose whether they want to allow the application to do this. -->
593    <string name="permgrouplab_hardwareControls">Hardware controls</string>
594    <!-- Description of a category of application permissions, listed so the user can choose whether they want to allow the application to do this. -->
595    <string name="permgroupdesc_hardwareControls">Direct access to hardware on the handset.</string>
596
597    <!-- Title of a category of application permissions, listed so the user can choose whether they want to allow the application to do this. -->
598    <string name="permgrouplab_phoneCalls">Phone calls</string>
599    <!-- Description of a category of application permissions, listed so the user can choose whether they want to allow the application to do this. -->
600    <string name="permgroupdesc_phoneCalls">Monitor, record, and process phone calls.</string>
601
602    <!-- Title of a category of application permissions, listed so the user can choose whether they want to allow the application to do this. -->
603    <string name="permgrouplab_systemTools">System tools</string>
604    <!-- Description of a category of application permissions, listed so the user can choose whether they want to allow the application to do this. -->
605    <string name="permgroupdesc_systemTools">Lower-level access and control of the system.</string>
606
607    <!-- Title of a category of application permissions, listed so the user can choose whether they want to allow the application to do this. -->
608    <string name="permgrouplab_developmentTools">Development tools</string>
609    <!-- Description of a category of application permissions, listed so the user can choose whether they want to allow the application to do this. -->
610    <string name="permgroupdesc_developmentTools">Features only needed for app developers.</string>
611
612    <!-- Title of a category of application permissions, listed so the user can choose whether they want to allow the application to do this. -->
613    <string name="permgrouplab_display">Other Application UI</string>
614    <!-- Description of a category of application permissions, listed so the user can choose whether they want to allow the application to do this. -->
615    <string name="permgroupdesc_display">Effect the UI of other applications.</string>
616
617    <!-- Title of a category of application permissions, listed so the user can choose whether they want to allow the application to do this. -->
618    <string name="permgrouplab_storage">Storage</string>
619    <!-- Description of a category of application permissions, listed so the user can choose whether they want to allow the application to do this.   [CHAR LIMIT=30] -->
620    <string name="permgroupdesc_storage" product="nosdcard">Access the USB storage.</string>
621    <!-- Description of a category of application permissions, listed so the user can choose whether they want to allow the application to do this. -->
622    <string name="permgroupdesc_storage" product="default">Access the SD card.</string>
623
624    <!-- Title of a category of application permissions, listed so the user can choose whether they want to allow the application to do this. -->
625    <string name="permgrouplab_accessibilityFeatures">Accessibility features</string>
626    <!-- Description of a category of application permissions, listed so the user can choose whether they want to allow the application to do this. -->
627    <string name="permgroupdesc_accessibilityFeatures">Features that assistive technology can request.</string>
628
629    <!-- Title for the capability of an accessibility service to retrieve window content. -->
630    <string name="capability_title_canRetrieveWindowContent">Retrieve window content</string>
631    <!-- Description for the capability of an accessibility service to retrieve window content. -->
632    <string name="capability_desc_canRetrieveWindowContent">Inspect the content of a window you\'re
633        interacting with.</string>
634
635    <!-- Title for the capability of an accessibility service to request touch exploration. -->
636    <string name="capability_title_canRequestTouchExploration">Turn on Explore by Touch</string>
637    <!-- Description for the capability of an accessibility service to request touch exploration. -->
638    <string name="capability_desc_canRequestTouchExploration">Touched items will be spoken aloud
639        and the screen can be explored using gestures.</string>
640
641    <!-- Title for the capability of an accessibility service to request enhanced web accessibility. -->
642    <string name="capability_title_canRequestEnhancedWebAccessibility">Turn on enhanced web
643        accessibility</string>
644    <!-- Description for the capability of an accessibility service to request enhanced web accessibility. -->
645    <string name="capability_desc_canRequestEnhancedWebAccessibility">Scripts may be installed to
646        make app content more accessible.</string>
647
648    <!-- Title for the capability of an accessibility service to request to filter key events. -->
649    <string name="capability_title_canRequestFilterKeyEvents">Observe text you type</string>
650    <!-- Description for the capability of an accessibility service to request to filter key events. -->
651    <string name="capability_desc_canRequestFilterKeyEvents">Includes personal data such as credit
652        card numbers and passwords.</string>
653
654    <!--  Permissions -->
655
656    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
657    <string name="permlab_statusBar">disable or modify status bar</string>
658    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
659    <string name="permdesc_statusBar">Allows the app to disable the status bar or add and remove system icons.</string>
660
661    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
662    <string name="permlab_statusBarService">status bar</string>
663    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
664    <string name="permdesc_statusBarService">Allows the app to be the status bar.</string>
665
666    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
667    <string name="permlab_expandStatusBar">expand/collapse status bar</string>
668    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
669    <string name="permdesc_expandStatusBar">Allows the app to expand or collapse the status bar.</string>
670
671    <!-- Title of an application permission, listed so the user can install application shortcuts
672    in their Launcher -->
673    <string name="permlab_install_shortcut">install shortcuts</string>
674    <!-- Description of an application permission, listed so the user can install application shortcuts
675    in their Launcher -->
676    <string name="permdesc_install_shortcut">Allows an application to add
677        Homescreen shortcuts without user intervention.</string>
678
679    <!-- Title of an application permission, listed so the user can uninstall application shortcuts
680    in their Launcher -->
681    <string name="permlab_uninstall_shortcut">uninstall shortcuts</string>
682    <!-- Description of an application permission, listed so the user can install application shortcuts
683    in their Launcher -->
684    <string name="permdesc_uninstall_shortcut">Allows the application to remove
685        Homescreen shortcuts without user intervention.</string>
686
687    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
688    <string name="permlab_processOutgoingCalls">reroute outgoing calls</string>
689    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
690    <string name="permdesc_processOutgoingCalls">Allows the app to see the
691        number being dialed during an outgoing call with the option to redirect
692        the call to a different number or abort the call altogether.</string>
693
694    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
695    <string name="permlab_receiveSms">receive text messages (SMS)</string>
696    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
697    <string name="permdesc_receiveSms">Allows the app to receive and process SMS
698      messages. This means the app could monitor or delete messages sent to your
699      device without showing them to you.</string>
700
701    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
702    <string name="permlab_receiveMms">receive text messages (MMS)</string>
703    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
704    <string name="permdesc_receiveMms">Allows the app to receive and process MMS
705      messages. This means the app could monitor or delete messages sent to your
706      device without showing them to you.</string>
707
708    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
709    <string name="permlab_receiveEmergencyBroadcast">receive emergency broadcasts</string>
710    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
711    <string name="permdesc_receiveEmergencyBroadcast">Allows the app to receive
712      and process emergency broadcast messages. This permission is only available
713      to system apps.</string>
714
715    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
716    <string name="permlab_readCellBroadcasts">read cell broadcast messages</string>
717    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
718    <string name="permdesc_readCellBroadcasts">Allows the app to read
719      cell broadcast messages received by your device. Cell broadcast alerts
720      are delivered in some locations to warn you of emergency situations.
721      Malicious apps may interfere with the performance or operation of your
722      device when an emergency cell broadcast is received.</string>
723
724     <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
725    <string name="permlab_sendSms">send SMS messages</string>
726    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
727    <string name="permdesc_sendSms">Allows the app to send SMS messages.
728     This may result in unexpected charges. Malicious apps may cost you money by
729     sending messages without your confirmation.</string>
730
731     <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. [CHAR LIMIT=NONE] -->
732    <string name="permlab_sendRespondViaMessageRequest">send respond-via-message events</string>
733    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. [CHAR LIMIT=NONE] -->
734    <string name="permdesc_sendRespondViaMessageRequest">Allows the app to send
735      requests to other messaging apps to handle respond-via-message events for incoming
736      calls.</string>
737
738    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
739    <string name="permlab_readSms">read your text messages (SMS or MMS)</string>
740    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
741    <string name="permdesc_readSms" product="tablet">Allows the app to read SMS
742      messages stored on your tablet or SIM card. This allows the app to read all
743      SMS messages, regardless of content or confidentiality.</string>
744    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
745    <string name="permdesc_readSms" product="default">Allows the app to read SMS
746      messages stored on your phone or SIM card. This allows the app to read all
747      SMS messages, regardless of content or confidentiality.</string>
748
749    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
750    <string name="permlab_writeSms">edit your text messages (SMS or MMS)</string>
751    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
752    <string name="permdesc_writeSms" product="tablet">Allows the app to write
753      to SMS messages stored on your tablet or SIM card. Malicious apps
754      may delete your messages.</string>
755    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
756    <string name="permdesc_writeSms" product="default">Allows the app to write
757      to SMS messages stored on your phone or SIM card. Malicious apps
758      may delete your messages.</string>
759
760    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
761    <string name="permlab_receiveWapPush">receive text messages (WAP)</string>
762    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
763    <string name="permdesc_receiveWapPush">Allows the app to receive and process
764     WAP messages.  This permission includes the ability to monitor or delete
765     messages sent to you without showing them to you.</string>
766
767    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
768    <string name="permlab_receiveBluetoothMap">receive Bluetooth messages (MAP)</string>
769    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
770    <string name="permdesc_receiveBluetoothMap">Allows the app to receive and process Bluetooth MAP
771      messages. This means the app could monitor or delete messages sent to your
772      device without showing them to you.</string>
773
774    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
775    <string name="permlab_getTasks">retrieve running apps</string>
776    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
777    <string name="permdesc_getTasks">Allows the app to retrieve information
778       about currently and recently running tasks.  This may allow the app to
779       discover information about which applications are used on the device.</string>
780
781    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
782    <string name="permlab_startTasksFromRecents">start a task from recents</string>
783    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
784    <string name="permdesc_startTasksFromRecents">Allows the app to use an ActivityManager.RecentTaskInfo
785        object to launch a defunct task that was returned from ActivityManager.getRecentTaskList().</string>
786
787    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. [CHAR LIMIT=NONE] -->
788    <string name="permlab_interactAcrossUsers">interact across users</string>
789    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. [CHAR LIMIT=NONE] -->
790    <string name="permdesc_interactAcrossUsers">Allows the app to perform actions
791        across different users on the device.  Malicious apps may use this to violate
792        the protection between users.</string>
793
794    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. [CHAR LIMIT=NONE] -->
795    <string name="permlab_interactAcrossUsersFull">full license to interact across users</string>
796    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. [CHAR LIMIT=NONE] -->
797    <string name="permdesc_interactAcrossUsersFull">Allows all possible interactions across
798        users.</string>
799
800    <!--  Title of an application permission, listed so the user can choose whether they want to allow the application to create/remove/query users. [CHAR LIMIT=none] -->
801    <string name="permlab_manageUsers">manage users</string>
802    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to create/remove/query users. [CHAR LIMIT=NONE] -->
803    <string name="permdesc_manageUsers">Allows apps to manage users on the device, including query, creation and deletion.</string>
804
805    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. [CHAR LIMIT=50] -->
806    <string name="permlab_getDetailedTasks">retrieve details of running apps</string>
807    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. [CHAR LIMIT=NONE] -->
808    <string name="permdesc_getDetailedTasks">Allows the app to retrieve
809        detailed information about currently and recently running tasks. Malicious apps may
810        discover private information about other apps.</string>
811
812    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
813    <string name="permlab_reorderTasks">reorder running apps</string>
814    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
815    <string name="permdesc_reorderTasks">Allows the app to move tasks to the
816      foreground and background.  The app may do this without your input.</string>
817
818    <!-- Title of an application permission, allowing an application to remove/kill tasks -->
819    <string name="permlab_removeTasks">stop running apps</string>
820    <!-- Description of an application permission, allowing an application to remove/kill tasks -->
821    <string name="permdesc_removeTasks">Allows the app to remove
822        tasks and kill their apps. Malicious apps may disrupt
823        the behavior of other apps.</string>
824
825    <!-- [CHAR LIMIT=NONE] Title of an application permission, allowing an application to create,
826         change, remove activity stacks. -->
827    <string name="permlab_manageActivityStacks">manage activity stacks</string>
828    <!-- [CHAR LIMIT=NONE] Description of an application permission, allowing an application to create,
829             change, remove activity stacks. -->
830    <string name="permdesc_manageActivityStacks">Allows the app to add, remove, and
831        modify the activity stacks in which other apps run.  Malicious apps may disrupt
832        the behavior of other apps.</string>
833
834    <!-- Title of an application permission, allowing an application to start any activity, regardless of permission protection or exported state. -->
835    <string name="permlab_startAnyActivity">start any activity</string>
836    <!-- Description of an application permission, allowing an application to start any activity, regardless of permission protection or exported state. -->
837    <string name="permdesc_startAnyActivity">Allows the app to start any activity, regardless of permission protection or exported state.</string>
838
839    <!-- Title of an application permission, allowing control of app screen compatibility mode -->
840    <string name="permlab_setScreenCompatibility">set screen compatibility</string>
841    <!-- Description of an application permission, allowing control of app screen compatibility mode -->
842    <string name="permdesc_setScreenCompatibility">Allows the app to control the
843        screen compatibility mode of other applications.  Malicious applications may
844        break the behavior of other applications.</string>
845
846    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
847    <string name="permlab_setDebugApp">enable app debugging</string>
848    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
849    <string name="permdesc_setDebugApp">Allows the app to turn
850        on debugging for another app. Malicious apps may use this
851        to kill other apps.</string>
852
853    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
854    <string name="permlab_changeConfiguration">change system display settings</string>
855    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
856    <string name="permdesc_changeConfiguration">Allows the app to
857        change the current configuration, such as the locale or overall font
858        size.</string>
859
860    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
861    <string name="permlab_enableCarMode">enable car mode</string>
862    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
863    <string name="permdesc_enableCarMode">Allows the app to
864        enable the car mode.</string>
865
866    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
867    <string name="permlab_killBackgroundProcesses">close other apps</string>
868    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
869    <string name="permdesc_killBackgroundProcesses">Allows the app to end
870      background processes of other apps.  This may cause other apps to stop
871      running.</string>
872
873    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
874    <string name="permlab_forceStopPackages">force stop other apps</string>
875    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
876    <string name="permdesc_forceStopPackages">Allows the app to forcibly stop other apps.</string>
877
878    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
879    <string name="permlab_forceBack">force app to close</string>
880    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
881    <string name="permdesc_forceBack">Allows the app to force any
882        activity that is in the foreground to close and go back.
883        Should never be needed for normal apps.</string>
884
885    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
886    <string name="permlab_dump">retrieve system internal state</string>
887    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
888    <string name="permdesc_dump">Allows the app to retrieve
889        internal state of the system. Malicious apps may retrieve
890        a wide variety of private and secure information that they should
891        never normally need.</string>
892
893    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
894    <string name="permlab_retrieve_window_content">retrieve screen content</string>
895    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
896    <string name="permdesc_retrieve_window_content">Allows the app to retrieve
897        the content of the active window. Malicious apps may retrieve
898        the entire window content and examine all its text except passwords.</string>
899
900    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
901    <string name="permlab_temporary_enable_accessibility">temporary enable accessibility</string>
902    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
903    <string name="permdesc_temporary_enable_accessibility">Allows an application to temporarily
904         enable accessibility on the device. Malicious apps may enable accessibility without
905         user consent.</string>
906
907    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
908    <string name="permlab_retrieveWindowToken">retrieve window token</string>
909    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
910    <string name="permdesc_retrieveWindowToken">Allows an application to retrieve
911        the window token. Malicious apps may perfrom unauthorized interaction with
912        the application window impersonating the system.</string>
913
914    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
915    <string name="permlab_frameStats">retrieve frame statistics</string>
916    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
917    <string name="permdesc_frameStats">Allows an application to collect
918        frame statistics. Malicious apps may observe the frame statistics
919        of windows from other apps.</string>
920
921    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
922    <string name="permlab_filter_events">filter events</string>
923    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
924    <string name="permdesc_filter_events">Allows an application to register an input filter
925            which filters the stream of all user events before they are dispatched. Malicious app
926            may control the system UI whtout user intervention.</string>
927
928    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
929    <string name="permlab_shutdown">partial shutdown</string>
930    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
931    <string name="permdesc_shutdown">Puts the activity manager into a shutdown
932        state.  Does not perform a complete shutdown.</string>
933
934    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
935    <string name="permlab_stopAppSwitches">prevent app switches</string>
936    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
937    <string name="permdesc_stopAppSwitches">Prevents the user from switching to
938        another app.</string>
939
940    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
941    <string name="permlab_getTopActivityInfo">get current app info</string>
942    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
943    <string name="permdesc_getTopActivityInfo">Allows the holder to retrieve private information
944        about the current application in the foreground of the screen.</string>
945
946    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
947    <string name="permlab_runSetActivityWatcher">monitor and control all app launching</string>
948    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
949    <string name="permdesc_runSetActivityWatcher">Allows the app to
950        monitor and control how the system launches activities.
951        Malicious apps may completely compromise the system. This
952        permission is only needed for development, never for normal
953        use.</string>
954
955    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
956    <string name="permlab_broadcastPackageRemoved">send package removed broadcast</string>
957    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
958    <string name="permdesc_broadcastPackageRemoved">Allows the app to
959        broadcast a notification that an app package has been removed.
960        Malicious apps may use this to kill any other running
961        app.</string>
962
963    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
964    <string name="permlab_broadcastSmsReceived">send SMS-received broadcast</string>
965    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
966    <string name="permdesc_broadcastSmsReceived">Allows the app to
967        broadcast a notification that an SMS message has been received.
968        Malicious apps may use this to forge incoming SMS messages.</string>
969
970    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
971    <string name="permlab_broadcastWapPush">send WAP-PUSH-received broadcast</string>
972    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
973    <string name="permdesc_broadcastWapPush">Allows the app to
974        broadcast a notification that a WAP PUSH message has been received.
975        Malicious apps may use this to forge MMS message receipt or to
976        silently replace the content of any webpage with malicious variants.</string>
977
978    <!-- TODO: Mark these as translatable when API is finalized. -->
979    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
980    <string name="permlab_broadcastScoreNetworks" translatable="false">send score networks broadcast</string>
981    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
982    <string name="permdesc_broadcastScoreNetworks" translatable="false">Allows the app
983        to broadcast a notification that networks need to be scored.
984        Never needed for normal apps.
985    </string>
986
987    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
988    <string name="permlab_setProcessLimit">limit number of running processes</string>
989    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
990    <string name="permdesc_setProcessLimit">Allows the app
991        to control the maximum number of processes that will run. Never
992        needed for normal apps.</string>
993
994    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
995    <string name="permlab_setAlwaysFinish">force background apps to close</string>
996    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
997    <string name="permdesc_setAlwaysFinish">Allows the app
998        to control whether activities are always finished as soon as they
999        go to the background. Never needed for normal apps.</string>
1000
1001    <!-- [CHAR LIMIT=NONE] Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1002    <string name="permlab_batteryStats">read battery statistics</string>
1003    <!-- [CHAR LIMIT=NONE] Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1004    <string name="permdesc_batteryStats">Allows an application to read the current low-level
1005        battery use data.  May allow the application to find out detailed information about
1006        which apps you use.</string>
1007
1008    <!-- [CHAR LIMIT=NONE] Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1009    <string name="permlab_updateBatteryStats">modify battery statistics</string>
1010    <!-- [CHAR LIMIT=NONE] Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1011    <string name="permdesc_updateBatteryStats">Allows the app to modify
1012        collected battery statistics. Not for use by normal apps.</string>
1013
1014    <!-- [CHAR LIMIT=NONE] Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1015    <string name="permlab_getAppOpsStats">retrieve app ops statistics</string>
1016    <!-- [CHAR LIMIT=NONE] Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1017    <string name="permdesc_getAppOpsStats">Allows the app to retrieve
1018        collected application operation statistics. Not for use by normal apps.</string>
1019
1020    <!-- [CHAR LIMIT=NONE] Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1021    <string name="permlab_updateAppOpsStats">modify app ops statistics</string>
1022    <!-- [CHAR LIMIT=NONE] Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1023    <string name="permdesc_updateAppOpsStats">Allows the app to modify
1024        collected application operation statistics. Not for use by normal apps.</string>
1025
1026    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1027    <string name="permlab_backup">control system backup and restore</string>
1028    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1029    <string name="permdesc_backup">Allows the app to control the system\'s backup and restore mechanism.  Not for use by normal apps.</string>
1030
1031    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1032    <string name="permlab_confirm_full_backup">confirm a full backup or restore operation</string>
1033    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1034    <string name="permdesc_confirm_full_backup">Allows the app to launch the full backup confirmation UI.  Not to be used by any app.</string>
1035
1036    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1037    <string name="permlab_internalSystemWindow">display unauthorized windows</string>
1038    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1039    <string name="permdesc_internalSystemWindow">Allows the app to create
1040        windows that are intended to be used by the internal system
1041        user interface. Not for use by normal apps.</string>
1042
1043    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1044    <string name="permlab_systemAlertWindow">draw over other apps</string>
1045    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1046    <string name="permdesc_systemAlertWindow">Allows the app to draw on top of other
1047        applications or parts of the user interface.  They may interfere with your
1048        use of the interface in any application, or change what you think you are
1049        seeing in other applications.</string>
1050
1051    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1052    <string name="permlab_setAnimationScale">modify global animation speed</string>
1053    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1054    <string name="permdesc_setAnimationScale">Allows the app to change
1055        the global animation speed (faster or slower animations) at any time.</string>
1056
1057    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1058    <string name="permlab_manageAppTokens">manage app tokens</string>
1059    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1060    <string name="permdesc_manageAppTokens">Allows the app to
1061        create and manage their own tokens, bypassing their normal
1062        Z-ordering. Should never be needed for normal apps.</string>
1063
1064    <!-- [CHAR LIMIT=NONE] Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1065    <string name="permlab_freezeScreen">freeze screen</string>
1066    <!-- [CHAR LIMIT=NONE] Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1067    <string name="permdesc_freezeScreen">Allows the application to temporarily freeze
1068        the screen for a full-screen transition.</string>
1069
1070    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1071    <string name="permlab_injectEvents">press keys and control buttons</string>
1072    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1073    <string name="permdesc_injectEvents" product="tablet">Allows the app to deliver
1074        its own input events (key presses, etc.) to other apps. Malicious
1075        apps may use this to take over the tablet.</string>
1076    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1077    <string name="permdesc_injectEvents" product="default">Allows the app to deliver
1078        its own input events (key presses, etc.) to other apps. Malicious
1079        apps may use this to take over the phone.</string>
1080
1081    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1082    <string name="permlab_readInputState">record what you type and actions you take</string>
1083    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1084    <string name="permdesc_readInputState">Allows the app to watch the
1085        keys you press even when interacting with another app (such
1086        as typing a password). Should never be needed for normal apps.</string>
1087
1088    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1089    <string name="permlab_bindInputMethod">bind to an input method</string>
1090    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1091    <string name="permdesc_bindInputMethod">Allows the holder to bind to the top-level
1092        interface of an input method. Should never be needed for normal apps.</string>
1093
1094    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1095    <string name="permlab_bindAccessibilityService">bind to an accessibility service</string>
1096    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1097    <string name="permdesc_bindAccessibilityService">Allows the holder to bind to the top-level
1098        interface of an accessibility service. Should never be needed for normal apps.</string>
1099
1100    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1101    <string name="permlab_bindPrintService">bind to a print service</string>
1102    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1103    <string name="permdesc_bindPrintService">Allows the holder to bind to the top-level
1104        interface of a print service. Should never be needed for normal apps.</string>
1105
1106    <!-- Title of an application permission, listed so the user can choose
1107         whether they want to allow the application to do this. -->
1108    <string name="permlab_bindPrintSpoolerService">bind to a print spooler service</string>
1109    <!-- Description of an application permission, listed so the user can
1110         choose whether they want to allow the application to do this. -->
1111    <string name="permdesc_bindPrintSpoolerService">Allows the holder to bind to the top-level
1112        interface of a print spooler service. Should never be needed for normal apps.</string>
1113
1114    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1115    <string name="permlab_bindNfcService">bind to NFC service</string>
1116    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1117    <string name="permdesc_bindNfcService">Allows the holder to bind to applications
1118        that are emulating NFC cards. Should never be needed for normal apps.</string>
1119
1120    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1121    <string name="permlab_bindTextService">bind to a text service</string>
1122    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1123    <string name="permdesc_bindTextService">Allows the holder to bind to the top-level
1124        interface of a text service(e.g. SpellCheckerService). Should never be needed for normal apps.</string>
1125
1126    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1127    <string name="permlab_bindVpnService">bind to a VPN service</string>
1128    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1129    <string name="permdesc_bindVpnService">Allows the holder to bind to the top-level
1130        interface of a Vpn service. Should never be needed for normal apps.</string>
1131
1132    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1133    <string name="permlab_bindWallpaper">bind to a wallpaper</string>
1134    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1135    <string name="permdesc_bindWallpaper">Allows the holder to bind to the top-level
1136        interface of a wallpaper. Should never be needed for normal apps.</string>
1137
1138    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1139    <string name="permlab_bindVoiceInteraction">bind to a voice interactor</string>
1140    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1141    <string name="permdesc_bindVoiceInteraction">Allows the holder to bind to the top-level
1142        interface of a voice interaction service. Should never be needed for normal apps.</string>
1143
1144    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1145    <string name="permlab_manageVoiceKeyphrases">manage voice keyphrases</string>
1146    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1147    <string name="permdesc_manageVoiceKeyphrases">Allows the holder to manage the keyphrases for voice hotword detection.
1148        Should never be needed for normal apps.</string>
1149
1150    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1151    <string name="permlab_bindRemoteDisplay">bind to a remote display</string>
1152    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1153    <string name="permdesc_bindRemoteDisplay">Allows the holder to bind to the top-level
1154        interface of a remote display. Should never be needed for normal apps.</string>
1155
1156    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1157    <string name="permlab_bindRemoteViews">bind to a widget service</string>
1158    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1159    <string name="permdesc_bindRemoteViews">Allows the holder to bind to the top-level
1160        interface of a widget service. Should never be needed for normal apps.</string>
1161
1162    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1163    <string name="permlab_bindDeviceAdmin">interact with a device admin</string>
1164    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1165    <string name="permdesc_bindDeviceAdmin">Allows the holder to send intents to
1166        a device administrator. Should never be needed for normal apps.</string>
1167
1168    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1169    <string name="permlab_bindTvInput">bind to a TV input</string>
1170    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1171    <string name="permdesc_bindTvInput">Allows the holder to bind to the top-level
1172        interface of a TV input. Should never be needed for normal apps.</string>
1173
1174    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1175    <string name="permlab_modifyParentalControls">modify parental controls</string>
1176    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1177    <string name="permdesc_modifyParentalControls">Allows the holder to modify the system\'s
1178        parental controls data. Should never be needed for normal apps.</string>
1179
1180    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1181    <string name="permlab_manageDeviceAdmins">add or remove a device admin</string>
1182    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1183    <string name="permdesc_manageDeviceAdmins">Allows the holder to add or remove active device
1184        administrators. Should never be needed for normal apps.</string>
1185
1186    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1187    <string name="permlab_setOrientation">change screen orientation</string>
1188    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1189    <string name="permdesc_setOrientation">Allows the app to change
1190        the rotation of the screen at any time. Should never be needed for
1191        normal apps.</string>
1192
1193    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. [CHAR LIMIT=30] -->
1194    <string name="permlab_setPointerSpeed">change pointer speed</string>
1195    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. [CHAR LIMIT=NONE] -->
1196    <string name="permdesc_setPointerSpeed">Allows the app to change
1197        the mouse or trackpad pointer speed at any time. Should never be needed for
1198        normal apps.</string>
1199
1200    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. [CHAR LIMIT=30] -->
1201    <string name="permlab_setKeyboardLayout">change keyboard layout</string>
1202    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. [CHAR LIMIT=NONE] -->
1203    <string name="permdesc_setKeyboardLayout">Allows the app to change
1204        the keyboard layout. Should never be needed for normal apps.</string>
1205
1206    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1207    <string name="permlab_signalPersistentProcesses">send Linux signals to apps</string>
1208    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1209    <string name="permdesc_signalPersistentProcesses">Allows the app to request that the
1210        supplied signal be sent to all persistent processes.</string>
1211
1212    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1213    <string name="permlab_persistentActivity">make app always run</string>
1214    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1215    <string name="permdesc_persistentActivity" product="tablet">Allows the app to make parts of itself persistent in memory.  This can limit memory available to other apps slowing down the tablet.</string>
1216    <string name="permdesc_persistentActivity" product="default">Allows the app to make parts of itself persistent in memory.  This can limit memory available to other apps slowing down the phone.</string>
1217
1218    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1219    <string name="permlab_deletePackages">delete apps</string>
1220    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1221    <string name="permdesc_deletePackages">Allows the app to delete
1222        Android packages. Malicious apps may use this to delete important apps.</string>
1223
1224    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1225    <string name="permlab_clearAppUserData">delete other apps\' data</string>
1226    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1227    <string name="permdesc_clearAppUserData">Allows the app to clear user data.</string>
1228    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1229    <string name="permlab_deleteCacheFiles">delete other apps\' caches</string>
1230    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1231    <string name="permdesc_deleteCacheFiles">Allows the app to delete
1232        cache files.</string>
1233
1234    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1235    <string name="permlab_getPackageSize">measure app storage space</string>
1236    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1237    <string name="permdesc_getPackageSize">Allows the app to retrieve its code, data, and cache sizes</string>
1238
1239    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1240    <string name="permlab_installPackages">directly install apps</string>
1241    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1242    <string name="permdesc_installPackages">Allows the app to install new or updated
1243        Android packages. Malicious apps may use this to add new apps with arbitrarily
1244        powerful permissions.</string>
1245
1246    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1247    <string name="permlab_clearAppCache">delete all app cache data</string>
1248    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1249    <string name="permdesc_clearAppCache" product="tablet">Allows the app to free tablet storage
1250        by deleting files in the cache directories of other applications.  This may cause other
1251        applications to start up more slowly as they need to re-retrieve their data.</string>
1252    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1253    <string name="permdesc_clearAppCache" product="default">Allows the app to free phone storage
1254        by deleting files in the cache directories of other applications.  This may cause other
1255        applications to start up more slowly as they need to re-retrieve their data.</string>
1256
1257    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1258    <string name="permlab_movePackage">move app resources</string>
1259    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1260    <string name="permdesc_movePackage">Allows the app to move app resources from internal to external media and vice versa.</string>
1261
1262    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1263    <string name="permlab_readLogs">read sensitive log data</string>
1264    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1265    <string name="permdesc_readLogs" product="tablet">Allows the app to read from the
1266        system\'s various log files.  This allows it to discover general
1267        information about what you are doing with the tablet, potentially
1268        including personal or private information.</string>
1269    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1270    <string name="permdesc_readLogs" product="default">Allows the app to read from the
1271        system\'s various log files.  This allows it to discover general
1272        information about what you are doing with the phone, potentially
1273        including personal or private information.</string>
1274
1275    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1276    <string name="permlab_anyCodecForPlayback">use any media decoder for playback</string>
1277    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1278    <string name="permdesc_anyCodecForPlayback">Allows the app to use any installed
1279        media decoder to decode for playback.</string>
1280
1281    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. This permission allows the app to install or uninstall trusted credentials, a.k.a. CA certificates. [CHAR LIMIT=NONE] -->
1282    <string name="permlab_manageCaCertificates">manage trusted credentials</string>
1283    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. [CHAR LIMIT=NONE]-->
1284    <string name="permdesc_manageCaCertificates">Allows the app to install and uninstall CA certificates as trusted credentials.</string>
1285
1286    <!-- Title of a permission that is never presented to the user.  This is not a
1287         permission that an application must be granted by the user.  Instead, it
1288         is part of a mechanism that applications use to indicate to the system
1289         that they want to do scheduled background work.  -->
1290    <string name="permlab_bindJobService">run the application\'s scheduled background work</string>
1291    <!-- Description of an application permission, so that the user can understand
1292         what is being done if they are curious. -->
1293    <string name="permdesc_bindJobService">This permission allows the Android system to run the application in the background when requested.</string>
1294
1295    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1296    <string name="permlab_diagnostic">read/write to resources owned by diag</string>
1297    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1298    <string name="permdesc_diagnostic">Allows the app to read and write to
1299    any resource owned by the diag group; for example, files in /dev. This could
1300    potentially affect system stability and security. This should be ONLY be used
1301    for hardware-specific diagnostics by the manufacturer or operator.</string>
1302
1303    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1304    <string name="permlab_changeComponentState">enable or disable app components</string>
1305    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1306    <string name="permdesc_changeComponentState" product="tablet">Allows the app to change whether a
1307        component of another app is enabled or not. Malicious apps may use this
1308        to disable important tablet capabilities. Care must be used with this permission, as it is
1309        possible to get app components into an unusable, inconsistent, or unstable state.
1310    </string>
1311    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1312    <string name="permdesc_changeComponentState" product="default">Allows the app to change whether a
1313        component of another app is enabled or not. Malicious apps may use this
1314        to disable important phone capabilities. Care must be used with this permission, as it is
1315        possible to get app components into an unusable, inconsistent, or unstable state.
1316    </string>
1317
1318    <!-- Title of an application permission for granting or revoking other permissions [CHAR LIMIT=NONE] -->
1319    <string name="permlab_grantRevokePermissions">grant or revoke permissions</string>
1320    <!-- Description of an application permission for granting or revoking other permissions [CHAR LIMIT=NONE] -->
1321    <string name="permdesc_grantRevokePermissions">Allows an application to grant or revoke
1322        specific permissions for it or other applications.  Malicious applications may use this
1323        to access features you have not granted them.
1324    </string>
1325
1326    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1327    <string name="permlab_setPreferredApplications">set preferred apps</string>
1328    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1329    <string name="permdesc_setPreferredApplications">Allows the app to
1330        modify your preferred apps. Malicious apps may
1331        silently change the apps that are run, spoofing your
1332        existing apps to collect private data from you.</string>
1333
1334    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1335    <string name="permlab_writeSettings">modify system settings</string>
1336    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1337    <string name="permdesc_writeSettings">Allows the app to modify the
1338        system\'s settings data. Malicious apps may corrupt your system\'s
1339        configuration.</string>
1340
1341    <string name="permlab_writeSecureSettings">modify secure system settings</string>
1342    <string name="permdesc_writeSecureSettings">Allows the app to modify the
1343        system\'s secure settings data. Not for use by normal apps.</string>
1344
1345    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1346    <string name="permlab_writeGservices">modify the Google services map</string>
1347    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1348    <string name="permdesc_writeGservices">Allows the app to modify the
1349        Google services map.  Not for use by normal apps.</string>
1350
1351    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1352    <string name="permlab_receiveBootCompleted">run at startup</string>
1353    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1354    <string name="permdesc_receiveBootCompleted" product="tablet">Allows the app to
1355        have itself started as soon as the system has finished booting.
1356        This can make it take longer to start the tablet and allow the
1357        app to slow down the overall tablet by always running.</string>
1358    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1359    <string name="permdesc_receiveBootCompleted" product="default">Allows the app to
1360        have itself started as soon as the system has finished booting.
1361        This can make it take longer to start the phone and allow the
1362        app to slow down the overall phone by always running.</string>
1363
1364    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1365    <string name="permlab_broadcastSticky">send sticky broadcast</string>
1366    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1367    <string name="permdesc_broadcastSticky" product="tablet">Allows the app to
1368    send sticky broadcasts, which remain after the broadcast ends. Excessive use
1369    may make the tablet slow or unstable by causing it to use too much memory.
1370    </string>
1371    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1372    <string name="permdesc_broadcastSticky" product="default">Allows the app to
1373    send sticky broadcasts, which remain after the broadcast ends. Excessive
1374    use may make the phone slow or unstable by causing it to use too
1375    much memory.</string>
1376
1377    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1378    <string name="permlab_readContacts">read your contacts</string>
1379    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1380    <string name="permdesc_readContacts" product="tablet">Allows the app to read
1381      data about your contacts stored on your tablet, including the frequency
1382      with which you\'ve called, emailed, or communicated in other ways with
1383      specific individuals. This permission allows apps to save your contact
1384      data, and malicious apps may share contact data without your
1385      knowledge.</string>
1386    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1387    <string name="permdesc_readContacts" product="default">Allows the app to
1388      read data about your contacts stored on your phone, including the
1389      frequency with which you\'ve called, emailed, or communicated in other ways
1390      with specific individuals. This permission allows apps to save your
1391      contact data, and malicious apps may share contact data without your
1392      knowledge.</string>
1393
1394    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1395    <string name="permlab_writeContacts">modify your contacts</string>
1396    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1397    <string name="permdesc_writeContacts" product="tablet">Allows the app to
1398      modify the data about your contacts stored on your tablet, including the
1399      frequency with which you\'ve called, emailed, or communicated in other ways
1400      with specific contacts. This permission allows apps to delete contact
1401      data.</string>
1402    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1403    <string name="permdesc_writeContacts" product="default">Allows the app to
1404    modify the data about your contacts stored on your phone, including the
1405    frequency with which you\'ve called, emailed, or communicated in other ways
1406    with specific contacts. This permission allows apps to delete contact
1407    data.</string>
1408
1409    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1410    <string name="permlab_readCallLog">read call log</string>
1411    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1412    <string name="permdesc_readCallLog" product="tablet">Allows the app to read
1413     your tablet\'s call log, including data about incoming and outgoing calls.
1414     This permission allows apps to save your call log data, and malicious apps
1415     may share call log data without your knowledge.</string>
1416    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1417    <string name="permdesc_readCallLog" product="default">Allows the app to read
1418      your phone\'s call log, including data about incoming and outgoing calls.
1419      This permission allows apps to save your call log data, and malicious apps
1420      may share call log data without your knowledge.</string>
1421
1422    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1423    <string name="permlab_writeCallLog">write call log</string>
1424    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1425    <string name="permdesc_writeCallLog" product="tablet">Allows the app to modify your tablet\'s call log, including data about incoming and outgoing calls.
1426        Malicious apps may use this to erase or modify your call log.</string>
1427    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1428    <string name="permdesc_writeCallLog" product="default">Allows the app to modify your phone\'s call log, including data about incoming and outgoing calls.
1429        Malicious apps may use this to erase or modify your call log.</string>
1430
1431
1432    <!-- Title of the read profile permission, listed so the user can decide whether to allow the application to read the user's personal profile data. [CHAR LIMIT=30] -->
1433    <string name="permlab_readProfile">read your own contact card</string>
1434    <!-- Description of the read profile permission, listed so the user can decide whether to allow the application to read the user's personal profile data. [CHAR LIMIT=NONE] -->
1435    <string name="permdesc_readProfile" product="default">Allows the app to read
1436     personal profile information stored on your device, such as your name and
1437     contact information. This means the app can identify you and may send your
1438     profile information to others.</string>
1439
1440    <!-- Title of the write profile permission, listed so the user can decide whether to allow the application to write to the user's personal profile data. [CHAR LIMIT=30] -->
1441    <string name="permlab_writeProfile">modify your own contact card</string>
1442    <!-- Description of the write profile permission, listed so the user can decide whether to allow the application to write to the user's personal profile data. [CHAR LIMIT=NONE] -->
1443    <string name="permdesc_writeProfile" product="default">Allows the app to
1444      change or add to personal profile information stored on your device, such
1445      as your name and contact information.  This means the app can identify you
1446      and may send your profile information to others.</string>
1447
1448    <!-- Title of the body sensors permission, listed so the user can decide whether to allow the application to access body sensor data. [CHAR LIMIT=30] -->
1449    <string name="permlab_bodySensors">body sensors (like heart rate monitors)
1450    </string>
1451    <!-- Description of the body sensors permission, listed so the user can decide whether to allow the application to access data from body sensors. [CHAR LIMIT=NONE] -->
1452    <string name="permdesc_bodySensors" product="default">Allows the app to
1453      access data from sensors you use to measure what’s happening inside your
1454      body, such as heart rate.</string>
1455
1456    <!-- Title of the read social stream permission, listed so the user can decide whether to allow the application to read information from the user's social stream. [CHAR LIMIT=30] -->
1457    <string name="permlab_readSocialStream" product="default">read your social stream</string>
1458    <string name="permdesc_readSocialStream" product="default">Allows the app
1459      to access and sync social updates from you and your friends. Be careful
1460      when sharing information -- this allows the app to read communications
1461      between you and your friends on social networks, regardless of
1462      confidentiality. Note: this permission may not be enforced on all social
1463      networks.</string>
1464
1465    <!-- Title of the write social stream permission, listed so the user can decide whether to allow the application to write information to the user's social stream. [CHAR LIMIT=30] -->
1466    <string name="permlab_writeSocialStream" product="default">write to your social stream</string>
1467    <string name="permdesc_writeSocialStream" product="default">Allows the app to
1468     display social updates from your friends.  Be careful when sharing
1469     information -- this allows the app to produce messages that may appear to
1470     come from a friend. Note: this permission may not be enforced on all social
1471     networks.</string>
1472
1473    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1474    <string name="permlab_readCalendar">read calendar events plus confidential information</string>
1475    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1476
1477    <string name="permdesc_readCalendar" product="tablet">Allows the app to read
1478       all calendar events stored on your tablet, including those of friends or
1479       co-workers. This may allow the app to share or save your calendar data,
1480       regardless of confidentiality or sensitivity.</string>
1481    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1482    <string name="permdesc_readCalendar" product="default">Allows the app to
1483       read all calendar events stored on your phone, including those of friends
1484       or co-workers. This may allow the app to share or save your calendar data,
1485       regardless of confidentiality or sensitivity.</string>
1486
1487    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1488    <string name="permlab_writeCalendar">add or modify calendar events and send email to guests without owners\' knowledge</string>
1489    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1490
1491<string name="permdesc_writeCalendar" product="tablet">Allows the app to
1492     add, remove, change events that you can modify on your tablet, including
1493     those of friends or co-workers. This may allow the app to send messages
1494     that appear to come from calendar owners, or modify events without the
1495     owners\' knowledge.</string>
1496<string name="permdesc_writeCalendar" product="default">Allows the app to
1497     add, remove, change events that you can modify on your phone, including
1498     those of friends or co-workers. This may allow the app to send messages
1499     that appear to come from calendar owners, or modify events without the
1500     owners\' knowledge.</string>
1501
1502
1503    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1504    <string name="permlab_accessMockLocation">mock location sources for testing</string>
1505    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1506    <string name="permdesc_accessMockLocation">Create mock location sources for
1507      testing or install a new location provider.  This allows the app to
1508      override the location and/or status returned by other location sources
1509      such as GPS or location providers.</string>
1510
1511    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1512    <string name="permlab_accessLocationExtraCommands">access extra location provider commands</string>
1513    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1514    <string name="permdesc_accessLocationExtraCommands">Allows the app to access
1515      extra location provider commands.  This may allow the app to interfere
1516      with the operation of the GPS or other location sources.</string>
1517
1518    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1519    <string name="permlab_installLocationProvider">permission to install a location provider</string>
1520    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1521    <string name="permdesc_installLocationProvider">Create mock location sources
1522      for testing or install a new location provider.  This allows the app to
1523      override the location and/or status returned by other location sources
1524      such as GPS or location providers.</string>
1525
1526    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1527    <string name="permlab_accessFineLocation">precise location (GPS and
1528      network-based)</string>
1529    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1530    <string name="permdesc_accessFineLocation">Allows the app to get your
1531      precise location using the Global Positioning System (GPS) or network
1532      location sources such as cell towers and Wi-Fi. These location services
1533      must be turned on and available to your device for the app to use them.
1534      Apps may use this to determine where you are, and may consume additional
1535      battery power.</string>
1536
1537    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1538    <string name="permlab_accessCoarseLocation">approximate location
1539      (network-based)</string>
1540    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1541    <string name="permdesc_accessCoarseLocation">Allows the app to get your
1542      approximate location. This location is derived by location services using
1543      network location sources such as cell towers and Wi-Fi. These location
1544      services must be turned on and available to your device for the app to
1545      use them. Apps may use this to determine approximately where you
1546      are.</string>
1547
1548    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1549    <string name="permlab_accessSurfaceFlinger">access SurfaceFlinger</string>
1550    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1551    <string name="permdesc_accessSurfaceFlinger">Allows the app to use SurfaceFlinger low-level features.</string>
1552
1553    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1554    <string name="permlab_readFrameBuffer">read frame buffer</string>
1555    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1556    <string name="permdesc_readFrameBuffer">Allows the app to read the content of the frame buffer.</string>
1557
1558    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1559    <string name="permlab_accessInputFlinger">access InputFlinger</string>
1560    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1561    <string name="permdesc_accessInputFlinger">Allows the app to use InputFlinger low-level features.</string>
1562
1563    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1564    <string name="permlab_configureWifiDisplay">configure Wifi displays</string>
1565    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1566    <string name="permdesc_configureWifiDisplay">Allows the app to configure and connect to Wifi displays.</string>
1567
1568    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1569    <string name="permlab_controlWifiDisplay">control Wifi displays</string>
1570    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1571    <string name="permdesc_controlWifiDisplay">Allows the app to control low-level features of Wifi displays.</string>
1572
1573    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1574    <string name="permlab_captureAudioOutput">capture audio output</string>
1575    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1576    <string name="permdesc_captureAudioOutput">Allows the app to capture and redirect audio output.</string>
1577
1578    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1579    <string name="permlab_captureAudioHotword">Hotword detection</string>
1580    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1581    <string name="permdesc_captureAudioHotword">Allows the app to capture audio for Hotword detection. The capture can
1582      happen in the background but does not prevent other audio capture (e.g. Camcorder).</string>
1583
1584    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1585    <string name="permlab_modifyAudioRouting">Audio Routing</string>
1586    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1587    <string name="permdesc_modifyAudioRouting">Allows the app to directly control audio routing and
1588      override audio policy decisions.</string>
1589
1590    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1591    <string name="permlab_captureVideoOutput">capture video output</string>
1592    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1593    <string name="permdesc_captureVideoOutput">Allows the app to capture and redirect video output.</string>
1594
1595    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1596    <string name="permlab_captureSecureVideoOutput">capture secure video output</string>
1597    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1598    <string name="permdesc_captureSecureVideoOutput">Allows the app to capture and redirect secure video output.</string>
1599
1600    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1601    <string name="permlab_mediaContentControl">control media playback and metadata access</string>
1602    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1603    <string name="permdesc_mediaContentControl">Allows the app to control media playback and access the media information (title, author...).</string>
1604
1605    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1606    <string name="permlab_modifyAudioSettings">change your audio settings</string>
1607    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1608    <string name="permdesc_modifyAudioSettings">Allows the app to modify global audio settings such as volume and which speaker is used for output.</string>
1609
1610    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1611    <string name="permlab_recordAudio">record audio</string>
1612    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1613    <string name="permdesc_recordAudio">Allows the app to record audio with the
1614      microphone.  This permission allows the app to record audio at any time
1615      without your confirmation.</string>
1616
1617    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1618    <string name="permlab_sim_communication">sim communication</string>
1619    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1620    <string name="permdesc_sim_communication">Allows the app to send commands to the SIM. This is very dangerous.</string>
1621
1622    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1623    <string name="permlab_camera">take pictures and videos</string>
1624    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1625    <string name="permdesc_camera">Allows the app to take pictures and videos
1626      with the camera.  This permission allows the app to use the camera at any
1627      time without your confirmation.</string>
1628    <!-- Title of a camera app permission, listed so the user can choose whether or not they want to allow it to disable the may-transmit light indicator. -->
1629    <string name="permlab_cameraDisableTransmitLed">disable transmit indicator LED when camera is in use</string>
1630    <!-- Description of a camera app permission, listed so the user can choose whether or not they want to allow it to disable the may-transmit light indicator. -->
1631    <string name="permdesc_cameraDisableTransmitLed">Allows a pre-installed system application to disable the camera use indicator LED.</string>
1632
1633    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1634    <string name="permlab_brick" product="tablet">permanently disable tablet</string>
1635    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1636    <string name="permlab_brick" product="default">permanently disable phone</string>
1637    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1638    <string name="permdesc_brick" product="tablet">Allows the app to
1639        disable the entire tablet permanently. This is very dangerous.</string>
1640    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1641    <string name="permdesc_brick" product="default">Allows the app to
1642        disable the entire phone permanently. This is very dangerous.</string>
1643
1644    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1645    <string name="permlab_reboot" product="tablet">force tablet reboot</string>
1646    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1647    <string name="permlab_reboot" product="default">force phone reboot</string>
1648    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1649    <string name="permdesc_reboot" product="tablet">Allows the app to force the tablet to reboot.</string>
1650    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1651    <string name="permdesc_reboot" product="default">Allows the app to force the phone to reboot.</string>
1652
1653
1654    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. [CHAR LIMIT=30] -->
1655    <string name="permlab_mount_unmount_filesystems" product="nosdcard">access USB storage filesystem</string>
1656    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1657    <string name="permlab_mount_unmount_filesystems" product="default">access SD Card filesystem</string>
1658    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1659    <string name="permdesc_mount_unmount_filesystems">Allows the app to mount and
1660        unmount filesystems for removable storage.</string>
1661
1662    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. [CHAR LIMIT=30] -->
1663    <string name="permlab_mount_format_filesystems" product="nosdcard">erase USB storage</string>
1664    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1665    <string name="permlab_mount_format_filesystems" product="default">erase SD Card</string>
1666    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1667    <string name="permdesc_mount_format_filesystems">Allows the app to format removable storage.</string>
1668
1669    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1670    <string name="permlab_asec_access">get information on internal storage</string>
1671    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1672    <string name="permdesc_asec_access">Allows the app to get information on internal storage.</string>
1673
1674    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1675    <string name="permlab_asec_create">create internal storage</string>
1676    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1677    <string name="permdesc_asec_create">Allows the app to create internal storage.</string>
1678
1679    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1680    <string name="permlab_asec_destroy">destroy internal storage</string>
1681    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1682    <string name="permdesc_asec_destroy">Allows the app to destroy internal storage.</string>
1683
1684    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1685    <string name="permlab_asec_mount_unmount">mount/unmount internal storage</string>
1686    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1687    <string name="permdesc_asec_mount_unmount">Allows the app to mount/unmount internal storage.</string>
1688
1689    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1690    <string name="permlab_asec_rename">rename internal storage</string>
1691    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1692    <string name="permdesc_asec_rename">Allows the app to rename internal storage.</string>
1693
1694    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1695    <string name="permlab_vibrate">control vibration</string>
1696    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1697    <string name="permdesc_vibrate">Allows the app to control the vibrator.</string>
1698
1699    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1700    <string name="permlab_flashlight">control flashlight</string>
1701    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1702    <string name="permdesc_flashlight">Allows the app to control the flashlight.</string>
1703
1704    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1705    <string name="permlab_manageUsb">manage preferences and permissions for USB devices</string>
1706    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1707    <string name="permdesc_manageUsb">Allows the app to manage preferences and permissions for USB devices.</string>
1708
1709    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1710    <string name="permlab_accessMtp">implement MTP protocol</string>
1711    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1712    <string name="permdesc_accessMtp">Allows access to the kernel MTP driver to implement the MTP USB protocol.</string>
1713
1714    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1715    <string name="permlab_hardware_test">test hardware</string>
1716    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1717    <string name="permdesc_hardware_test">Allows the app to control
1718        various peripherals for the purpose of hardware testing.</string>
1719
1720    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1721    <string name="permlab_callPhone">directly call phone numbers</string>
1722    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1723    <string name="permdesc_callPhone">Allows the app to call phone numbers
1724      without your intervention. This may result in unexpected charges or calls.
1725      Note that this doesn\'t allow the app to call emergency numbers.
1726      Malicious apps may cost you money by making calls without your
1727      confirmation.</string>
1728
1729    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1730    <string name="permlab_callPrivileged">directly call any phone numbers</string>
1731    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1732    <string name="permdesc_callPrivileged">Allows the app to call
1733        any phone number, including emergency numbers, without your intervention.
1734        Malicious apps may place unnecessary and illegal calls to emergency
1735        services.</string>
1736
1737    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1738    <string name="permlab_performCdmaProvisioning" product="tablet">directly start CDMA tablet setup</string>
1739    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1740    <string name="permlab_performCdmaProvisioning" product="default">directly start CDMA phone setup</string>
1741    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1742    <string name="permdesc_performCdmaProvisioning">Allows the app to start CDMA provisioning.
1743        Malicious apps may unnecessarily start CDMA provisioning.</string>
1744
1745    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1746    <string name="permlab_locationUpdates">control location update notifications</string>
1747    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1748    <string name="permdesc_locationUpdates">Allows the app to enable/disable location
1749        update notifications from the radio.  Not for use by normal apps.</string>
1750
1751    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1752    <string name="permlab_checkinProperties">access checkin properties</string>
1753    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1754    <string name="permdesc_checkinProperties">Allows the app read/write access to
1755        properties uploaded by the checkin service.  Not for use by normal
1756        apps.</string>
1757
1758    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1759    <string name="permlab_bindGadget">choose widgets</string>
1760    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1761    <string name="permdesc_bindGadget">Allows the app to tell the system
1762        which widgets can be used by which app. An app with this permission
1763        can give access to personal data to other apps.
1764        Not for use by normal apps.</string>
1765
1766    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1767    <string name="permlab_modifyPhoneState">modify phone state</string>
1768    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1769    <string name="permdesc_modifyPhoneState">Allows the app to control the
1770        phone features of the device. An app with this permission can switch
1771        networks, turn the phone radio on and off and the like without ever notifying
1772        you.</string>
1773
1774    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1775    <string name="permlab_readPhoneState">read phone status and identity</string>
1776    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1777    <string name="permdesc_readPhoneState">Allows the app to access the phone
1778      features of the device.  This permission allows the app to determine the
1779      phone number and device IDs, whether a call is active, and the remote number
1780      connected by a call.</string>
1781
1782    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1783    <string name="permlab_readPrecisePhoneState">read precise phone states</string>
1784    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1785    <string name="permdesc_readPrecisePhoneState">Allows the app to access the precise
1786      phone states.  This permission allows the app to determine the real
1787      call status, whether a call is active or in the background, call fails,
1788      precise data connection status and data connection fails.</string>
1789
1790    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1791    <string name="permlab_wakeLock" product="tablet">prevent tablet from sleeping</string>
1792    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1793    <string name="permlab_wakeLock" product="default">prevent phone from sleeping</string>
1794    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1795    <string name="permdesc_wakeLock" product="tablet">Allows the app to prevent the tablet from going to sleep.</string>
1796    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1797    <string name="permdesc_wakeLock" product="default">Allows the app to prevent the phone from going to sleep.</string>
1798
1799    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1800    <string name="permlab_transmitIr">transmit infrared</string>
1801    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1802    <string name="permdesc_transmitIr" product="tablet">Allows the app to use the tablet\'s infrared transmitter.</string>
1803    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1804    <string name="permdesc_transmitIr" product="default">Allows the app to use the phone\'s infrared transmitter.</string>
1805
1806
1807    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1808    <string name="permlab_devicePower" product="tablet">power tablet on or off</string>
1809    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1810    <string name="permlab_devicePower" product="default">power phone on or off</string>
1811    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1812    <string name="permdesc_devicePower" product="tablet">Allows the app to turn the
1813        tablet on or off.</string>
1814    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1815    <string name="permdesc_devicePower" product="default">Allows the app to turn the phone on or off.</string>
1816
1817    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1818    <string name="permlab_userActivity">reset display timeout</string>
1819    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1820    <string name="permdesc_userActivity">Allows the app to reset the display timeout.</string>
1821
1822    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1823    <string name="permlab_factoryTest">run in factory test mode</string>
1824    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1825    <string name="permdesc_factoryTest" product="tablet">Run as a low-level manufacturer test,
1826        allowing complete access to the tablet hardware. Only available
1827        when a tablet is running in manufacturer test mode.</string>
1828    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1829    <string name="permdesc_factoryTest" product="default">Run as a low-level manufacturer test,
1830        allowing complete access to the phone hardware. Only available
1831        when a phone is running in manufacturer test mode.</string>
1832
1833    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1834    <string name="permlab_setWallpaper">set wallpaper</string>
1835    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1836    <string name="permdesc_setWallpaper">Allows the app to set the system wallpaper.</string>
1837
1838    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1839    <string name="permlab_setWallpaperHints">adjust your wallpaper size</string>
1840    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1841    <string name="permdesc_setWallpaperHints">Allows the app to set the system wallpaper size hints.</string>
1842
1843    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1844    <string name="permlab_masterClear">reset system to factory defaults</string>
1845    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1846    <string name="permdesc_masterClear">Allows the app to completely
1847        reset the system to its factory settings, erasing all data,
1848        configuration, and installed apps.</string>
1849
1850    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1851    <string name="permlab_setTime">set time</string>
1852    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1853    <string name="permdesc_setTime" product="tablet">Allows the app to change the tablet\'s clock time.</string>
1854    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1855    <string name="permdesc_setTime" product="default">Allows the app to change the phone\'s clock time.</string>
1856
1857    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1858    <string name="permlab_setTimeZone">set time zone</string>
1859    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1860    <string name="permdesc_setTimeZone" product="tablet">Allows the app to change the tablet\'s time zone.</string>
1861    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1862    <string name="permdesc_setTimeZone" product="default">Allows the app to change the phone\'s time zone.</string>
1863
1864    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1865    <string name="permlab_accountManagerService">act as the AccountManagerService</string>
1866    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1867    <string name="permdesc_accountManagerService">Allows the app to make calls to AccountAuthenticators.</string>
1868
1869    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1870    <string name="permlab_getAccounts">find accounts on the device</string>
1871    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1872    <string name="permdesc_getAccounts" product="tablet">Allows the app to get
1873      the list of accounts known by the tablet.  This may include any accounts
1874      created by applications you have installed.</string>
1875    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1876    <string name="permdesc_getAccounts" product="default">Allows the app to get
1877      the list of accounts known by the phone.  This may include any accounts
1878      created by applications you have installed.</string>
1879
1880    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1881    <string name="permlab_authenticateAccounts">create accounts and set passwords</string>
1882    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1883    <string name="permdesc_authenticateAccounts">Allows the app
1884    to use the account authenticator capabilities of the
1885    AccountManager, including creating accounts and getting and
1886    setting their passwords.</string>
1887
1888    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1889    <string name="permlab_manageAccounts">add or remove accounts</string>
1890    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1891    <string name="permdesc_manageAccounts">Allows the app to
1892    perform operations like adding and removing accounts, and deleting
1893    their password.</string>
1894
1895    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1896    <string name="permlab_useCredentials">use accounts on the device</string>
1897    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1898    <string name="permdesc_useCredentials">Allows the app to request authentication tokens.</string>
1899
1900    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1901    <string name="permlab_accessNetworkState">view network connections</string>
1902    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1903    <string name="permdesc_accessNetworkState">Allows the app to view
1904      information about network connections such as which networks exist and are
1905      connected.</string>
1906
1907    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1908    <string name="permlab_createNetworkSockets">full network access</string>
1909    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1910    <string name="permdesc_createNetworkSockets">Allows the app to create
1911     network sockets and use custom network protocols. The browser and other
1912     applications provide means to send data to the internet, so this
1913     permission is not required to send data to the internet.</string>
1914
1915    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1916    <string name="permlab_writeApnSettings">change/intercept network settings and traffic</string>
1917    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1918    <string name="permdesc_writeApnSettings">Allows the app to change network settings and to intercept and inspect all network traffic,
1919      for example to change the proxy and port of any APN. Malicious apps may monitor, redirect, or modify network
1920      packets without your knowledge.</string>
1921
1922    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1923    <string name="permlab_changeNetworkState">change network connectivity</string>
1924    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1925    <string name="permdesc_changeNetworkState">Allows the app to change the state of network connectivity.</string>
1926
1927    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1928    <string name="permlab_changeTetherState">change tethered connectivity</string>
1929    <!-- Description of an application permission, listed so the user can choose whether they want to allow the applicaiton to do this. -->
1930    <string name="permdesc_changeTetherState">Allows the app to change the state of tethered network connectivity.</string>
1931
1932    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1933    <string name="permlab_changeBackgroundDataSetting">change background data usage setting</string>
1934    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1935    <string name="permdesc_changeBackgroundDataSetting">Allows the app to change the background data usage setting.</string>
1936
1937    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1938    <string name="permlab_accessWifiState">view Wi-Fi connections</string>
1939    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1940    <string name="permdesc_accessWifiState">Allows the app to view information
1941      about Wi-Fi networking, such as whether Wi-Fi is enabled and name of
1942      connected Wi-Fi devices.</string>
1943
1944    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1945    <string name="permlab_changeWifiState">connect and disconnect from Wi-Fi</string>
1946    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1947    <string name="permdesc_changeWifiState">Allows the app to connect to and
1948      disconnect from Wi-Fi access points and to make changes to device
1949      configuration for Wi-Fi networks.</string>
1950
1951    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1952    <string name="permlab_changeWifiMulticastState">allow Wi-Fi Multicast reception</string>
1953    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1954    <string name="permdesc_changeWifiMulticastState" product="tablet">Allows the app to receive
1955      packets sent to all devices on a Wi-Fi network using multicast addresses,
1956      not just your tablet.  It uses more power than the non-multicast mode.</string>
1957    <string name="permdesc_changeWifiMulticastState" product="default">Allows the app to receive
1958      packets sent to all devices on a Wi-Fi network using multicast addresses,
1959      not just your phone.  It uses more power than the non-multicast mode.</string>
1960
1961    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1962    <string name="permlab_bluetoothAdmin">access Bluetooth settings</string>
1963    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1964    <string name="permdesc_bluetoothAdmin" product="tablet">Allows the app to
1965      configure the local Bluetooth tablet, and to discover and pair with remote
1966      devices.</string>
1967    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1968    <string name="permdesc_bluetoothAdmin" product="default">Allows the app to configure
1969      the local Bluetooth phone, and to discover and pair with remote devices.</string>
1970
1971    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1972    <string name="permlab_bluetoothPriv">allow Bluetooth pairing by Application</string>
1973    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1974    <string name="permdesc_bluetoothPriv" product="tablet">Allows the app to
1975      pair with remote devices without user interaction.</string>
1976    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1977    <string name="permdesc_bluetoothPriv" product="default">Allows the app to
1978      pair with remote devices without user interaction.</string>
1979
1980    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1981    <string name="permlab_bluetoothMap">access Bluetooth MAP data</string>
1982    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1983    <string name="permdesc_bluetoothMap" product="tablet">Allows the app to access Bluetooth MAP data.</string>
1984    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1985    <string name="permdesc_bluetoothMap" product="default">Allows the app to access Bluetooth MAP data.</string>
1986
1987    <string name="permlab_accessWimaxState">connect and disconnect from WiMAX</string>
1988    <string name="permdesc_accessWimaxState">Allows the app to determine whether
1989     WiMAX is enabled and information about any WiMAX networks that are
1990     connected. </string>
1991
1992    <string name="permlab_changeWimaxState">Change WiMAX state</string>
1993    <string name="permdesc_changeWimaxState" product="tablet">Allows the app to
1994      connect the tablet to and disconnect the tablet from WiMAX networks.</string>
1995    <string name="permdesc_changeWimaxState" product="default">Allows the app to
1996      connect the phone to and disconnect the phone from WiMAX networks.</string>
1997
1998    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
1999    <string name="permlab_scoreNetworks">score networks</string>
2000    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
2001    <string name="permdesc_scoreNetworks" product="tablet">Allows the app to
2002      rank networks and influence which networks the tablet should prefer.</string>
2003    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
2004    <string name="permdesc_scoreNetworks" product="default">Allows the app to
2005        rank networks and influence which networks the phone should prefer.</string>
2006
2007    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
2008    <string name="permlab_bluetooth">pair with Bluetooth devices</string>
2009    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
2010    <string name="permdesc_bluetooth" product="tablet">Allows the app to view the
2011      configuration of Bluetooth on the tablet, and to make and accept
2012      connections with paired devices.</string>
2013    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
2014    <string name="permdesc_bluetooth" product="default">Allows the app to view the
2015      configuration of the Bluetooth on the phone, and to make and accept
2016      connections with paired devices.</string>
2017
2018    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
2019    <string name="permlab_nfc">control Near Field Communication</string>
2020    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
2021    <string name="permdesc_nfc">Allows the app to communicate
2022      with Near Field Communication (NFC) tags, cards, and readers.</string>
2023
2024    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
2025    <string name="permlab_disableKeyguard">disable your screen lock</string>
2026    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
2027    <string name="permdesc_disableKeyguard">Allows the app to disable the
2028      keylock and any associated password security.  For example, the phone
2029      disables the keylock when receiving an incoming phone call, then
2030      re-enables the keylock when the call is finished.</string>
2031
2032    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
2033    <string name="permlab_readSyncSettings">read sync settings</string>
2034    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
2035    <string name="permdesc_readSyncSettings">Allows the app to read the sync settings for an account. For example, this can determine whether the People app is synced with an account.</string>
2036
2037    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
2038    <string name="permlab_writeSyncSettings">toggle sync on and off</string>
2039    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
2040    <string name="permdesc_writeSyncSettings">Allows an app to modify the sync settings for an account.  For example, this can be used to enable sync of the People app with an account.</string>
2041
2042    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
2043    <string name="permlab_readSyncStats">read sync statistics</string>
2044    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
2045    <string name="permdesc_readSyncStats">Allows an app to read the sync stats for an account, including the history of sync events and how much data is synced. </string>
2046
2047    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
2048    <string name="permlab_subscribedFeedsRead">read subscribed feeds</string>
2049    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
2050    <string name="permdesc_subscribedFeedsRead">Allows the app to get details about the currently synced feeds.</string>
2051
2052    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
2053    <string name="permlab_subscribedFeedsWrite">write subscribed feeds</string>
2054    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
2055    <string name="permdesc_subscribedFeedsWrite">Allows the app to modify
2056      your currently synced feeds. Malicious apps may change your synced feeds.</string>
2057
2058    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
2059    <string name="permlab_readDictionary">read terms you added to the dictionary</string>
2060    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
2061    <string name="permdesc_readDictionary">Allows the app to read all words,
2062       names and phrases that the user may have stored in the user dictionary.</string>
2063
2064    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
2065    <string name="permlab_writeDictionary">add words to user-defined dictionary</string>
2066    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
2067    <string name="permdesc_writeDictionary">Allows the app to write new words into the
2068      user dictionary.</string>
2069
2070    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. [CHAR LIMIT=30] -->
2071    <string name="permlab_sdcardRead" product="nosdcard">read the contents of your USB storage</string>
2072    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
2073    <string name="permlab_sdcardRead" product="default">read the contents of your SD card</string>
2074    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. [CHAR LIMIT=30] -->
2075    <string name="permdesc_sdcardRead" product="nosdcard">Allows the app to read the contents of your USB storage.</string>
2076    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
2077    <string name="permdesc_sdcardRead" product="default">Allows the app to read the contents of your SD card.</string>
2078
2079    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. [CHAR LIMIT=30] -->
2080    <string name="permlab_sdcardWrite" product="nosdcard">modify or delete the contents of your USB storage</string>
2081    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
2082    <string name="permlab_sdcardWrite" product="default">modify or delete the contents of your SD card</string>
2083    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. [CHAR LIMIT=30] -->
2084    <string name="permdesc_sdcardWrite" product="nosdcard">Allows the app to write to the USB storage.</string>
2085    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
2086    <string name="permdesc_sdcardWrite" product="default">Allows the app to write to the SD card.</string>
2087
2088    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. [CHAR LIMIT=30] -->
2089    <string name="permlab_mediaStorageWrite" product="default">modify/delete internal media storage contents</string>
2090    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. [CHAR LIMIT=NONE] -->
2091    <string name="permdesc_mediaStorageWrite" product="default">Allows the app to modify the contents of the internal media storage.</string>
2092
2093    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. [CHAR LIMIT=30] -->
2094    <string name="permlab_manageDocs" product="default">manage document storage</string>
2095    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. [CHAR LIMIT=NONE] -->
2096    <string name="permdesc_manageDocs" product="default">Allows the app to manage document storage.</string>
2097
2098    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. [CHAR LIMIT=30] -->
2099    <string name="permlab_sdcardAccessAll">access external storage of all users</string>
2100    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
2101    <string name="permdesc_sdcardAccessAll">Allows the app to access external storage for all users.</string>
2102
2103    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
2104    <string name="permlab_cache_filesystem">access the cache filesystem</string>
2105    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
2106    <string name="permdesc_cache_filesystem">Allows the app to read and write the cache filesystem.</string>
2107
2108    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
2109    <string name="permlab_use_sip">make/receive SIP calls</string>
2110    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
2111    <string name="permdesc_use_sip">Allows the app to make and receive SIP calls.</string>
2112
2113    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
2114    <string name="permlab_bind_incall_service">interact with in-call screen</string>
2115    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
2116    <string name="permdesc_bind_incall_service">Allows the app to control when and how the user sees the in-call screen.</string>
2117
2118    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
2119    <string name="permlab_bind_connection_service">interact with telephony services</string>
2120    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
2121    <string name="permdesc_bind_connection_service">Allows the app to interact with telephony services to make/receive calls.</string>
2122
2123    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
2124    <string name="permlab_control_incall_experience">provide an in-call user experience</string>
2125    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
2126    <string name="permdesc_control_incall_experience">Allows the app to provide an in-call user experience.</string>
2127
2128    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
2129    <string name="permlab_readNetworkUsageHistory">read historical network usage</string>
2130    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
2131    <string name="permdesc_readNetworkUsageHistory">Allows the app to read historical network usage for specific networks and apps.</string>
2132
2133    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
2134    <string name="permlab_manageNetworkPolicy">manage network policy</string>
2135    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
2136    <string name="permdesc_manageNetworkPolicy">Allows the app to manage network policies and define app-specific rules.</string>
2137
2138    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
2139    <string name="permlab_modifyNetworkAccounting">modify network usage accounting</string>
2140    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
2141    <string name="permdesc_modifyNetworkAccounting">Allows the app to modify how network usage is accounted against apps. Not for use by normal apps.</string>
2142
2143    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
2144    <string name="permlab_accessNotifications">access notifications</string>
2145    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
2146    <string name="permdesc_accessNotifications">Allows the app to retrieve, examine, and clear notifications, including those posted by other apps.</string>
2147
2148    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
2149    <string name="permlab_bindNotificationListenerService">bind to a notification listener service</string>
2150    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
2151    <string name="permdesc_bindNotificationListenerService">Allows the holder to bind to the top-level interface of a notification listener service. Should never be needed for normal apps.</string>
2152
2153    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
2154    <string name="permlab_bindConditionProviderService">bind to a condition provider service</string>
2155    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
2156    <string name="permdesc_bindConditionProviderService">Allows the holder to bind to the top-level interface of a condition provider service. Should never be needed for normal apps.</string>
2157
2158    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
2159    <string name="permlab_bindDreamService">bind to a dream service</string>
2160    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
2161    <string name="permdesc_bindDreamService">Allows the holder to bind to the top-level interface of a dream service. Should never be needed for normal apps.</string>
2162
2163    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
2164    <string name="permlab_invokeCarrierSetup">invoke the carrier-provided configuration app</string>
2165    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
2166    <string name="permdesc_invokeCarrierSetup">Allows the holder to invoke the carrier-provided configuration app. Should never be needed for normal apps.</string>
2167
2168    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
2169    <string name="permlab_accessNetworkConditions">listen for observations on network conditions</string>
2170    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
2171    <string name="permdesc_accessNetworkConditions">Allows an application to listen for observations on network conditions. Should never be needed for normal apps.</string>
2172
2173    <string name="permlab_setInputCalibration">change input device calibration</string>
2174    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
2175    <string name="permdesc_setInputCalibration">Allows the app to modify the calibration parameters of the touch screen. Should never be needed for normal apps.</string>
2176
2177    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
2178    <string name="permlab_accessDrmCertificates">access DRM certificates</string>
2179    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
2180    <string name="permdesc_accessDrmCertificates">Allows an application to provision and use DRM certficates. Should never be needed for normal apps.</string>
2181
2182    <string name="permlab_handoverStatus">Receive Android Beam transfer status</string>
2183    <string name="permdesc_handoverStatus">Allows this application to receive information about current Android Beam transfers</string>
2184
2185    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
2186    <string name="permlab_removeDrmCertificates">remove DRM certificates</string>
2187    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
2188    <string name="permdesc_removeDrmCertificates">Allows an application to remove DRM certficates. Should never be needed for normal apps.</string>
2189
2190    <!-- Policy administration -->
2191
2192    <!-- Title of policy access to limiting the user's password choices -->
2193    <string name="policylab_limitPassword">Set password rules</string>
2194    <!-- Description of policy access to limiting the user's password choices -->
2195    <string name="policydesc_limitPassword">Control the length and the characters allowed in screen-unlock passwords.</string>
2196    <!-- Title of policy access to watch user login attempts -->
2197    <string name="policylab_watchLogin">Monitor screen-unlock attempts</string>
2198    <!-- Description of policy access to watch user login attempts -->
2199    <string name="policydesc_watchLogin" product="tablet">Monitor the number of incorrect passwords
2200    typed when unlocking the screen, and lock the tablet or erase all the tablet\'s
2201    data if too many incorrect passwords are typed.</string>
2202    <!-- Description of policy access to watch user login attempts -->
2203    <string name="policydesc_watchLogin" product="default">Monitor the number of incorrect passwords
2204    typed. when unlocking the screen, and lock the phone or erase all the phone\'s
2205    data if too many incorrect passwords are typed.</string>
2206    <!-- Title of policy access to reset user's password -->
2207    <string name="policylab_resetPassword">Change the screen-unlock password</string>
2208    <!-- Description of policy access to reset user's password -->
2209    <string name="policydesc_resetPassword">Change the screen-unlock password.</string>
2210    <!-- Title of policy access to force lock the device -->
2211    <string name="policylab_forceLock">Lock the screen</string>
2212    <!-- Description of policy access to limiting the user's password choices -->
2213    <string name="policydesc_forceLock">Control how and when the screen locks.</string>
2214    <!-- Title of policy access to wipe the user's data -->
2215    <string name="policylab_wipeData">Erase all data</string>
2216    <!-- Description of policy access to wipe the user's data -->
2217    <string name="policydesc_wipeData" product="tablet">Erase the tablet\'s data without warning by performing a factory data reset.</string>
2218    <!-- Description of policy access to wipe the user's data -->
2219    <string name="policydesc_wipeData" product="default">Erase the phone\'s data without warning by performing a factory data reset.</string>
2220    <string name="policylab_setGlobalProxy">Set the device global proxy</string>
2221    <!-- Description of policy access to wipe the user's data -->
2222    <string name="policydesc_setGlobalProxy">Set the device global proxy
2223        to be used while policy is enabled. Only the first device admin
2224        sets the effective global proxy.</string>
2225    <!-- Title of policy access to enforce password expiration [CHAR LIMIT=30]-->
2226    <string name="policylab_expirePassword">Set lock-screen password expiration</string>
2227    <!-- Description of policy access to enforce password expiration [CHAR LIMIT=110]-->
2228    <string name="policydesc_expirePassword">Control how frequently the lock-screen password must be changed.</string>
2229    <!-- Title of policy access to require encrypted storage [CHAR LIMIT=30]-->
2230    <string name="policylab_encryptedStorage">Set storage encryption</string>
2231    <!-- Description of policy access to require encrypted storage [CHAR LIMIT=110]-->
2232    <string name="policydesc_encryptedStorage">Require that stored app data be encrypted.</string>
2233    <!-- Title of policy access to disable all device cameras [CHAR LIMIT=30]-->
2234    <string name="policylab_disableCamera">Disable cameras</string>
2235    <!-- Description of policy access to disable all device cameras [CHAR LIMIT=110]-->
2236    <string name="policydesc_disableCamera">Prevent use of all device cameras.</string>
2237    <!-- Title of policy access to disable all device cameras [CHAR LIMIT=30]-->
2238    <string name="policylab_disableKeyguardFeatures">Disable features in keyguard</string>
2239    <!-- Description of policy access to disable all device cameras [CHAR LIMIT=110]-->
2240    <string name="policydesc_disableKeyguardFeatures">Prevent use of some features in keyguard.</string>
2241
2242    <!-- The order of these is important, don't reorder without changing Contacts.java --> <skip />
2243    <!-- Phone number types from android.provider.Contacts. This could be used when adding a new phone number for a contact, for example. -->
2244    <string-array name="phoneTypes">
2245        <item>Home</item>
2246        <item>Mobile</item>
2247        <item>Work</item>
2248        <item>Work Fax</item>
2249        <item>Home Fax</item>
2250        <item>Pager</item>
2251        <item>Other</item>
2252        <item>Custom</item>
2253    </string-array>
2254
2255    <!-- The order of these is important, don't reorder without changing Contacts.java --> <skip />
2256    <!-- Email address types from android.provider.Contacts. This could be used when adding a new e-mail address for a contact, for example. -->
2257    <string-array name="emailAddressTypes">
2258        <item>Home</item>
2259        <item>Work</item>
2260        <item>Other</item>
2261        <item>Custom</item>
2262    </string-array>
2263
2264    <!-- The order of these is important, don't reorder without changing Contacts.java --> <skip />
2265    <!-- Postal address types from android.provider.Contacts. This could be used when adding a new address for a contact, for example. -->
2266    <string-array name="postalAddressTypes">
2267        <item>Home</item>
2268        <item>Work</item>
2269        <item>Other</item>
2270        <item>Custom</item>
2271    </string-array>
2272
2273    <!-- The order of these is important, don't reorder without changing Contacts.java --> <skip />
2274    <!-- Instant Messenger ID types from android.provider.Contacts. This could be used when adding a new IM for a contact, for example. -->
2275    <string-array name="imAddressTypes">
2276        <item>Home</item>
2277        <item>Work</item>
2278        <item>Other</item>
2279        <item>Custom</item>
2280    </string-array>
2281
2282    <!-- The order of these is important, don't reorder without changing Contacts.java --> <skip />
2283    <!-- Organization types from android.provider.Contacts. This could be used when adding a new organization for a contact, for example. -->
2284    <string-array name="organizationTypes">
2285        <item>Work</item>
2286        <item>Other</item>
2287        <item>Custom</item>
2288    </string-array>
2289
2290    <!-- The order of these is important, don't reorder without changing Contacts.java --> <skip />
2291    <!-- Instant Message protocols/providers from android.provider.Contacts -->
2292    <string-array name="imProtocols">
2293        <item>AIM</item>
2294        <item>Windows Live</item>
2295        <item>Yahoo</item>
2296        <item>Skype</item>
2297        <item>QQ</item>
2298        <item>Google Talk</item>
2299        <item>ICQ</item>
2300        <item>Jabber</item>
2301    </string-array>
2302
2303    <!-- Custom phone number type -->
2304    <string name="phoneTypeCustom">Custom</string>
2305    <!-- Home phone number type -->
2306    <string name="phoneTypeHome">Home</string>
2307    <!-- Mobile phone number type -->
2308    <string name="phoneTypeMobile">Mobile</string>
2309    <!-- Work phone number type -->
2310    <string name="phoneTypeWork">Work</string>
2311    <!-- Work fax phone number type -->
2312    <string name="phoneTypeFaxWork">Work Fax</string>
2313    <!-- Home fax phone number type -->
2314    <string name="phoneTypeFaxHome">Home Fax</string>
2315    <!-- Pager phone number type -->
2316    <string name="phoneTypePager">Pager</string>
2317    <!-- Other phone number type -->
2318    <string name="phoneTypeOther">Other</string>
2319    <!-- Callback phone number type -->
2320    <string name="phoneTypeCallback">Callback</string>
2321    <!-- Car phone number type -->
2322    <string name="phoneTypeCar">Car</string>
2323    <!-- Company main phone number type -->
2324    <string name="phoneTypeCompanyMain">Company Main</string>
2325    <!-- ISDN phone number type -->
2326    <string name="phoneTypeIsdn">ISDN</string>
2327    <!-- Main phone number type -->
2328    <string name="phoneTypeMain">Main</string>
2329    <!-- Other fax phone number type -->
2330    <string name="phoneTypeOtherFax">Other Fax</string>
2331    <!-- Radio phone number type -->
2332    <string name="phoneTypeRadio">Radio</string>
2333    <!-- Telex phone number type -->
2334    <string name="phoneTypeTelex">Telex</string>
2335    <!-- TTY TDD phone number type -->
2336    <string name="phoneTypeTtyTdd">TTY TDD</string>
2337    <!-- Work mobile phone number type -->
2338    <string name="phoneTypeWorkMobile">Work Mobile</string>
2339    <!-- Work pager phone number type -->
2340    <string name="phoneTypeWorkPager">Work Pager</string>
2341    <!-- Assistant phone number type -->
2342    <string name="phoneTypeAssistant">Assistant</string>
2343    <!-- MMS phone number type -->
2344    <string name="phoneTypeMms">MMS</string>
2345
2346    <!-- Label for custom events  [CHAR LIMIT=20] -->
2347    <string name="eventTypeCustom">Custom</string>
2348    <!-- Label for a birthday event  [CHAR LIMIT=20] -->
2349    <string name="eventTypeBirthday">Birthday</string>
2350    <!-- Label for an anniversary event  [CHAR LIMIT=20] -->
2351    <string name="eventTypeAnniversary">Anniversary</string>
2352    <!-- Label for other events  [CHAR LIMIT=20] -->
2353    <string name="eventTypeOther">Other</string>
2354
2355    <!-- Custom email type -->
2356    <string name="emailTypeCustom">Custom</string>
2357    <!-- Home email type -->
2358    <string name="emailTypeHome">Home</string>
2359    <!-- Work email type -->
2360    <string name="emailTypeWork">Work</string>
2361    <!-- Other email type -->
2362    <string name="emailTypeOther">Other</string>
2363    <!-- Mobile email type -->
2364    <string name="emailTypeMobile">Mobile</string>
2365
2366    <!-- Custom postal address type -->
2367    <string name="postalTypeCustom">Custom</string>
2368    <!-- Home postal address type -->
2369    <string name="postalTypeHome">Home</string>
2370    <!-- Work postal address type -->
2371    <string name="postalTypeWork">Work</string>
2372    <!-- Other postal address type -->
2373    <string name="postalTypeOther">Other</string>
2374
2375    <!-- Custom IM address type -->
2376    <string name="imTypeCustom">Custom</string>
2377    <!-- Home IM address type -->
2378    <string name="imTypeHome">Home</string>
2379    <!-- Work IM address type -->
2380    <string name="imTypeWork">Work</string>
2381    <!-- Other IM address type -->
2382    <string name="imTypeOther">Other</string>
2383
2384    <!-- Custom IM protocol type -->
2385    <string name="imProtocolCustom">Custom</string>
2386    <!-- AIM IM protocol type -->
2387    <string name="imProtocolAim">AIM</string>
2388    <!-- MSN IM protocol type -->
2389    <string name="imProtocolMsn">Windows Live</string>
2390    <!-- Yahoo IM protocol type -->
2391    <string name="imProtocolYahoo">Yahoo</string>
2392    <!-- Skype IM protocol type -->
2393    <string name="imProtocolSkype">Skype</string>
2394    <!-- QQ IM protocol type -->
2395    <string name="imProtocolQq">QQ</string>
2396    <!-- Google Talk IM protocol type -->
2397    <string name="imProtocolGoogleTalk">Hangouts</string>
2398    <!-- ICQ IM protocol type -->
2399    <string name="imProtocolIcq">ICQ</string>
2400    <!-- Jabber IM protocol type -->
2401    <string name="imProtocolJabber">Jabber</string>
2402    <!-- NetMeeting IM protocol type -->
2403    <string name="imProtocolNetMeeting">NetMeeting</string>
2404
2405    <!-- Work organization type -->
2406    <string name="orgTypeWork">Work</string>
2407    <!-- Other organization type -->
2408    <string name="orgTypeOther">Other</string>
2409    <!-- Custom organization type -->
2410    <string name="orgTypeCustom">Custom</string>
2411
2412    <!-- Custom relationship custom [CHAR LIMIT=20] -->
2413    <string name="relationTypeCustom">Custom</string>
2414    <!-- Assistant relationship type [CHAR LIMIT=20] -->
2415    <string name="relationTypeAssistant">Assistant</string>
2416    <!-- Brother relationship type [CHAR LIMIT=20] -->
2417    <string name="relationTypeBrother">Brother</string>
2418    <!-- Child relationship type [CHAR LIMIT=20] -->
2419    <string name="relationTypeChild">Child</string>
2420    <!-- Domestic Partner relationship type [CHAR LIMIT=20] -->
2421    <string name="relationTypeDomesticPartner">Domestic Partner</string>
2422    <!-- Father relationship type [CHAR LIMIT=20] -->
2423    <string name="relationTypeFather">Father</string>
2424    <!-- Friend relationship type [CHAR LIMIT=20] -->
2425    <string name="relationTypeFriend">Friend</string>
2426    <!-- Manager relationship type [CHAR LIMIT=20] -->
2427    <string name="relationTypeManager">Manager</string>
2428    <!-- Mother relationship type [CHAR LIMIT=20] -->
2429    <string name="relationTypeMother">Mother</string>
2430    <!-- Parent relationship type [CHAR LIMIT=20] -->
2431    <string name="relationTypeParent">Parent</string>
2432    <!-- Partner relationship type [CHAR LIMIT=20] -->
2433    <string name="relationTypePartner">Partner</string>
2434    <!-- Referred by relationship type [CHAR LIMIT=20] -->
2435    <string name="relationTypeReferredBy">Referred by</string>
2436    <!-- Relative relationship type [CHAR LIMIT=20] -->
2437    <string name="relationTypeRelative">Relative</string>
2438    <!-- Sister relationship type [CHAR LIMIT=20] -->
2439    <string name="relationTypeSister">Sister</string>
2440    <!-- Spouse relationship type [CHAR LIMIT=20] -->
2441    <string name="relationTypeSpouse">Spouse</string>
2442
2443    <!-- Custom SIP address type. Same context as Custom phone type.  -->
2444    <string name="sipAddressTypeCustom">Custom</string>
2445    <!-- Home SIP address type. Same context as Home phone type. -->
2446    <string name="sipAddressTypeHome">Home</string>
2447    <!-- Work SIP address type. Same context as Work phone type. -->
2448    <string name="sipAddressTypeWork">Work</string>
2449    <!-- Other SIP address type. Same context as Other phone type. -->
2450    <string name="sipAddressTypeOther">Other</string>
2451
2452    <!-- Error message that is displayed when the user clicks on a quick contacts badge, but
2453         there is no contacts application installed that can display the quick contact -->
2454    <string name="quick_contacts_not_available">No application found to view this contact.</string>
2455
2456    <!-- Instructions telling the user to enter their SIM PIN to unlock the keyguard.
2457         Displayed in one line in a large font.  -->
2458    <string name="keyguard_password_enter_pin_code">Type PIN code</string>
2459
2460    <!-- Instructions telling the user to enter their SIM PUK to unlock the keyguard.
2461         Displayed in one line in a large font.  -->
2462    <string name="keyguard_password_enter_puk_code">Type PUK and new PIN code</string>
2463
2464    <!-- Prompt to enter SIM PUK in Edit Text Box in unlock screen -->
2465    <string name="keyguard_password_enter_puk_prompt">PUK code</string>
2466    <!-- Prompt to enter New SIM PIN in Edit Text Box in unlock screen -->
2467    <string name="keyguard_password_enter_pin_prompt">New PIN code</string>
2468
2469    <!-- Displayed as hint in passwordEntry EditText on PasswordUnlockScreen [CHAR LIMIT=30]-->
2470    <string name="keyguard_password_entry_touch_hint"><font size="17">Touch to type password</font></string>
2471
2472    <!-- Instructions telling the user to enter their text password to unlock the keyguard.
2473         Displayed in one line in a large font.  -->
2474    <string name="keyguard_password_enter_password_code">Type password to unlock</string>
2475
2476    <!-- Instructions telling the user to enter their PIN password to unlock the keyguard.
2477         Displayed in one line in a large font.  -->
2478    <string name="keyguard_password_enter_pin_password_code">Type PIN to unlock</string>
2479
2480    <!-- Instructions telling the user that they entered the wrong pin while trying
2481         to unlock the keyguard.  Displayed in one line in a large font.  -->
2482    <string name="keyguard_password_wrong_pin_code">Incorrect PIN code.</string>
2483
2484    <!-- Instructions telling the user how to unlock the phone. -->
2485    <string name="keyguard_label_text">To unlock, press Menu then 0.</string>
2486
2487    <!-- This can be used in any application wanting to disable the text "Emergency number" -->
2488    <string name="emergency_call_dialog_number_for_display">Emergency number</string>
2489
2490    <!--
2491       *** touch based lock / unlock ***
2492                                          --> <skip />
2493
2494    <!-- On the keyguard screen, it shows the carrier the phone is connected to.  This is displayed if the phone is not connected to a carrier.-->
2495    <string name="lockscreen_carrier_default">No service.</string>
2496
2497    <!-- Shown in the lock screen to tell the user that the screen is locked. -->
2498    <string name="lockscreen_screen_locked">Screen locked.</string>
2499
2500    <!-- when pattern lock is enabled, tell them about the emergency dial -->
2501    <string name="lockscreen_instructions_when_pattern_enabled">Press Menu to unlock or place emergency call.</string>
2502
2503    <!-- On the keyguard screen, when pattern lock is disabled, only tell them to press menu to unlock.  This is shown in small font at the bottom. -->
2504    <string name="lockscreen_instructions_when_pattern_disabled">Press Menu to unlock.</string>
2505
2506    <!-- On the unlock pattern screen, shown at the top of the unlock screen to tell the user what to do. Below this text is the place for theu ser to draw the pattern. -->
2507    <string name="lockscreen_pattern_instructions">Draw pattern to unlock</string>
2508    <!-- Button at the bottom of the unlock screen to make an emergency call. -->
2509    <string name="lockscreen_emergency_call">Emergency call</string>
2510    <!-- Button at the bottom of the unlock screen that lets the user return to a call -->
2511    <string name="lockscreen_return_to_call">Return to call</string>
2512    <!-- Shown to confirm that the user entered their lock pattern correctly. -->
2513    <string name="lockscreen_pattern_correct">Correct!</string>
2514    <!-- On the unlock pattern screen, shown when the user enters the wrong lock pattern and must try again. -->
2515    <string name="lockscreen_pattern_wrong">Try again</string>
2516    <!-- On the unlock password screen, shown when the user enters the wrong lock password and must try again. -->
2517    <string name="lockscreen_password_wrong">Try again</string>
2518    <!-- Shown when face unlock failed multiple times so we're just using the backup -->
2519    <string name="faceunlock_multiple_failures">Maximum Face Unlock attempts exceeded</string>
2520
2521    <!-- When the lock screen is showing and the phone plugged in, and the battery
2522         is not fully charged, show the current charge %.  -->
2523    <string name="lockscreen_plugged_in">Charging, <xliff:g id="number">%d</xliff:g><xliff:g id="percent">%%</xliff:g></string>
2524    <!-- When the lock screen is showing, the phone is plugged in and the battery is fully
2525         charged, say that it is charged. -->
2526    <string name="lockscreen_charged">Charged</string>
2527    <!-- A short representation of charging information, e.g "34%" -->
2528    <string name="lockscreen_battery_short"><xliff:g id="number">%d</xliff:g><xliff:g id="percent">%%</xliff:g></string>
2529
2530    <!-- When the lock screen is showing and the battery is low, warn user to plug
2531         in the phone soon. -->
2532    <string name="lockscreen_low_battery">Connect your charger.</string>
2533
2534    <!-- Shown in the lock screen when there is no SIM card. -->
2535    <string name="lockscreen_missing_sim_message_short">No SIM card</string>
2536    <!-- Shown in the lock screen when there is no SIM card. -->
2537    <string name="lockscreen_missing_sim_message" product="tablet">No SIM card in tablet.</string>
2538    <!-- Shown in the lock screen when there is no SIM card. -->
2539    <string name="lockscreen_missing_sim_message" product="default">No SIM card in phone.</string>
2540    <!-- Shown in the lock screen to ask the user to insert a SIM card. -->
2541    <string name="lockscreen_missing_sim_instructions">Insert a SIM card.</string>
2542    <!-- Shown in the lock screen to ask the user to insert a SIM card when sim is missing or not readable. -->
2543    <string name="lockscreen_missing_sim_instructions_long">The SIM card is missing or not readable. Insert a SIM card.</string>
2544    <!-- Shown in the lock screen when SIM card is permanently disabled. -->
2545    <string name="lockscreen_permanent_disabled_sim_message_short">Unusable SIM card.</string>
2546    <!-- Shown in the lock screen to inform the user to SIM card is permanently disabled. -->
2547    <string name="lockscreen_permanent_disabled_sim_instructions">Your SIM card has been permanently disabled.\n
2548    Contact your wireless service provider for another SIM card.</string>
2549
2550    <!-- Shown on transport control of lockscreen. Pressing button goes to previous track. -->
2551    <string name="lockscreen_transport_prev_description">Previous track</string>
2552    <!-- Shown on transport control of lockscreen. Pressing button goes to next track. -->
2553    <string name="lockscreen_transport_next_description">Next track</string>
2554    <!-- Shown on transport control of lockscreen. Pressing button pauses playback -->
2555    <string name="lockscreen_transport_pause_description">Pause</string>
2556    <!-- Shown on transport control of lockscreen. Pressing button pauses playback -->
2557    <string name="lockscreen_transport_play_description">Play</string>
2558    <!-- Shown on transport control of lockscreen. Pressing button pauses playback -->
2559    <string name="lockscreen_transport_stop_description">Stop</string>
2560    <!-- Shown on transport control screens. Pressing button rewinds playback [CHAR LIMIT=NONE]-->
2561    <string name="lockscreen_transport_rew_description">Rewind</string>
2562    <!-- Shown on transport control screens. Pressing button fast forwards playback [CHAR LIMIT=NONE]-->
2563    <string name="lockscreen_transport_ffw_description">Fast forward</string>
2564
2565    <!-- Shown in the lock screen when there is emergency calls only mode. -->
2566    <string name="emergency_calls_only" msgid="2485604591272668370">Emergency calls only</string>
2567
2568    <!-- When the user inserts a sim card from an unsupported network, it becomes network
2569         locked -->
2570    <string name="lockscreen_network_locked_message">Network locked</string>
2571
2572
2573    <!-- When the user enters a wrong sim pin too many times, it becomes
2574         PUK locked (Pin Unlock Kode) -->
2575    <string name="lockscreen_sim_puk_locked_message">SIM card is PUK-locked.</string>
2576    <!-- Shown in the lock screen when the SIM has become PUK locked and the user must call customer care to unlock it. -->
2577    <string name="lockscreen_sim_puk_locked_instructions">See the User Guide or contact Customer Care.</string>
2578
2579    <!-- Shown in the lock screen to tell the user that their SIM is locked and they must unlock it. -->
2580    <string name="lockscreen_sim_locked_message">SIM card is locked.</string>
2581
2582    <!-- For the unlock screen, When the user enters a sim unlock code, it takes a little while to check
2583         whether it is valid, and to unlock the sim if it is valid.  we display a
2584         progress dialog in the meantime.  this is the emssage. -->
2585    <string name="lockscreen_sim_unlock_progress_dialog_message">Unlocking SIM card\u2026</string>
2586
2587    <!-- For the unlock screen, Information message shown in dialog when user has too many failed attempts at
2588         drawing the unlock pattern -->
2589    <string name="lockscreen_too_many_failed_attempts_dialog_message">
2590        You have incorrectly drawn your unlock pattern <xliff:g id="number">%d</xliff:g> times.
2591        \n\nTry again in <xliff:g id="number">%d</xliff:g> seconds.
2592    </string>
2593
2594    <!-- For the unlock screen, Information message shown in dialog when user has too many failed attempts at
2595         entering the password -->
2596    <string name="lockscreen_too_many_failed_password_attempts_dialog_message">
2597        You have incorrectly typed your password <xliff:g id="number">%d</xliff:g> times.
2598        \n\nTry again in <xliff:g id="number">%d</xliff:g> seconds.
2599    </string>
2600
2601    <!-- For the unlock screen, Information message shown in dialog when user has too many failed attempts at
2602         entering the PIN -->
2603    <string name="lockscreen_too_many_failed_pin_attempts_dialog_message">
2604        You have incorrectly typed your PIN <xliff:g id="number">%d</xliff:g> times.
2605        \n\nTry again in <xliff:g id="number">%d</xliff:g> seconds.
2606    </string>
2607
2608    <!-- For the unlock screen, informational message shown in dialog when user is almost at the limit
2609         where they will be locked out and may have to enter an alternate username/password to unlock the phone -->
2610    <string name="lockscreen_failed_attempts_almost_glogin" product="tablet">
2611        You have incorrectly drawn your unlock pattern <xliff:g id="number">%d</xliff:g> times.
2612       After <xliff:g id="number">%d</xliff:g> more unsuccessful attempts,
2613       you will be asked to unlock your tablet using your Google signin.\n\n
2614       Try again in <xliff:g id="number">%d</xliff:g> seconds.
2615    </string>
2616
2617    <!-- For the unlock screen, informational message shown in dialog when user is almost at the limit
2618         where they will be locked out and may have to enter an alternate username/password to unlock the phone -->
2619    <string name="lockscreen_failed_attempts_almost_glogin" product="default">
2620        You have incorrectly drawn your unlock pattern <xliff:g id="number">%d</xliff:g> times.
2621       After <xliff:g id="number">%d</xliff:g> more unsuccessful attempts,
2622       you will be asked to unlock your phone using your Google signin.\n\n
2623       Try again in <xliff:g id="number">%d</xliff:g> seconds.
2624    </string>
2625
2626    <!-- For the unlock screen, informational message shown in dialog when user is almost at the limit
2627         where the device will be wiped. -->
2628    <string name="lockscreen_failed_attempts_almost_at_wipe" product="tablet">
2629       You have incorrectly attempted to unlock the tablet <xliff:g id="number">%d</xliff:g> times.
2630       After <xliff:g id="number">%d</xliff:g> more unsuccessful attempts,
2631       the tablet will be reset to factory default and all user data will be lost.
2632    </string>
2633
2634    <!-- For the unlock screen, informational message shown in dialog when user is almost at the limit
2635         where the device will be wiped. -->
2636    <string name="lockscreen_failed_attempts_almost_at_wipe" product="default">
2637       You have incorrectly attempted to unlock the phone <xliff:g id="number">%d</xliff:g> times.
2638       After <xliff:g id="number">%d</xliff:g> more unsuccessful attempts,
2639       the phone will be reset to factory default and all user data will be lost.
2640    </string>
2641
2642    <!-- For the unlock screen, informational message shown in dialog when user has exceeded the
2643        maximum attempts and the device will now be wiped -->
2644    <string name="lockscreen_failed_attempts_now_wiping" product="tablet">
2645       You have incorrectly attempted to unlock the tablet <xliff:g id="number">%d</xliff:g> times.
2646       The tablet will now be reset to factory default.
2647    </string>
2648
2649    <!-- For the unlock screen, informational message shown in dialog when user has exceeded the
2650        maximum attempts and the device will now be wiped -->
2651    <string name="lockscreen_failed_attempts_now_wiping" product="default">
2652       You have incorrectly attempted to unlock the phone <xliff:g id="number">%d</xliff:g> times.
2653       The phone will now be reset to factory default.
2654    </string>
2655
2656    <!-- On the unlock screen, countdown message shown while user is waiting to try again after too many
2657         failed attempts -->
2658    <string name="lockscreen_too_many_failed_attempts_countdown">Try again in <xliff:g id="number">%d</xliff:g> seconds.</string>
2659
2660    <!-- On the unlock screen, message shown on button that appears once it's apparent the user may have forgotten
2661         their lock gesture -->
2662    <string name="lockscreen_forgot_pattern_button_text">Forgot pattern?</string>
2663
2664    <!-- Title of the unlock screen that uses your Google login and password when the user hit
2665         the 'forgot pattern' button.-->
2666    <string name="lockscreen_glogin_forgot_pattern">Account unlock</string>
2667    <!-- Title of the unlock screen that uses your Google login and password when the user attempted
2668         too many patterns and we are forcing them to use their account instead. -->
2669    <string name="lockscreen_glogin_too_many_attempts">Too many pattern attempts</string>
2670    <!-- In the unlock screen, message telling the user that they need to use their Google login and password to unlock the phone -->
2671    <string name="lockscreen_glogin_instructions">To unlock, sign in with your Google account.</string>
2672    <!-- Hint caption for the username field when unlocking the phone using login and password -->
2673    <string name="lockscreen_glogin_username_hint">Username (email)</string>
2674    <!-- Hint caption for the password field when unlocking the phone using login and password -->
2675    <string name="lockscreen_glogin_password_hint">Password</string>
2676    <!-- Button to try to unlock the phone using username and password -->
2677    <string name="lockscreen_glogin_submit_button">Sign in</string>
2678    <!-- Displayed to the user when unlocking the phone with a username and password fails. -->
2679    <string name="lockscreen_glogin_invalid_input">Invalid username or password.</string>
2680    <!-- Hint displayed on account unlock screen to advise the user on how to recover the account. -->
2681    <string name="lockscreen_glogin_account_recovery_hint">Forgot your username or password\?\nVisit <b>google.com/accounts/recovery</b>.</string>
2682
2683    <!-- Displayed in a progress dialog while a username and password are being checked. -->
2684    <string name="lockscreen_glogin_checking_password">Checking\u2026</string>
2685    <!-- Displayed on lock screen's left tab - unlock -->
2686    <string name="lockscreen_unlock_label">Unlock</string>
2687    <!-- Displayed on lock screen's right tab - turn sound on -->
2688    <string name="lockscreen_sound_on_label">Sound on</string>
2689    <!-- Displayed on lock screen's right tab - turn sound off -->
2690    <string name="lockscreen_sound_off_label">Sound off</string>
2691
2692    <!-- Accessibility description sent when user starts drawing a lock pattern. [CHAR LIMIT=NONE] -->
2693    <string name="lockscreen_access_pattern_start">Pattern started</string>
2694    <!-- Accessibility description sent when the pattern times out and is cleared. [CHAR LIMIT=NONE] -->
2695    <string name="lockscreen_access_pattern_cleared">Pattern cleared</string>
2696    <!-- Accessibility description sent when user adds a cell to the pattern. [CHAR LIMIT=NONE]  -->
2697    <string name="lockscreen_access_pattern_cell_added">Cell added</string>
2698    <!-- Accessibility description sent when user completes drawing a pattern. [CHAR LIMIT=NONE] -->
2699    <string name="lockscreen_access_pattern_detected">Pattern completed</string>
2700
2701    <!-- Accessibility description sent when user changes the current lock screen widget. [CHAR_LIMIT=none] -->
2702    <string name="keyguard_accessibility_widget_changed">%1$s. Widget %2$d of %3$d.</string>
2703    <!-- Accessibility description of the add widget button. [CHAR_LIMIT=none] -->
2704    <string name="keyguard_accessibility_add_widget">Add widget.</string>
2705    <!-- Accessibility description of the empty sidget slot (place holder for a new widget). [CHAR_LIMIT=none] -->
2706    <string name="keyguard_accessibility_widget_empty_slot">Empty</string>
2707    <!-- Accessibility description of the event of expanding an unlock area. [CHAR_LIMIT=none] -->
2708    <string name="keyguard_accessibility_unlock_area_expanded">Unlock area expanded.</string>
2709    <!-- Accessibility description of the event of collapsing an unlock area. [CHAR_LIMIT=none] -->
2710    <string name="keyguard_accessibility_unlock_area_collapsed">Unlock area collapsed.</string>
2711    <!-- Accessibility description of a lock screen widget. [CHAR_LIMIT=none] -->
2712    <string name="keyguard_accessibility_widget"><xliff:g id="widget_index">%1$s</xliff:g> widget.</string>
2713    <!-- Accessibility description of the lock screen user selector widget. [CHAR_LIMIT=none] -->
2714    <string name="keyguard_accessibility_user_selector">User selector</string>
2715    <!-- Accessibility description of the lock screen status widget. [CHAR_LIMIT=none] -->
2716    <string name="keyguard_accessibility_status">Status</string>
2717    <!-- Accessibility description of the camera widget. [CHAR_LIMIT=none] -->
2718    <string name="keyguard_accessibility_camera">Camera</string>
2719    <!-- Accessibility description of the lock media control widget. [CHAR_LIMIT=none] -->
2720    <string name="keygaurd_accessibility_media_controls">Media controls</string>
2721    <!-- Accessibility description of widget reordering start. [CHAR_LIMIT=none] -->
2722    <string name="keyguard_accessibility_widget_reorder_start">Widget reordering started.</string>
2723    <!-- Accessibility description of widget reordering end. [CHAR_LIMIT=none] -->
2724    <string name="keyguard_accessibility_widget_reorder_end">Widget reordering ended.</string>
2725    <!-- Accessibility description of the a widget deletion event. [CHAR_LIMIT=none] -->
2726    <string name="keyguard_accessibility_widget_deleted">Widget <xliff:g id="widget_index">%1$s</xliff:g> deleted.</string>
2727    <!-- Accessibility description of the button to expand the lock area. [CHAR_LIMIT=none] -->
2728    <string name="keyguard_accessibility_expand_lock_area">Expand unlock area.</string>
2729    <!-- Accessibility description of the slide unlock. [CHAR_LIMIT=none] -->
2730    <string name="keyguard_accessibility_slide_unlock">Slide unlock.</string>
2731    <!-- Accessibility description of the pattern unlock. [CHAR_LIMIT=none] -->
2732    <string name="keyguard_accessibility_pattern_unlock">Pattern unlock.</string>
2733    <!-- Accessibility description of the face unlock. [CHAR_LIMIT=none] -->
2734    <string name="keyguard_accessibility_face_unlock">Face unlock.</string>
2735    <!-- Accessibility description of the pin lock. [CHAR_LIMIT=none] -->
2736    <string name="keyguard_accessibility_pin_unlock">Pin unlock.</string>
2737    <!-- Accessibility description of the password lock. [CHAR_LIMIT=none] -->
2738    <string name="keyguard_accessibility_password_unlock">Password unlock.</string>
2739    <!-- Accessibility description of the unlock pattern area. [CHAR_LIMIT=none] -->
2740    <string name="keyguard_accessibility_pattern_area">Pattern area.</string>
2741    <!-- Accessibility description of the unlock slide area. [CHAR_LIMIT=none] -->
2742    <string name="keyguard_accessibility_slide_area">Slide area.</string>
2743
2744    <!-- Password keyboard strings. Used by LockScreen and Settings --><skip />
2745    <!-- Label for "switch to symbols" key.  Must be short to fit on key! -->
2746    <string name="password_keyboard_label_symbol_key">\?123</string>
2747    <!-- Label for "switch to alphabetic" key.  Must be short to fit on key! -->
2748    <string name="password_keyboard_label_alpha_key">ABC</string>
2749    <!-- Label for ALT modifier key.  Must be short to fit on key! -->
2750    <string name="password_keyboard_label_alt_key">ALT</string>
2751
2752    <!-- Label for granularity to traverse the content on an AccessibilityNodeInfo by character. Only spoken to the user. [CHAR LIMIT=NONE] -->
2753    <string name="granularity_label_character">character</string>
2754    <!-- Label for granularity to traverse the content on an AccessibilityNodeInfo by word. Only spoken to the user. [CHAR LIMIT=NONE] -->
2755    <string name="granularity_label_word">word</string>
2756    <!-- Label for granularity to traverse the content on an AccessibilityNodeInfo by link. Only spoken to the user. [CHAR LIMIT=NONE] -->
2757    <string name="granularity_label_link">link</string>
2758    <!-- Label for granularity to traverse the content on an AccessibilityNodeInfo by line. Only spoken to the user. [CHAR LIMIT=NONE] -->
2759    <string name="granularity_label_line">line</string>
2760
2761    <!-- A format string for 12-hour time of day, just the hour, not the minute, with lower-case "am" or "pm" (example: "3pm"). -->
2762    <string name="hour_ampm">"<xliff:g id="hour" example="3">%-l</xliff:g><xliff:g id="ampm" example="pm">%P</xliff:g>"</string>
2763
2764    <!-- A format string for 12-hour time of day, just the hour, not the minute, with capital "AM" or "PM" (example: "3PM"). -->
2765    <string name="hour_cap_ampm">"<xliff:g id="hour" example="3">%-l</xliff:g><xliff:g id="ampm" example="PM">%p</xliff:g>"</string>
2766
2767    <!-- Title of the alert when something went wrong in the factory test. -->
2768    <string name="factorytest_failed">Factory test failed</string>
2769    <!-- Error message displayed when a non-system application tries to start a factory test. -->
2770    <string name="factorytest_not_system">The FACTORY_TEST action
2771        is only supported for packages installed in /system/app.</string>
2772    <!-- Error message displayed when the factory test could not be started. -->
2773    <string name="factorytest_no_action">No package was found that provides the
2774        FACTORY_TEST action.</string>
2775    <!-- Button to restart the device after the factory test. -->
2776    <string name="factorytest_reboot">Reboot</string>
2777
2778    <!-- Do not translate.  WebView User Agent string -->
2779    <string name="web_user_agent" translatable="false">Mozilla/5.0 (Linux; U; <xliff:g id="x">Android %s</xliff:g>)
2780        AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 <xliff:g id="mobile">%s</xliff:g>Safari/534.30</string>
2781    <!-- Do not translate.  WebView User Agent targeted content -->
2782    <string name="web_user_agent_target_content" translatable="false">"Mobile "</string>
2783
2784    <!-- Title for a JavaScript dialog. "The page at <url of current page> says:" -->
2785    <string name="js_dialog_title">The page at \"<xliff:g id="title">%s</xliff:g>\" says:</string>
2786    <!-- Default title for a javascript dialog -->
2787    <string name="js_dialog_title_default">JavaScript</string>
2788    <!-- Title for the unload javascript dialog -->
2789    <string name="js_dialog_before_unload_title">Confirm Navigation</string>
2790    <!-- Text for the positive button on the unload javascript dialog -->
2791    <string name="js_dialog_before_unload_positive_button">Leave this Page</string>
2792    <!-- Text for the negative button on the unload javascript dialog -->
2793    <string name="js_dialog_before_unload_negative_button">Stay on this Page</string>
2794    <!-- Message in a javascript dialog asking if the user wishes to leave the current page -->
2795    <string name="js_dialog_before_unload"><xliff:g id="message">%s</xliff:g>\n\nAre you sure you want to navigate away from this page?</string>
2796
2797    <!-- Title of the WebView save password dialog.  If the user enters a password in a form on a website, a dialog will come up asking if they want to save the password. -->
2798    <string name="save_password_label">Confirm</string>
2799
2800    <!-- Toast for double-tap -->
2801    <string name="double_tap_toast">Tip: Double-tap to zoom in and out.</string>
2802
2803    <!-- Text to show in the auto complete drop down list on a text view when the WebView can auto fill the entire form, and the user has configured an AutoFill profile [CHAR-LIMIT=8] -->
2804    <string name="autofill_this_form">Autofill</string>
2805    <!-- Text to show in the auto complete drop down list on a text view when the WebView can auto fill the entire form but the user has not configured an AutoFill profile [CHAR-LIMIT=19] -->
2806    <string name="setup_autofill">Set up Autofill</string>
2807
2808    <!-- String used to separate FirstName and LastName when writing out a local name
2809         e.g. John<separator>Smith [CHAR-LIMIT=NONE]-->
2810    <string name="autofill_address_name_separator">\u0020</string>
2811    <!-- Format string for displaying a name. $1 is First Name, $2 is autofill_address_name_separator, $3 is Last Name.
2812         e.g. (John)( )(Smith) -->
2813    <string name="autofill_address_summary_name_format">$1$2$3</string>
2814
2815    <!-- String used to separate Name and Address Line 1
2816         e.g. John Smith<separator>123 Main Street [CHAR-LIMIT=NONE]-->
2817    <string name="autofill_address_summary_separator">,\u0020</string>
2818    <!-- Format string for displaying a name and address summary. $1 is the Full Name, $2 is autofill_address_summary_separator, $3 is the Address
2819         e.g. (John Smith)(, )(123 Main Street) -->
2820    <string name="autofill_address_summary_format">$1$2$3</string>
2821
2822    <!-- Do not translate. Regex used by AutoFill. -->
2823    <string name="autofill_attention_ignored_re">attention|attn</string>
2824
2825    <!-- Do not translate. Regex used by AutoFill. -->
2826    <string name="autofill_region_ignored_re">province|region|other<!-- es -->|provincia<!-- pt-BR, pt-PT -->|bairro|suburb</string>
2827
2828    <!-- Do not translate. Regex used by AutoFill. -->
2829    <string name="autofill_company_re">company|business|organization|organisation|department<!-- de-DE -->|firma|firmenname<!-- es -->|empresa<!-- fr-FR -->|societe|société<!-- it-IT -->|ragione.?sociale<!-- ja-JP -->|会社<!-- ru -->|название.?компании<!-- zh-CN -->|单位|公司</string>
2830
2831    <!-- Do not translate. Regex used by AutoFill. -->
2832    <string name="autofill_address_line_1_re">address.?line|address1|addr1|street<!-- de-DE -->|strasse|straße|hausnummer|housenumber<!-- en-GB -->|house.?name<!-- es -->|direccion|dirección<!-- fr-FR -->|adresse<!-- it-IT -->|indirizzo<!-- ja-JP -->|住所1<!-- pt-BR, pt-PT -->|morada|endereço<!-- ru -->|Адрес<!-- zh-CN -->|地址</string>
2833
2834    <!-- Do not translate. Regex used by AutoFill. -->
2835    <string name="autofill_address_line_1_label_re">address<!-- fr-FR -->|adresse<!-- it-IT -->|indirizzo<!-- ja-JP -->|住所<!-- zh-CN -->|地址</string>
2836
2837    <!-- Do not translate. Regex used by AutoFill. -->
2838    <string name="autofill_address_line_2_re">address.?line2|address2|addr2|street|suite|unit<!-- de-DE -->|adresszusatz|ergänzende.?angaben<!-- es -->|direccion2|colonia|adicional<!-- fr-FR -->|addresssuppl|complementnom|appartement<!-- it-IT -->|indirizzo2<!-- ja-JP -->|住所2</string>
2839
2840    <!-- Do not translate. Regex used by AutoFill. -->
2841    <string name="autofill_address_line_3_re">address.?line3|address3|addr3|street|line3<!-- es -->|municipio<!-- fr-FR -->|batiment|residence<!-- it-IT -->|indirizzo3</string>
2842
2843    <!-- Do not translate. Regex used by AutoFill. -->
2844    <string name="autofill_country_re">country|location<!-- ja-JP -->|国<!-- zh-CN -->|国家</string>
2845
2846    <!-- Do not translate. Regex used by AutoFill. -->
2847    <string name="autofill_zip_code_re">zip|postal|post code|pcode|^1z$<!-- de-DE -->|postleitzahl<!-- es -->|cp<!-- fr-FR -->|cdp<!-- it-IT -->|cap<!-- ja-JP -->|郵便番号<!-- pt-BR, pt-PT -->|codigo|codpos|cep<!-- ru -->|Почтовый.?Индекс<!--zh-CN -->|邮政编码|邮编<!-- zh-TW -->|郵遞區號</string>
2848
2849    <!-- Do not translate. Regex used by AutoFill. -->
2850    <string name="autofill_zip_4_re">zip|^-$|post2<!-- pt-BR, pt-PT -->|codpos2</string>
2851
2852    <!-- Do not translate. Regex used by AutoFill. -->
2853    <string name="autofill_city_re">city|town<!-- de-DE -->|ort|stadt<!-- en-AU -->|suburb<!-- es -->|ciudad|provincia|localidad|poblacion<!-- fr-FR -->|ville|commune<!-- it-IT -->|localita<!-- ja-JP -->|市区町村<!-- pt-BR, pt-PT -->|cidade<!-- ru -->|Город<!-- zh-CN -->|市<!-- zh-TW -->|分區</string>
2854
2855    <!-- Do not translate. Regex used by AutoFill. -->
2856    <string name="autofill_state_re">state|county|region|province<!-- de-DE -->|land<!-- en-UK -->|county|principality<!-- ja-JP -->|都道府県<!-- pt-BR, pt-PT -->|estado|provincia<!-- ru -->|область<!-- zh-CN -->|省<!-- zh-TW -->|地區</string>
2857
2858    <!-- Do not translate. Regex used by AutoFill. -->
2859    <string name="autofill_address_type_same_as_re">same as</string>
2860
2861    <!-- Do not translate. Regex used by AutoFill. -->
2862    <string name="autofill_address_type_use_my_re">use my</string>
2863
2864    <!-- Do not translate. Regex used by AutoFill. -->
2865    <string name="autofill_billing_designator_re">bill</string>
2866
2867    <!-- Do not translate. Regex used by AutoFill. -->
2868    <string name="autofill_shipping_designator_re">ship</string>
2869
2870    <!-- Do not translate. Regex used by AutoFill. -->
2871    <string name="autofill_email_re">e.?mail<!-- ja-JP -->|メールアドレス<!-- ru -->|Электронной.?Почты<!-- zh-CN -->|邮件|邮箱<!-- zh-TW -->|電郵地址</string>
2872
2873    <!-- Do not translate. Regex used by AutoFill. -->
2874    <string name="autofill_username_re">user.?name|user.?id<!-- de-DE -->|vollständiger.?name<!-- zh-CN -->|用户名</string>
2875
2876    <!-- Do not translate. Regex used by AutoFill. -->
2877    <string name="autofill_name_re">^name|full.?name|your.?name|customer.?name|firstandlastname<!-- es -->|nombre.*y.*apellidos<!-- fr-FR -->|^nom<!-- ja-JP -->|お名前|氏名<!-- pt-BR, pt-PT -->|^nome<!-- zh-CN -->|姓名</string>
2878
2879    <!-- Do not translate. Regex used by AutoFill. -->
2880    <string name="autofill_name_specific_re">^name<!-- fr-FR -->|^nom<!-- pt-BR, pt-PT -->|^nome</string>
2881
2882    <!-- Do not translate. Regex used by AutoFill. -->
2883
2884    <string name="autofill_first_name_re">irst.*name|initials|fname|first$<!-- de-DE -->|vorname<!-- es -->|nombre<!-- fr-FR -->|forename|prénom|prenom<!-- ja-JP -->|名<!-- pt-BR, pt-PT -->|nome<!-- ru -->|Имя</string>
2885
2886    <!-- Do not translate. Regex used by AutoFill. -->
2887    <string name="autofill_middle_initial_re">middle.*initial|m\\.i\\.|mi$</string>
2888
2889    <!-- Do not translate. Regex used by AutoFill. -->
2890    <string name="autofill_middle_name_re">middle.*name|mname|middle$<!-- es -->|apellido.?materno|lastlastname</string>
2891
2892    <!-- Do not translate. Regex used by AutoFill. -->
2893    <string name="autofill_last_name_re">last.*name|lname|surname|last$<!-- de-DE -->|nachname<!-- es -->|apellidos<!-- fr-FR -->|famille|^nom<!-- it-IT -->|cognome<!-- ja-JP -->|姓<!-- pt-BR, pt-PT -->|morada|apelidos|surename|sobrenome<!-- ru -->|Фамилия</string>
2894
2895    <!-- Do not translate. Regex used by AutoFill. -->
2896    <string name="autofill_phone_re">phone<!-- de-DE -->|telefonnummer<!-- es -->|telefono|teléfono<!-- fr-FR -->|telfixe<!-- ja-JP -->|電話<!-- pt-BR, pt-PT -->|telefone|telemovel<!-- ru -->|телефон<!-- zh-CN -->|电话</string>
2897
2898    <!-- Do not translate. Regex used by AutoFill. -->
2899    <string name="autofill_area_code_re">area.*code|acode|area</string>
2900
2901    <!-- Do not translate. Regex used by AutoFill. -->
2902    <string name="autofill_phone_prefix_re">prefix<!-- fr-FR -->|preselection<!-- pt-BR, pt-PT -->|ddd</string>
2903
2904    <!-- Do not translate. Regex used by AutoFill. -->
2905    <string name="autofill_phone_suffix_re">suffix</string>
2906
2907    <!-- Do not translate. Regex used by AutoFill. -->
2908    <string name="autofill_phone_extension_re">ext<!-- pt-BR, pt-PT -->|ramal</string>
2909
2910    <!-- Do not translate. Regex used by AutoFill. -->
2911    <string name="autofill_name_on_card_re">card.?holder|name.?on.?card|ccname|owner<!-- de-DE -->|karteninhaber<!-- es -->|nombre.*tarjeta<!-- fr-FR -->|nom.*carte<!-- it-IT -->|nome.*cart<!-- ja-JP -->|名前<!-- ru -->|Имя.*карты<!-- zh-CN -->|信用卡开户名|开户名|持卡人姓名<!-- zh-TW -->|持卡人姓名</string>
2912
2913    <!-- Do not translate. Regex used by AutoFill. -->
2914    <string name="autofill_name_on_card_contextual_re">name</string>
2915
2916    <!-- Do not translate. Regex used by AutoFill. -->
2917    <string name="autofill_card_cvc_re">verification|card identification|cvn|security code|cvv code|cvc</string>
2918
2919    <!-- Do not translate. Regex used by AutoFill. -->
2920    <string name="autofill_card_number_re">number|card.?#|card.?no|ccnum<!-- de-DE -->|nummer<!-- es -->|credito|numero|número<!-- fr-FR -->|numéro<!-- ja-JP -->|カード番号<!-- ru -->|Номер.*карты<!-- zh-CN -->|信用卡号|信用卡号码<!-- zh-TW -->|信用卡卡號</string>
2921
2922    <!-- Do not translate. Regex used by AutoFill. -->
2923    <string name="autofill_expiration_month_re">expir|exp.*month|exp.*date|ccmonth<!-- de-DE -->|gueltig|gültig|monat<!-- es -->|fecha<!-- fr-FR -->|date.*exp<!-- it-IT -->|scadenza<!-- ja-JP -->|有効期限<!-- pt-BR, pt-PT -->|validade<!-- ru -->|Срок действия карты<!-- zh-CN -->|月</string>
2924
2925    <!-- Do not translate. Regex used by AutoFill. -->
2926    <string name="autofill_expiration_date_re">exp|^/|year<!-- de-DE -->|ablaufdatum|gueltig|gültig|yahr<!-- es -->|fecha<!-- it-IT -->|scadenza<!-- ja-JP -->|有効期限<!-- pt-BR, pt-PT -->|validade<!-- ru -->|Срок действия карты<!-- zh-CN -->|年|有效期</string>
2927
2928    <!-- Do not translate. Regex used by AutoFill. -->
2929    <string name="autofill_card_ignored_re">^card</string>
2930
2931    <!-- Do not translate. Regex used by AutoFill. -->
2932    <string name="autofill_fax_re">fax<!-- fr-FR -->|télécopie|telecopie<!-- ja-JP -->|ファックス<!-- ru -->|факс<!-- zh-CN -->|传真<!-- zh-TW -->|傳真</string>
2933
2934    <!-- Do not translate. Regex used by AutoFill. -->
2935    <string name="autofill_country_code_re">country.*code|ccode|_cc</string>
2936
2937    <!-- Do not translate. Regex used by AutoFill. -->
2938    <string name="autofill_area_code_notext_re">^\\($</string>
2939
2940    <!-- Do not translate. Regex used by AutoFill. -->
2941    <string name="autofill_phone_prefix_separator_re">^-$|^\\)$</string>
2942
2943    <!-- Do not translate. Regex used by AutoFill. -->
2944    <string name="autofill_phone_suffix_separator_re">^-$</string>
2945
2946    <!-- Label in a web form for "Province" [CHAR-LIMIT=NONE]  -->
2947    <string name="autofill_province">Province</string>
2948
2949    <!-- Label in a web form for "Postal code" [CHAR-LIMIT=NONE]  -->
2950    <string name="autofill_postal_code">Postal code</string>
2951
2952    <!-- Label in a web form for "State" [CHAR-LIMIT=NONE]  -->
2953    <string name="autofill_state">State</string>
2954
2955    <!-- Label in a web form for "ZIP code" [CHAR-LIMIT=NONE]  -->
2956    <string name="autofill_zip_code">ZIP code</string>
2957
2958    <!-- Label in a web form for "County" [CHAR-LIMIT=NONE]  -->
2959    <string name="autofill_county">County</string>
2960
2961    <!-- Label in a web form for "Island" [CHAR-LIMIT=NONE]  -->
2962    <string name="autofill_island">Island</string>
2963
2964    <!-- Label in a web form for "District" [CHAR-LIMIT=NONE]  -->
2965    <string name="autofill_district">District</string>
2966
2967    <!-- Label in a web form for "Department" [CHAR-LIMIT=NONE]  -->
2968    <string name="autofill_department">Department</string>
2969
2970    <!-- Label in a web form for "Prefecture" [CHAR-LIMIT=NONE]  -->
2971    <string name="autofill_prefecture">Prefecture</string>
2972
2973    <!-- Label in a web form for "Parish" [CHAR-LIMIT=NONE]  -->
2974    <string name="autofill_parish">Parish</string>
2975
2976    <!-- Label in a web form for "Area" [CHAR-LIMIT=NONE]  -->
2977    <string name="autofill_area">Area</string>
2978
2979    <!-- Label in a web form for "Emirate" [CHAR-LIMIT=NONE]  -->
2980    <string name="autofill_emirate">Emirate</string>
2981
2982    <!-- Title of an application permission, listed so the user can choose whether
2983        they want to allow the application to do this. -->
2984    <string name="permlab_readHistoryBookmarks">read your Web bookmarks and history</string>
2985    <!-- Description of an application permission, listed so the user can choose whether
2986        they want to allow the application to do this. -->
2987    <string name="permdesc_readHistoryBookmarks">Allows the app to read the
2988     history of all URLs that the Browser has visited, and all of the Browser\'s
2989     bookmarks. Note: this permission may not be enforced by third-party
2990     browsers or other  applications with web browsing capabilities.</string>
2991    <!-- Title of an application permission, listed so the user can choose whether
2992        they want to allow the application to do this. -->
2993
2994    <string name="permlab_writeHistoryBookmarks">write web bookmarks and history</string>
2995    <!-- Description of an application permission, listed so the user can choose whether
2996        they want to allow the application to do this. -->
2997    <string name="permdesc_writeHistoryBookmarks" product="tablet">Allows the
2998        app to modify the Browser\'s history or bookmarks stored on your tablet.
2999        This may allow the app to erase or modify Browser data.  Note: this
3000        permission may note be enforced by third-party browsers or other
3001        applications with web browsing capabilities.</string>
3002    <!-- Description of an application permission, listed so the user can choose whether
3003        they want to allow the application to do this. -->
3004    <string name="permdesc_writeHistoryBookmarks" product="default">Allows the
3005        app to modify the Browser\'s history or bookmarks stored on your phone.
3006        This may allow the app to erase or modify Browser data.  Note:
3007        this permission may note be enforced by third-party browsers or other
3008        applications with web browsing capabilities.</string>
3009
3010    <!-- Title of an application permission, listed so the user can choose whether
3011        they want to allow the application to do this. -->
3012    <string name="permlab_setAlarm">set an alarm</string>
3013    <!-- Description of an application permission, listed so the user can choose whether
3014        they want to allow the application to do this. -->
3015    <string name="permdesc_setAlarm">Allows the app to set an alarm in
3016      an installed alarm clock app. Some alarm clock apps may
3017      not implement this feature.</string>
3018
3019    <!-- Title of an application permission, listed so the user can choose whether
3020        they want to allow the application to modify and remove voicemails in the user's voicemail
3021        inbox. [CHAR LIMIT=NONE] -->
3022    <string name="permlab_writeVoicemail">write voicemails</string>
3023    <!-- Description of an application permission, listed so the user can choose whether
3024        they want to allow the application to modify and remove voicemails in the user's voicemail
3025        inbox. [CHAR LIMIT=NONE] -->
3026    <string name="permdesc_writeVoicemail">Allows the app to modify and remove messages from your voicemail inbox.</string>
3027
3028    <!-- Title of an application permission, listed so the user can choose whether
3029        they want to allow the application to do this. [CHAR LIMIT=NONE] -->
3030    <string name="permlab_addVoicemail">add voicemail</string>
3031    <!-- Description of an application permission, listed so the user can choose whether
3032        they want to allow the application to do this. [CHAR LIMIT=NONE] -->
3033    <string name="permdesc_addVoicemail">Allows the app to add messages
3034      to your voicemail inbox.</string>
3035
3036    <!-- Title of an application permission, listed so the user can choose whether
3037        they want to allow the application to do this. [CHAR LIMIT=NONE] -->
3038    <string name="permlab_readVoicemail">read voicemail</string>
3039    <!-- Description of an application permission, listed so the user can choose whether
3040        they want to allow the application to do this. [CHAR LIMIT=NONE] -->
3041    <string name="permdesc_readVoicemail">Allows the app to read your voicemails.</string>
3042
3043    <!-- Title of an application permission, listed so the user can choose whether
3044        they want to allow the application to do this. -->
3045    <string name="permlab_writeGeolocationPermissions">modify Browser geolocation permissions</string>
3046    <!-- Description of an application permission, listed so the user can choose whether
3047        they want to allow the application to do this. -->
3048    <string name="permdesc_writeGeolocationPermissions">Allows the app to modify the
3049        Browser\'s geolocation permissions. Malicious apps
3050        may use this to allow sending location information to arbitrary web sites.</string>
3051
3052    <!-- Title of an application permission which allows the application to verify whether
3053         a different package is able to be installed by some internal logic. [CHAR LIMIT=40] -->
3054    <string name="permlab_packageVerificationAgent">verify packages</string>
3055    <!-- Description of an application permission which allows the application to verify whether
3056         a different package is able to be installed by some internal heuristic. [CHAR LIMIT=NONE] -->
3057    <string name="permdesc_packageVerificationAgent">Allows the app to verify a package is
3058        installable.</string>
3059
3060    <!-- Title of an application permission which allows the application to verify whether
3061         a different package is able to be installed by some internal heuristic. [CHAR LIMIT=40] -->
3062    <string name="permlab_bindPackageVerifier">bind to a package verifier</string>
3063    <!-- Description of an application permission which allows the application to verify whether
3064         a different package is able to be installed by some internal heuristic. [CHAR LIMIT=NONE] -->
3065    <string name="permdesc_bindPackageVerifier">Allows the holder to make requests of
3066        package verifiers. Should never be needed for normal apps.</string>
3067
3068    <!-- Title of an application permission which allows the application to access serial ports via the SerialManager. [CHAR LIMIT=40] -->
3069    <string name="permlab_serialPort">access serial ports</string>
3070    <!-- Description of an application permission which allows the application access serial ports via the SerialManager. [CHAR LIMIT=NONE] -->
3071    <string name="permdesc_serialPort">Allows the holder to access serial ports using the SerialManager API.</string>
3072
3073    <!-- Title of an application permission which allows the holder to access content
3074         providers from outside an ApplicationThread. [CHAR LIMIT=40] -->
3075    <string name="permlab_accessContentProvidersExternally">access content providers externally</string>
3076    <!-- Description of an application permission which allows the holder to access
3077         content providers from outside an ApplicationThread. [CHAR LIMIT=NONE] -->
3078    <string name="permdesc_accessContentProvidersExternally">Allows the holder to access content
3079     providers from the shell. Should never be needed for normal apps.</string>
3080    <!-- Title of an application permission which allows the application to suggest that now is a bad time to reboot the device in order to apply an OTA.  [CHAR LIMIT=40] -->
3081    <string name="permlab_updateLock">discourage automatic device updates</string>
3082    <!-- Description of an application permission which allows the application to suggest that now is a bad time to reboot the device in order to apply an OTA.  [CHAR LIMIT=NONE] -->
3083    <string name="permdesc_updateLock">Allows the holder to offer information to the system about when would be a good time for a noninteractive reboot to upgrade the device.</string>
3084
3085    <!-- If the user enters a password in a form on a website, a dialog will come up asking if they want to save the password. Text in the save password dialog, asking if the browser should remember a password. -->
3086    <string name="save_password_message">Do you want the browser to remember this password?</string>
3087    <!-- If the user enters a password in a form on a website, a dialog will come up asking if they want to save the password. Button in the save password dialog, saying not to remember this password. -->
3088    <string name="save_password_notnow">Not now</string>
3089    <!-- If the user enters a password in a form on a website, a dialog will come up asking if they want to save the password. Button in the save password dialog, saying to remember this password. -->
3090    <string name="save_password_remember">Remember</string>
3091    <!-- Button in the save password dialog, saying never to remember this password. This should be short. Should be "Never for this site". But it is too long, use "Never" instead -->
3092    <string name="save_password_never">Never</string>
3093
3094    <!-- Displayed to the user when they do not have permission to open a particular web page. -->
3095    <string name="open_permission_deny">You don\'t have permission to open this page.</string>
3096
3097    <!-- Displayed to the user to confirm that they have copied text from a web page to the clipboard. -->
3098    <string name="text_copied">Text copied to clipboard.</string>
3099
3100    <!-- Menu item displayed at the end of a menu to allow users to see another page worth of menu items. This is shown on any app's menu as long as the app has too many items in the menu.-->
3101    <string name="more_item_label">More</string>
3102    <!-- Prepended to the shortcut for a menu item to indicate that the user should hold the MENU button together with the shortcut to invoke the item. For example, if the shortcut to open a new tab in browser is MENU and B together, then this would be prepended to the letter "B" -->
3103    <string name="prepend_shortcut_label">Menu+</string>
3104    <!-- Displayed in place of the regular shortcut letter when a menu item has Menu+space for the shortcut. -->
3105    <string name="menu_space_shortcut_label">space</string>
3106    <!-- Displayed in place of the regular shortcut letter when a menu item has Menu+enter for the shortcut. -->
3107    <string name="menu_enter_shortcut_label">enter</string>
3108    <!-- Displayed in place of the regular shortcut letter when a menu item has Menu+delete for the shortcut. -->
3109    <string name="menu_delete_shortcut_label">delete</string>
3110
3111    <!-- Strings used for search bar --><skip />
3112
3113    <!-- This is the default button label in the system-wide search UI.
3114         It is also used by the home screen's search "widget". It should be short -->
3115    <string name="search_go">Search</string>
3116    <!-- SearchView accessibility description for search button [CHAR LIMIT=NONE] -->
3117    <string name="searchview_description_search">Search</string>
3118    <!-- SearchView accessibility description for search text field [CHAR LIMIT=NONE] -->
3119    <string name="searchview_description_query">Search query</string>
3120    <!-- SearchView accessibility description for clear button [CHAR LIMIT=NONE] -->
3121    <string name="searchview_description_clear">Clear query</string>
3122    <!-- SearchView accessibility description for submit button [CHAR LIMIT=NONE] -->
3123    <string name="searchview_description_submit">Submit query</string>
3124    <!-- SearchView accessibility description for voice button [CHAR LIMIT=NONE] -->
3125    <string name="searchview_description_voice">Voice search</string>
3126
3127    <!-- Title for a warning message about the interaction model changes after allowing an accessibility
3128         service to put the device into explore by touch mode, displayed as a dialog message when
3129         the user selects to enables the service. (default). [CHAR LIMIT=45] -->
3130    <string name="enable_explore_by_touch_warning_title">Enable Explore by Touch?</string>
3131    <!-- Summary for a warning message about the interaction model changes after allowing an accessibility
3132         service to put the device into explore by touch mode, displayed as a dialog message when
3133         the user selects to enables the service. (tablet). [CHAR LIMIT=NONE] -->
3134    <string name="enable_explore_by_touch_warning_message" product="tablet">
3135        <xliff:g id="accessibility_service_name">%1$s</xliff:g> wants to enable Explore by Touch.
3136        When Explore by Touch is turned on, you can hear or see descriptions of what\'s under
3137        your finger or perform gestures to interact with the tablet.</string>
3138    <!-- Summary for a warning message about the interaction model changes after allowing an accessibility
3139         service to put the device into explore by touch mode, displayed as a dialog message when
3140         the user selects to enables the service. (default). [CHAR LIMIT=NONE] -->
3141    <string name="enable_explore_by_touch_warning_message" product="default">
3142        <xliff:g id="accessibility_service_name">%1$s</xliff:g> wants to enable Explore by Touch.
3143       When Explore by Touch is turned on, you can hear or see descriptions of what\'s under
3144       your finger or perform gestures to interact with the phone.</string>
3145
3146    <!-- String used to display the date. This is the string to say something happened 1 month ago. -->
3147    <string name="oneMonthDurationPast">1 month ago</string>
3148    <!-- String used to display the date. This is the string to say something happened more than 1 month ago. -->
3149    <string name="beforeOneMonthDurationPast">Before 1 month ago</string>
3150
3151    <!-- This is used to express that something occurred some number of seconds in the past (e.g., 5 seconds ago). -->
3152    <plurals name="num_seconds_ago">
3153        <item quantity="one">1 second ago</item>
3154        <item quantity="other"><xliff:g id="count">%d</xliff:g> seconds ago</item>
3155    </plurals>
3156
3157    <!-- This is used to express that something occurred some number of minutes in the past (e.g., 5 minutes ago). -->
3158    <plurals name="num_minutes_ago">
3159        <item quantity="one">1 minute ago</item>
3160        <item quantity="other"><xliff:g id="count">%d</xliff:g> minutes ago</item>
3161    </plurals>
3162
3163    <!-- This is used to express that something occurred some number of hours in the past (e.g., 5 hours ago). -->
3164    <plurals name="num_hours_ago">
3165        <item quantity="one">1 hour ago</item>
3166        <item quantity="other"><xliff:g id="count">%d</xliff:g> hours ago</item>
3167    </plurals>
3168
3169    <!-- This is used to express that something occurred within the last X days (e.g., Last 7 days). -->
3170    <plurals name="last_num_days">
3171        <item quantity="other">Last <xliff:g id="count">%d</xliff:g> days</item>
3172    </plurals>
3173
3174    <!-- This is used to express that something has occurred within the last month -->
3175    <string name="last_month">Last month</string>
3176
3177    <!-- This is used to express that something happened longer ago than the previous options -->
3178    <string name="older">Older</string>
3179
3180    <!-- This is used to express that something occurred some number of days in the past (e.g., 5 days ago). -->
3181    <plurals name="num_days_ago">
3182        <item quantity="one">yesterday</item>
3183        <item quantity="other"><xliff:g id="count">%d</xliff:g> days ago</item>
3184    </plurals>
3185
3186    <!-- This is used to express that something will occur some number of seconds in the future (e.g., in 5 seconds). -->
3187    <plurals name="in_num_seconds">
3188        <item quantity="one">in 1 second</item>
3189        <item quantity="other">in <xliff:g id="count">%d</xliff:g> seconds</item>
3190    </plurals>
3191
3192    <!-- This is used to express that something will occur some number of minutes in the future (e.g., in 5 minutes). -->
3193    <plurals name="in_num_minutes">
3194        <item quantity="one">in 1 minute</item>
3195        <item quantity="other">in <xliff:g id="count">%d</xliff:g> minutes</item>
3196    </plurals>
3197
3198    <!-- This is used to express that something will occur some number of hours in the future (e.g., in 5 hours). -->
3199    <plurals name="in_num_hours">
3200        <item quantity="one">in 1 hour</item>
3201        <item quantity="other">in <xliff:g id="count">%d</xliff:g> hours</item>
3202    </plurals>
3203
3204    <!-- This is used to express that something will occur some number of days in the future (e.g., in 5 days). -->
3205    <plurals name="in_num_days">
3206        <item quantity="one">tomorrow</item>
3207        <item quantity="other">in <xliff:g id="count">%d</xliff:g> days</item>
3208    </plurals>
3209
3210    <!-- This is used to express that something occurred some number of abbreviated seconds in the past (e.g., 5 secs ago). -->
3211    <plurals name="abbrev_num_seconds_ago">
3212        <item quantity="one">1 sec ago</item>
3213        <item quantity="other"><xliff:g id="count">%d</xliff:g> secs ago</item>
3214    </plurals>
3215
3216    <!-- This is used to express that something occurred some number of abbreviated minutes in the past (e.g., 5 mins ago). -->
3217    <plurals name="abbrev_num_minutes_ago">
3218        <item quantity="one">1 min ago</item>
3219        <item quantity="other"><xliff:g id="count">%d</xliff:g> mins ago</item>
3220    </plurals>
3221
3222    <!-- This is used to express that something occurred some number of abbreviated hours in the past (e.g., 5 hrs ago). -->
3223    <plurals name="abbrev_num_hours_ago">
3224        <item quantity="one">1 hour ago</item>
3225        <item quantity="other"><xliff:g id="count">%d</xliff:g> hours ago</item>
3226    </plurals>
3227
3228    <!-- This is used to express that something occurred some number of abbreviated days in the past (e.g., 5 days ago). -->
3229    <plurals name="abbrev_num_days_ago">
3230        <item quantity="one">yesterday</item>
3231        <item quantity="other"><xliff:g id="count">%d</xliff:g> days ago</item>
3232    </plurals>
3233
3234    <!-- This is used to express that something will occur some number of abbreviated seconds in the future (e.g., in 5 secs). -->
3235    <plurals name="abbrev_in_num_seconds">
3236        <item quantity="one">in 1 sec</item>
3237        <item quantity="other">in <xliff:g id="count">%d</xliff:g> secs</item>
3238    </plurals>
3239
3240    <!-- This is used to express that something will occur some number of abbreviated minutes in the future (e.g., in 5 mins). -->
3241    <plurals name="abbrev_in_num_minutes">
3242        <item quantity="one">in 1 min</item>
3243        <item quantity="other">in <xliff:g id="count">%d</xliff:g> mins</item>
3244    </plurals>
3245
3246    <!-- This is used to express that something will occur some number of abbreviated hours in the future (e.g., in 5 hrs). -->
3247    <plurals name="abbrev_in_num_hours">
3248        <item quantity="one">in 1 hour</item>
3249        <item quantity="other">in <xliff:g id="count">%d</xliff:g> hours</item>
3250    </plurals>
3251
3252    <!-- This is used to express that something will occur some number of abbreviated days in the future (e.g., in 5 days). -->
3253    <plurals name="abbrev_in_num_days">
3254        <item quantity="one">tomorrow</item>
3255        <item quantity="other">in <xliff:g id="count">%d</xliff:g> days</item>
3256    </plurals>
3257
3258    <!-- String used to display the date. Preposition for date display ("on May 29") -->
3259    <string name="preposition_for_date">on <xliff:g id="date" example="May 29">%s</xliff:g></string>
3260    <!-- String used to display the date. Preposition for time display ("at 2:33am") -->
3261    <string name="preposition_for_time">at <xliff:g id="time" example="2:33 am">%s</xliff:g></string>
3262    <!-- String used to display the date. Preposition for year display ("in 2008") -->
3263    <string name="preposition_for_year">in <xliff:g id="year" example="2003">%s</xliff:g></string>
3264
3265    <!-- Appened to express the value is this unit of time: singular day -->
3266    <string name="day">day</string>
3267    <!-- Appened to express the value is this unit of time: plural days -->
3268    <string name="days">days</string>
3269    <!-- Appened to express the value is this unit of time: singular hour -->
3270    <string name="hour">hour</string>
3271    <!-- Appened to express the value is this unit of time: plural hours -->
3272    <string name="hours">hours</string>
3273    <!-- Appened to express the value is this unit of time: singular minute -->
3274    <string name="minute">min</string>
3275    <!-- Appened to express the value is this unit of time: plural minutes -->
3276    <string name="minutes">mins</string>
3277    <!-- Appened to express the value is this unit of time. -->
3278    <string name="second">sec</string>
3279    <!-- Appened to express the value is this unit of time. -->
3280    <string name="seconds">secs</string>
3281    <!-- Appened to express the value is this unit of time. -->
3282    <string name="week">week</string>
3283    <!-- Appened to express the value is this unit of time. -->
3284    <string name="weeks">weeks</string>
3285    <!-- Appened to express the value is this unit of time. -->
3286    <string name="year">year</string>
3287    <!-- Appened to express the value is this unit of time. -->
3288    <string name="years">years</string>
3289
3290    <!-- Phrase describing a time duration using seconds [CHAR LIMIT=16] -->
3291    <plurals name="duration_seconds">
3292        <item quantity="one">1 second</item>
3293        <item quantity="other"><xliff:g id="count">%d</xliff:g> seconds</item>
3294    </plurals>
3295    <!-- Phrase describing a time duration using minutes [CHAR LIMIT=16] -->
3296    <plurals name="duration_minutes">
3297        <item quantity="one">1 minute</item>
3298        <item quantity="other"><xliff:g id="count">%d</xliff:g> minutes</item>
3299    </plurals>
3300    <!-- Phrase describing a time duration using hours [CHAR LIMIT=16] -->
3301    <plurals name="duration_hours">
3302        <item quantity="one">1 hour</item>
3303        <item quantity="other"><xliff:g id="count">%d</xliff:g> hours</item>
3304    </plurals>
3305
3306    <!-- Title for error alert when a video cannot be played.  it can be used by any app. -->
3307    <string name="VideoView_error_title">Video problem</string>
3308    <!-- Text for error alert when a video container is not valid for progressive download/playback. -->
3309    <string name="VideoView_error_text_invalid_progressive_playback">This video isn\'t valid for streaming to this device.</string>
3310    <!-- Text for error alert when a video cannot be played. it can be used by any app. -->
3311    <string name="VideoView_error_text_unknown">Can\'t play this video.</string>
3312    <!-- Button to close error alert when a video cannot be played -->
3313    <string name="VideoView_error_button">OK</string>
3314
3315
3316
3317
3318    <!-- Format indicating a relative expression and time.
3319         Example: "4 hours ago, 11:00 am" -->
3320    <string name="relative_time">"<xliff:g id="date" example="4 hours ago">%1$s</xliff:g>, <xliff:g id="time" example="11:00 am">%2$s</xliff:g>"</string>
3321
3322
3323    <!-- Quoted name for 12pm, lowercase -->
3324    <string name="noon">"noon"</string>
3325    <!-- Quoted name for 12pm, uppercase first letter -->
3326    <string name="Noon">"Noon"</string>
3327    <!-- Quoted name for 12am, lowercase -->
3328    <string name="midnight">"midnight"</string>
3329    <!-- Quoted name for 12am, uppercase first letter -->
3330    <string name="Midnight">"Midnight"</string>
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342    <!-- Format string for durations like "01:23" (1 minute, 23 seconds) -->
3343    <string name="elapsed_time_short_format_mm_ss"><xliff:g id="minutes" example="1">%1$02d</xliff:g>:<xliff:g id="seconds" example="23">%2$02d</xliff:g></string>
3344
3345    <!-- Format string for times like "1:43:33" (1 hour, 43 minutes, 33 seconds) -->
3346    <string name="elapsed_time_short_format_h_mm_ss"><xliff:g id="hours" example="1">%1$d</xliff:g>:<xliff:g id="minutes" example="43">%2$02d</xliff:g>:<xliff:g id="seconds" example="33">%3$02d</xliff:g></string>
3347
3348    <!-- Item on EditText context menu. This action is used to select all text in the edit field. -->
3349    <string name="selectAll">Select all</string>
3350
3351    <!-- Item on EditText context menu.  This action is used to cut selected the text into the clipboard.  -->
3352    <string name="cut">Cut</string>
3353
3354    <!-- Item on EditText context menu. This action is used to cut selected the text into the clipboard. -->
3355    <string name="copy">Copy</string>
3356
3357    <!-- Item on EditText context menu. This action is used to paste from the clipboard into the eidt field -->
3358    <string name="paste">Paste</string>
3359
3360    <!-- Item on EditText context menu. This action is used to replace the current word by other suggested words, suggested by the IME or the spell checker -->
3361    <string name="replace">Replace\u2026</string>
3362
3363    <!-- Item on EditText pop-up window. This action is used to delete the text that the user recently added. [CHAR LIMIT=15] -->
3364    <string name="delete">Delete</string>
3365
3366    <!-- Item on EditText context menu. This action is used to copy a URL from the edit field into the clipboard. -->
3367    <string name="copyUrl">Copy URL</string>
3368
3369    <!-- Item on EditText context menu. Added only when the context menu is not empty, it enable selection context mode. [CHAR LIMIT=20] -->
3370    <string name="selectTextMode">Select text</string>
3371
3372    <!-- Text selection contextual mode title, displayed in the CAB. [CHAR LIMIT=20] -->
3373    <string name="textSelectionCABTitle">Text selection</string>
3374
3375    <!-- Option to add the current misspelled word to the user dictionary. [CHAR LIMIT=25] -->
3376    <string name="addToDictionary">Add to dictionary</string>
3377
3378    <!-- Option to delete the highlighted part of the text from the suggestion popup. [CHAR LIMIT=25] -->
3379    <string name="deleteText">Delete</string>
3380
3381    <!-- EditText context menu -->
3382    <string name="inputMethod">Input method</string>
3383
3384    <!-- Title for EditText context menu [CHAR LIMIT=20] -->
3385    <string name="editTextMenuTitle">Text actions</string>
3386
3387    <!-- If the device is getting low on internal storage, a notification is shown to the user.  This is the title of that notification. -->
3388    <string name="low_internal_storage_view_title">Storage space running out</string>
3389    <!-- If the device is getting low on internal storage, a notification is shown to the user.  This is the message of that notification. -->
3390    <string name="low_internal_storage_view_text">Some system functions may not work</string>
3391
3392    <!-- [CHAR LIMIT=NONE] Stub notification title for an app running a service that has provided
3393         a bad bad notification for itself. -->
3394    <string name="app_running_notification_title"><xliff:g id="app_name">%1$s</xliff:g>
3395        is running</string>
3396    <!-- [CHAR LIMIT=NONE] Stub notification text for an app running a service that has provided
3397         a bad bad notification for itself. -->
3398    <string name="app_running_notification_text">Touch for more information
3399        or to stop the app.</string>
3400
3401    <!-- Preference framework strings. -->
3402    <string name="ok">OK</string>
3403    <!-- Preference framework strings. -->
3404    <string name="cancel">Cancel</string>
3405    <!-- Preference framework strings. -->
3406    <string name="yes">OK</string>
3407    <!-- Preference framework strings. -->
3408    <string name="no">Cancel</string>
3409    <!-- This is the generic "attention" string to be used in attention dialogs.  Typically
3410         combined with setIconAttribute(android.R.attr.alertDialogIcon)
3411         (or setIcon(android.R.drawable.ic_dialog_alert) on legacy versions of the platform) -->
3412    <string name="dialog_alert_title">Attention</string>
3413
3414    <!-- Text shown by list fragment when waiting for data to display. -->
3415    <string name="loading">Loading\u2026</string>
3416
3417    <!-- Default text for a button that can be toggled on and off. -->
3418    <string name="capital_on">ON</string>
3419    <!-- Default text for a button that can be toggled on and off. -->
3420    <string name="capital_off">OFF</string>
3421
3422    <!-- Title of intent resolver dialog when selecting an application to run. -->
3423    <string name="whichApplication">Complete action using</string>
3424    <!-- Title of intent resolver dialog when selecting an application to run
3425         and a previously used application is known. -->
3426    <string name="whichApplicationNamed">Complete action using %1$s</string>
3427    <!-- Title of intent resolver dialog when selecting a viewer application to run. -->
3428    <string name="whichViewApplication">Open with</string>
3429    <!-- Title of intent resolver dialog when selecting a viewer application to run
3430         and a previously used application is known. -->
3431    <string name="whichViewApplicationNamed">Open with %1$s</string>
3432    <!-- Title of intent resolver dialog when selecting an editor application to run. -->
3433    <string name="whichEditApplication">Edit with</string>
3434    <!-- Title of intent resolver dialog when selecting an editor application to run
3435         and a previously used application is known. -->
3436    <string name="whichEditApplicationNamed">Edit with %1$s</string>
3437    <!-- Title of intent resolver dialog when selecting a sharing application to run. -->
3438    <string name="whichSendApplication">Share with</string>
3439    <!-- Title of intent resolver dialog when selecting a sharing application to run
3440         and a previously used application is known. -->
3441    <string name="whichSendApplicationNamed">Share with %1$s</string>
3442    <!-- Title of intent resolver dialog when selecting a HOME application to run. -->
3443    <string name="whichHomeApplication">Select a home app</string>
3444    <!-- Option to always use the selected application resolution in the future. See the "Complete action using" dialog title-->
3445    <string name="alwaysUse">Use by default for this action.</string>
3446    <!-- Title of the list of alternate options to complete an action shown when the
3447         last used option is being displayed separately. -->
3448    <string name="use_a_different_app">Use a different app</string>
3449    <!-- Text displayed when the user selects the check box for setting default application.  See the "Use by default for this action" check box. -->
3450    <string name="clearDefaultHintMsg">Clear default in System settings &gt; Apps &gt; Downloaded.</string>
3451    <!-- Default title for the activity chooser, when one is not given. Android allows multiple activities to perform an action.  for example, there may be many ringtone pickers installed.  A dialog is shown to the user allowing him to pick which activity should be used.  This is the title. -->
3452    <string name="chooseActivity">Choose an action</string>
3453    <!-- title for the USB activity chooser. -->
3454    <string name="chooseUsbActivity">Choose an app for the USB device</string>
3455    <!-- Text to display when there are no activities found to display in the
3456         activity chooser. See the "Select an action" title. -->
3457    <string name="noApplications">No apps can perform this action.</string>
3458    <!-- Title of the alert when an application has crashed. -->
3459    <string name="aerr_title"></string>
3460    <!-- Text of the alert that is displayed when an application has crashed. -->
3461    <string name="aerr_application">Unfortunately, <xliff:g id="application">%1$s</xliff:g> has stopped.</string>
3462    <!-- Text of the alert that is displayed when an application has crashed. -->
3463    <string name="aerr_process">Unfortunately, the process <xliff:g id="process">%1$s</xliff:g> has
3464        stopped.</string>
3465    <!-- Title of the alert when an application is not responding. -->
3466    <string name="anr_title"></string>
3467    <!-- Text of the alert that is displayed when an application is not responding. -->
3468    <string name="anr_activity_application"><xliff:g id="application">%2$s</xliff:g> isn\'t responding.\n\nDo you want to close it?</string>
3469    <!-- Text of the alert that is displayed when an application is not responding. -->
3470    <string name="anr_activity_process">Activity <xliff:g id="activity">%1$s</xliff:g> isn\'t responding.\n\nDo you want to close it?</string>
3471    <!-- Text of the alert that is displayed when an application is not responding. -->
3472    <string name="anr_application_process"><xliff:g id="application">%1$s</xliff:g> isn\'t responding. Do you want to close it?</string>
3473    <!-- Text of the alert that is displayed when an application is not responding. -->
3474    <string name="anr_process">Process <xliff:g id="process">%1$s</xliff:g> isn\'t responding.\n\nDo you want to close it?</string>
3475    <!-- Button allowing the user to close an application that is not responding. This will kill the application. -->
3476    <string name="force_close">OK</string>
3477    <!-- Button allowing the user to send a bug report for application which has encountered an error. -->
3478    <string name="report">Report</string>
3479    <!-- Button allowing the user to choose to wait for an application that is not responding to become responsive again. -->
3480    <string name="wait">Wait</string>
3481    <!-- Text of the alert that is displayed when a web page is not responding. [CHAR-LIMIT=NONE] -->
3482    <string name="webpage_unresponsive">The page has become unresponsive.\n\nDo you want to close it?</string>
3483    <!-- [CHAR LIMIT=25] Title of the alert when application launches on top of another. -->
3484    <string name="launch_warning_title">App redirected</string>
3485    <!-- [CHAR LIMIT=50] Title of the alert when application launches on top of another. -->
3486    <string name="launch_warning_replace"><xliff:g id="app_name">%1$s</xliff:g> is now running.</string>
3487    <!-- [CHAR LIMIT=50] Title of the alert when application launches on top of another. -->
3488    <string name="launch_warning_original"><xliff:g id="app_name">%1$s</xliff:g> was originally launched.</string>
3489    <!-- [CHAR LIMIT=50] Compat mode dialog: compat mode switch label. -->
3490    <string name="screen_compat_mode_scale">Scale</string>
3491    <!-- [CHAR LIMIT=50] Compat mode dialog: compat mode switch label. -->
3492    <string name="screen_compat_mode_show">Always show</string>
3493    <!-- [CHAR LIMIT=200] Compat mode dialog: hint to re-enable compat mode dialog. -->
3494    <string name="screen_compat_mode_hint">Re-enable this in System settings &gt; Apps &gt; Downloaded.</string>
3495
3496    <!-- Text of the alert that is displayed when an application has violated StrictMode. -->
3497    <string name="smv_application">The app <xliff:g id="application">%1$s</xliff:g>
3498        (process <xliff:g id="process">%2$s</xliff:g>) has violated its self-enforced StrictMode policy.</string>
3499    <!-- Text of the alert that is displayed when an application has violated StrictMode. -->
3500    <string name="smv_process">The process <xliff:g id="process">%1$s</xliff:g> has
3501      has violated its self-enforced StrictMode policy.</string>
3502
3503    <!-- [CHAR LIMIT=40] Title of dialog that is shown when performing a system upgrade. -->
3504    <string name="android_upgrading_title">Android is upgrading\u2026</string>
3505
3506    <!-- [CHAR LIMIT=NONE] Message shown in upgrading dialog for each .apk that is optimized. -->
3507    <string name="android_upgrading_apk">Optimizing app
3508        <xliff:g id="number" example="123">%1$d</xliff:g> of
3509        <xliff:g id="number" example="123">%2$d</xliff:g>.</string>
3510
3511    <!-- [CHAR LIMIT=NONE] Message to show in upgrading dialog when reached the point of starting apps. -->
3512    <string name="android_upgrading_starting_apps">Starting apps.</string>
3513
3514    <!-- [CHAR LIMIT=NONE] Message to show in upgrading dialog when the bulk of the upgrade work is done. -->
3515    <string name="android_upgrading_complete">Finishing boot.</string>
3516
3517    <!-- Notification text to tell the user that a heavy-weight application is running. -->
3518    <string name="heavy_weight_notification"><xliff:g id="app">%1$s</xliff:g> running</string>
3519
3520    <!-- Notification details to tell the user that a heavy-weight application is running. -->
3521    <string name="heavy_weight_notification_detail">Touch to switch to app</string>
3522
3523    <!-- Title of dialog prompting whether user wants to switch between heavy-weight apps. -->
3524    <string name="heavy_weight_switcher_title">Switch apps?</string>
3525
3526    <!-- Descriptive text for switching to a new heavy-weight application. -->
3527    <string name="heavy_weight_switcher_text">Another app is already running
3528    that must be stopped before you can start a new one.</string>
3529
3530    <string name="old_app_action">Return to <xliff:g id="old_app">%1$s</xliff:g></string>
3531    <string name="old_app_description">Don\'t start the new app.</string>
3532
3533    <string name="new_app_action">Start <xliff:g id="old_app">%1$s</xliff:g></string>
3534    <string name="new_app_description">Stop the old app without saving.</string>
3535
3536    <!-- Displayed in the title of the chooser for things to do with text that
3537         is to be sent to another application. For example, I can send
3538         text through SMS or IM.  A dialog with those choices would be shown,
3539         and this would be the title. -->
3540    <string name="sendText">Choose an action for text</string>
3541
3542    <!-- Title of the dialog where the user is adjusting the phone ringer volume -->
3543    <string name="volume_ringtone">Ringer volume</string>
3544    <!-- Title of the dialog where the user is adjusting the music volume -->
3545    <string name="volume_music">Media volume</string>
3546    <!-- Hint shown in the volume toast to inform the user that the media audio is playing through Bluetooth. -->
3547    <string name="volume_music_hint_playing_through_bluetooth">Playing through Bluetooth</string>
3548    <!-- Hint shown in the volume toast to inform the user that the current ringtone is the silent ringtone. -->
3549    <string name="volume_music_hint_silent_ringtone_selected">Silent ringtone set</string>
3550    <!-- Title of the dialog where the user is adjusting the phone call volume -->
3551    <string name="volume_call">In-call volume</string>
3552    <!-- Title of the dialog where the user is adjusting the phone call volume when connected on bluetooth-->
3553    <string name="volume_bluetooth_call">Bluetooth in-call volume</string>
3554    <!-- Title of the dialog where the user is adjusting the audio volume for alarms -->
3555    <string name="volume_alarm">Alarm volume</string>
3556    <!-- Title of the dialog where the user is adjusting the audio volume for notifications -->
3557    <string name="volume_notification">Notification volume</string>
3558    <!-- Title of the dialog where the user is adjusting the general audio volume -->
3559    <string name="volume_unknown">Volume</string>
3560
3561    <!-- Content description for bluetooth volume icon [CHAR LIMIT=100] -->
3562    <string name="volume_icon_description_bluetooth">Bluetooth volume</string>
3563    <!-- Content description for ringer volume icon [CHAR LIMIT=100] -->
3564    <string name="volume_icon_description_ringer">Ringtone volume</string>
3565    <!-- Content description for in-call volume icon [CHAR LIMIT=100] -->
3566    <string name="volume_icon_description_incall">Call volume</string>
3567    <!-- Content description for media volume icon [CHAR LIMIT=100] -->
3568    <string name="volume_icon_description_media">Media volume</string>
3569    <!-- Content description for notification volume icon [CHAR LIMIT=100] -->
3570    <string name="volume_icon_description_notification">Notification volume</string>
3571
3572    <!-- Ringtone picker strings --> <skip />
3573    <!-- Choice in the ringtone picker.  If chosen, the default ringtone will be used. -->
3574    <string name="ringtone_default">Default ringtone</string>
3575    <!-- Choice in the ringtone picker.  If chosen, the default ringtone will be used. This fills in the actual ringtone's title into the message. -->
3576    <string name="ringtone_default_with_actual">Default ringtone (<xliff:g id="actual_ringtone">%1$s</xliff:g>)</string>
3577    <!-- Choice in the ringtone picker.  If chosen, there will be silence instead of a ringtone played. -->
3578    <string name="ringtone_silent">None</string>
3579    <!-- The title of the ringtone picker dialog. -->
3580    <string name="ringtone_picker_title">Ringtones</string>
3581    <!-- If there is ever a ringtone set for some setting, but that ringtone can no longer be resolved, t his is shown instead.  For example, if the ringtone was on a SD card and it had been removed, this woudl be shown for ringtones on that SD card. -->
3582    <string name="ringtone_unknown">Unknown ringtone</string>
3583
3584    <!-- A notification is shown when there are open wireless networks nearby.  This is the notification's title. -->
3585    <plurals name="wifi_available">
3586        <item quantity="one">Wi-Fi network available</item>
3587        <item quantity="other">Wi-Fi networks available</item>
3588    </plurals>
3589    <!-- A notification is shown when there are open wireless networks nearby.  This is the notification's message. -->
3590    <plurals name="wifi_available_detailed">
3591        <item quantity="one">Open Wi-Fi network available</item>
3592        <item quantity="other">Open Wi-Fi networks available</item>
3593    </plurals>
3594
3595    <!-- A notification is shown when a wifi captive portal network is detected.  This is the notification's title. -->
3596    <string name="wifi_available_sign_in">Sign into Wi-Fi network</string>
3597
3598    <!-- A notification is shown when a captive portal network is detected.  This is the notification's title. -->
3599    <string name="network_available_sign_in">Sign into network</string>
3600
3601    <!-- A notification is shown when a captive portal network is detected.  This is the notification's message. -->
3602    <string name="network_available_sign_in_detailed"><xliff:g id="network_ssid">%1$s</xliff:g></string>
3603
3604     <!-- A notification is shown when a user's selected SSID is later disabled due to connectivity problems.  This is the notification's title / ticker. -->
3605     <string name="wifi_watchdog_network_disabled">Couldn\'t connect to Wi-Fi</string>
3606     <!-- A notification is shown when a user's selected SSID is later disabled due to connectivity problems.  The complete alert msg is: <hotspot name> + this string, i.e. "Linksys has a poor internet connection" -->
3607    <string name="wifi_watchdog_network_disabled_detailed">\u0020has a poor Internet connection.</string>
3608
3609    <!-- Do not translate. Default access point SSID used for tethering -->
3610    <string name="wifi_tether_configure_ssid_default" translatable="false">AndroidAP</string>
3611
3612    <string name="wifi_p2p_dialog_title">Wi-Fi Direct</string>
3613    <string name="wifi_p2p_turnon_message">Start Wi-Fi Direct. This will turn off Wi-Fi client/hotspot.</string>
3614    <string name="wifi_p2p_failed_message">Couldn\'t start Wi-Fi Direct.</string>
3615    <string name="wifi_p2p_enabled_notification_title">Wi-Fi Direct is on</string>
3616    <string name="wifi_p2p_enabled_notification_message">Touch for settings</string>
3617
3618    <string name="accept">Accept</string>
3619    <string name="decline">Decline</string>
3620    <string name="wifi_p2p_invitation_sent_title">Invitation sent</string>
3621    <string name="wifi_p2p_invitation_to_connect_title">Invitation to connect</string>
3622
3623    <string name="wifi_p2p_from_message">From: </string>
3624    <string name="wifi_p2p_to_message">To: </string>
3625    <string name="wifi_p2p_enter_pin_message">Type the required PIN: </string>
3626    <string name="wifi_p2p_show_pin_message">PIN: </string>
3627
3628    <string name="wifi_p2p_frequency_conflict_message" product="tablet">The tablet will temporarily disconnect from Wi-Fi while it\'s connected to <xliff:g id="device_name">%1$s</xliff:g></string>
3629    <string name="wifi_p2p_frequency_conflict_message" product="default">The phone will temporarily disconnect from Wi-Fi while it\'s connected to <xliff:g id="device_name">%1$s</xliff:g></string>
3630
3631    <!-- Name of the dialog that lets the user choose an accented character to insert -->
3632    <string name="select_character">Insert character</string>
3633
3634    <!-- SMS per-application rate control Dialog --> <skip />
3635    <!-- SMS_DIALOG: An SMS dialog is shown if an application tries to send too many SMSes.  This is the title of that dialog. -->
3636    <string name="sms_control_title">Sending SMS messages</string>
3637    <!-- See SMS_DIALOG.  This is the message shown in that dialog. [CHAR LIMIT=NONE] -->
3638    <string name="sms_control_message">&lt;b><xliff:g id="app_name">%1$s</xliff:g>&lt;/b> is sending a large number of SMS messages. Do you want to allow this app to continue sending messages?</string>
3639    <!-- See SMS_DIALOG.  This is a button choice to allow sending the SMSes. [CHAR LIMIT=30] -->
3640    <string name="sms_control_yes">Allow</string>
3641    <!-- See SMS_DIALOG.  This is a button choice to disallow sending the SMSes. [CHAR LIMIT=30] -->
3642    <string name="sms_control_no">Deny</string>
3643
3644    <!-- SMS short code verification dialog. --> <skip />
3645    <!-- The message text for the SMS short code confirmation dialog. [CHAR LIMIT=NONE] -->
3646    <string name="sms_short_code_confirm_message">&lt;b><xliff:g id="app_name">%1$s</xliff:g>&lt;/b> would like to send a message to &lt;b><xliff:g id="dest_address">%2$s</xliff:g>&lt;/b>.</string>
3647    <!-- Message details for the SMS short code confirmation dialog (possible premium short code). [CHAR LIMIT=NONE] -->
3648    <string name="sms_short_code_details">This <b>may cause charges</b> on your mobile account.</string>
3649    <!-- Message details for the SMS short code confirmation dialog (premium short code). [CHAR LIMIT=NONE] -->
3650    <string name="sms_premium_short_code_details"><b>This will cause charges on your mobile account.</b></string>
3651    <!-- Text of the approval button for the SMS short code confirmation dialog. [CHAR LIMIT=30] -->
3652    <string name="sms_short_code_confirm_allow">Send</string>
3653    <!-- Text of the cancel button for the SMS short code confirmation dialog. [CHAR LIMIT=30] -->
3654    <string name="sms_short_code_confirm_deny">Cancel</string>
3655    <!-- Text of the checkbox for the SMS short code confirmation dialog to remember the user's choice. [CHAR LIMIT=40] -->
3656    <string name="sms_short_code_remember_choice">Remember my choice</string>
3657    <!-- Text shown when remember checkbox is checked to inform the user how they may undo the setting. [CHAR LIMIT=40] -->
3658    <string name="sms_short_code_remember_undo_instruction">You can change this later in Settings\u00A0>\u00A0Apps"</string>
3659
3660    <!-- Text of the approval button for the SMS short code confirmation dialog when checkbox is checked. [CHAR LIMIT=30] -->
3661    <string name="sms_short_code_confirm_always_allow">Always Allow</string>
3662    <!-- Text of the cancel button for the SMS short code confirmation dialog when checkbox is checked. [CHAR LIMIT=30] -->
3663    <string name="sms_short_code_confirm_never_allow">Never Allow</string>
3664
3665    <!-- SIM swap and device reboot Dialog --> <skip />
3666    <!-- See SIM_REMOVED_DIALOG.  This is the title of that dialog. -->
3667    <string name="sim_removed_title">SIM card removed</string>
3668    <!-- See SIM_REMOVED_DIALOG.  This is the message of that dialog. -->
3669    <string name="sim_removed_message">The cellular network will be unavailable until you restart with a valid SIM card inserted.</string>
3670    <!-- See SIM_REMOVED_DIALOG.  This is the button of that dialog. -->
3671    <string name="sim_done_button">Done</string>
3672    <!-- See SIM_ADDED_DIALOG.  This is the title of that dialog. -->
3673    <string name="sim_added_title">SIM card added</string>
3674    <!-- See SIM_ADDED_DIALOG.  This is the message of that dialog. -->
3675    <string name="sim_added_message">Restart your device to access the cellular network.</string>
3676    <!-- See SIM_ADDED_DIALOG.  This is the button of that dialog. -->
3677    <string name="sim_restart_button">Restart</string>
3678
3679    <!-- Date/Time picker dialogs strings -->
3680
3681    <!-- The title of the time picker dialog. [CHAR LIMIT=NONE] -->
3682    <string name="time_picker_dialog_title">Set time</string>
3683    <!-- The title of the date picker dialog. [CHAR LIMIT=NONE] -->
3684    <string name="date_picker_dialog_title">Set date</string>
3685    <!-- Name of the button in the date/time picker to accept the date/time change -->
3686    <string name="date_time_set">Set</string>
3687    <!-- Name of the button in the date/time picker to accept the date/time change -->
3688    <string name="date_time_done">Done</string>
3689
3690    <!-- Security Permissions strings-->
3691    <!-- Text that is placed at the front of a permission name that is being added to an app [CHAR LIMIT=NONE] -->
3692    <string name="perms_new_perm_prefix"><font size="12" fgcolor="#ff33b5e5">NEW: </font></string>
3693    <!-- Text that is placed at the front of a permission name that is being added to an app [CHAR LIMIT=NONE] -->
3694    <string name="perms_description_app">Provided by <xliff:g id="app_name">%1$s</xliff:g>.</string>
3695    <!-- Shown for an application when it doesn't require any permission grants. -->
3696    <string name="no_permissions">No permissions required</string>
3697    <!-- [CHAR LIMIT=NONE] Additional text in permission description for perms that can cost money. -->
3698    <string name="perm_costs_money">this may cost you money</string>
3699
3700    <!-- USB storage dialog strings -->
3701    <!-- This is the title for the activity's window. -->
3702    <string name="usb_storage_activity_title">USB mass storage</string>
3703
3704    <!-- See USB_STORAGE.  USB_STORAGE_DIALOG:  After the user selects the notification, a dialog is shown asking if he wants to mount.  This is the title. -->
3705    <string name="usb_storage_title">USB connected</string>
3706    <!-- See USB_STORAGE.    This is the message. [CHAR LIMIT=NONE] -->
3707    <string name="usb_storage_message" product="nosdcard">You\'ve connected to your computer via USB. Touch the button below if you want to copy files between your computer and your Android\'s USB storage.</string>
3708    <!-- See USB_STORAGE.    This is the message. [CHAR LIMIT=NONE] -->
3709    <string name="usb_storage_message" product="default">You\'ve connected to your computer via USB. Touch the button below if you want to copy files between your computer and your Android\'s SD card.</string>
3710    <!-- See USB_STORAGE.    This is the button text to mount the phone on the computer. -->
3711    <string name="usb_storage_button_mount">Turn on USB storage</string>
3712    <!-- See USB_STORAGE_DIALOG.  If there was an error mounting, this is the text. [CHAR LIMIT=NONE] -->
3713    <string name="usb_storage_error_message" product="nosdcard">There\'s a problem using your USB storage for USB mass storage.</string>
3714    <!-- See USB_STORAGE_DIALOG.  If there was an error mounting, this is the text. -->
3715    <string name="usb_storage_error_message" product="default">There\'s a problem using your SD card for USB mass storage.</string>
3716    <!-- USB_STORAGE: When the user connects the phone to a computer via USB, we show a notification asking if he wants to share files across.  This is the title -->
3717    <string name="usb_storage_notification_title">USB connected</string>
3718    <!-- See USB_STORAGE. This is the message. -->
3719    <string name="usb_storage_notification_message">Touch to copy files to/from your computer.</string>
3720
3721    <!-- USB_STORAGE_STOP: While USB storage is enabled, we show a notification dialog asking if he wants to stop. This is the title -->
3722    <string name="usb_storage_stop_notification_title">Turn off USB storage</string>
3723    <!-- See USB_STORAGE. This is the message. -->
3724    <string name="usb_storage_stop_notification_message">Touch to turn off USB storage.</string>
3725
3726    <!-- USB storage stop dialog strings -->
3727    <!-- This is the label for the activity, and should never be visible to the user. -->
3728    <!-- See USB_STORAGE_STOP.  USB_STORAGE_STOP_DIALOG:  After the user selects the notification, a dialog is shown asking if he wants to stop usb storage.  This is the title. -->
3729    <string name="usb_storage_stop_title">USB storage in use</string>
3730    <!-- See USB_STORAGE_STOP.    This is the message. [CHAR LIMIT=NONE] -->
3731    <string name="usb_storage_stop_message" product="nosdcard">Before turning off USB storage, unmount (\"eject\") your Android\'s USB storage from your computer.</string>
3732    <!-- See USB_STORAGE_STOP.    This is the message. -->
3733    <string name="usb_storage_stop_message" product="default">Before turning off USB storage, unmount (\"eject\") your Android\'s SD card from your computer.</string>
3734    <!-- See USB_STORAGE_STOP.    This is the button text to stop usb storage. -->
3735    <string name="usb_storage_stop_button_mount">Turn off USB storage</string>
3736    <!-- See USB_STORAGE_STOP_DIALOG.  If there was an error stopping, this is the text. -->
3737    <string name="usb_storage_stop_error_message">There was a problem turning off USB storage. Check that you\'ve unmounted the USB host, then try again.</string>
3738
3739    <!-- USB_STORAGE_KILL_STORAGE_USERS dialog  -->
3740    <string name="dlg_confirm_kill_storage_users_title">Turn on USB storage</string>
3741    <!-- USB_STORAGE_KILL_STORAGE_USERS dialog message text -->
3742    <string name="dlg_confirm_kill_storage_users_text">If you turn on USB storage, some apps you\'re using will stop and may be unavailable until you turn off USB storage.</string>
3743    <!-- USB_STORAGE_ERROR dialog  dialog-->
3744    <string name="dlg_error_title">USB operation unsuccessful</string>
3745    <!-- USB_STORAGE_ERROR dialog  ok button-->
3746    <string name="dlg_ok">OK</string>
3747
3748    <!-- USB_PREFERENCES: Notification for when the user connects the phone to a computer via USB in MTP mode.  This is the title -->
3749    <string name="usb_mtp_notification_title">Connected as a media device</string>
3750    <!-- USB_PREFERENCES: Notification for when the user connects the phone to a computer via USB in PTP mode.  This is the title -->
3751    <string name="usb_ptp_notification_title">Connected as a camera</string>
3752    <!-- USB_PREFERENCES: Notification for when the user connects the phone to a computer via USB in mass storage mode (for installer CD image).  This is the title -->
3753    <string name="usb_cd_installer_notification_title">Connected as an installer</string>
3754    <!-- USB_PREFERENCES: Notification for when a USB accessory is attached.  This is the title -->
3755    <string name="usb_accessory_notification_title">Connected to a USB accessory</string>
3756    <!-- See USB_PREFERENCES. This is the message. -->
3757    <string name="usb_notification_message">Touch for other USB options.</string>
3758
3759    <!-- External media format dialog strings -->
3760    <!-- This is the label for the activity, and should never be visible to the user. -->
3761    <!-- See EXTMEDIA_FORMAT.  EXTMEDIA_FORMAT_DIALOG:  After the user selects the notification, a dialog is shown asking if he wants to format the SD card.  This is the title. [CHAR LIMIT=20] -->
3762    <string name="extmedia_format_title" product="nosdcard">Format USB storage?</string>
3763    <!-- See EXTMEDIA_FORMAT.  EXTMEDIA_FORMAT_DIALOG:  After the user selects the notification, a dialog is shown asking if he wants to format the SD card.  This is the title. -->
3764    <string name="extmedia_format_title" product="default">Format SD card?</string>
3765    <!-- See EXTMEDIA_FORMAT.   This is the message. [CHAR LIMIT=NONE] -->
3766    <string name="extmedia_format_message" product="nosdcard">All files stored in your USB storage will be erased. This action can\'t be reversed!</string>
3767    <!-- See EXTMEDIA_FORMAT.   This is the message. -->
3768    <string name="extmedia_format_message" product="default">All data on your card will be lost.</string>
3769    <!-- See EXTMEDIA_FORMAT.    This is the button text to format the sd card. -->
3770    <string name="extmedia_format_button_format">Format</string>
3771
3772    <!-- Title of notification shown when ADB is actively connected to the phone. -->
3773    <string name="adb_active_notification_title">USB debugging connected</string>
3774    <!-- Message of notification shown when ADB is actively connected to the phone. -->
3775    <string name="adb_active_notification_message">Touch to disable USB debugging.</string>
3776
3777    <!-- Used to replace %s in urls retreived from the signin server with locales.  For Some        -->
3778    <!-- devices we don't support all the locales we ship to and need to replace the '%s' with a    -->
3779    <!-- locale string based on mcc values.  By default (0-length string) we don't replace the %s   -->
3780    <!-- at all and later replace it with a locale string based on the users chosen locale          -->
3781    <!-- DO NOT TRANSLATE -->
3782    <string name="locale_replacement">""</string>
3783
3784    <!-- Title of the pop-up dialog in which the user switches keyboard, also known as input method. -->
3785    <string name="select_input_method">Change keyboard</string>
3786    <!-- Title of a button to open the settings to enable or disable keyboards, also known as input methods [CHAR LIMIT=30] -->
3787    <string name="configure_input_methods">Choose keyboards</string>
3788    <!-- Summary text of a toggle switch to enable/disable use of the IME while a physical
3789         keyboard is connected[CHAR LIMIT=25] -->
3790    <string name="show_ime">Show input method</string>
3791    <!-- Title of the physical keyboard category in the input method selector [CHAR LIMIT=10] -->
3792    <string name="hardware">Hardware</string>
3793
3794    <!-- Title of the notification to prompt the user to select a keyboard layout. -->
3795    <string name="select_keyboard_layout_notification_title">Select keyboard layout</string>
3796    <!-- Message of the notification to prompt the user to select a keyboard layout. -->
3797    <string name="select_keyboard_layout_notification_message">Touch to select a keyboard layout.</string>
3798
3799    <string name="fast_scroll_alphabet">\u0020ABCDEFGHIJKLMNOPQRSTUVWXYZ</string>
3800    <string name="fast_scroll_numeric_alphabet">\u00200123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ</string>
3801
3802    <string name="candidates_style"><u>candidates</u></string>
3803
3804    <!-- External media notification strings -->
3805    <!-- Shown when external media is being checked [CHAR LIMIT=30] -->
3806    <string name="ext_media_checking_notification_title" product="nosdcard">Preparing USB storage</string>
3807    <!-- Shown when external media is being checked -->
3808    <string name="ext_media_checking_notification_title" product="default">Preparing SD card</string>
3809    <string name="ext_media_checking_notification_message">Checking for errors.</string>
3810
3811    <!-- Shown when external media is blank (or unsupported filesystem) [CHAR LIMIT=30] -->
3812    <string name="ext_media_nofs_notification_title" product="nosdcard">Blank USB storage</string>
3813    <!-- Shown when external media is blank (or unsupported filesystem) -->
3814    <string name="ext_media_nofs_notification_title" product="default">Blank SD card</string>
3815    <!-- Shown when USB storage cannot be read.  [CHAR LIMIT=NONE] -->
3816    <string name="ext_media_nofs_notification_message" product="nosdcard">USB storage is blank or has unsupported filesystem.</string>
3817    <string name="ext_media_nofs_notification_message" product="default">SD card is blank or has unsupported filesystem.</string>
3818
3819    <!-- Shown when external media is unmountable (corrupt)) [CHAR LIMIT=30] -->
3820    <string name="ext_media_unmountable_notification_title" product="nosdcard">Damaged USB storage</string>
3821    <!-- Shown when external media is unmountable (corrupt)) -->
3822    <string name="ext_media_unmountable_notification_title" product="default">Damaged SD card</string>
3823    <!-- Shown when USB storage cannot be read.  [CHAR LIMIT=NONE] -->
3824    <string name="ext_media_unmountable_notification_message" product="nosdcard">USB storage is damaged. Try reformatting it.</string>
3825    <string name="ext_media_unmountable_notification_message" product="default">SD card is damaged. Try reformatting it.</string>
3826
3827    <!-- Shown when external media is unsafely removed [CHAR LIMIT=30] -->
3828    <string name="ext_media_badremoval_notification_title" product="nosdcard">USB storage unexpectedly removed</string>
3829    <!-- Shown when external media is unsafely removed -->
3830    <string name="ext_media_badremoval_notification_title" product="default">SD card unexpectedly removed</string>
3831    <!-- Shown when external media is unsafely removed.  [CHAR LIMIT=NONE] -->
3832    <string name="ext_media_badremoval_notification_message" product="nosdcard">Unmount USB storage before removing to avoid data loss.</string>
3833    <string name="ext_media_badremoval_notification_message" product="default">Unmount SD card before removing to avoid data loss.</string>
3834
3835    <!-- Shown when external media has been safely removed [CHAR LIMIT=30] -->
3836    <string name="ext_media_safe_unmount_notification_title" product="nosdcard">USB storage safe to remove</string>
3837    <!-- Shown when external media has been safely removed -->
3838    <string name="ext_media_safe_unmount_notification_title" product="default">SD card safe to remove</string>
3839    <!-- Shown when external media has been safely removed.  [CHAR LIMIT=NONE] -->
3840    <string name="ext_media_safe_unmount_notification_message" product="nosdcard">You can safely remove USB storage.</string>
3841    <string name="ext_media_safe_unmount_notification_message" product="default">You can safely remove SD card.</string>
3842
3843    <!-- Shown when external media is missing [CHAR LIMIT=30] -->
3844    <string name="ext_media_nomedia_notification_title" product="nosdcard">Removed USB storage</string>
3845    <!-- Shown when external media is missing -->
3846    <string name="ext_media_nomedia_notification_title" product="default">Removed SD card</string>
3847    <!-- Shown when external media is missing.  [CHAR LIMIT=NONE] -->
3848    <string name="ext_media_nomedia_notification_message" product="nosdcard">USB storage removed. Insert new media.</string>
3849    <string name="ext_media_nomedia_notification_message" product="default">SD card removed. Insert a new one.</string>
3850
3851    <!-- Shown in LauncherActivity when the requested target Intent didn't return any matching Activities, leaving the list empty. -->
3852    <string name="activity_list_empty">No matching activities found.</string>
3853
3854    <!-- permission attributes related to package usage statistics -->
3855    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
3856    <string name="permlab_pkgUsageStats">update component usage statistics</string>
3857    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
3858    <string name="permdesc_pkgUsageStats">Allows the app to modify collected component usage statistics. Not for use by normal apps.</string>
3859
3860    <!-- permission attributes related to default container service -->
3861    <!-- Title of an application permission that lets an application use default container service. -->
3862    <string name="permlab_copyProtectedData">copy content</string>
3863    <!-- Description of an application permission,  used to invoke default container service to copy content. -->
3864    <string name="permdesc_copyProtectedData">Allows the app to invoke default container service to copy content. Not for use by normal apps.</string>
3865
3866    <!-- Title of an application permission that lets an application route media output. -->
3867    <string name="permlab_route_media_output">Route media output</string>
3868    <!-- Description of an application permission that lets an application route media output. -->
3869    <string name="permdesc_route_media_output">Allows an application to route media output to other external devices.</string>
3870
3871    <!-- Title of an application permission that lets an application access keyguard secure storage. -->
3872    <string name="permlab_access_keyguard_secure_storage">Access keyguard secure storage</string>
3873    <!-- Description of an application permission that lets an application access keyguard secure storage. -->
3874    <string name="permdesc_access_keyguard_secure_storage">Allows an application to access keguard secure storage.</string>
3875
3876    <!-- Title of an application permission that lets it control keyguard. -->
3877    <string name="permlab_control_keyguard">Control displaying and hiding keyguard</string>
3878    <!-- Description of an application permission that lets it control keyguard. -->
3879    <string name="permdesc_control_keyguard">Allows an application to control keguard.</string>
3880
3881    <!-- Title of an application permission that lets it listen to trust state changes. -->
3882    <string name="permlab_trust_listener">Listen to trust state changes.</string>
3883    <!-- Description of an application permission that lets it listen to trust state changes. -->
3884    <string name="permdesc_trust_listener">Allows an application to listen for changes in trust state.</string>
3885
3886    <!-- Title of an application permission that lets it provide a trust agent. -->
3887    <string name="permlab_provide_trust_agent">Provide a trust agent.</string>
3888    <!-- Description of an application permission that lets it provide a trust agent. -->
3889    <string name="permdesc_provide_trust_agent">Allows an application to provide a trust agent.</string>
3890    <!-- Title of an application permission that lets it launch the trust agent settings menu -->
3891    <string name="permlab_launch_trust_agent_settings">Launch trust agent settings menu.</string>
3892    <!-- Description of an application permission that lets it launch the trust agent settings menu -->
3893    <string name="permdesc_launch_trust_agent_settings">Allows an application to launch an activity that changes the trust agent behavior.</string>
3894    <!-- Title of an application permission that lets it bind to a trust agent service. -->
3895    <string name="permlab_bind_trust_agent_service">Bind to a trust agent service</string>
3896    <!-- Description of an application permission that lets it bind to a trust agent service. -->
3897    <string name="permdesc_bind_trust_agent_service">Allows an application to bind to a trust agent service.</string>
3898
3899    <!-- Title of an application permission that lets it interact with recovery. -->
3900    <string name="permlab_recovery">Interact with update and recovery system</string>
3901    <!-- Description of an application permission that lets it control keyguard. -->
3902    <string name="permdesc_recovery">Allows an application to interact with the recovery system and system updates.</string>
3903
3904    <!-- Title of an application permission that lets it manage media projection sessions. -->
3905    <string name="permlab_manageMediaProjection">Manage media projection sessions</string>
3906    <!-- Description of an application permission that lets it manage media projection sessions. -->
3907    <string name="permdesc_manageMediaProjection">Allows an application to manage media projection sessions. These sessions can provide applications the ability to capture display and audio contents. Should never be needed by normal apps.</string>
3908
3909    <!-- Title of an application permission that lets it read install sessions. -->
3910    <string name="permlab_readInstallSessions">Read install sessions</string>
3911    <!-- Description of an application permission that lets it read install sessions. -->
3912    <string name="permdesc_readInstallSessions">Allows an application to read install sessions. This allows it to see details about active package installations.</string>
3913
3914    <!-- Shown in the tutorial for tap twice for zoom control. -->
3915    <string name="tutorial_double_tap_to_zoom_message_short">Touch twice for zoom control</string>
3916
3917
3918    <!-- Shown in gadget hosts (e.g. the home screen) when there was an error inflating
3919    the gadget. -->
3920    <string name="gadget_host_error_inflating">Couldn\'t add widget.</string>
3921
3922    <!-- Long label for a button on a full-screen input method for the "Go" action. -->
3923    <string name="ime_action_go">Go</string>
3924
3925    <!-- Long label for a button on a full-screen input method for the "Search" action. -->
3926    <string name="ime_action_search">Search</string>
3927
3928    <!-- Long label for a button on a full-screen input method for the "Send" action. -->
3929    <string name="ime_action_send">Send</string>
3930
3931    <!-- Long label for a button on a full-screen input method for the "Next" action. -->
3932    <string name="ime_action_next">Next</string>
3933
3934    <!-- Long label for a button on a full-screen input method for the "Done" action. -->
3935    <string name="ime_action_done">Done</string>
3936
3937    <!-- [CHAR LIMIT=6] Long label for a button on a full-screen input method for the "Previous" action. -->
3938    <string name="ime_action_previous">Prev</string>
3939
3940    <!-- Long label for a button on a full-screen input method for an unknown action. -->
3941    <string name="ime_action_default">Execute</string>
3942
3943    <!-- Strings for search suggestions. These are going here because they are referenced by both
3944         ContactsProvider and GoogleContactsProvider -->
3945    <skip />
3946
3947
3948    <!-- This string appears (on two lines) when you type a number into contacts search, to let you dial the phone number you typed.  The first line will be in bigger type than the second. -->
3949    <string name="dial_number_using">Dial number\nusing <xliff:g id="number" example="555">%s</xliff:g></string>
3950
3951    <!-- This string appears (on two lines) when you type a number into contacts search, to let you create a contact whose phone number is the number you typed.  The first line will be in bigger type than the second. -->
3952    <string name="create_contact_using">Create contact\nusing <xliff:g id="number" example="555">%s</xliff:g></string>
3953
3954    <!-- This string array should be overridden by the manufacture to present a list of carrier-id,locale. The wifi regulatory domain is extracted from the locale information. This is used at startup to set system defaults by checking the system property ro.carrier for the carrier-id and searching through this array -->
3955    <!-- An Array of [[Carrier-ID]                     -->
3956    <!--              [default-locale]]                -->
3957    <string-array translatable="false" name="carrier_properties">
3958    </string-array>
3959
3960    <string name="grant_credentials_permission_message_header">The following one or more apps request permission to access your account, now and in the future.</string>
3961    <string name="grant_credentials_permission_message_footer">Do you want to allow this request?</string>
3962    <string name="grant_permissions_header_text">Access request</string>
3963    <string name="allow">Allow</string>
3964    <string name="deny">Deny</string>
3965    <string name="permission_request_notification_title">Permission requested</string>
3966    <string name="permission_request_notification_with_subtitle">Permission requested\nfor account <xliff:g id="account" example="foo@gmail.com">%s</xliff:g>.</string>
3967
3968    <!-- Message to show when an intent automatically switches users into the personal profile. -->
3969    <string name="forward_intent_to_owner">You\'re using this app outside of your work profile</string>
3970    <!-- Message to show when an intent automatically switches users into a work profile. -->
3971    <string name="forward_intent_to_work">You\'re using this app in your work profile</string>
3972
3973    <!-- Label to show for a service that is running because it is an input method. -->
3974    <string name="input_method_binding_label">Input method</string>
3975    <!-- Label to show for a service that is running because it is a sync adapter. -->
3976    <string name="sync_binding_label">Sync</string>
3977    <!-- Label to show for a service that is running because it is an accessibility module. -->
3978    <string name="accessibility_binding_label">Accessibility</string>
3979    <!-- Label to show for a service that is running because it is a wallpaper. -->
3980    <string name="wallpaper_binding_label">Wallpaper</string>
3981    <!-- Dialog title for user to select a different wallpaper from service list -->
3982    <string name="chooser_wallpaper">Change wallpaper</string>
3983    <!-- Label to show for a service that is running because it is observing
3984         the user's notifications. -->
3985    <string name="notification_listener_binding_label">Notification listener</string>
3986    <!-- Label to show for a service that is running because it is providing conditions. -->
3987    <string name="condition_provider_service_binding_label">Condition provider</string>
3988
3989    <!-- Do Not Translate: Alternate eri.xml -->
3990    <string name="alternate_eri_file">/data/eri.xml</string>
3991
3992    <!-- The title of the notification when VPN is active. -->
3993    <string name="vpn_title">VPN activated</string>
3994    <!-- The title of the notification when VPN is active with an application name. -->
3995    <string name="vpn_title_long">VPN is activated by <xliff:g id="app" example="FooVPN client">%s</xliff:g></string>
3996    <!-- The text of the notification when VPN is active. -->
3997    <string name="vpn_text">Touch to manage the network.</string>
3998    <!-- The text of the notification when VPN is active with a session name. -->
3999    <string name="vpn_text_long">Connected to <xliff:g id="session" example="office">%s</xliff:g>. Touch to manage the network.</string>
4000
4001    <!-- Notification title when connecting to lockdown VPN. -->
4002    <string name="vpn_lockdown_connecting">Always-on VPN connecting\u2026</string>
4003    <!-- Notification title when connected to lockdown VPN. -->
4004    <string name="vpn_lockdown_connected">Always-on VPN connected</string>
4005    <!-- Notification title when error connecting to lockdown VPN. -->
4006    <string name="vpn_lockdown_error">Always-on VPN error</string>
4007    <!-- Notification body that indicates user can touch to configure lockdown VPN connection. -->
4008    <string name="vpn_lockdown_config">Touch to configure</string>
4009
4010    <!-- Localized strings for WebView -->
4011    <!-- Label for button in a WebView that will open a chooser to choose a file to upload -->
4012    <string name="upload_file">Choose file</string>
4013    <!-- Label for the file upload control when no file has been chosen yet -->
4014    <string name="no_file_chosen">No file chosen</string>
4015    <!-- Label for <input type="reset"> button in html -->
4016    <string name="reset">Reset</string>
4017    <!-- Label for <input type="submit"> button in html -->
4018    <string name="submit">Submit</string>
4019
4020    <!-- Strings for car mode notification -->
4021    <!-- Shown when car mode is enabled -->
4022    <string name="car_mode_disable_notification_title">Car mode enabled</string>
4023    <string name="car_mode_disable_notification_message">Touch to exit car mode.</string>
4024
4025    <!-- Strings for tethered notification -->
4026    <!-- Shown when the device is tethered -->
4027    <string name="tethered_notification_title">Tethering or hotspot active</string>
4028    <string name="tethered_notification_message">Touch to set up.</string>
4029
4030    <!--  Strings for possible PreferenceActivity Back/Next buttons -->
4031    <string name="back_button_label">Back</string>
4032    <string name="next_button_label">Next</string>
4033
4034    <!-- Optional button to Skip a PreferenceActivity [CHAR LIMIT=20] -->
4035    <string name="skip_button_label">Skip</string>
4036
4037    <!-- Displayed on the Find dialog when there are no matches [CHAR LIMIT=NONE]-->
4038    <string name="no_matches">No matches</string>
4039
4040    <!-- Find dialog hint text.  Also used in the menu item to open find on page [CHAR LIMIT=NONE] -->
4041    <string name="find_on_page">Find on page</string>
4042
4043    <!-- Displayed on the Find dialog to display the index of the highlighted
4044         match and total number of matches found in the current page. [CHAR LIMIT=NONE] -->
4045    <plurals name="matches_found">
4046        <!-- Case of one match -->
4047        <item quantity="one">1 match</item>
4048        <!-- Case of multiple total matches -->
4049        <item quantity="other"><xliff:g id="index" example="2">%d</xliff:g> of <xliff:g id="total" example="137">%d</xliff:g></item>
4050    </plurals>
4051
4052    <!-- Label for the "Done" button on the far left of action mode toolbars. -->
4053    <string name="action_mode_done">Done</string>
4054
4055    <!-- Strings for ExternalStorageFormatter service. -->
4056    <!-- Text for progress dialog while unmounting USB storage volume [CHAR LIMIT=NONE] -->
4057    <string name="progress_unmounting" product="nosdcard">Unmounting USB storage\u2026</string>
4058    <!-- Text for progress dialog while unmounting SD card [CHAR LIMIT=NONE] -->
4059    <string name="progress_unmounting" product="default">Unmounting SD card\u2026</string>
4060    <!-- Text for progress dialog while erasing USB storage volume [CHAR LIMIT=NONE] -->
4061    <string name="progress_erasing" product="nosdcard">Erasing USB storage\u2026</string>
4062    <!-- Text for progress dialog while erasing SD card [CHAR LIMIT=NONE] -->
4063    <string name="progress_erasing" product="default">Erasing SD card\u2026</string>
4064    <!-- Text for message to user that an error happened when formatting USB storage [CHAR LIMIT=NONE] -->
4065    <string name="format_error" product="nosdcard">Couldn\'t erase USB storage.</string>
4066    <!-- Text for message to user that an error happened when formatting SD card [CHAR LIMIT=NONE] -->
4067    <string name="format_error" product="default">Couldn\'t erase SD card.</string>
4068    <!-- Text for message to user that SD card has been removed while in use [CHAR LIMIT=NONE] -->
4069    <string name="media_bad_removal">SD card was removed before being unmounted.</string>
4070    <!-- Text for message to user USB storage is currently being checked [CHAR LIMIT=NONE] -->
4071    <string name="media_checking" product="nosdcard">USB storage is currently being checked.</string>
4072    <!-- Text for message to user SD card is currently being checked [CHAR LIMIT=NONE] -->
4073    <string name="media_checking" product="default">SD card is currently being checked.</string>
4074    <!-- Text for message to user SD card has been removed [CHAR LIMIT=NONE] -->
4075    <string name="media_removed">SD card has been removed.</string>
4076    <!-- Text for message to user USB storage is currently mounted on a computer [CHAR LIMIT=NONE] -->
4077    <string name="media_shared" product="nosdcard">USB storage is currently in use by a computer.</string>
4078    <!-- Text for message to user SD card is currently mounted on a computer [CHAR LIMIT=NONE] -->
4079    <string name="media_shared" product="default">SD card is currently in use by a computer.</string>
4080    <!-- Text for message for an unknown external media state [CHAR LIMIT=NONE] -->
4081    <string name="media_unknown_state">External media in unknown state.</string>
4082
4083    <!-- Text for WebView's text selection Action Mode -->
4084    <!-- ActionBar action to share the current selection [CHAR LIMIT=10] -->
4085    <string name="share">Share</string>
4086    <!-- ActionBar action to use the current selection to open the Find on page functionality [CHAR LIMIT=10]-->
4087    <string name="find">Find</string>
4088    <!-- ActionBar action to use the current selection to perform a web search [CHAR-LIMIT=16] -->
4089    <string name="websearch">Web Search</string>
4090    <!-- ActionBar action to find the next match in the page [CHAR LIMIT=24] -->
4091    <string name="find_next">Find next</string>
4092    <!-- ActionBar action to find the previous match in the page [CHAR LIMIT=24] -->
4093    <string name="find_previous">Find previous</string>
4094
4095    <!-- Network positioning notification ticker. The name of the user (e.g. John Doe) who sent
4096         the request is shown as a dynamic string. -->
4097    <string name="gpsNotifTicker">Location request from <xliff:g id="name">%s</xliff:g></string>
4098    <!-- Network positioning notification and verification title to inform the user about
4099         an incoming location request. -->
4100    <string name="gpsNotifTitle">Location request</string>
4101    <!-- Network positioning notification message. The name of the user (e.g. John Doe) and
4102         service (SUPL-service) who sent the request is shown as dynamic strings.
4103         Translation should not be longer than master text. -->
4104    <string name="gpsNotifMessage">Requested by <xliff:g id="name">%1$s</xliff:g> (<xliff:g id="service" example="SUPL-service">%2$s</xliff:g>)</string>
4105    <!-- Network positioning verification Yes. Button to push to share location information. -->
4106    <string name="gpsVerifYes">Yes</string>
4107    <!-- Network positioning verification No. Button to push to deny sharing of location
4108         information. -->
4109    <string name="gpsVerifNo">No</string>
4110
4111    <!-- Error message when the sync tried to delete too many things -->
4112    <string name="sync_too_many_deletes">Delete limit exceeded</string>
4113    <!-- Dialog message for when there are too many deletes that would take place and we want user confirmation -->
4114    <string name="sync_too_many_deletes_desc">There are <xliff:g id="number_of_deleted_items">%1$d</xliff:g> deleted items for <xliff:g id="type_of_sync">%2$s</xliff:g>, account <xliff:g id="account_name">%3$s</xliff:g>. What do you want to do?</string>
4115    <!-- Dialog action for when there are too many deletes that would take place and we want user confirmation, and the user wants to delete the items -->
4116    <string name="sync_really_delete">Delete the items</string>
4117    <!-- Dialog action for when there are too many deletes that would take place and we want user confirmation, and the user wants to undo the deletions -->
4118    <string name="sync_undo_deletes">Undo the deletes</string>
4119    <!-- Dialog action for when there are too many deletes that would take place and we want user confirmation, and the user wants to do nothing for now -->
4120    <string name="sync_do_nothing">Do nothing for now</string>
4121
4122    <!-- Choose Account Activity label -->
4123    <string name="choose_account_label">Choose an account</string>
4124
4125    <string name="add_account_label">"Add an account"</string>
4126
4127    <!-- List item to add an account [CHAR LIMIT=20] -->
4128    <string name="add_account_button_label">Add account</string>
4129
4130    <!-- NumberPicker - accessibility support -->
4131    <!-- Description of the button to increase the NumberPicker value. [CHAR LIMIT=NONE] -->
4132    <string name="number_picker_increment_button">Increase</string>
4133    <!-- Description of the button to decrease the NumberPicker value. [CHAR LIMIT=NONE] -->
4134    <string name="number_picker_decrement_button">Decrease</string>
4135    <!-- Description of the tap and hold action to get into scroll mode in NumberPicker. [CHAR LIMIT=NONE] -->
4136    <string name="number_picker_increment_scroll_mode"><xliff:g id="value" example="3">%s</xliff:g> touch and hold.</string>
4137    <!-- Description of the scrolling action in NumberPicker. [CHAR LIMIT=NONE] -->
4138    <string name="number_picker_increment_scroll_action">Slide up to increase and down to decrease.</string>
4139
4140    <!-- TimePicker - accessibility support -->
4141    <!-- Description of the button to increase the TimePicker's minute value. [CHAR LIMIT=NONE] -->
4142    <string name="time_picker_increment_minute_button">Increase minute</string>
4143    <!-- Description of the button to decrease the TimePicker's minute value. [CHAR LIMIT=NONE] -->
4144    <string name="time_picker_decrement_minute_button">Decrease minute</string>
4145    <!-- Description of the button to increase the TimePicker's hour value. [CHAR LIMIT=NONE] -->
4146    <string name="time_picker_increment_hour_button">Increase hour</string>
4147    <!-- Description of the button to decrease the TimePicker's hour value. [CHAR LIMIT=NONE] -->
4148    <string name="time_picker_decrement_hour_button">Decrease hour</string>
4149    <!-- Description of the button to increase the TimePicker's set PM value. [CHAR LIMIT=NONE] -->
4150    <string name="time_picker_increment_set_pm_button">Set PM</string>
4151    <!-- Description of the button to decrease the TimePicker's set AM value. [CHAR LIMIT=NONE] -->
4152    <string name="time_picker_decrement_set_am_button">Set AM</string>
4153
4154    <!-- DatePicker - accessibility support -->
4155    <!-- Description of the button to increase the DatePicker's month value. [CHAR LIMIT=NONE] -->
4156    <string name="date_picker_increment_month_button">Increase month</string>
4157    <!-- Description of the button to decrease the DatePicker's month value. [CHAR LIMIT=NONE] -->
4158    <string name="date_picker_decrement_month_button">Decrease month</string>
4159    <!-- Description of the button to increase the DatePicker's day value. [CHAR LIMIT=NONE] -->
4160    <string name="date_picker_increment_day_button">Increase day</string>
4161    <!-- Description of the button to decrease the DatePicker's day value. [CHAR LIMIT=NONE] -->
4162    <string name="date_picker_decrement_day_button">Decrease day</string>
4163    <!-- Description of the button to increase the DatePicker's year value. [CHAR LIMIT=NONE] -->
4164    <string name="date_picker_increment_year_button">Increase year</string>
4165    <!-- Description of the button to decrease the DatePicker's year value. [CHAR LIMIT=NONE] -->
4166    <string name="date_picker_decrement_year_button">Decrease year</string>
4167
4168    <!-- KeyboardView - accessibility support -->
4169    <!-- Description of the Alt button in a KeyboardView. [CHAR LIMIT=NONE] -->
4170    <string name="keyboardview_keycode_alt">Alt</string>
4171    <!-- Description of the Cancel button in a KeyboardView. [CHAR LIMIT=NONE] -->
4172    <string name="keyboardview_keycode_cancel">Cancel</string>
4173    <!-- Description of the Delete button in a KeyboardView. [CHAR LIMIT=NONE] -->
4174    <string name="keyboardview_keycode_delete">Delete</string>
4175    <!-- Description of the Done button in a KeyboardView. [CHAR LIMIT=NONE] -->
4176    <string name="keyboardview_keycode_done">Done</string>
4177    <!-- Description of the Mode change button in a KeyboardView. [CHAR LIMIT=NONE] -->
4178    <string name="keyboardview_keycode_mode_change">Mode change</string>
4179    <!-- Description of the Shift button in a KeyboardView. [CHAR LIMIT=NONE] -->
4180    <string name="keyboardview_keycode_shift">Shift</string>
4181    <!-- Description of the Enter button in a KeyboardView. [CHAR LIMIT=NONE] -->
4182    <string name="keyboardview_keycode_enter">Enter</string>
4183
4184    <!-- ActivityChooserView - accessibility support -->
4185    <!-- Description of the shwoing of a popup window with activities to choose from. [CHAR LIMIT=NONE] -->
4186    <string name="activitychooserview_choose_application">Choose an app</string>
4187
4188    <!-- Error message if the share target app cannto be launched. [CHAR LIMIT=NONE] -->
4189    <string name="activitychooserview_choose_application_error">Couldn\'t launch <xliff:g id="application_name" example="Acme">%s</xliff:g></string>
4190
4191    <!-- ShareActionProvider - accessibility support -->
4192    <!-- Description of the choose target button in a ShareActionProvider (share UI). [CHAR LIMIT=NONE] -->
4193    <string name="shareactionprovider_share_with">Share with</string>
4194    <!-- Description of a share target (both in the list of such or the default share button) in a ShareActionProvider (share UI). [CHAR LIMIT=NONE] -->
4195    <string name="shareactionprovider_share_with_application">Share with <xliff:g id="application_name" example="Bluetooth">%s</xliff:g></string>
4196
4197    <!-- Slide lock screen -->
4198
4199    <!-- Description of the sliding handle in the Slide unlock screen. [CHAR LIMIT=NONE] -->
4200    <string name="content_description_sliding_handle">"Sliding handle. Touch &amp; hold."</string>
4201
4202    <!-- Description of the unlock handle in the Slide unlock screen for tablets. [CHAR LIMIT=NONE] -->
4203    <string name="description_target_unlock_tablet">Swipe to unlock.</string>
4204
4205    <!-- Announce that a headset is required to hear keyboard keys while typing a password. [CHAR LIMIT=NONE] -->
4206    <string name="keyboard_headset_required_to_hear_password">Plug in a headset to hear password keys spoken.</string>
4207    <!-- The value of a keyboard key announced when accessibility is enabled and no headsed is used. [CHAR LIMIT=NONE] -->
4208    <string name="keyboard_password_character_no_headset">Dot.</string>
4209
4210    <!-- Content description for the action bar "home" affordance. [CHAR LIMIT=NONE] -->
4211    <string name="action_bar_home_description">Navigate home</string>
4212    <!-- Content description for the action bar "up" affordance. [CHAR LIMIT=NONE] -->
4213    <string name="action_bar_up_description">Navigate up</string>
4214    <!-- Content description for the action menu overflow button. [CHAR LIMIT=NONE] -->
4215    <string name="action_menu_overflow_description">More options</string>
4216    <!-- Formatting string for describing the action bar's title/home/up affordance.
4217         This is a single tappable "button" that includes the app icon, the Up indicator
4218         (usually a "<" chevron) and the window title text.
4219         %1$s is the title. %2$s is the description of what tapping/clicking the whole
4220         thing is going to do. -->
4221    <string name="action_bar_home_description_format">%1$s, %2$s</string>
4222    <!-- Just like action_bar_home_description_format, but this one will be used
4223         if the window is also providing subtitle text.
4224         %1$s is the title. %2$s is the subtitle. %3$s is the description of what
4225         tapping/clicking the whole thing is going to do. -->
4226    <string name="action_bar_home_subtitle_description_format">%1$s, %2$s, %3$s</string>
4227
4228    <!-- Storage description for internal storage. [CHAR LIMIT=NONE] -->
4229    <string name="storage_internal">Internal storage</string>
4230
4231    <!-- Storage description for the SD card. [CHAR LIMIT=NONE] -->
4232    <string name="storage_sd_card">SD card</string>
4233
4234    <!-- Storage description for USB storage. [CHAR LIMIT=NONE] -->
4235    <string name="storage_usb">USB storage</string>
4236
4237    <!-- Button text for the edit menu in input method extract mode. [CHAR LIMIT=16] -->
4238    <string name="extract_edit_menu_button">Edit</string>
4239
4240    <!-- Notification title when data usage has exceeded warning threshold. [CHAR LIMIT=32] -->
4241    <string name="data_usage_warning_title">Data usage warning</string>
4242    <!-- Notification body when data usage has exceeded warning threshold. [CHAR LIMIT=32] -->
4243    <string name="data_usage_warning_body">Touch to view usage and settings.</string>
4244
4245    <!-- Notification title when 2G-3G data usage has exceeded limit threshold, and has been disabled. [CHAR LIMIT=32] -->
4246    <string name="data_usage_3g_limit_title">2G-3G data limit reached</string>
4247    <!-- Notification title when 4G data usage has exceeded limit threshold, and has been disabled. [CHAR LIMIT=32] -->
4248    <string name="data_usage_4g_limit_title">4G data limit reached</string>
4249    <!-- Notification title when mobile data usage has exceeded limit threshold, and has been disabled. [CHAR LIMIT=32] -->
4250    <string name="data_usage_mobile_limit_title">Cellular data limit reached</string>
4251    <!-- Notification title when Wi-Fi data usage has exceeded limit threshold, and has been disabled. [CHAR LIMIT=32] -->
4252    <string name="data_usage_wifi_limit_title">Wi-Fi data limit reached</string>
4253    <!-- Notification body when data usage has exceeded limit threshold, and has been disabled. [CHAR LIMIT=32] -->
4254    <string name="data_usage_limit_body">Data paused for rest of cycle</string>
4255
4256    <!-- Notification title when 2G-3G data usage has exceeded limit threshold. [CHAR LIMIT=32] -->
4257    <string name="data_usage_3g_limit_snoozed_title">2G-3G data limit exceeded</string>
4258    <!-- Notification title when 4G data usage has exceeded limit threshold. [CHAR LIMIT=32] -->
4259    <string name="data_usage_4g_limit_snoozed_title">4G data limit exceeded</string>
4260    <!-- Notification title when mobile data usage has exceeded limit threshold. [CHAR LIMIT=32] -->
4261    <string name="data_usage_mobile_limit_snoozed_title">Cellular data limit exceeded</string>
4262    <!-- Notification title when Wi-Fi data usage has exceeded limit threshold. [CHAR LIMIT=32] -->
4263    <string name="data_usage_wifi_limit_snoozed_title">Wi-Fi data limit exceeded</string>
4264    <!-- Notification body when data usage has exceeded limit threshold. [CHAR LIMIT=32] -->
4265    <string name="data_usage_limit_snoozed_body"><xliff:g id="size" example="3.8GB">%s</xliff:g> over specified limit.</string>
4266
4267    <!-- Notification title when background data usage is limited. [CHAR LIMIT=32] -->
4268    <string name="data_usage_restricted_title">Background data restricted</string>
4269    <!-- Notification body when background data usage is limited. [CHAR LIMIT=32] -->
4270    <string name="data_usage_restricted_body">Touch to remove restriction.</string>
4271
4272    <!-- SSL Certificate dialogs -->
4273    <!-- Title for an SSL Certificate dialog -->
4274    <string name="ssl_certificate">Security certificate</string>
4275    <!-- Message on an SSL Certificate dialog -->
4276    <string name="ssl_certificate_is_valid">This certificate is valid.</string>
4277    <!-- Label for an information field on an SSL Certificate Dialog -->
4278    <string name="issued_to">Issued to:</string>
4279    <!-- Label for an information field on an SSL Certificate Dialog -->
4280    <string name="common_name">Common name:</string>
4281    <!-- Label for an information field on an SSL Certificate Dialog -->
4282    <string name="org_name">Organization:</string>
4283    <!-- Label for an information field on an SSL Certificate Dialog -->
4284    <string name="org_unit">Organizational unit:</string>
4285    <!-- Label for an information field on an SSL Certificate Dialog -->
4286    <string name="issued_by">Issued by:</string>
4287    <!-- Label for an information field on an SSL Certificate Dialog -->
4288    <string name="validity_period">Validity:</string>
4289    <!-- Label for an information field on an SSL Certificate Dialog -->
4290    <string name="issued_on">Issued on:</string>
4291    <!-- Label for an information field on an SSL Certificate Dialog -->
4292    <string name="expires_on">Expires on:</string>
4293    <!-- Label for an information field on an SSL Certificate Dialog -->
4294    <string name="serial_number">Serial number:</string>
4295    <!-- Label for an information field on an SSL Certificate Dialog -->
4296    <string name="fingerprints">Fingerprints:</string>
4297    <!-- Label for an information field on an SSL Certificate Dialog -->
4298    <string name="sha256_fingerprint">SHA-256 fingerprint:</string>
4299    <!-- Label for an information field on an SSL Certificate Dialog -->
4300    <string name="sha1_fingerprint">SHA-1 fingerprint:</string>
4301
4302    <!-- Title for a button to expand the list of activities in ActivityChooserView [CHAR LIMIT=25] -->
4303    <string name="activity_chooser_view_see_all">See all</string>
4304    <!-- Title default for a dialog showing possible activities in ActivityChooserView [CHAR LIMIT=25] -->
4305    <string name="activity_chooser_view_dialog_title_default">Choose activity</string>
4306
4307    <!-- Title for a dialog showing possible activities for sharing in ShareActionProvider [CHAR LIMIT=25] -->
4308    <string name="share_action_provider_share_with">Share with</string>
4309
4310    <!-- Delimeter used between each item in a textual list; for example "Alpha, Beta". [CHAR LIMIT=3] -->
4311    <string name="list_delimeter">", "</string>
4312
4313    <!-- STK sending DTMF, SMS, USSD, SS -->
4314    <string name="sending">Sending\u2026</string>
4315
4316    <!-- STK launch Browser -->
4317    <string name="launchBrowserDefault">Launch Browser?</string>
4318
4319    <!-- STK setup Call -->
4320    <string name="SetupCallDefault">Accept call?</string>
4321
4322    <!-- Title for a button to choose the currently selected activity
4323         as the default in the activity resolver. [CHAR LIMIT=25] -->
4324    <string name="activity_resolver_use_always">Always</string>
4325
4326    <!-- Title for a button to choose the currently selected activity
4327         from the activity resolver to use just this once. [CHAR LIMIT=25] -->
4328    <string name="activity_resolver_use_once">Just once</string>
4329
4330    <!-- Text for the toast that is shown when the user clicks on a launcher that
4331         doesn't support the work profile. [CHAR LIMIT=100] -->
4332    <string name="activity_resolver_work_profiles_support">%1$s doesn\'t support work profile</string>
4333
4334    <!-- Name of the default audio route for tablets when nothing
4335         is connected to a headphone or other wired audio output jack. [CHAR LIMIT=50] -->
4336    <string name="default_audio_route_name" product="tablet">Tablet</string>
4337
4338    <!-- Name of the default audio route when nothing is connected to
4339         a headphone or other wired audio output jack. [CHAR LIMIT=50] -->
4340    <string name="default_audio_route_name" product="default">Phone</string>
4341
4342    <!-- Name of the default audio route when wired headphones are
4343         connected. [CHAR LIMIT=50] -->
4344    <string name="default_audio_route_name_headphones">Headphones</string>
4345
4346    <!-- Name of the default audio route when an audio dock is connected. [CHAR LIMIT=50] -->
4347    <string name="default_audio_route_name_dock_speakers">Dock speakers</string>
4348
4349    <!-- Name of the default media route when HDMI is connected. [CHAR LIMIT=50] -->
4350    <string name="default_media_route_name_hdmi">HDMI</string>
4351
4352    <!-- Name of the default audio route category. [CHAR LIMIT=50] -->
4353    <string name="default_audio_route_category_name">System</string>
4354
4355    <!-- Description of the bluetooth a2dp audio route. [CHAR LIMIT=50] -->
4356    <string name="bluetooth_a2dp_audio_route_name">Bluetooth audio</string>
4357
4358    <!-- Description of a wireless display route. [CHAR LIMIT=50] -->
4359    <string name="wireless_display_route_description">Wireless display</string>
4360
4361    <!-- Content description of a MediaRouteButton for accessibility support.
4362        Cast is the standard android verb for sending content to a remote device. [CHAR LIMIT=50] -->
4363    <string name="media_route_button_content_description">Cast</string>
4364
4365    <!-- Title of the media route chooser dialog. [CHAR LIMIT=40] -->
4366    <string name="media_route_chooser_title">Connect to device</string>
4367
4368    <!-- Title of the media route chooser dialog for selecting remote display routes. [CHAR LIMIT=40] -->
4369    <string name="media_route_chooser_title_for_remote_display">Cast screen to device</string>
4370
4371    <!-- Placeholder text to show when no devices have been found. [CHAR LIMIT=50] -->
4372    <string name="media_route_chooser_searching">Searching for devices\u2026</string>
4373
4374    <!-- Button to access extended settings.  [CHAR LIMIT=30] -->
4375    <string name="media_route_chooser_extended_settings">Settings</string>
4376
4377    <!-- Button to disconnect from a media route.  [CHAR LIMIT=30] -->
4378    <string name="media_route_controller_disconnect">Disconnect</string>
4379
4380    <!-- Status message for remote routes attempting to scan/determine availability -->
4381    <string name="media_route_status_scanning">Scanning...</string>
4382
4383    <!-- Status message for a remote route attempting to connect -->
4384    <string name="media_route_status_connecting">Connecting...</string>
4385
4386    <!-- Status message for a remote route that is confirmed to be available for connection -->
4387    <string name="media_route_status_available">Available</string>
4388
4389    <!-- Status message for remote routes that are not available for connection right now -->
4390    <string name="media_route_status_not_available">Not available</string>
4391
4392    <!-- Status message for a remote route that is in use (and thus unavailabe) right now -->
4393    <string name="media_route_status_in_use">In use</string>
4394
4395    <!-- Display manager service -->
4396
4397    <!-- Name of the built-in display.  [CHAR LIMIT=50] -->
4398    <string name="display_manager_built_in_display_name">Built-in Screen</string>
4399
4400    <!-- Name of the HDMI display.  [CHAR LIMIT=50] -->
4401    <string name="display_manager_hdmi_display_name">HDMI Screen</string>
4402
4403    <!-- Name of the N'th overlay display for testing.  [CHAR LIMIT=50] -->
4404    <string name="display_manager_overlay_display_name">Overlay #<xliff:g id="id">%1$d</xliff:g></string>
4405
4406    <!-- Title text to show within the overlay.  [CHAR LIMIT=50] -->
4407    <string name="display_manager_overlay_display_title"><xliff:g id="name">%1$s</xliff:g>: <xliff:g id="width">%2$d</xliff:g>x<xliff:g id="height">%3$d</xliff:g>, <xliff:g id="dpi">%4$d</xliff:g> dpi</string>
4408
4409    <!-- Title text to append when the display is secure.  [CHAR LIMIT=30] -->
4410    <string name="display_manager_overlay_display_secure_suffix">, secure</string>
4411
4412    <!-- Title of the notification to indicate the process of connecting to a wifi display.  [CHAR LIMIT=50] -->
4413    <string name="wifi_display_notification_connecting_title">Casting screen</string>
4414    <!-- Message of the notification to indicate the process of connecting to a wifi display.  [CHAR LIMIT=80] -->
4415    <string name="wifi_display_notification_connecting_message">Connecting to <xliff:g id="name">%1$s</xliff:g></string>
4416    <!-- Title of the notification to indicate an active wifi display connection.  [CHAR LIMIT=50] -->
4417    <string name="wifi_display_notification_connected_title">Casting screen</string>
4418    <!-- Message of the notification to indicate an active wifi display connection.  [CHAR LIMIT=80] -->
4419    <string name="wifi_display_notification_connected_message">Connected to <xliff:g id="name">%1$s</xliff:g></string>
4420    <!-- Label of a button to disconnect an active wifi display connection.  [CHAR LIMIT=25] -->
4421    <string name="wifi_display_notification_disconnect">Disconnect</string>
4422
4423    <!-- Keyguard strings -->
4424    <!-- Label shown on emergency call button in keyguard -->
4425    <string name="kg_emergency_call_label">Emergency call</string>
4426    <!-- Message shown in pattern unlock after some number of unsuccessful attempts -->
4427    <string name="kg_forgot_pattern_button_text">Forgot Pattern</string>
4428    <!-- Message shown when user enters wrong pattern -->
4429    <string name="kg_wrong_pattern">Wrong Pattern</string>
4430    <!-- Message shown when user enters wrong password -->
4431    <string name="kg_wrong_password">Wrong Password</string>
4432    <!-- Message shown when user enters wrong PIN -->
4433    <string name="kg_wrong_pin">Wrong PIN</string>
4434    <!-- Countdown message shown after too many failed unlock attempts -->
4435    <string name="kg_too_many_failed_attempts_countdown">Try again in <xliff:g id="number">%1$d</xliff:g> seconds.</string>
4436    <!-- Instructions for using the pattern unlock screen -->
4437    <string name="kg_pattern_instructions">Draw your pattern</string>
4438    <!-- Instructions for using the SIM PIN unlock screen -->
4439    <string name="kg_sim_pin_instructions">Enter SIM PIN</string>
4440    <!-- Instructions for using the PIN unlock screen -->
4441    <string name="kg_pin_instructions">Enter PIN</string>
4442    <!-- Instructions for using the password unlock screen -->
4443    <string name="kg_password_instructions">Enter Password</string>
4444    <!-- Hint shown in the PUK screen that asks the user to enter the PUK code given to them by their provider -->
4445    <string name="kg_puk_enter_puk_hint">SIM is now disabled. Enter PUK code to continue. Contact carrier for details.</string>
4446    <!-- Hint shown in the PUK unlock screen PIN TextView -->
4447    <string name="kg_puk_enter_pin_hint">Enter desired PIN code</string>
4448    <!-- Message shown when the user needs to confirm the PIN they just entered in the PUK screen -->
4449    <string name="kg_enter_confirm_pin_hint">Confirm desired PIN code</string>
4450    <!-- Message shown in dialog while the device is unlocking the SIM card -->
4451    <string name="kg_sim_unlock_progress_dialog_message">Unlocking SIM card\u2026</string>
4452    <!-- Message shown when the user enters the wrong PIN code -->
4453    <string name="kg_password_wrong_pin_code">Incorrect PIN code.</string>
4454    <!-- Message shown when the user enters an invalid SIM pin password in PUK screen -->
4455    <string name="kg_invalid_sim_pin_hint">Type a PIN that is 4 to 8 numbers.</string>
4456    <!-- Message shown when the user enters an invalid PUK code in the PUK screen -->
4457    <string name="kg_invalid_sim_puk_hint">PUK code should be 8 numbers.</string>
4458    <!-- Message shown when the user enters an invalid PUK code -->
4459    <string name="kg_invalid_puk">Re-enter the correct PUK code. Repeated attempts will permanently disable the SIM.</string>
4460      <!-- String shown in PUK screen when PIN codes don't match -->
4461    <string name="kg_invalid_confirm_pin_hint" product="default">PIN codes does not match</string>
4462    <!-- Message shown when the user exceeds the maximum number of pattern attempts -->
4463    <string name="kg_login_too_many_attempts">Too many pattern attempts</string>
4464    <!-- Instructions show in account unlock screen allowing user to enter their email password -->
4465    <string name="kg_login_instructions">To unlock, sign in with your Google account.</string>
4466    <!-- Hint shown in TextView in account unlock screen of keyguard -->
4467    <string name="kg_login_username_hint">Username (email)</string>
4468    <!-- Hint shown in TextView in account unlock screen of keyguard -->
4469    <string name="kg_login_password_hint">Password</string>
4470    <!-- Label shown on sign in button on account unlock screen of keyguard -->
4471    <string name="kg_login_submit_button">Sign in</string>
4472    <!-- Message shown when the user enters an invalid username/password combination in account unlock screen of keyguard -->
4473    <string name="kg_login_invalid_input">Invalid username or password.</string>
4474    <!-- Hint text shown when user has too many failed password attempts in account unlock screen of keyguard -->
4475    <string name="kg_login_account_recovery_hint">Forgot your username or password\?\nVisit <b>google.com/accounts/recovery</b>.</string>
4476    <!-- Message shown while device checks username/password in account unlock screen of keyguard -->
4477    <string name="kg_login_checking_password">Checking account\u2026</string>
4478    <!-- Message shown in dialog when max number of attempts are reached for PIN screen of keyguard -->
4479    <string name="kg_too_many_failed_pin_attempts_dialog_message">
4480        You have incorrectly typed your PIN <xliff:g id="number">%d</xliff:g> times.
4481        \n\nTry again in <xliff:g id="number">%d</xliff:g> seconds.
4482    </string>
4483    <!-- Message shown in dialog when max number of attempts are reached for password screen of keyguard -->
4484    <string name="kg_too_many_failed_password_attempts_dialog_message">
4485        You have incorrectly typed your password <xliff:g id="number">%d</xliff:g> times.
4486        \n\nTry again in <xliff:g id="number">%d</xliff:g> seconds.
4487    </string>
4488    <string name="kg_too_many_failed_pattern_attempts_dialog_message">
4489        You have incorrectly drawn your unlock pattern <xliff:g id="number">%d</xliff:g> times.
4490        \n\nTry again in <xliff:g id="number">%d</xliff:g> seconds.
4491    </string>
4492    <!-- Message shown when user is almost at the limit of password attempts where the device will be wiped. -->
4493    <string name="kg_failed_attempts_almost_at_wipe" product="tablet">
4494       You have incorrectly attempted to unlock the tablet <xliff:g id="number">%d</xliff:g> times.
4495       After <xliff:g id="number">%d</xliff:g> more unsuccessful attempts,
4496       the tablet will be reset to factory default and all user data will be lost.
4497    </string>
4498    <!-- Message shown when user is almost at the limit of password attempts where the device will be wiped. -->
4499    <string name="kg_failed_attempts_almost_at_wipe" product="default">
4500       You have incorrectly attempted to unlock the phone <xliff:g id="number">%d</xliff:g> times.
4501       After <xliff:g id="number">%d</xliff:g> more unsuccessful attempts,
4502       the phone will be reset to factory default and all user data will be lost.
4503    </string>
4504    <!-- Message shown in dialog when user has exceeded the maximum attempts and the device will now be wiped -->
4505    <string name="kg_failed_attempts_now_wiping" product="tablet">
4506       You have incorrectly attempted to unlock the tablet <xliff:g id="number">%d</xliff:g> times.
4507       The tablet will now be reset to factory default.
4508    </string>
4509    <!-- Message shown in dialog when user has exceeded the maximum attempts and the device will now be wiped -->
4510    <string name="kg_failed_attempts_now_wiping" product="default">
4511       You have incorrectly attempted to unlock the phone <xliff:g id="number">%d</xliff:g> times.
4512       The phone will now be reset to factory default.
4513    </string>
4514    <!-- Message shown in dialog when user is almost at the limit where they will be
4515    locked out and may have to enter an alternate username/password to unlock the phone -->
4516    <string name="kg_failed_attempts_almost_at_login" product="tablet">
4517       You have incorrectly drawn your unlock pattern <xliff:g id="number">%d</xliff:g> times.
4518       After <xliff:g id="number">%d</xliff:g> more unsuccessful attempts,
4519       you will be asked to unlock your tablet using an email account.\n\n
4520       Try again in <xliff:g id="number">%d</xliff:g> seconds.
4521    </string>
4522    <!-- Message shown in dialog when user is almost at the limit where they will be
4523    locked out and may have to enter an alternate username/password to unlock the phone -->
4524    <string name="kg_failed_attempts_almost_at_login" product="default">
4525       You have incorrectly drawn your unlock pattern <xliff:g id="number">%d</xliff:g> times.
4526       After <xliff:g id="number">%d</xliff:g> more unsuccessful attempts,
4527       you will be asked to unlock your phone using an email account.\n\n
4528       Try again in <xliff:g id="number">%d</xliff:g> seconds.
4529    </string>
4530    <!-- Sequence of characters used to separate message strings in keyguard. Typically just em-dash
4531         with spaces on either side. [CHAR LIMIT=3] -->
4532    <string name="kg_text_message_separator" product="default">" \u2014 "</string>
4533    <!-- The delete-widget drop target button text -->
4534    <string name="kg_reordering_delete_drop_target_text">Remove</string>
4535
4536    <!-- Message shown in dialog when user is attempting to set the music volume above the
4537    recommended maximum level for headphones -->
4538    <string name="safe_media_volume_warning" product="default">
4539       "Raise volume above recommended level?\n\nListening at high volume for long periods may damage your hearing."
4540    </string>
4541
4542    <!-- Text spoken when the user is performing a gesture that will enable accessibility. [CHAR LIMIT=none] -->
4543    <string name="continue_to_enable_accessibility">Keep holding down two fingers to enable accessibility.</string>
4544    <!-- Text spoken when the user enabled accessibility. [CHAR LIMIT=none] -->
4545    <string name="accessibility_enabled">Accessibility enabled.</string>
4546    <!-- Text spoken when the user stops preforming a gesture that would enable accessibility. [CHAR LIMIT=none] -->
4547    <string name="enable_accessibility_canceled">Accessibility canceled.</string>
4548    <!-- Text spoken when the current user is switched if accessibility is enabled. [CHAR LIMIT=none] -->
4549    <string name="user_switched">Current user <xliff:g id="name" example="Bob">%1$s</xliff:g>.</string>
4550    <!-- Message shown when switching to a user [CHAR LIMIT=none] -->
4551    <string name="user_switching_message">Switching to <xliff:g id="name" example="Bob">%1$s</xliff:g>\u2026</string>
4552    <!-- Default name of the owner user [CHAR LIMIT=20] -->
4553    <string name="owner_name" msgid="3879126011135546571">Owner</string>
4554    <!-- Error message title [CHAR LIMIT=35] -->
4555    <string name="error_message_title">Error</string>
4556    <!-- Message informing user that the change was disallowed by an administrator. [CHAR LIMIT=none] -->
4557    <string name="error_message_change_not_allowed">This change isn\'t allowed by your administrator</string>
4558    <!-- Message informing user that the requested activity could not be found [CHAR LIMIT=none] -->
4559    <string name="app_not_found">No application found to handle this action</string>
4560    <string name="revoke">Revoke</string>
4561
4562    <!-- Printing -->
4563
4564    <!-- ISO (European standard) A0 media (paper) size: 33.11" × 46.81" -->
4565    <string name="mediasize_iso_a0">ISO A0</string>
4566    <!-- ISO (European standard) A1 media (paper) size: 23.39" × 33.11" -->
4567    <string name="mediasize_iso_a1">ISO A1</string>
4568    <!-- ISO (European standard) A2 media (paper) size: 16.54" x 23.39" -->
4569    <string name="mediasize_iso_a2">ISO A2</string>
4570    <!-- ISO (European standard) A3 media (paper) size: 11.69" x 16.54" -->
4571    <string name="mediasize_iso_a3">ISO A3</string>
4572    <!-- ISO (European standard) A4 media (paper) size: 8.27" x 11.69" -->
4573    <string name="mediasize_iso_a4">ISO A4</string>
4574    <!-- ISO (European standard) A5 media (paper) size: 5.83" x 8.27" -->
4575    <string name="mediasize_iso_a5">ISO A5</string>
4576    <!-- ISO (European standard) A6 media (paper) size: 4.13" x 5.83" -->
4577    <string name="mediasize_iso_a6">ISO A6</string>
4578    <!-- ISO (European standard) A7 media (paper) size: 2.91" x 4.13" -->
4579    <string name="mediasize_iso_a7">ISO A7</string>
4580    <!-- ISO (European standard) A8 media (paper) size: 2.05" x 2.91" -->
4581    <string name="mediasize_iso_a8">ISO A8</string>
4582    <!-- ISO (European standard) A9 media (paper) size: 1.46" x 2.05" -->
4583    <string name="mediasize_iso_a9">ISO A9</string>
4584    <!-- ISO (European standard) A10 media (paper) size: 1.02" x 1.46" -->
4585    <string name="mediasize_iso_a10">ISO A10</string>
4586
4587    <!-- ISO (European standard) B0 media (paper) size: 39.37" x 55.67" -->
4588    <string name="mediasize_iso_b0">ISO B0</string>
4589    <!-- ISO (European standard) B1 media (paper) size: 27.83" x 39.37" -->
4590    <string name="mediasize_iso_b1">ISO B1</string>
4591    <!-- ISO (European standard) B2 media (paper) size - 19.69" x 27.83" -->
4592    <string name="mediasize_iso_b2">ISO B2</string>
4593    <!-- ISO (European standard) B3 media (paper) size: 13.90" x 19.69" -->
4594    <string name="mediasize_iso_b3">ISO B3</string>
4595    <!-- ISO (European standard) B4 media (paper) size: 9.84" x 13.90" -->
4596    <string name="mediasize_iso_b4">ISO B4</string>
4597    <!-- ISO (European standard) B5 media (paper) size: 6.93" x 9.84" -->
4598    <string name="mediasize_iso_b5">ISO B5</string>
4599    <!-- ISO (European standard) B6 media (paper) size: 4.92" x 6.93" -->
4600    <string name="mediasize_iso_b6">ISO B6</string>
4601    <!-- ISO (European standard) B7 media (paper) size: 3.46" x 4.92" -->
4602    <string name="mediasize_iso_b7">ISO B7</string>
4603    <!-- ISO (European standard) B8 media (paper) size: 2.44" x 3.46" -->
4604    <string name="mediasize_iso_b8">ISO B8</string>
4605    <!-- ISO (European standard) B9 media (paper) size: 1.73" x 2.44" -->
4606    <string name="mediasize_iso_b9">ISO B9</string>
4607    <!-- ISO (European standard) B10 media (paper) size: 1.22" x 1.73" -->
4608    <string name="mediasize_iso_b10">ISO B10</string>
4609
4610    <!-- ISO (European standard) C0 media (paper) size: 36.10" x 51.06" -->
4611    <string name="mediasize_iso_c0">ISO C0</string>
4612    <!-- ISO (European standard) C1 media (paper) size: 25.51" x 36.10" -->
4613    <string name="mediasize_iso_c1">ISO C1</string>
4614    <!-- ISO (European standard) C2 media (paper) size: 18.03" x 25.51" -->
4615    <string name="mediasize_iso_c2">ISO C2</string>
4616    <!-- ISO (European standard) C3 media (paper) size: 12.76" x 18.03" -->
4617    <string name="mediasize_iso_c3">ISO C3</string>
4618    <!-- ISO (European standard) C4 media (paper) size: 9.02" x 12.76" -->
4619    <string name="mediasize_iso_c4">ISO C4</string>
4620    <!-- ISO (European standard) C5 media (paper) size: 6.38" x 9.02" -->
4621    <string name="mediasize_iso_c5">ISO C5</string>
4622    <!-- ISO (European standard) C6 media (paper) size: 4.49" x 6.38" -->
4623    <string name="mediasize_iso_c6">ISO C6</string>
4624    <!-- ISO (European standard) C7 media (paper) size: 3.19" x 4.49" -->
4625    <string name="mediasize_iso_c7">ISO C7</string>
4626    <!-- ISO ISO C8 media (paper) size: 2.24" x 3.19" -->
4627    <string name="mediasize_iso_c8">ISO C8</string>
4628    <!-- ISO ISO C9 media (paper) size: 1.57" x 2.24" -->
4629    <string name="mediasize_iso_c9">ISO C9</string>
4630    <!-- ISO (European standard) C10 media (paper) size: 1.10" x 1.57" -->
4631    <string name="mediasize_iso_c10">ISO C10</string>
4632
4633    <!-- North America Letter media (paper) size: 8.5" × 11" (279mm x 216mm) -->
4634    <string name="mediasize_na_letter">Letter</string>
4635    <!-- North America Government Letter media (paper) size: 8.0" × 10.5" (203mm x 267mm) -->
4636    <string name="mediasize_na_gvrnmt_letter">Government Letter</string>
4637    <!-- North America Legal media (paper) size: 8.5" × 14" (216mm x 356mm) -->
4638    <string name="mediasize_na_legal">Legal</string>
4639    <!-- North America Junior Legal media (paper) size: 8.0" × 5.0" (203mm × 127mm) -->
4640    <string name="mediasize_na_junior_legal">Junior Legal</string>
4641    <!-- North America Ledger media (paper) size: 17" × 11" (432mm × 279mm) -->
4642    <string name="mediasize_na_ledger">Ledger</string>
4643    <!-- North America Tabloid media (paper) size: 11" × 17" (279mm × 432mm) -->
4644    <string name="mediasize_na_tabloid">Tabloid</string>
4645
4646    <!-- North America Index Card 3x5 media (paper) size: 3" x 5" (76mm x 127mm) -->
4647    <string name="mediasize_na_index_3x5">Index Card 3x5</string>
4648    <!-- North America Index Card 4x6 media (paper) size: 4" x 6" (102mm x 152mm) -->
4649    <string name="mediasize_na_index_4x6">Index Card 4x6</string>
4650    <!-- North America Index Card 5x8 media (paper) size: 5" x 8" (127mm x 203mm) -->
4651    <string name="mediasize_na_index_5x8">Index Card 5x8</string>
4652    <!-- North America Monarch media (paper) size: 7.25" x 10.5" (184mm x 267mm) -->
4653    <string name="mediasize_na_monarch">Monarch</string>
4654    <!-- North America Quarto media (paper) size: 8" x 10" (203mm x 254mm) -->
4655    <string name="mediasize_na_quarto">Quarto</string>
4656    <!-- North America Foolscap media (paper) size: 8" x 13" (203mm x 330mm) -->
4657    <string name="mediasize_na_foolscap">Foolscap</string>
4658
4659    <!-- Chinese Roc 8k media (paper) size: 270mm x 390mm (10.629" x 15.3543") -->
4660    <string name="mediasize_chinese_roc_8k">ROC 8K</string>
4661    <!-- Chinese Roc 16k media (paper) size: 195mm x 270mm (7.677" x 10.629") -->
4662    <string name="mediasize_chinese_roc_16k">ROC 16K</string>
4663
4664    <!-- Chinese PRC 1 media (paper) size: 102mm x 165mm (4.015" x 6.496") -->
4665    <string name="mediasize_chinese_prc_1">PRC 1</string>
4666    <!-- Chinese PRC 2 media (paper) size: 102mm x 176mm (4.015" x 6.929") -->
4667    <string name="mediasize_chinese_prc_2">PRC 2</string>
4668    <!-- Chinese PRC 3 media (paper) size: 125mm x 176mm (4.921" x 6.929") -->
4669    <string name="mediasize_chinese_prc_3">PRC 3</string>
4670    <!-- Chinese PRC 4 media (paper) size: 110mm x 208mm (4.330" x 8.189") -->
4671    <string name="mediasize_chinese_prc_4">PRC 4</string>
4672    <!-- Chinese PRC 5 media (paper) size: 110mm x 220mm (4.330" x 8.661") -->
4673    <string name="mediasize_chinese_prc_5">PRC 5</string>
4674    <!-- Chinese PRC 6 media (paper) size: 120mm x 320mm (4.724" x 12.599") -->
4675    <string name="mediasize_chinese_prc_6">PRC 6</string>
4676    <!-- Chinese PRC 7 media (paper) size: 160mm x 230mm (6.299" x 9.055") -->
4677    <string name="mediasize_chinese_prc_7">PRC 7</string>
4678    <!-- Chinese PRC 8 media (paper) size: 120mm x 309mm (4.724" x 12.165") -->
4679    <string name="mediasize_chinese_prc_8">PRC 8</string>
4680    <!-- Chinese PRC 9 media (paper) size: 229mm x 324mm (9.016" x 12.756") -->
4681    <string name="mediasize_chinese_prc_9">PRC 9</string>
4682    <!-- Chinese PRC 10 media (paper) size: 324mm x 458mm (12.756" x 18.032") -->
4683    <string name="mediasize_chinese_prc_10">PRC 10</string>
4684
4685    <!-- Chinese RPC 16K media (paper) size: 146mm x 215mm (5.749" x 8.465") -->
4686    <string name="mediasize_chinese_prc_16k">PRC 16K</string>
4687    <!-- Chinese Pa Kai media (paper) size: 146mm x 215mm (5.749" x 8.465") -->
4688    <string name="mediasize_chinese_om_pa_kai">Pa Kai</string>
4689    <!-- Chinese Dai Pa Kai media (paper) size: 275mm x 395mm (10.827" x 15.551") -->
4690    <string name="mediasize_chinese_om_dai_pa_kai">Dai Pa Kai</string>
4691    <!-- Chinese Jurro Ku Kai media (paper) size: 275mm x 395mm (10.827" x 15.551") -->
4692    <string name="mediasize_chinese_om_jurro_ku_kai">Jurro Ku Kai</string>
4693
4694    <!-- Japanese JIS B10 media (paper) size: 32mm x 45mm (1.259" x 1.772") -->
4695    <string name="mediasize_japanese_jis_b10">JIS B10</string>
4696    <!-- Japanese JIS B9 media (paper) size: 45mm x 64mm (1.772" x 2.52") -->
4697    <string name="mediasize_japanese_jis_b9">JIS B9</string>
4698    <!-- Japanese JIS B8 media (paper) size: 64mm x 91mm (2.52" x 3.583") -->
4699    <string name="mediasize_japanese_jis_b8">JIS B8</string>
4700    <!-- Japanese JIS B7 media (paper) size: 91mm x 128mm (3.583" x 5.049") -->
4701    <string name="mediasize_japanese_jis_b7">JIS B7</string>
4702    <!-- Japanese JIS B6 media (paper) size: 128mm x 182mm (5.049" x 7.165") -->
4703    <string name="mediasize_japanese_jis_b6">JIS B6</string>
4704    <!-- Japanese JIS B5 media (paper) size: 182mm x 257mm (7.165" x 10.118") -->
4705    <string name="mediasize_japanese_jis_b5">JIS B5</string>
4706    <!-- Japanese JIS B4 media (paper) size: 257mm x 364mm (10.118" x 14.331") -->
4707    <string name="mediasize_japanese_jis_b4">JIS B4</string>
4708    <!-- Japanese JIS B3 media (paper) size: 364mm x 515mm (14.331" x 20.276") -->
4709    <string name="mediasize_japanese_jis_b3">JIS B3</string>
4710    <!-- Japanese JIS B2 media (paper) size: 515mm x 728mm (20.276" x 28.661") -->
4711    <string name="mediasize_japanese_jis_b2">JIS B2</string>
4712    <!-- Japanese JIS B1 media (paper) size: 728mm x 1030mm (28.661" x 40.551") -->
4713    <string name="mediasize_japanese_jis_b1">JIS B1</string>
4714    <!-- Japanese JIS B0 media (paper) size: 1030mm x 1456mm (40.551" x 57.323") -->
4715    <string name="mediasize_japanese_jis_b0">JIS B0</string>
4716
4717    <!-- Japanese JIS Exec media (paper) size: 216mm x 330mm (8.504" x 12.992") -->
4718    <string name="mediasize_japanese_jis_exec">JIS Exec</string>
4719
4720    <!-- Japanese Chou4 media (paper) size: 90mm x 205mm (3.543" x 8.071") -->
4721    <string name="mediasize_japanese_chou4">Chou4</string>
4722    <!-- Japanese Chou3 media (paper) size: 120mm x 235mm (4.724" x 9.252") -->
4723    <string name="mediasize_japanese_chou3">Chou3</string>
4724    <!-- Japanese Chou2 media (paper) size: 111.1mm x 146mm (4.374" x 5.748") -->
4725    <string name="mediasize_japanese_chou2">Chou2</string>
4726
4727    <!-- Japanese Hagaki media (paper) size: 100mm x 148mm (3.937" x 5.827") -->
4728    <string name="mediasize_japanese_hagaki">Hagaki </string>
4729    <!-- Japanese Oufuku media (paper) size: 148mm x 200mm (5.827" x 7.874") -->
4730    <string name="mediasize_japanese_oufuku">Oufuku </string>
4731    <!-- Japanese Kahu media (paper) size: 240mm x 322.1mm (9.449" x 12.681") -->
4732    <string name="mediasize_japanese_kahu">Kahu</string>
4733    <!-- Japanese Kaku2 media (paper) size: 240mm x 332mm (9.449" x 13.071") -->
4734    <string name="mediasize_japanese_kaku2">Kaku2</string>
4735    <!-- Japanese You4 media (paper) size: 105mm x 235mm (4.134" x 9.252") -->
4736    <string name="mediasize_japanese_you4">You4</string>
4737
4738    <!-- Media (paper) size for specifying any paper size in portrait.-->
4739    <string name="mediasize_unknown_portrait">Unknown portrait</string>
4740    <!-- Media (paper) size for specifying any paper size in landscape.-->
4741    <string name="mediasize_unknown_landscape">Unknown landscape</string>
4742
4743    <!-- Write fail reason: printing was cancelled.[CHAR LIMIT=none] -->
4744    <string name="write_fail_reason_cancelled">Cancelled</string>
4745    <!-- Write fail reason: couldn't write the printed content. [CHAR LIMIT=none] -->
4746    <string name="write_fail_reason_cannot_write">Error writing content</string>
4747
4748    <!-- Print fail reason: unknown. [CHAR LIMIT=25] -->
4749    <string name="reason_unknown">unknown</string>
4750
4751    <!-- Print fail reason: the print service that has to process the print job is not available. [CHAR LIMIT=none] -->
4752    <string name="reason_service_unavailable">Print service not enabled</string>
4753
4754    <!-- Title for the notification that a print service was installed. [CHAR LIMIT=50] -->
4755    <string name="print_service_installed_title"><xliff:g id="name" example="Cloud Print">%s</xliff:g> service installed</string>
4756    <!-- Message for the notification that a print service was installed. [CHAR LIMIT=50] -->
4757    <string name="print_service_installed_message">Tap to enable</string>
4758
4759    <!-- PIN entry dialog title for entering the administrator PIN [CHAR LIMIT=none] -->
4760    <string name="restr_pin_enter_admin_pin">Enter administrator PIN</string>
4761    <!-- PIN entry dialog label/hint for PIN [CHAR LIMIT=none] -->
4762    <string name="restr_pin_enter_pin">Enter PIN</string>
4763    <!-- PIN entry dialog label/hint for incorrect PIN entry [CHAR LIMIT=none] -->
4764    <string name="restr_pin_incorrect">Incorrect</string>
4765    <!-- PIN entry dialog label/hint for old PIN [CHAR LIMIT=none] -->
4766    <string name="restr_pin_enter_old_pin">Current PIN</string>
4767    <!-- PIN entry dialog label for new PIN [CHAR LIMIT=none] -->
4768    <string name="restr_pin_enter_new_pin">New PIN</string>
4769    <!-- PIN entry dialog label for new PIN confirmation [CHAR LIMIT=none] -->
4770    <string name="restr_pin_confirm_pin">Confirm new PIN</string>
4771    <!-- PIN creation dialog message [CHAR LIMIT=none] -->
4772    <string name="restr_pin_create_pin">Create a PIN for modifying restrictions</string>
4773    <!-- PIN entry dialog error when PINs are not the same [CHAR LIMIT=none] -->
4774    <string name="restr_pin_error_doesnt_match">PINs don\'t match. Try again.</string>
4775    <!-- PIN entry dialog error when PIN is too short [CHAR LIMIT=none] -->
4776    <string name="restr_pin_error_too_short">PIN is too short. Must be at least 4 digits.</string>
4777    <!-- PIN entry dialog countdown message for next chance to enter the PIN [CHAR LIMIT=none] -->
4778    <!-- Phrase describing a time duration using seconds [CHAR LIMIT=none] -->
4779    <plurals name="restr_pin_countdown">
4780        <item quantity="one">Try again in 1 second</item>
4781        <item quantity="other">Try again in <xliff:g id="count">%d</xliff:g> seconds</item>
4782    </plurals>
4783    <!-- PIN entry dialog tells the user to not enter a PIN for a while. [CHAR LIMIT=none] -->
4784    <string name="restr_pin_try_later">Try again later</string>
4785
4786    <!-- Cling help message when hiding the navigation bar entering immersive mode [CHAR LIMIT=none] -->
4787    <string name="immersive_mode_confirmation" msgid="8554991488096662508">Swipe down from the top to exit full screen.</string>
4788
4789    <!-- Label for button to confirm chosen date or time [CHAR LIMIT=30] -->
4790    <string name="done_label">Done</string>
4791    <!--
4792         Content description for the hour selector in the time picker, which displays
4793         selectable hours of the day along the inside edge of a circle, as in an analog clock.
4794         [CHAR LIMIT=50]
4795    -->
4796    <string name="hour_picker_description">Hours circular slider</string>
4797    <!--
4798         Content description for the minute selector in the time picker, which displays
4799         selectable five-minute intervals along the inside edge of a circle, as in an analog clock.
4800         [CHAR LIMIT=50]
4801    -->
4802    <string name="minute_picker_description">Minutes circular slider</string>
4803    <!-- Accessibility announcement for hour circular picker [CHAR LIMIT=NONE] -->
4804    <string name="select_hours">Select hours</string>
4805    <!-- Accessibility announcement for minute circular picker [CHAR LIMIT=NONE] -->
4806    <string name="select_minutes">Select minutes</string>
4807
4808    <!--
4809        Content description for the month and day selector in the date picker, which displays
4810        a selectable grid of days laid out by month.
4811        [CHAR LIMIT=50]
4812     -->
4813    <string name="day_picker_description">Month grid of days</string>
4814    <!--
4815        Content description for the year selector in the date picker, which displays
4816        a scrolling, vertical list of years.
4817        [CHAR LIMIT=50]
4818     -->
4819    <string name="year_picker_description">Year list</string>
4820    <!-- Accessibility announcement for the day picker [CHAR LIMIT=NONE] -->
4821    <string name="select_day">Select month and day</string>
4822    <!-- Accessibility announcement for the year picker [CHAR LIMIT=NONE] -->
4823    <string name="select_year">Select year</string>
4824    <!-- Accessibility description for the item that is currently selected. -->
4825    <string name="item_is_selected"><xliff:g id="item" example="2013">%1$s</xliff:g> selected</string>
4826    <!-- Accessibility announcement when a number that had been typed in is deleted [CHAR_LIMIT=NONE] -->
4827    <string name="deleted_key"><xliff:g id="key" example="4">%1$s</xliff:g> deleted</string>
4828
4829    <!--
4830        Used to wrap a label for content description for a work profile, e.g. "Work Email" instead
4831        of email when there are two email apps.
4832        [CHAR LIMIT=20]
4833     -->
4834    <string name="managed_profile_label_badge">Work <xliff:g id="label" example="Email">%1$s</xliff:g></string>
4835
4836    <!-- DO NOT TRANSLATE -->
4837    <string name="time_placeholder">--</string>
4838
4839    <!-- DO NOT TRANSLATE -->
4840    <string name="radial_numbers_typeface">sans-serif</string>
4841    <!-- DO NOT TRANSLATE -->
4842    <string name="sans_serif">sans-serif</string>
4843
4844    <!-- DO NOT TRANSLATE -->
4845    <string name="day_of_week_label_typeface">sans-serif</string>
4846
4847    <!-- Notify use that they are in Lock-to-app -->
4848    <string name="lock_to_app_toast">To unpin this screen, touch and hold  Back and Recents at the same time.</string>
4849    <!-- Notify use that they are in Lock-to-app in accessibility mode -->
4850    <string name="lock_to_app_toast_accessible">To unpin this screen, touch and hold Recents.</string>
4851    <!-- Notify user that they are locked in lock-to-app mode -->
4852    <string name="lock_to_app_toast_locked">Screen is pinned. Unpinning isn\'t allowed by your organization.</string>
4853    <!-- Lock-to-app dialog title. -->
4854    <string name="lock_to_app_title">Use screen pinning?</string>
4855    <!-- Lock-to-app dialog description. -->
4856    <string name="lock_to_app_description">Screen pinning locks the display in a single view.\n\nTo exit, touch and hold Back and Recents at the same time.</string>
4857    <!-- Lock-to-app dialog description when in accessibility mode. -->
4858    <string name="lock_to_app_description_accessible">Screen pinning locks the display in a single view.\n\nTo exit, touch and hold Recents.</string>
4859    <!-- Lock-to-app negative response. -->
4860    <string name="lock_to_app_negative">NO, THANKS</string>
4861    <!-- Lock-to-app positive response. -->
4862    <string name="lock_to_app_positive">START</string>
4863    <!-- Starting lock-to-app indication. -->
4864    <string name="lock_to_app_start">Screen pinned</string>
4865    <!-- Exting lock-to-app indication. -->
4866    <string name="lock_to_app_exit">Screen unpinned</string>
4867
4868    <!-- Lock-to-app unlock pin string -->
4869    <string name="lock_to_app_unlock_pin">Ask for PIN before unpinning</string>
4870    <!-- Lock-to-app unlock pattern string -->
4871    <string name="lock_to_app_unlock_pattern">Ask for unlock pattern before unpinning</string>
4872    <!-- Lock-to-app unlock password string -->
4873    <string name="lock_to_app_unlock_password">Ask for password before unpinning</string>
4874
4875    <!-- [CHAR_LIMIT=NONE] Battery saver: Feature description -->
4876    <string name="battery_saver_description">To help improve battery life, battery saver reduces your device’s performance and limits vibration and most background data. Email, messaging, and other apps that rely on syncing may not update unless you open them.\n\nBattery saver turns off automatically when your device is charging.</string>
4877
4878    <!-- [CHAR_LIMIT=NONE] Zen mode: Condition summary for built-in downtime condition, if active -->
4879    <string name="downtime_condition_summary">Until your downtime ends at <xliff:g id="formattedTime" example="10.00 PM">%1$s</xliff:g></string>
4880
4881    <!-- Zen mode condition: time duration in minutes. [CHAR LIMIT=NONE] -->
4882    <plurals name="zen_mode_duration_minutes">
4883        <item quantity="one">For one minute</item>
4884        <item quantity="other">For %d minutes</item>
4885    </plurals>
4886
4887    <!-- Zen mode condition: time duration in hours. [CHAR LIMIT=NONE] -->
4888    <plurals name="zen_mode_duration_hours">
4889        <item quantity="one">For one hour</item>
4890        <item quantity="other">For %d hours</item>
4891    </plurals>
4892
4893    <!-- Zen mode condition: no exit criteria. [CHAR LIMIT=NONE] -->
4894    <string name="zen_mode_forever">Indefinitely</string>
4895</resources>
4896