blob: 88020fc6013a8c13bfe0b7edd632bafaedd3e8f7 [file] [log] [blame]
Santos Cordon7d4ddf62013-07-10 11:58:08 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2007 The Android Open Source Project
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15-->
16
17<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
18
19 <!-- Official label of the phone app, as seen in "Manage Applications"
20 and other settings UIs. This is the version of the label for
21 tablet devices, where the phone app handles mobile data but not
22 actual phone calls. -->
23 <string name="phoneAppLabel" product="tablet">Mobile Data</string>
24
25 <!-- Official label of the phone app, as seen in "Manage Applications"
26 and other settings UIs. -->
27 <string name="phoneAppLabel" product="default">Phone</string>
28
29 <!-- Screen title for Emergency Dialer UI -->
30 <string name="emergencyDialerIconLabel">Emergency Dialer</string>
31 <!-- Activity label for the in-call UI -->
32 <string name="phoneIconLabel">Phone</string>
33 <!-- Title of FDN list screen -->
34 <string name="fdnListLabel">FDN list</string>
35
36 <!-- Call status -->
37 <!-- Incoming call screen, name of "unknown" caller -->
38 <string name="unknown">Unknown</string>
39 <!-- Incoming call screen, string when number hidden -->
40 <string name="private_num">Private number</string>
41 <!-- Incoming call screen, string when called from a pay phone -->
42 <string name="payphone">Pay phone</string>
43 <!-- In-call screen: status label for a call that's on hold -->
44 <string name="onHold">On hold</string>
45 <!-- Possible error messages with outgoing calls --><skip/>
Santos Cordon7d4ddf62013-07-10 11:58:08 -070046 <string name="mmiStarted">MMI code started</string>
47 <!-- Dialog label when a USSD code starts running -->
48 <string name="ussdRunning">USSD code running\u2026</string>
49 <!-- Dialog label when an MMI code is canceled -->
50 <string name="mmiCancelled">MMI code canceled</string>
51 <!-- Label for "cancel" button on the MMI dialog -->
52 <string name="cancel">Cancel</string>
53 <!-- Toast string displayed to user if the input in MMI dialog is < 1 or > 160 -->
54 <string name="enter_input">USSD message must be between <xliff:g id="min_len" >%d</xliff:g> and <xliff:g id="max_len" >%d</xliff:g> characters. Please try again.</string>
55
56 <!-- Label for "Manage conference call" panel [CHAR LIMIT=40] -->
57 <string name="manageConferenceLabel">Manage conference call</string>
58
Santos Cordon0f97a4c2013-08-16 11:11:10 -070059 <!-- Positive button label ("OK") used in several dialogs in the phone UI [CHAR LIMIT=10] -->
60 <string name="ok">OK</string>
61
Santos Cordon7d4ddf62013-07-10 11:58:08 -070062 <!-- "Audio mode" popup menu: Item label to select the speakerphone [CHAR LIMIT=25] -->
63 <string name="audio_mode_speaker">Speaker</string>
64 <!-- "Audio mode" popup menu: Item label to select the handset earpiece [CHAR LIMIT=25] -->
65 <string name="audio_mode_earpiece">Handset earpiece</string>
66 <!-- "Audio mode" popup menu: Item label to select the wired headset [CHAR LIMIT=25] -->
67 <string name="audio_mode_wired_headset">Wired headset</string>
68 <!-- "Audio mode" popup menu: Item label to select the bluetooth headset [CHAR LIMIT=25] -->
69 <string name="audio_mode_bluetooth">Bluetooth</string>
70
71 <!-- post dial -->
72 <!-- In-call screen: body text of the dialog that appears when we encounter
73 the "wait" character in a phone number to be dialed; this dialog asks the
74 user if it's OK to send the numbers following the "wait". -->
75 <string name="wait_prompt_str">Send the following tones?\n</string>
76 <!-- In-call screen: body text of the dialog that appears when we encounter
77 the "PAUSE" character in a phone number to be dialed; this dialog gives
78 informative message to the user to show the sending numbers following the "Pause". -->
79 <string name="pause_prompt_str">Sending tones\n</string>
80 <!-- In-call screen: button label on the "wait" prompt dialog -->
81 <string name="send_button">Send</string>
82 <!-- In-call screen: button label on the "wait" prompt dialog in CDMA Mode-->
83 <string name="pause_prompt_yes">Yes</string>
84 <!-- In-call screen: button label on the "wait" prompt dialog in CDMA Mode-->
85 <string name="pause_prompt_no">No</string>
86 <!-- In-call screen: on the "wild" character dialog, this is the label
87 for a text widget that lets the user enter the digits that should
88 replace the "wild" character. -->
89 <string name="wild_prompt_str">Replace wild character with</string>
90
91 <!-- missing voicemail number -->
92 <!-- Title of the "Missing voicemail number" dialog -->
93 <string name="no_vm_number">Missing voicemail number</string>
94 <!-- Body text of the "Missing voicemail number" dialog -->
95 <string name="no_vm_number_msg">No voicemail number is stored on the SIM card.</string>
96 <!-- Button label on the "Missing voicemail number" dialog -->
97 <string name="add_vm_number_str">Add number</string>
98
99 <!-- Status message displayed on SIM PIN unlock panel -->
100 <string name="puk_unlocked">Your SIM card has been unblocked. Your phone is unlocking\u2026</string>
101 <!-- network depersonalization -->
102 <!-- Label text for PIN entry widget on SIM Network Depersonalization panel -->
103 <string name="label_ndp">SIM network unlock PIN</string>
104 <!-- Button label on SIM Network Depersonalization panel -->
105 <string name="sim_ndp_unlock_text">Unlock</string>
106 <!-- Button label on SIM Network Depersonalization panel -->
107 <string name="sim_ndp_dismiss_text">Dismiss</string>
108 <!-- Status message displayed on SIM Network Depersonalization panel -->
109 <string name="requesting_unlock">Requesting network unlock\u2026</string>
110 <!-- Error message displayed on SIM Network Depersonalization panel -->
111 <string name="unlock_failed">Network unlock request unsuccessful.</string>
112 <!-- Success message displayed on SIM Network Depersonalization panel -->
113 <string name="unlock_success">Network unlock successful.</string>
114
115 <!-- settings strings -->
116
Julia Reynoldsa4ca38a2014-05-12 16:51:26 -0400117 <!-- Error message for users that aren't allowed to modify Mobile Network settings [CHAR LIMIT=none] -->
PauloftheWest1bb48362014-07-14 07:56:30 -0700118 <string name="mobile_network_settings_not_available">Cellular network settings are not available for this user</string>
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700119 <!-- GSM Call settings screen, setting option name -->
120 <string name="labelGSMMore">GSM call settings</string>
121 <!-- CDM Call settings screen, setting option name -->
122 <string name="labelCDMAMore">CDMA call settings</string>
123 <!-- Mobile network settings screen, setting option name -->
124 <string name="apn_settings">Access Point Names</string>
125 <!-- Label for the "Network settings" screen in the Settings UI -->
126 <string name="settings_label">Network settings</string>
Andrew Lee470cc672014-08-21 15:57:58 -0700127
Andrew Leee5525b12014-09-24 13:29:52 -0700128 <!-- Label for settings screen for phone accounts. -->
129 <string name="phone_accounts">Phone account settings</string>
Andrew Lee470cc672014-08-21 15:57:58 -0700130 <!-- Label for list item which opens a dialog to select the default outgoing account -->
131 <string name="phone_accounts_make_calls_with">Make calls with</string>
Andrew Leef8d3f272014-09-16 18:06:30 -0700132 <!-- Label for list item which opens a dialog to select the default outgoing account for SIP calls. -->
Andrew Lee24545472014-09-17 13:08:58 -0700133 <string name="phone_accounts_make_sip_calls_with">Make SIP calls with</string>
Andrew Lee470cc672014-08-21 15:57:58 -0700134 <!-- Entry in dialog to "ask first" for accounts when making a call -->
135 <string name="phone_accounts_ask_every_time">Ask first</string>
136
Andrew Leef8d3f272014-09-16 18:06:30 -0700137 <!-- Label for heading of the accounts section in the phone accounts settings screen. -->
138 <string name="phone_accounts_accounts_header">Accounts</string>
Tyler Gunnccda0892014-09-04 15:55:18 -0700139 <!-- Label for invoking phone account selection screen -->
140 <string name="phone_accounts_choose_accounts">Choose accounts</string>
141 <!-- Label for heading in the phone account selection screen -->
142 <string name="phone_accounts_selection_header">Phone accounts</string>
Andrew Leef8d3f272014-09-16 18:06:30 -0700143 <!-- Title for the button to add a new sip account. [CHAR LIMIT=NONE] -->
144 <string name="phone_accounts_add_sip_account">Add SIP account</string>
145 <!-- Description label for icon to configure a phone account's settings. -->
146 <string name="phone_accounts_configure_account_settings">Configure account settings</string>
Tyler Gunnccda0892014-09-04 15:55:18 -0700147
Andrew Lee470cc672014-08-21 15:57:58 -0700148 <!-- Title for setting to select Wi-Fi call manager account -->
149 <string name="phone_account_wifi_calling">Wi-Fi calling</string>
150 <!-- Indication for option to not use a Wi-Fi call manager -->
151 <string name="wifi_calling_do_not_use">Do not use Wi-Fi calling</string>
Andrew Lee24545472014-09-17 13:08:58 -0700152 <!-- Indication for option to not use a call assistant. -->
153 <string name="wifi_calling_do_not_use_call_assistant">Do not use call assistant</string>
Andrew Lee4d37f522014-09-23 16:38:08 -0700154 <!-- Indication for option to not use a call assistant. -->
155 <string name="wifi_calling_call_assistant_none">None</string>
Andrew Lee470cc672014-08-21 15:57:58 -0700156 <!-- Label for selected Wi-Fi call manager -->
157 <string name="wifi_calling_call_assistant">Call assistant</string>
158 <!-- Label for switch setting to enable/disable the use of SIM call managers. -->
159 <string name="wifi_calling_use_call_assistant">Use call assistant</string>
Andrew Lee24545472014-09-17 13:08:58 -0700160 <!-- Label for selectecting a Wi-Fi call manager -->
161 <string name="wifi_calling_select_call_assistant">Choose call assistant</string>
162 <!-- Summary for the label of a setting to select the SIM call managers to use.-->
163 <string name="wifi_calling_select_call_assistant_summary">Choose an app or service to manage the networks used for calls</string>
Andrew Lee470cc672014-08-21 15:57:58 -0700164 <!-- Summary for the label of a switch setting to enable/disable the use of SIM call managers. -->
165 <string name="wifi_calling_use_call_assistant_summary">Let apps or services manage networks used for calls</string>
Andrew Leef8d3f272014-09-16 18:06:30 -0700166 <!-- Label for setting to configure the selected call assistant. -->
167 <string name="wifi_calling_call_assistant_configure">Configure</string>
Andrew Leece8ae2a2014-09-10 10:41:48 -0700168 <!-- Label for setting to configure the selected call assistant when no call assistant is chosen. -->
Andrew Lee24545472014-09-17 13:08:58 -0700169 <string name="wifi_calling_call_assistant_configure_no_selection">Call assistant off</string>
Andrew Lee470cc672014-08-21 15:57:58 -0700170
Ihab Awad098f2d72014-05-19 17:34:52 -0700171 <!-- Built-in label for the default connection service setting. -->
172 <string name="connection_service_default_label">Built-in connection service</string>
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700173 <!-- Call settings screen, setting option name -->
174 <string name="voicemail">Voicemail</string>
175 <!-- Call forwarding dialog box, voicemail number prefix -->
176 <string name="voicemail_abbreviated">VM:</string>
177 <!-- Mobile network settings screen, setting option name -->
178 <string name="networks">Network operators</string>
PauloftheWest5f907c32014-07-25 07:10:44 -0700179 <!-- Cell Broadcast settings title. [CHAR LIMIT=50] -->
180 <string name="cell_broadcast_settings">Emergency broadcasts</string>
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700181 <!-- Call settings screen title -->
Tyler Gunn6e922082014-06-03 13:29:28 -0700182 <string name="call_settings">Call Settings</string>
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700183 <!-- GSM Call settings screen, setting option name -->
184 <string name="additional_gsm_call_settings">Additional settings</string>
185 <!-- GSM-only Call settings screen, setting option name-->
186 <string name="sum_gsm_call_settings">Additional GSM only call settings</string>
187 <!-- CDMA Call settings screen, setting option name -->
188 <string name="additional_cdma_call_settings">Additional CDMA call settings</string>
189 <!-- CDMA-only Call settings screen, setting option name-->
190 <string name="sum_cdma_call_settings">Additional CDMA only call settings</string>
191 <!-- Call setting screen, nework service setting name -->
192 <string name="labelNwService">Network service settings</string>
193 <!-- Call settings screen, setting option name -->
194 <string name="labelCallerId">Caller ID</string>
195 <!-- Additional call settings screen, setting summary text when the setting is being loaded [CHAR LIMIT=40] -->
196 <string name="sum_loading_settings">Loading settings\u2026</string>
197 <!-- Additional call settings screen, setting summary text when Caller ID is hidden -->
198 <string name="sum_hide_caller_id">Number hidden in outgoing calls</string>
199 <!-- Additional call settings screen, setting summary text when Caller ID is shown -->
200 <string name="sum_show_caller_id">Number displayed in outgoing calls</string>
201 <!-- Additional call settings screen, setting summary text for default Caller ID value -->
202 <string name="sum_default_caller_id">Use default operator settings to display my number in outgoing calls</string>
203 <!-- Additional call settings screen, setting check box name -->
204 <string name="labelCW">Call waiting</string>
205 <!-- Additional call settings screen, setting summary text when call waiting check box is selected -->
206 <string name="sum_cw_enabled">During a call, notify me of incoming calls</string>
207 <!-- Additional call settings screen, setting summary text when call waiting check box is clear -->
208 <string name="sum_cw_disabled">During a call, notify me of incoming calls</string>
209 <!-- Call forwarding settings screen, section heading -->
210 <string name="call_forwarding_settings">Call forwarding settings</string>
211 <!-- Call settings screen, setting option name -->
212 <string name="labelCF">Call forwarding</string>
213
214 <!-- Call forwarding settings screen, setting option name -->
215 <string name="labelCFU">Always forward</string>
216 <!-- Call forwarding dialog box, text field label -->
217 <string name="messageCFU">Always use this number</string>
218 <!-- Call forwarding settings screen, setting summary text when forwarding all calls -->
219 <string name="sum_cfu_enabled_indicator">Forwarding all calls</string>
220 <!-- Call forwarding settings screen, setting summary text the Always forward is set -->
221 <string name="sum_cfu_enabled">Forwarding all calls to <xliff:g id="phonenumber" example="555-1212">{0}</xliff:g></string>
222 <!-- Call forwarding settings screen, Always forward is enabled but the number is unavailable -->
223 <string name="sum_cfu_enabled_no_number">Number is unavailable</string>
224 <!-- Call forwarding settings screen, setting summary text when Always forward is disabled -->
Andrew Lee470cc672014-08-21 15:57:58 -0700225 <string name="sum_cfu_disabled">Off</string>
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700226
227 <!-- Call forwarding settings screen, setting option name -->
Andrew Lee470cc672014-08-21 15:57:58 -0700228 <string name="labelCFB">When busy</string>
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700229 <!-- Call forwarding dialog box, text field label -->
230 <string name="messageCFB">Number when busy</string>
231 <!-- Call forwarding settings screen, setting summary text when forwarding to specific number when busy -->
232 <string name="sum_cfb_enabled">Forwarding to <xliff:g id="phonenumber" example="555-1212">{0}</xliff:g></string>
233 <!-- Call forwarding settings screen, setting summary text when forwarding when busy is disabled -->
Andrew Lee470cc672014-08-21 15:57:58 -0700234 <string name="sum_cfb_disabled">Off</string>
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700235 <!-- Error message displayed after failing to disable forwarding calls when the phone is busy -->
236 <string name="disable_cfb_forbidden">Your operator doesn\'t support disabling call forwarding when your phone is busy.</string>
237
238 <!-- Call forwarding settings screen, setting option name -->
Andrew Lee470cc672014-08-21 15:57:58 -0700239 <string name="labelCFNRy">When unanswered</string>
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700240 <!-- Call forwarding dialog box, text field label -->
241 <string name="messageCFNRy">Number when unanswered</string>
242 <!-- Call forwarding settings screen, setting summary text when forwarding to a specific number when unanswered -->
243 <string name="sum_cfnry_enabled">Forwarding to <xliff:g id="phonenumber" example="555-1212">{0}</xliff:g></string>
244 <!-- Call forwarding settings screen, setting summary text when Forward when unanswered is disabled -->
Andrew Lee470cc672014-08-21 15:57:58 -0700245 <string name="sum_cfnry_disabled">Off</string>
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700246 <!-- Error message displayed after failing to disable forwarding calls when the phone does not answer -->
247 <string name="disable_cfnry_forbidden">Your operator doesn\'t support disabling call forwarding when your phone doesn\'t answer.</string>
248
249 <!-- Call forwarding settings screen, setting option name -->
Andrew Lee470cc672014-08-21 15:57:58 -0700250 <string name="labelCFNRc">When unreachable</string>
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700251 <!-- Call forwarding dialog box, text field label -->
252 <string name="messageCFNRc">Number when unreachable</string>
253 <!-- Call forwarding settings screen, setting summary text when forwarding to a specific number when unreachable-->
254 <string name="sum_cfnrc_enabled">Forwarding to <xliff:g id="phonenumber" example="555-1212">{0}</xliff:g></string>
255 <!-- Call forwarding settings screen, setting summary text when Forward when unreachable is disabled -->
256 <string name="sum_cfnrc_disabled">Disabled</string>
257 <!-- Error message displayed after failing to disable forwarding calls when the phone is unreachable -->
258 <string name="disable_cfnrc_forbidden">Your carrier doesn\'t support disabling call forwarding when your phone is unreachable.</string>
259
260 <!-- Title of the progress dialog displayed while updating Call settings -->
261 <string name="updating_title">Call settings</string>
262 <!-- Title of the alert dialog displayed if an error occurs while updating Call settings -->
263 <string name="error_updating_title">Call settings error</string>
264 <!-- Toast in Call settings dialog while settings are being read -->
265 <string name="reading_settings">Reading settings\u2026</string>
266 <!-- Toast in Call settings dialog while settings are being saved -->
267 <string name="updating_settings">Updating settings\u2026</string>
268 <!-- Toast in Call settings dialog while settings are being reverted -->
269 <string name="reverting_settings">Reverting settings\u2026</string>
270 <!-- Status message displayed in the "Call settings error" dialog -->
271 <string name="response_error">Unexpected response from network.</string>
272 <!-- Status message displayed in the "Call settings error" dialog -->
273 <string name="exception_error">Network or SIM card error.</string>
274 <!-- Status message displayed in the "Call settings error" dialog when operation fails due to FDN
275 [CHAR LIMIT=NONE] -->
276 <string name="fdn_check_failure">Your Phone app\'s Fixed Dialing Numbers setting is turned on. As a result, some call-related features aren\'t working.</string>
277 <!-- Status message displayed in the "Call settings error" dialog -->
278 <string name="radio_off_error">Turn on the radio before viewing these settings.</string>
279 <!-- Button label used to dismiss the "Call settings error" dialog -->
280 <string name="close_dialog">OK</string>
281 <!-- Button label used in several settings-related dialogs -->
282 <string name="enable">Enable</string>
283 <!-- Button label used in several settings-related dialogs -->
284 <string name="disable">Disable</string>
285 <!-- Button label which indicates the user wants to update a stored
286 phone number; used in several settings-related dialogs -->
287 <string name="change_num">Update</string>
288 <!-- Phone settings: Caller ID preference values -->
289 <string-array name="clir_display_values">
290 <!-- Phone settings "Caller ID" preference option: use the default value -->
291 <item>Network default</item>
292 <!-- Phone settings "Caller ID" preference option: hide outgoing Caller ID info -->
293 <item>Hide number</item>
294 <!-- Phone settings "Caller ID" preference option: show outgoing Caller ID info -->
295 <item>Show number</item>
296 </string-array>
297 <!-- Phone settings: Internal keys used for Caller ID preference values. DO NOT TRANSLATE. -->
298 <string-array name="clir_values" translatable="false">
299 <!-- Phone settings: Internal key used for Caller ID preference values. DO NOT TRANSLATE. -->
300 <item><xliff:g>DEFAULT</xliff:g></item>
301 <!-- Phone settings: Internal key used for Caller ID preference values. DO NOT TRANSLATE. -->
302 <item><xliff:g>HIDE</xliff:g></item>
303 <!-- Phone settings: Internal key used for Caller ID preference values. DO NOT TRANSLATE. -->
304 <item><xliff:g>SHOW</xliff:g></item>
305 </string-array>
306
307 <!-- voicemail setting strings --><skip/>
308 <!-- Call settings screen, Set voicemail number dialog text -->
309 <string name="vm_changed">Voicemail number changed.</string>
310 <!-- Call settings screen, Set voicemail number dialog text -->
311 <string name="vm_change_failed">Couldn\'t change the voicemail number.\nContact your carrier if this problem persists.</string>
312 <!-- Call settings screen, displayed when vm provider supplied forwarding number change fails-->
313 <string name="fw_change_failed">Couldn\'t change the forwarding number.\nContact your carrier if this problem persists.</string>
314 <!-- Call settings screen, displayed when forwarding number read fails-->
315 <string name="fw_get_in_vm_failed">Couldn\'t retrieve and save current forwarding number settings.\nSwitch to the new provider anyway?</string>
316 <!-- Call settings screen, Set voicemail number dialog text -->
317 <string name="no_change">No changes were made.</string>
318 <!-- Call settings screen, "Voicemail" provider setting summary text when no provider is selected -->
319 <string name="sum_voicemail_choose_provider">Choose voicemail service</string>
Andrew Lee470cc672014-08-21 15:57:58 -0700320 <!-- Call settings screen, "Voicemail" screen, default option - Your Carrier -->
321 <string name="voicemail_default">Your carrier</string>
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700322
323 <!-- networks setting strings --><skip/>
324 <!-- Mobile network settings screen title -->
PauloftheWest1bb48362014-07-14 07:56:30 -0700325 <string name="mobile_networks">Cellular network settings</string>
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700326 <!-- Available networks screen title/heading -->
327 <string name="label_available">Available networks</string>
328 <!-- Mobile network settings screen, toast when searching for available networks -->
329 <string name="load_networks_progress">Searching\u2026</string>
330 <!-- Available networks screen, text when no networks are found -->
331 <string name="empty_networks_list">No networks found.</string>
332 <!-- Available networks screen, setting option name -->
333 <string name="search_networks">Search networks</string>
334 <!-- Available networks screen, toast when an error is encountered when searching for networks -->
335 <string name="network_query_error">Error while searching for networks.</string>
336 <!-- Available networks screen, toast when registering on a specific network -->
337 <string name="register_on_network">Registering on <xliff:g id="network">%s</xliff:g>\u2026</string>
338 <!-- Available networks screen, toast when SIM card isn't allowed on a network -->
339 <string name="not_allowed">Your SIM card doesn\'t allow a connection to this network.</string>
340 <!-- Available networks screen, toast when unable to connect to a network temporarily -->
341 <string name="connect_later">Can\'t connect to this network right now. Try again later.</string>
342 <!-- Available networks screen, toast when registered on a specific network -->
343 <string name="registration_done">Registered on network.</string>
344 <!-- Mobile network settings screen setting option summary text -->
345 <string name="sum_carrier_select">Choose a network operator</string>
346 <!-- Available networks screen, setting summary text -->
347 <string name="sum_search_networks">Search for all available networks</string>
348 <!-- Available networks screen, setting option name -->
349 <string name="select_automatically">Choose automatically</string>
350 <!-- Available networks screen, setting summary text -->
351 <string name="sum_select_automatically">Automatically choose preferred network</string>
352 <string name="register_automatically">Automatic registration\u2026</string>
Sungmin Choib0449b32013-10-14 17:22:38 -0700353 <string name="preferred_network_mode_title">Preferred network type</string>
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700354 <string name="preferred_network_mode_summary">Change the network operating mode</string>
Sungmin Choib0449b32013-10-14 17:22:38 -0700355 <string name="preferred_network_mode_dialogtitle">Preferred network type</string>
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700356 <!-- Mobile network settings, summary for preferred network mode WCDMA preferred[CHAR LIMIT=100] -->
357 <string name="preferred_network_mode_wcdma_perf_summary">Preferred network mode: WCDMA preferred</string>
358 <!-- Mobile network settings, summary for preferred network mode GSM [CHAR LIMIT=100] -->
359 <string name="preferred_network_mode_gsm_only_summary">Preferred network mode: GSM only</string>
360 <!-- Mobile network settings, summary for preferred network mode WCDMA only [CHAR LIMIT=100] -->
361 <string name="preferred_network_mode_wcdma_only_summary">Preferred network mode: WCDMA only</string>
362 <!-- Mobile network settings, summary for preferred network mode GSM / UMTS [CHAR LIMIT=100] -->
363 <string name="preferred_network_mode_gsm_wcdma_summary">Preferred network mode: GSM / WCDMA</string>
364 <!-- Mobile network settings, summary for preferred network mode CDMA [CHAR LIMIT=100] -->
365 <string name="preferred_network_mode_cdma_summary">Preferred network mode: CDMA</string>
366 <!-- Mobile network settings, summary for preferred network mode CDMA / EvDo [CHAR LIMIT=100] -->
367 <string name="preferred_network_mode_cdma_evdo_summary">Preferred network mode: CDMA / EvDo</string>
368 <!-- Mobile network settings, summary for preferred network mode CDMA only [CHAR LIMIT=100] -->
369 <string name="preferred_network_mode_cdma_only_summary">Preferred network mode: CDMA only</string>
370 <!-- Mobile network settings, summary for preferred network mode EvDo only [CHAR LIMIT=100] -->
371 <string name="preferred_network_mode_evdo_only_summary">Preferred network mode: EvDo only</string>
372 <!-- Mobile network settings, summary for preferred network mode CDMA/EvDo/GSM/WCDMA[CHAR LIMIT=100] -->
373 <string name="preferred_network_mode_cdma_evdo_gsm_wcdma_summary">Preferred network mode: CDMA/EvDo/GSM/WCDMA</string>
374 <!-- Mobile network settings, summary for preferred network mode LTE [CHAR LIMIT=100] -->
375 <string name="preferred_network_mode_lte_summary">Preferred network mode: LTE </string>
376 <!-- Mobile network settings, summary for preferred network mode GSM/WCDMA/LTE [CHAR LIMIT=100] -->
377 <string name="preferred_network_mode_lte_gsm_wcdma_summary">Preferred network mode: GSM/WCDMA/LTE</string>
378 <!-- Mobile network settings, summary for preferred network mode CDMA+LTE/EVDO[CHAR LIMIT=100] -->
379 <string name="preferred_network_mode_lte_cdma_evdo_summary">Preferred network mode: CDMA+LTE/EVDO</string>
380 <!-- Mobile network settings, summary for preferred network mode Global[CHAR LIMIT=100] -->
381 <string name="preferred_network_mode_global_summary">Preferred network mode: Global</string>
382 <!-- Mobile network settings, summary for preferred network mode LTE / WCDMA[CHAR LIMIT=100] -->
383 <string name="preferred_network_mode_lte_wcdma_summary">Preferred network mode: LTE / WCDMA</string>
384
385
386 <string-array name="preferred_network_mode_choices">
387 <item>LTE / WCDMA</item>
388 <item>LTE</item>
389 <item>Global</item>
390 <item>GSM/WCDMA/LTE</item>
391 <item>CDMA + LTE/EvDo</item>
392 <item>CDMA/EvDo/GSM/WCDMA</item>
393 <item>EvDo only</item>
394 <item>CDMA w/o EvDo</item>
395 <item>CDMA/EvDo auto</item>
396 <item>GSM/WCDMA auto</item>
397 <item>WCDMA only</item>
398 <item>GSM only</item>
399 <item>GSM/WCDMA preferred</item>
400 </string-array>
401 <string-array name="preferred_network_mode_values" translatable="false">
402 <item>"12"</item>
403 <item>"11"</item>
404 <item>"10"</item>
405 <item>"9"</item>
406 <item>"8"</item>
407 <item>"7"</item>
408 <item>"6"</item>
409 <item>"5"</item>
410 <item>"4"</item>
411 <item>"3"</item>
412 <item>"2"</item>
413 <item>"1"</item>
414 <item>"0"</item>
415 </string-array>
PauloftheWest5f907c32014-07-25 07:10:44 -0700416 <!-- Cellular network 4G title [CHAR LIMIT=30] -->
417 <string name="enhanced_4g_lte_mode_title">Enhanced 4G LTE Mode</string>
418 <!-- Cellular network 4G summary [CHAR LIMIT=80] -->
419 <string name="enhanced_4g_lte_mode_summary">Use LTE services to improve voice and other communications (recommended)</string>
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700420 <!-- Mobile network settings screen, data enabling checkbox name -->
421 <string name="data_enabled">Data enabled</string>
PauloftheWestf663e582014-07-14 15:55:18 -0700422 <!-- Mobile network settings screen, setting summary text when check box is not selected (explains what selecting it would do) [CHAR LIMITS=40] -->
423 <string name="data_enable_summary">Allow data usage</string>
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700424 <!-- Mobile network settings screen, setting check box name -->
425 <string name="roaming">Data roaming</string>
426 <!-- Mobile network settings screen, setting summary text when check box is selected -->
427 <string name="roaming_enable">Connect to data services when roaming</string>
428 <!-- Mobile network settings screen, setting summary text when check box is clear -->
429 <string name="roaming_disable">Connect to data services when roaming</string>
430 <!-- Mobile network settings UI: notification message shown when you
431 lose data connectivity because you're roaming and you have the
432 "data roaming" feature turned off. -->
433 <string name="roaming_reenable_message">You\'ve lost data connectivity because you left your home network with data roaming turned off.</string>
434 <!-- Mobile network settings screen, dialog message when user selects the Data roaming check box -->
435 <string name="roaming_warning">Allow data roaming? You may incur significant roaming charges!</string>
Etan Cohen37abbab2014-03-07 16:57:03 -0800436
437 <!-- USSD aggregation dialog box: separator strings between messages (new-lines will be added before and after) -->
438 <string name="ussd_dialog_sep" translatable="false">----------</string>
439
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700440 <string name="gsm_umts_options">GSM/UMTS Options</string>
441 <string name="cdma_options">CDMA Options</string>
442
443 <!-- Screen option on the mobile network settings to go into data usage settings -->
444 <string name="throttle_data_usage">Data usage</string>
445 <!-- Data usage settings screen option for checking the current usage -->
446 <string name="throttle_current_usage">Data used in current period</string>
447 <!-- Data usage settings screen option for time frame-->
448 <string name="throttle_time_frame">Data use period</string>
449 <!-- Data usage settings screen option for throttling rate-->
450 <string name="throttle_rate">Data rate policy</string>
451 <!-- Data usage settings screen option for accessing the carrier website-->
452 <string name="throttle_help">Learn more</string>
453
454 <string name="throttle_status_subtext"><xliff:g id="used">%1$s</xliff:g> (<xliff:g id="used">%2$d</xliff:g>\u066A) of <xliff:g id="used">%3$s</xliff:g> period maximum\nNext period starts in <xliff:g id="used">%4$d</xliff:g> days (<xliff:g id="used">%5$s</xliff:g>)</string>
455
456 <string name="throttle_data_usage_subtext"><xliff:g id="used">%1$s</xliff:g> (<xliff:g id="used">%2$d</xliff:g>\u066A) of <xliff:g id="used">%3$s</xliff:g> period maximum</string>
457
458 <string name="throttle_data_rate_reduced_subtext"><xliff:g id="used">%1$s</xliff:g> maximum exceeded\nData rate reduced to <xliff:g id="used">%2$d</xliff:g> Kb/s</string>
459
460 <string name="throttle_time_frame_subtext"><xliff:g id="used">%1$d</xliff:g>\u066A of cycle elapsed\nNext period starts in <xliff:g id="used">%2$d</xliff:g> days (<xliff:g id="used">%3$s</xliff:g>)</string>
461
462 <string name="throttle_rate_subtext">Data rate reduced to <xliff:g id="used">%1$d</xliff:g> Kb/s if data use limit is exceeded</string>
463
PauloftheWest1bb48362014-07-14 07:56:30 -0700464 <string name="throttle_help_subtext">More information about your carrier\'s cellular network data use policy</string>
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700465
466 <string name="cell_broadcast_sms">Cell Broadcast SMS</string>
467
468 <string name="enable_disable_cell_bc_sms">Cell Broadcast SMS</string>
469 <string name="cell_bc_sms_enable">Cell Broadcast SMS enabled</string>
470 <string name="cell_bc_sms_disable">Cell Broadcast SMS disabled</string>
471
472 <string name="cb_sms_settings">Cell Broadcast SMS settings</string>
473
474 <string name="enable_disable_emergency_broadcast">Emergency Broadcast</string>
475 <string name="emergency_broadcast_enable">Emergency Broadcast enabled</string>
476 <string name="emergency_broadcast_disable">Emergency Broadcast disabled</string>
477
478 <string name="enable_disable_administrative">Administrative</string>
479 <string name="administrative_enable">Administrative enabled</string>
480 <string name="administrative_disable">Administrative disabled</string>
481
482 <string name="enable_disable_maintenance">Maintenance</string>
483 <string name="maintenance_enable">Maintenance enabled</string>
484 <string name="maintenance_disable">Maintenance disabled</string>
485
486 <string name="general_news_settings">General News</string>
487 <string name="bf_news_settings">Business and Financial News</string>
488 <string name="sports_news_settings">Sports News</string>
489 <string name="entertainment_news_settings">Entertainment News</string>
490
491 <string name="enable_disable_local">Local</string>
492 <string name="local_enable">Local news enabled</string>
493 <string name="local_disable">Local news disabled</string>
494
495 <string name="enable_disable_regional">Regional</string>
496 <string name="regional_enable">Regional news enabled</string>
497 <string name="regional_disable">Regional news disabled</string>
498
499 <string name="enable_disable_national">National</string>
500 <string name="national_enable">National news enabled</string>
501 <string name="national_disable">National news disabled</string>
502
503 <string name="enable_disable_international">International</string>
504 <string name="international_enable">International news enabled</string>
505 <string name="international_disable">International news disabled</string>
506
507 <string name="list_language_title">Language</string>
508 <string name="list_language_summary">Select the news language</string>
509 <string-array name="list_language_entries">
510 <item>English</item>
511 <item>French</item>
512 <item>Spanish</item>
513 <item>Japanese</item>
514 <item>Korean</item>
515 <item>Chinese</item>
516 <item>Hebrew</item>
517 </string-array>
518 <string-array name="list_language_values">
519 <item>"1"</item>
520 <item>"2"</item>
521 <item>"3"</item>
522 <item>"4"</item>
523 <item>"5"</item>
524 <item>"6"</item>
525 <item>"7"</item>
526 </string-array>
527 <string name="list_language_dtitle">Languages</string>
528
529 <string name="enable_disable_local_weather">Local Weather</string>
530 <string name="local_weather_enable">Local Weather enabled</string>
531 <string name="local_weather_disable">Local Weather disabled</string>
532
533 <string name="enable_disable_atr">Area Traffic Reports</string>
534 <string name="atr_enable">Area Traffic Reports enabled</string>
535 <string name="atr_disable">Area Traffic Reports disabled</string>
536
537 <string name="enable_disable_lafs">Local Airport Flight Schedules</string>
538 <string name="lafs_enable">Local Airport Flight Schedules enabled</string>
539 <string name="lafs_disable">Local Airport Flight Schedules disabled</string>
540
541 <string name="enable_disable_restaurants">Restaurants</string>
542 <string name="restaurants_enable">Restaurants enabled</string>
543 <string name="restaurants_disable">Restaurants disabled</string>
544
545 <string name="enable_disable_lodgings">Lodgings</string>
546 <string name="lodgings_enable">Lodgings enabled</string>
547 <string name="lodgings_disable">Lodgings disabled</string>
548
549 <string name="enable_disable_retail_directory">Retail Directory</string>
550 <string name="retail_directory_enable">Retail Directory enabled</string>
551 <string name="retail_directory_disable">Retail Directory disabled</string>
552
553 <string name="enable_disable_advertisements">Advertisements</string>
554 <string name="advertisements_enable">Advertisements enabled</string>
555 <string name="advertisements_disable">Advertisements disabled</string>
556
557 <string name="enable_disable_stock_quotes">Stock Quotes</string>
558 <string name="stock_quotes_enable">Stock Quotes enabled</string>
559 <string name="stock_quotes_disable">Stock Quotes disabled</string>
560
561 <string name="enable_disable_eo">Employment Opportunities</string>
562 <string name="eo_enable">Employment Opportunities enabled</string>
563 <string name="eo_disable">Employment Opportunities disabled</string>
564
565 <string name="enable_disable_mhh">Medical, Health, and Hospital</string>
566 <string name="mhh_enable">Medical, Health, and Hospital enabled</string>
567 <string name="mhh_disable">Medical, Health, and Hospital disabled</string>
568
569 <string name="enable_disable_technology_news">Technology News</string>
570 <string name="technology_news_enable">Technology News enabled</string>
571 <string name="technology_news_disable">Technology News disabled</string>
572
573 <string name="enable_disable_multi_category">Multi-category</string>
574 <string name="multi_category_enable">Multi-category enabled</string>
575 <string name="multi_category_disable">Multi-category disabled</string>
576
Sungmin Choib0449b32013-10-14 17:22:38 -0700577 <string name="network_lte">LTE (recommended)</string>
578 <string name="network_4G">4G (recommended)</string>
579 <string name="network_3G" translatable="false">3G</string>
580 <string name="network_2G" translatable="false">2G</string>
581 <string name="network_1x" translatable="false">1x</string>
582 <string name="network_global">Global</string>
583
Sungmin Choi21270372013-09-17 17:19:51 -0700584 <string-array name="enabled_networks_except_gsm_choices" translatable="false">
Sungmin Choib0449b32013-10-14 17:22:38 -0700585 <item>@string/network_lte</item>
586 <item>@string/network_3G</item>
Sungmin Choi21270372013-09-17 17:19:51 -0700587 </string-array>
588 <string-array name="enabled_networks_except_gsm_4g_choices" translatable="false">
Sungmin Choib0449b32013-10-14 17:22:38 -0700589 <item>@string/network_4G</item>
590 <item>@string/network_3G</item>
Sungmin Choi21270372013-09-17 17:19:51 -0700591 </string-array>
592 <string-array name="enabled_networks_except_gsm_values" translatable="false">
593 <item>"9"</item>
594 <item>"0"</item>
595 </string-array>
596
597 <string-array name="enabled_networks_except_lte_choices" translatable="false">
Sungmin Choib0449b32013-10-14 17:22:38 -0700598 <item>@string/network_3G</item>
599 <item>@string/network_2G</item>
Sungmin Choi21270372013-09-17 17:19:51 -0700600 </string-array>
601 <string-array name="enabled_networks_except_lte_values" translatable="false">
602 <item>"0"</item>
603 <item>"1"</item>
604 </string-array>
605
606 <string-array name="enabled_networks_except_gsm_lte_choices" translatable="false">
Sungmin Choib0449b32013-10-14 17:22:38 -0700607 <item>@string/network_3G</item>
Sungmin Choi21270372013-09-17 17:19:51 -0700608 </string-array>
609 <string-array name="enabled_networks_except_gsm_lte_values" translatable="false">
610 <item>"0"</item>
611 </string-array>
612
613 <string-array name="enabled_networks_choices" translatable="false">
Sungmin Choib0449b32013-10-14 17:22:38 -0700614 <item>@string/network_lte</item>
615 <item>@string/network_3G</item>
616 <item>@string/network_2G</item>
Sungmin Choi21270372013-09-17 17:19:51 -0700617 </string-array>
618 <string-array name="enabled_networks_4g_choices" translatable="false">
Sungmin Choib0449b32013-10-14 17:22:38 -0700619 <item>@string/network_4G</item>
620 <item>@string/network_3G</item>
621 <item>@string/network_2G</item>
Sungmin Choi21270372013-09-17 17:19:51 -0700622 </string-array>
623 <string-array name="enabled_networks_values" translatable="false">
624 <item>"9"</item>
625 <item>"0"</item>
626 <item>"1"</item>
627 </string-array>
628
629 <string-array name="enabled_networks_cdma_choices" translatable="false">
Sungmin Choib0449b32013-10-14 17:22:38 -0700630 <item>@string/network_lte</item>
631 <item>@string/network_3G</item>
632 <item>@string/network_1x</item>
633 <item>@string/network_global</item>
Sungmin Choi21270372013-09-17 17:19:51 -0700634 </string-array>
635 <string-array name="enabled_networks_cdma_values" translatable="false">
636 <item>"8"</item>
637 <item>"4"</item>
638 <item>"5"</item>
639 <item>"10"</item>
640 </string-array>
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700641
642 <!-- CDMA System select strings -->
643 <!-- Mobile network settings screen, setting option name -->
644 <string name="cdma_system_select_title">System select</string>
645 <!-- Mobile network settings screen, setting summary text -->
646 <string name="cdma_system_select_summary">Change the CDMA roaming mode</string>
647 <!-- System select settings screen title -->
648 <string name="cdma_system_select_dialogtitle">System select</string>
649 <string-array name="cdma_system_select_choices">
650 <!-- System select dialog screen, setting option name -->
651 <item>Home only</item>
652 <!-- Remove the following option "Affiliated Networks" from the option list -->
653 <!-- <item>Affiliated Networks</item> -->
654 <!-- System select dialog screen, setting option name -->
655 <item>Automatic</item>
656 </string-array>
657 <string-array name="cdma_system_select_values" translatable="false">
658 <!-- Do not translate. -->
659 <item>"0"</item>
660 <!-- Remove the following value "1" which corresponds to "Affiliated Networks" above -->
661 <!-- <item>"1"</item> -->
662 <!-- Do not translate. -->
663 <item>"2"</item>
664 </string-array>
665
666 <string name="cdma_subscription_title">CDMA subscription</string>
667 <string name="cdma_subscription_summary">Change between RUIM/SIM and NV</string>
668 <string name="cdma_subscription_dialogtitle">subscription</string>
669 <string-array name="cdma_subscription_choices">
670 <item>RUIM/SIM</item>
671 <item>NV</item>
672 </string-array>
673 <string-array name="cdma_subscription_values">
674 <item>"0"</item>
675 <item>"1"</item>
676 </string-array>
677 <!-- Preference title with which users can activate CDMA network [CHAR LIMIT=30] -->
678 <string name="cdma_activate_device">Activate device</string>
679 <!-- Preference title for launching an account manager page for prepaid LTE [CHAR LIMIT=30] -->
680 <string name="cdma_lte_data_service">Set up data service</string>
681
Sungmin Choif45d6912013-10-14 15:34:27 -0700682 <!-- A menu item in "Mobile network settings" that allows the user to update the phone
683 with mobile operator specific settings. [CHAR LIMIT=25] -->
684 <string name="carrier_settings_title">Carrier settings</string>
685
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700686 <!-- FDN settings strings -->
687 <!-- Call settings screen, setting option name -->
688 <string name="fdn">Fixed Dialing Numbers</string>
689 <!-- Call settings screen, button label that takes you to
690 the Fixed Dialing Number management screen -->
691 <string name="manage_fdn_list">FDN list</string>
692 <!-- Call settings screen, preference item label -->
693 <string name="fdn_activation">FDN activation</string>
694 <!-- Call settings setting option name when FDN is enabled -->
695 <string name="fdn_enabled">Fixed Dialing Numbers are enabled</string>
696 <!-- Call settings setting option name when FDN is disabled-->
697 <string name="fdn_disabled">Fixed Dialing Numbers are disabled</string>
698 <!-- Call settings screen, setting option name -->
699 <string name="enable_fdn">Enable FDN</string>
700 <!-- Call settings screen, setting option name -->
701 <string name="disable_fdn">Disable FDN</string>
702 <!-- Call settings screen, setting option name -->
703 <string name="change_pin2">Change PIN2</string>
704 <!-- Call settings screen, setting option name when FDN is enabled -->
705 <string name="enable_fdn_ok">Disable FDN</string>
706 <!-- Call settings screen, setting option name when FDN is disabled -->
707 <string name="disable_fdn_ok">Enable FDN</string>
708 <!-- Call settings screen, setting summary text -->
709 <string name="sum_fdn">Manage Fixed Dialing Numbers</string>
710 <!-- Call settings, FDN screen, setting option name -->
711 <string name="sum_fdn_change_pin">Change PIN for FDN access</string>
712 <!-- Call settings, FDN screen, setting option name -->
713 <string name="sum_fdn_manage_list">Manage phone number list</string>
714 <!-- Voice privacy on CDMA is an added layer of voice encryption. Theoretically, it would be harder to break in to a phone call with this feature enabled. -->
715 <string name="voice_privacy">Voice privacy</string>
716 <string name="voice_privacy_summary">Enable enhanced privacy mode</string>
717 <string name="tty_mode_option_title">TTY mode</string>
718 <string name="tty_mode_option_summary">Set TTY mode</string>
719 <string name="auto_retry_mode_title">Auto-retry</string>
720 <string name="auto_retry_mode_summary">Enable Auto-retry mode</string>
721
722 <!-- FDN list screen: menu item label -->
723 <string name="menu_add">Add contact</string>
724 <!-- FDN list screen: menu item label -->
725 <string name="menu_edit">Edit contact</string>
726 <!-- FDN list screen: menu item label -->
727 <string name="menu_delete">Delete contact</string>
728
729 <!-- FDN related strings -->
730 <!-- Label for PIN2 entry screen -->
731 <string name="get_pin2">Type PIN2</string>
732 <!-- "Edit FDN Contact" screen: Label for the "name" text field -->
733 <string name="name">Name</string>
734 <!-- "Edit FDN Contact" screen: Label for the "number" text field -->
735 <string name="number">Number</string>
736 <!-- "Edit FDN Contact" screen: Button label for "save" action -->
737 <string name="save">Save</string>
738 <!-- Title of "Edit FDN Contact" screen for a new contact -->
739 <string name="add_fdn_contact">Add fixed dialing number</string>
740 <!-- "Edit FDN Contact" screen: status message displayed in a popup (toast) -->
741 <string name="adding_fdn_contact">Adding fixed dialing number\u2026</string>
742 <!-- "Edit FDN Contact" screen: status message displayed in a popup (toast) -->
743 <string name="fdn_contact_added">Fixed dialing number added.</string>
744 <!-- Title of "Edit FDN Contact" screen when editing an already-existing contact -->
745 <string name="edit_fdn_contact">Edit fixed dialing number</string>
746 <!-- "Edit FDN Contact" screen: status message displayed in a popup (toast) -->
747 <string name="updating_fdn_contact">Updating fixed dialing number\u2026</string>
748 <!-- "Edit FDN Contact" screen: status message displayed in a popup (toast) -->
749 <string name="fdn_contact_updated">Fixed dialing number updated.</string>
750 <!-- Title of "Delete FDN Contact" screen -->
751 <string name="delete_fdn_contact">Delete fixed dialing number</string>
752 <!-- "Delete FDN Contact" screen: status message displayed in a popup (toast) -->
753 <string name="deleting_fdn_contact">Deleting fixed dialing number\u2026</string>
754 <!-- "Delete FDN Contact" screen: status message displayed in a popup (toast) -->
755 <string name="fdn_contact_deleted">Fixed dialing number deleted.</string>
756 <!-- FDN settings: error message displayed in a popup (toast) -->
757 <string name="pin2_invalid">FDN wasn\'t updated because you typed an incorrect PIN.</string>
758 <!-- FDN settings: error message displayed in a popup (toast) -->
759 <string name="fdn_invalid_number">FDN wasn\'t updated because the number can\'t exceed 20 digits.</string>
760 <!-- FDN settings: error message displayed in a popup (toast), when the entered
761 FDN number was inappropriate, OR, PIN2 the user entered was incorrect.
762 Because of API restriction, there's no way to determine which is the exact
763 cause of the failure.
764 [CHAR LIMIT=NONE] -->
765 <string name="pin2_or_fdn_invalid">FDN wasn\'t updated. The PIN2 was incorrect, or the phone number was rejected.</string>
Wink Saville9de0f752013-10-22 19:04:03 -0700766 <!-- FDN settings: error message displayed in a popup (toast) -->
767 <string name="fdn_failed">FDN operation failed.</string>
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700768
769 <!-- ADN related strings -->
770 <!-- Placeholder text displayed while loading the list of SIM contacts -->
771 <string name="simContacts_emptyLoading">Reading from SIM card\u2026</string>
772 <!-- Call settings, string that appears on FDN contact list when there are no contacts on the SIM. -->
773 <string name="simContacts_empty">No contacts on your SIM card.</string>
774 <!-- Call settings: title of the dialog that lets you select contacts from the SIM. -->
775 <string name="simContacts_title">Select contacts to import</string>
776 <!-- Appears when user tries to import contacts in SIM during Airplane mode
777 [CHAR LIMIT=NONE] -->
778 <string name="simContacts_airplaneMode">To import contacts from the SIM card, first turn off Airplane mode.</string>
779
780 <!-- SIM PIN strings -->
781 <!-- Title of "Enable/disable SIM PIN" screen -->
782 <string name="enable_pin">Enable/disable SIM PIN</string>
783 <!-- Title of "Change SIM PIN" screen -->
784 <string name="change_pin">Change SIM PIN</string>
785 <!-- SIM PIN screen: label for PIN entry widget -->
786 <string name="enter_pin_text">SIM PIN:</string>
787 <!-- SIM PIN screen: label for PIN entry widget -->
788 <string name="oldPinLabel">Old PIN</string>
789 <!-- SIM PIN screen: label for PIN entry widget -->
790 <string name="newPinLabel">New PIN</string>
791 <!-- SIM PIN screen: label for PIN entry widget -->
792 <string name="confirmPinLabel">Confirm new PIN</string>
793 <!-- SIM PIN screen: error message -->
794 <string name="badPin">The old PIN you typed isn\'t correct. Try again.</string>
795 <!-- SIM PIN screen: error message -->
796 <string name="mismatchPin">The PINs you typed don\'t match. Try again.</string>
797 <!-- SIM PIN screen: error message when PIN is too short or too long -->
798 <string name="invalidPin">Type a PIN that is 4 to 8 numbers.</string>
799 <!-- Title of "Disable SIM PIN" screen -->
800 <string name="disable_sim_pin">Disable SIM PIN</string>
801 <!-- Title of "Enable SIM PIN" screen -->
802 <string name="enable_sim_pin">Enable SIM PIN</string>
803 <!-- SIM PIN screen: progress message displayed while enabling -->
804 <string name="enable_in_progress">Please wait\u2026</string>
805 <!-- SIM PIN screen: status message displayed in a popup (toast) -->
806 <string name="enable_pin_ok">SIM PIN enabled.</string>
807 <!-- SIM PIN screen: status message displayed in a popup (toast) -->
808 <string name="disable_pin_ok">SIM PIN disabled.</string>
809 <!-- SIM PIN screen: error message displayed in a popup (toast) -->
810 <string name="pin_failed">The PIN you typed was incorrect.</string>
811 <!-- SIM PIN screen: status message displayed in a popup (toast) -->
812 <string name="pin_changed">SIM PIN changed successfully.</string>
813 <!-- SIM PIN screen: error message displayed in a dialog -->
Wink Saville9de0f752013-10-22 19:04:03 -0700814 <string name="puk_requested">Password incorrect, PIN Blocked! PUK requested.</string>
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700815
816 <!-- SIM PIN2 strings -->
817 <!-- SIM PIN2 screen: label for PIN entry widget -->
818 <string name="enter_pin2_text">PIN2</string>
819 <!-- SIM PIN2 screen: label for PIN entry widget -->
820 <string name="oldPin2Label">Old PIN2</string>
821 <!-- SIM PIN2 screen: label for PIN entry widget -->
822 <string name="newPin2Label">New PIN2</string>
823 <!-- SIM PIN2 screen: label for PIN entry widget -->
824 <string name="confirmPin2Label">Confirm new PIN2</string>
825 <!-- SIM PIN2 screen: error message -->
826 <string name="badPuk2">The PUK2 you typed isn\'t correct. Try again. </string>
827 <!-- SIM PIN2 screen: error message -->
828 <string name="badPin2">The old PIN2 you typed isn\'t correct. Try again.</string>
829 <!-- SIM PIN2 screen: error message -->
830 <string name="mismatchPin2">The PIN2s you typed don\'t match. Try again.</string>
831 <!-- SIM PIN2 screen: error message -->
832 <string name="invalidPin2">Type a PIN2 that is 4 to 8 numbers.</string>
833 <!-- SIM PIN2 screen: error message -->
834 <string name="invalidPuk2">Type a PUK2 that is 8 numbers.</string>
835 <!-- SIM PIN2 screen: status message displayed in a popup (toast) -->
836 <string name="pin2_changed">PIN2 changed successfully.</string>
837 <!-- SIM PIN2 screen: label for PUK2 entry widget -->
838 <string name="label_puk2_code">Type PUK2 code</string>
839 <!-- SIM PIN2 screen: error message displayed in a dialog -->
Wink Saville9de0f752013-10-22 19:04:03 -0700840 <string name="fdn_enable_puk2_requested">Password incorrect, PIN2 Blocked. Please change PIN2 and retry!</string>
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700841 <!-- SIM PIN2 screen: error message displayed in a dialog -->
842 <string name="puk2_requested">Password incorrect, SIM is locked. PUK2 requested.</string>
Wink Saville9de0f752013-10-22 19:04:03 -0700843 <!-- SIM PIN2 screen: error message -->
844 <string name="puk2_blocked">PUK2 is permanently blocked.</string>
845 <!-- SIM PIN2 screen: error message -->
846 <string name="pin2_attempts">\nThere are <xliff:g id="number">%d</xliff:g> remaining attempts.</string>
847 <!-- SIM PIN screen: status message displayed in a popup (toast) -->
848 <string name="pin2_unblocked">PIN2 Unblocked!</string>
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700849
850 <!-- SIM PIN screen: button label -->
851 <string name="doneButton">Done</string>
852
853 <!-- In-call screen: status label for a conference call -->
854 <string name="caller_manage_header">Conference call <xliff:g id="conf_call_time">%s</xliff:g></string>
855
856 <!-- Used in FakePhoneActivity test code. DO NOT TRANSLATE. -->
857 <string name="fake_phone_activity_phoneNumber_text" translatable="false">(650) 555-1234</string>
858 <!-- Used in FakePhoneActivity test code. DO NOT TRANSLATE. -->
859 <string name="fake_phone_activity_infoText_text" translatable="false">Incoming phone number</string>
860 <!-- Used in FakePhoneActivity test code. DO NOT TRANSLATE. -->
861 <string name="fake_phone_activity_placeCall_text" translatable="false">Fake Incoming Call</string>
862
863 <!-- Call settings screen, Set voicemail dialog title -->
864 <string name="voicemail_settings_number_label">Voicemail number</string>
865
866 <!-- Card titles -->
867 <!-- In-call screen: status label for a call in the "dialing" state -->
868 <string name="card_title_dialing">Dialing</string>
869 <!-- In-call screen: status label for a re-dialing call -->
870 <string name="card_title_redialing">Retrying</string>
871 <!-- In-call screen: status label for a conference call -->
872 <string name="card_title_conf_call">Conference call</string>
873 <!-- In-call screen: status label for an incoming call -->
874 <string name="card_title_incoming_call">Incoming call</string>
875 <!-- In-call screen: status label displayed briefly after a call ends -->
876 <string name="card_title_call_ended">Call ended</string>
877 <!-- In-call screen: status label for call that's on hold -->
878 <string name="card_title_on_hold">On hold</string>
879 <!-- In-call screen: status label for a call that's in the process of hanging up -->
880 <string name="card_title_hanging_up">Hanging up</string>
881 <!-- In-call screen: status label for a call that's in CDMA flash mode -->
882 <string name="card_title_in_call">In call</string>
883 <!-- In-call screen: special status label that shows your own phone
884 number during emergency callback mode (ECM) [CHAR LIMIT=30] -->
885 <string name="card_title_my_phone_number">My number is <xliff:g id="my_phone_number">%s</xliff:g></string>
886
887 <!-- Notification strings -->
888 <!-- The "label" of the in-call Notification for a dialing call, used
889 as the format string for a Chronometer widget. [CHAR LIMIT=60] -->
890 <string name="notification_dialing">Dialing</string>
891 <!-- Missed call notification label, used when there's exactly one missed call -->
892 <string name="notification_missedCallTitle">Missed call</string>
893 <!-- Missed call notification label, used when there are two or more missed calls -->
894 <string name="notification_missedCallsTitle">Missed calls</string>
895 <!-- Missed call notification message used when there are multiple missed calls -->
896 <string name="notification_missedCallsMsg"><xliff:g id="num_missed_calls">%s</xliff:g> missed calls</string>
897 <!-- Missed call notification message used for a single missed call, including
898 the caller-id info from the missed call -->
899 <string name="notification_missedCallTicker">Missed call from <xliff:g id="missed_call_from">%s</xliff:g></string>
900 <!-- The "label" of the in-call Notification for an ongoing call, used
901 as the format string for a Chronometer widget. [CHAR LIMIT=60] -->
902 <string name="notification_ongoing_call">Ongoing call</string>
903 <!-- The "label" of the in-call Notification for a call that's on hold -->
904 <string name="notification_on_hold">On hold</string>
905 <!-- The "label" of the in-call Notification for an incoming ringing call -->
906 <string name="notification_incoming_call">Incoming call</string>
907 <!-- Label for the "Voicemail" notification item, when expanded. -->
908 <string name="notification_voicemail_title">New voicemail</string>
909 <!-- Label for the expanded "Voicemail" notification item,
910 including a count of messages. -->
911 <string name="notification_voicemail_title_count">New voicemail (<xliff:g id="count">%d</xliff:g>)</string>
912 <!-- Message displayed in the "Voicemail" notification item, allowing the user
913 to dial the indicated number. -->
914 <string name="notification_voicemail_text_format">Dial <xliff:g id="voicemail_number">%s</xliff:g></string>
915 <!-- Message displayed in the "Voicemail" notification item,
916 indicating that there's no voicemail number available -->
917 <string name="notification_voicemail_no_vm_number">Voicemail number unknown</string>
918 <!-- Label for the "No service" notification item, when expanded. -->
919 <string name="notification_network_selection_title">No service</string>
920 <!-- Label for the expanded "No service" notification item, including the
921 operator name set by user -->
922 <string name="notification_network_selection_text">Selected network (<xliff:g id="operator_name">%s</xliff:g>) unavailable</string>
923 <!-- Message for "end call" Action.
924 It is displayed in the "Ongoing call" notification, which is shown
925 when the user is outside the in-call screen while the phone call is still
926 active. [CHAR LIMIT=40] -->
927 <string name="notification_action_end_call">Hang up</string>
928 <!-- Message for "call back" Action, which is displayed in the missed call notificaiton.
929 The user will be able to call back to the person or the phone number.
930 [CHAR LIMIT=60] -->
931 <string name="notification_missedCall_call_back">Call back</string>
932 <!-- Message for "reply via sms" action, which is displayed in the missed call notification.
933 The user will be able to send text messages using the phone number.
934 [CHAR LIMIT=60] -->
935 <string name="notification_missedCall_message">Message</string>
936
937 <!-- In-call screen: call failure message displayed in an error dialog -->
938 <string name="incall_error_power_off">To place a call, first turn off Airplane mode.</string>
939 <!-- In-call screen: call failure message displayed in an error dialog.
940 This string is currently unused (see comments in InCallScreen.java.) -->
941 <string name="incall_error_emergency_only">Not registered on network.</string>
942 <!-- In-call screen: call failure message displayed in an error dialog -->
PauloftheWest1bb48362014-07-14 07:56:30 -0700943 <string name="incall_error_out_of_service">Cellular network not available.</string>
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700944 <!-- In-call screen: call failure message displayed in an error dialog -->
945 <string name="incall_error_no_phone_number_supplied">Call not sent, no valid number entered.</string>
946 <!-- In-call screen: call failure message displayed in an error dialog -->
947 <string name="incall_error_call_failed">Call not sent.</string>
948 <!-- In-call screen: status message displayed in a dialog when starting an MMI -->
949 <string name="incall_status_dialed_mmi">Starting MMI sequence\u2026</string>
950 <!-- In-call screen: message displayed in an error dialog -->
951 <string name="incall_error_supp_service_unknown">Unsupported service.</string>
952 <!-- In-call screen: message displayed in an error dialog -->
953 <string name="incall_error_supp_service_switch">Unable to switch calls.</string>
954 <!-- In-call screen: message displayed in an error dialog -->
955 <string name="incall_error_supp_service_separate">Unable to separate call.</string>
956 <!-- In-call screen: message displayed in an error dialog -->
957 <string name="incall_error_supp_service_transfer">Unable to transfer call.</string>
958 <!-- In-call screen: message displayed in an error dialog -->
959 <string name="incall_error_supp_service_conference">Unable to conference calls.</string>
960 <!-- In-call screen: message displayed in an error dialog -->
961 <string name="incall_error_supp_service_reject">Unable to reject call.</string>
962 <!-- In-call screen: message displayed in an error dialog -->
963 <string name="incall_error_supp_service_hangup">Unable to release call(s).</string>
964
Santos Cordon7d4ddf62013-07-10 11:58:08 -0700965 <!-- Dialog title for the "radio enable" UI for emergency calls -->
966 <string name="emergency_enable_radio_dialog_title">Emergency call</string>
967 <!-- Status message for the "radio enable" UI for emergency calls -->
968 <string name="emergency_enable_radio_dialog_message">Turning on radio\u2026</string>
969 <!-- Status message for the "radio enable" UI for emergency calls -->
970 <string name="emergency_enable_radio_dialog_retry">Out of service area, retrying\u2026</string>
971
972 <!-- Dialer text on Emergency Dialer -->
973 <!-- Emergency dialer: message displayed in an error dialog -->
974 <string name="dial_emergency_error">Call not sent. <xliff:g id="non_emergency_number">%s</xliff:g> is not an emergency number!</string>
975 <!-- Emergency dialer: message displayed in an error dialog -->
976 <string name="dial_emergency_empty_error">Call not sent. Dial an emergency number!</string>
977
978 <!-- Displayed in the text entry box in the dialer when in landscape mode to guide the user
979 to dial using the physical keyboard -->
980 <string name="dialerKeyboardHintText">Use keyboard to dial</string>
981
982 <!-- Text for the onscreen "Hold" button -->
983 <string name="onscreenHoldText">Hold</string>
984 <!-- Text for the onscreen "End call" button -->
985 <string name="onscreenEndCallText">End</string>
986 <!-- Text for the onscreen "Show Dialpad" button -->
987 <string name="onscreenShowDialpadText">Dialpad</string>
988 <!-- Text for the onscreen "Mute" button -->
989 <string name="onscreenMuteText">Mute</string>
990 <!-- Text for the onscreen "Add call" button -->
991 <string name="onscreenAddCallText">Add call</string>
992 <!-- Text for the onscreen "Merge calls" button -->
993 <string name="onscreenMergeCallsText">Merge calls</string>
994 <!-- Text for the onscreen "Swap calls" button -->
995 <string name="onscreenSwapCallsText">Swap</string>
996 <!-- Text for the onscreen "Manage calls" button -->
997 <string name="onscreenManageCallsText">Manage calls</string>
998 <!-- Text for the onscreen "Manage conference" button [CHAR LIMIT=20] -->
999 <string name="onscreenManageConferenceText">Manage conference</string>
1000 <!-- Text for the onscreen "Audio" button that lets you switch
1001 between speaker / bluetooth / earpiece [CHAR LIMIT=10] -->
1002 <string name="onscreenAudioText">Audio</string>
1003 <!-- Text for the onscreen "Video call" button used to change a voice call
1004 to a video call. [CHAR LIMIT=10] -->
1005 <string name="onscreenVideoCallText">Video call</string>
1006
1007 <!-- Menu item label in SIM Contacts: Import a single contact entry from the SIM card -->
1008 <string name="importSimEntry">Import</string>
1009 <!-- Menu item label in SIM Contacts: Import all contact entries from the SIM card -->
1010 <string name="importAllSimEntries">Import all</string>
1011 <!-- SIM Contacts: status message displayed while importing card -->
1012 <string name="importingSimContacts">Importing SIM contacts</string>
1013 <!-- Import a single contact entry from contacts to the SIM card -->
1014 <string name="importToFDNfromContacts">Import from contacts</string>
1015
1016 <!-- Hearing aid settings -->
1017 <string name="hac_mode_title">Hearing aids</string>
1018 <string name="hac_mode_summary">Turn on hearing aid compatibility</string>
1019
1020 <!-- Service option entries. -->
1021 <string-array name="tty_mode_entries">
1022 <item>TTY Off</item>
1023 <item>TTY Full</item>
1024 <item>TTY HCO</item>
1025 <item>TTY VCO</item>
1026 </string-array>
1027
1028 <!-- Do not translate. -->
1029 <string-array name="tty_mode_values" translatable="false">
1030 <!-- Do not translate. -->
1031 <item>0</item>
1032 <!-- Do not translate. -->
1033 <item>1</item>
1034 <!-- Do not translate. -->
1035 <item>2</item>
1036 <!-- Do not translate. -->
1037 <item>3</item>
1038 </string-array>
1039
1040 <!-- Dtmf tones settings -->
1041 <!-- Title for the DTMF Tones options displayed in Call Settings -->
1042 <string name="dtmf_tones_title">DTMF tones</string>
1043 <!-- Summary for the DTMF Tones options displayed in Call Settings -->
1044 <string name="dtmf_tones_summary">Set the length of DTMF tones</string>
1045 <!-- Options displayed as part of DTMF Tones in Call Settings -->
1046 <string-array name="dtmf_tone_entries">
1047 <item>Normal</item>
1048 <item>Long</item>
1049 </string-array>
1050 <!-- Do not translate. -->
1051 <string-array name="dtmf_tone_values" translatable="false">
1052 <item>0</item>
1053 <item>1</item>
1054 </string-array>
1055
1056 <!-- Title for the dialog used to display CDMA DisplayInfo -->
1057 <string name="network_message">Network message</string>
1058
1059 <!-- OTA-specific strings -->
1060 <!-- Title shown on OTA screen -->
1061 <string name="ota_title_activate">Activate your phone</string>
1062 <!-- Message displayed on the OTA activation screen. -->
1063 <string name="ota_touch_activate">A special call needs to be made to activate your phone service.
1064 \n\nAfter pressing \u201CActivate\u201D, listen to the instructions provided to activate your phone.</string>
Santos Cordon83570472013-09-06 15:45:10 -07001065 <!-- Title shown during Hands Free Activation -->
1066 <string name="ota_hfa_activation_title">Activating...</string>
1067 <!-- Message shown during the hands free activation screen of the setup wizard. -->
1068 <string name="ota_hfa_activation_dialog_message">The phone is activating your mobile data service.\n\nThis can take up to 5 minutes.</string>
Santos Cordon7d4ddf62013-07-10 11:58:08 -07001069 <!-- Title of skip activation dialog -->
1070 <string name="ota_skip_activation_dialog_title">Skip activation\?</string>
1071 <!-- Message displayed in skip activation dialog -->
1072 <string name="ota_skip_activation_dialog_message">If you skip activation, you can\'t place calls or connect to mobile data networks (though you can connect to Wi-Fi networks). Until you activate your phone, you are asked to activate it each time you turn it on.</string>
1073 <!-- Label shown on dialog button that allows the user to skip activation -->
1074 <string name="ota_skip_activation_dialog_skip_label">Skip</string>
1075
1076 <!-- Button label within the OTA activation screen -->
1077 <string name="ota_activate">Activate</string>
1078 <!-- Title text shown when phone activation is successful -->
1079 <string name="ota_title_activate_success">Phone is activated.</string>
1080 <!-- Title text shown on screen where activation fails -->
1081 <string name="ota_title_problem_with_activation">Problem with activation</string>
1082 <!-- Message displayed on the OTA "listening" screen. This message
1083 needs to be kept at 2 lines or less to be sure that there's
1084 enough room for the dialpad. [CHAR LIMIT=80] -->
1085 <string name="ota_listen">Follow the spoken instructions until you hear that activation is complete.</string>
1086
1087 <!-- Button label within the OTA listen screen -->
1088 <string name="ota_speaker">Speaker</string>
1089 <!-- String to be displayed on OTA listen screen once user has selected the
1090 correct option to begin provisioning -->
1091 <string name="ota_progress">Wait while your phone is being programmed.</string>
1092 <!-- String to display within the OTA Fail Notice dialog -->
1093 <string name="ota_failure">Programming unsuccessful</string>
1094 <!-- String to be displayed on the OTA Fail/Success screen upon successful provisioning -->
1095 <string name="ota_successful">Your phone is now activated. It may take up to 15 minutes for service to start.</string>
1096 <!-- String to be displayed on the OTA Fail/Success screen upon unsuccessful provisioning -->
1097 <string name="ota_unsuccessful">Your phone didn\'t activate.
1098 \nYou may need to find an area with better coverage (near a window, or outside).
1099 \n\nTry again or call customer service for more options.</string>
1100 <!-- String to display within the OTA SPC Fail Notice dialog -->
1101 <string name="ota_spc_failure">EXCESS SPC FAILURES</string>
1102 <!-- Button label in OTA listen screen that cancels activation and goes to the previous screen -->
1103 <string name="ota_call_end">Back</string>
1104 <!-- Button label shown on OTA error screen to allow the user to try again -->
1105 <string name="ota_try_again">Try again</string>
1106 <!-- Button label shown on OTA screens that have a next screen -->
1107 <string name="ota_next">Next</string>
1108
1109 <!-- Emergency Callback Mode (ECM) -->
1110 <string name="ecm_exit_dialog">EcmExitDialog</string>
1111 <!-- ECM: Status bar notification message -->
1112 <string name="phone_entered_ecm_text">Entered Emergency Callback Mode</string>
1113 <!-- ECM: Notification title -->
1114 <string name="phone_in_ecm_notification_title">Emergency Callback Mode</string>
1115 <!-- ECM: Notification body -->
1116 <string name="phone_in_ecm_call_notification_text">Data connection disabled</string>
1117 <plurals name="phone_in_ecm_notification_time">
1118 <!-- number of minutes is one -->
1119 <item quantity="one">No data connection for <xliff:g id="count">%s</xliff:g> minute</item>
1120 <!-- number of minutes is not equal to one -->
1121 <item quantity="other">No data connection for <xliff:g id="count">%s</xliff:g> minutes</item>
1122 </plurals>
1123 <!-- ECM: Dialog box message for exiting from the notifications screen -->
1124 <plurals name="alert_dialog_exit_ecm">
1125 <!-- number of minutes is one -->
1126 <item quantity="one">The phone will be in Emergency Callback mode for <xliff:g id="count">%s</xliff:g> minute. While in this mode no apps using a data connection can be used. Do you want to exit now?</item>
1127 <!-- number of minutes is not equal to one -->
1128 <item quantity="other">The phone will be in Emergency Callback mode for <xliff:g id="count">%s</xliff:g> minutes. While in this mode no applications using a data connection can be used. Do you want to exit now?</item>
1129 </plurals>
1130 <!-- ECM: Dialog box message for exiting from any other app -->
1131 <plurals name="alert_dialog_not_avaialble_in_ecm">
1132 <!-- number of minutes is one -->
1133 <item quantity="one">The selected action isn\'t available while in the Emergency Callback mode. The phone will be in this mode for <xliff:g id="count">%s</xliff:g> minute. Do you want to exit now?</item>
1134 <!-- number of minutes is not equal to one -->
1135 <item quantity="other">The selected action isn\'t available while in the Emergency Callback mode. The phone will be in this mode for <xliff:g id="count">%s</xliff:g> minutes. Do you want to exit now?</item>
1136 </plurals>
1137 <!-- ECM: Dialog box message while in emergency call -->
1138 <string name="alert_dialog_in_ecm_call">The selected action isn\'t available while in an emergency call.</string>
1139 <!-- ECM: Progress text -->
1140 <string name="progress_dialog_exiting_ecm">Exiting Emergency Callback mode</string>
1141 <!-- ECM: ECM exit dialog choice -->
1142 <string name="alert_dialog_yes">Yes</string>
1143 <!-- ECM: ECM exit dialog choice -->
1144 <string name="alert_dialog_no">No</string>
1145 <!-- ECM: ECM exit dialog choice -->
1146 <string name="alert_dialog_dismiss">Dismiss</string>
1147
1148 <!-- For incoming calls, this is a string we can get from a CDMA network instead of
1149 the actual phone number, to indicate there's no number present. DO NOT TRANSLATE. -->
1150 <string-array name="absent_num" translatable="false">
1151 <item>ABSENT NUMBER</item>
1152 <item>ABSENTNUMBER</item>
1153 </string-array>
1154
1155 <!-- Preference for Voicemail service provider under "Voicemail" settings.
1156 [CHAR LIMIT=40] -->
1157 <string name="voicemail_provider">Service</string>
1158
1159 <!-- Preference for Voicemail setting of each provider.
1160 [CHAR LIMIT=40] -->
1161 <string name="voicemail_settings">Setup</string>
1162
1163 <!-- String to display in voicemail number summary when no voicemail num is set -->
1164 <string name="voicemail_number_not_set">&lt;Not set&gt;</string>
1165
1166 <!-- Title displayed above settings coming after voicemail in the call features screen -->
1167 <string name="other_settings">Other call settings</string>
1168
1169 <!-- Title displayed in the overlay when a call is placed using a 3rd party provider.
1170 [CHAR LIMIT=40] -->
1171 <string name="calling_via_template">Calling via <xliff:g id="provider_name">%s</xliff:g></string>
1172
1173 <!-- Use this as a default to describe the contact photo; currently for screen readers through accessibility. -->
1174 <string name="contactPhoto">contact photo</string>
1175 <!-- Use this to describe the separate conference call button; currently for screen readers through accessibility. -->
1176 <string name="goPrivate">go private</string>
1177 <!-- Use this to describe the select contact button in EditPhoneNumberPreference; currently for screen readers through accessibility. -->
1178 <string name="selectContact">select contact</string>
1179
Santos Cordon7d4ddf62013-07-10 11:58:08 -07001180 <!-- Dialog title to notify user that Voice calling is not supported
1181 on this device. [CHAR LIMIT=40] -->
1182 <string name="not_voice_capable">Voice calling not supported</string>
1183
Santos Cordon7d4ddf62013-07-10 11:58:08 -07001184 <!-- String describing the Dial ImageButton
1185
1186 Used by AccessibilityService to announce the purpose of the button.
1187 [CHAR LIMIT=NONE]
1188 -->
1189 <string name="description_dial_button">dial</string>
1190
Santos Cordon7d4ddf62013-07-10 11:58:08 -07001191 <!-- Dialog title for the vibration settings for voicemail notifications [CHAR LIMIT=40] -->
1192 <string name="voicemail_notification_vibrate_when_title" msgid="8731372580674292759">Vibrate</string>
1193 <!-- Dialog title for the vibration settings for voice mail notifications [CHAR LIMIT=40]-->
1194 <string name="voicemail_notification_vibarte_when_dialog_title" msgid="8995274609647451109">Vibrate</string>
1195
1196 <!-- Voicemail ringtone title. The user clicks on this preference to select
1197 which sound to play when a voicemail notification is received.
1198 [CHAR LIMIT=30] -->
1199 <string name="voicemail_notification_ringtone_title">Sound</string>
1200
Santos Cordon7d4ddf62013-07-10 11:58:08 -07001201 <!-- The default value value for voicemail notification. -->
1202 <string name="voicemail_notification_vibrate_when_default" translatable="false">never</string>
1203
1204 <!-- Actual values used in our code for voicemail notifications. DO NOT TRANSLATE -->
1205 <string-array name="voicemail_notification_vibrate_when_values" translatable="false">
1206 <item>always</item>
1207 <item>silent</item>
1208 <item>never</item>
1209 </string-array>
1210
Santos Cordon7d4ddf62013-07-10 11:58:08 -07001211 <!-- Setting option name to enable or disable dialpad autocomplete functionality
1212 [CHAR LIMIT=30] -->
1213 <string name="dial_pad_autocomplete">Dial pad autocomplete</string>
1214
1215 <!-- Title for the category "ringtone", which is shown above ringtone and vibration
1216 related settings.
1217 [CHAR LIMIT=30] -->
1218 <string name="preference_category_ringtone">Ringtone &amp; Vibrate</string>
Yorke Lee88bf3cc2013-09-10 18:45:12 -07001219
1220 <!-- String resource for the font-family to use for the call setting activity's title
1221 Do not translate. -->
1222 <string name="call_settings_title_font_family">sans-serif-light</string>
Sailesh Nepald1e68152013-12-12 19:08:02 -08001223
Ihab Awadaa734032014-06-18 10:33:05 -07001224 <!-- Label for PSTN connection service. -->
1225 <string name="pstn_connection_service_label">Built-in SIM cards</string>
Ihab Awad29d31672014-05-20 17:10:50 -07001226
Andrew Lee233d4332014-07-10 17:08:23 -07001227 <!-- Label for enabling video calling. -->
1228 <string name="enable_video_calling_title">Turn on video calling</string>
1229
1230 <!-- Message for dialog shown when the user tries to turn on video calling but enhanced 4G LTE
1231 is disabled. -->
1232 <string name="enable_video_calling_dialog_msg">
1233 To turn on video calling, you need to enable Enhanced 4G LTE Mode in system settings.
1234 </string>
1235
1236 <!-- Label for action button in dialog which opens mobile network settings, for video calling
1237 setting. -->
1238 <string name="enable_video_calling_dialog_settings">Network settings</string>
1239
1240 <!-- Label for close button in dialog, for video calling setting. -->
1241 <string name="enable_video_calling_dialog_close">Close</string>
Andrew Lee470cc672014-08-21 15:57:58 -07001242
Anthony Lee1241f3a2014-09-05 11:44:02 -07001243 <!-- Strings used in Settings->Sim cards for each installed Sim. -->
1244 <string name="sim_label_emergency_calls">Emergency calls</string>
1245 <string name="sim_description_emergency_calls">Emergency calling only</string>
Anthony Lee68598532014-09-10 14:58:54 -07001246 <string name="sim_description_default">SIM card, slot: <xliff:g id="slot_id">%s</xliff:g></string>
Santos Cordon7d4ddf62013-07-10 11:58:08 -07001247</resources>