blob: 2c3b13c1043a00a463c6a4ee5adb1950f89ed8fb [file] [log] [blame]
Chiao Cheng94b10b52012-08-17 16:59:12 -07001<?xml version="1.0" encoding="utf-8"?>
2<!--
3 ~ Copyright (C) 2012 The Android Open Source Project
4 ~
5 ~ Licensed under the Apache License, Version 2.0 (the "License");
6 ~ you may not use this file except in compliance with the License.
7 ~ You may obtain a copy of the License at
8 ~
9 ~ http://www.apache.org/licenses/LICENSE-2.0
10 ~
11 ~ Unless required by applicable law or agreed to in writing, software
12 ~ distributed under the License is distributed on an "AS IS" BASIS,
13 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 ~ See the License for the specific language governing permissions and
15 ~ limitations under the License
16 -->
17
18
Chiao Cheng9d4f3b22012-09-05 16:00:16 -070019<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
Chiao Cheng94b10b52012-08-17 16:59:12 -070020 <!-- Directory partition name -->
21 <string name="applicationLabel">Dialer</string>
22
23 <!-- Title for the activity that dials the phone. This is the name
Chiao Cheng9d4f3b22012-09-05 16:00:16 -070024 used in the Launcher icon. -->
Chiao Cheng94b10b52012-08-17 16:59:12 -070025 <string name="launcherDialer">Phone</string>
26
Chiao Cheng9d4f3b22012-09-05 16:00:16 -070027 <!-- The description text for the dialer tab.
28
29 Note: AccessibilityServices use this attribute to announce what the view represents.
30 This is especially valuable for views without textual representation like ImageView.
31
32 [CHAR LIMIT=NONE] -->
33 <string name="dialerIconLabel">Phone</string>
34
35 <!-- The description text for the call log tab.
36
37 Note: AccessibilityServices use this attribute to announce what the view represents.
38 This is especially valuable for views without textual representation like ImageView.
39
40 [CHAR LIMIT=NONE] -->
41 <string name="recentCallsIconLabel">Call log</string>
42
43 <!-- Menu item used to send an SMS or MMS message to a phone number -->
44 <string name="menu_sendTextMessage">Send text message</string>
45
46 <!-- Menu item used to call a contact from the call log -->
47 <string name="recentCalls_callNumber">Call
48 <xliff:g id="name">%s</xliff:g>
49 </string>
50
51 <!-- Menu item used to copy a number from the call log to the dialer so it can be edited before calling it -->
52 <string name="recentCalls_editNumberBeforeCall">Edit number before call</string>
53
54 <!-- Menu item used to add a number from the call log to contacts -->
55 <string name="recentCalls_addToContact">Add to contacts</string>
56
57 <!-- Menu item used to remove a single call from the call log -->
58 <string name="recentCalls_removeFromRecentList">Remove from call log</string>
59
60 <!-- Menu item used to remove all calls from the call log -->
61 <string name="recentCalls_deleteAll">Clear call log</string>
62
63 <!-- Menu item used to delete a voicemail. [CHAR LIMIT=30] -->
64 <string name="recentCalls_trashVoicemail">Delete voicemail</string>
65
66 <!-- Menu item used to share a voicemail. [CHAR LIMIT=30] -->
67 <string name="recentCalls_shareVoicemail">Share voicemail</string>
68
Andrew Lee39f773e2014-06-11 18:10:57 -070069 <!-- Text displayed when the call log is empty. -->
70 <string name="recentCalls_empty">Your call log is empty.</string>
Chiao Cheng9d4f3b22012-09-05 16:00:16 -070071
72 <!-- Title of the confirmation dialog for clearing the call log. [CHAR LIMIT=37] -->
73 <string name="clearCallLogConfirmation_title">Clear call log?</string>
74
75 <!-- Confirmation dialog for clearing the call log. [CHAR LIMIT=NONE] -->
76 <string name="clearCallLogConfirmation">All your call records will be deleted.</string>
77
78 <!-- Title of the "Clearing call log" progress-dialog [CHAR LIMIT=35] -->
79 <string name="clearCallLogProgress_title">Clearing call log\u2026</string>
80
Chiao Cheng9d4f3b22012-09-05 16:00:16 -070081 <!-- Title of the notification of new voicemails. [CHAR LIMIT=30] -->
82 <plurals name="notification_voicemail_title">
83 <item quantity="one">Voicemail</item>
84 <item quantity="other">
85 <xliff:g id="count">%1$d</xliff:g>
86 Voicemails
87 </item>
88 </plurals>
89
90 <!-- Used in the notification of a new voicemail for the action to play the voicemail. -->
91 <string name="notification_action_voicemail_play">Play</string>
92
93 <!-- Used to build a list of names or phone numbers, to indicate the callers who left
94 voicemails.
95 The first argument may be one or more callers, the most recent ones.
96 The second argument is an additional callers.
97 This string is used to build a list of callers.
98
99 [CHAR LIMIT=10]
100 -->
101 <string name="notification_voicemail_callers_list"><xliff:g id="newer_callers">%1$s</xliff:g>,
102 <xliff:g id="older_caller">%2$s</xliff:g>
103 </string>
104
105 <!-- Text used in the ticker to notify the user of the latest voicemail. [CHAR LIMIT=30] -->
106 <string name="notification_new_voicemail_ticker">New voicemail from
107 <xliff:g id="caller">%1$s</xliff:g>
108 </string>
109
110 <!-- Message to show when there is an error playing back the voicemail. [CHAR LIMIT=40] -->
111 <string name="voicemail_playback_error">Couldn\'t play voicemail.</string>
112
113 <!-- Message to display before we have prepared the media player, i.e. before we know duration. [CHAR LIMIT=40] -->
114 <string name="voicemail_buffering">Buffering\u2026</string>
115
116 <!-- Message to display whilst we are waiting for the content to be fetched. [CHAR LIMIT=40] -->
117 <string name="voicemail_fetching_content">Fetching voicemail\u2026</string>
118
119 <!-- Message to display if we fail to get content within a suitable time period. [CHAR LIMIT=40] -->
120 <string name="voicemail_fetching_timout">Couldn\'t fetch voicemail.</string>
121
Chiao Cheng9d4f3b22012-09-05 16:00:16 -0700122 <!-- The header to show that call log is only showing voicemail calls. [CHAR LIMIT=40] -->
Chiao Cheng500d4b92012-09-18 18:18:27 -0700123 <string name="call_log_voicemail_header">Calls with voicemail only</string>
Chiao Cheng9d4f3b22012-09-05 16:00:16 -0700124
125 <!-- The header to show that call log is only showing incoming calls. [CHAR LIMIT=40] -->
Chiao Cheng500d4b92012-09-18 18:18:27 -0700126 <string name="call_log_incoming_header">Incoming calls only</string>
Chiao Cheng9d4f3b22012-09-05 16:00:16 -0700127
128 <!-- The header to show that call log is only showing outgoing calls. [CHAR LIMIT=40] -->
Chiao Cheng500d4b92012-09-18 18:18:27 -0700129 <string name="call_log_outgoing_header">Outgoing calls only</string>
Chiao Cheng9d4f3b22012-09-05 16:00:16 -0700130
131 <!-- The header to show that call log is only showing missed calls. [CHAR LIMIT=40] -->
Chiao Cheng500d4b92012-09-18 18:18:27 -0700132 <string name="call_log_missed_header">Missed calls only</string>
Chiao Cheng9d4f3b22012-09-05 16:00:16 -0700133
134 <!-- Voicemail status message shown at the top of call log to notify the user that no new
135 voicemails are currently available. This can happen when both notification as well as data
136 connection to the voicemail server is lost. [CHAR LIMIT=64] -->
137 <string name="voicemail_status_voicemail_not_available">Can\'t connect to voicemail server.
138 </string>
139 <!-- Voicemail status message shown at the top of call log to notify the user that there is no
140 data connection to the voicemail server, but there are new voicemails waiting on the server.
141 [CHAR LIMIT=64] -->
142 <string name="voicemail_status_messages_waiting">Can\'t connect to voicemail server. New
143 voicemails are waiting.
144 </string>
145 <!-- Voicemail status message shown at the top of call log to invite the user to configure
146 visual voicemail. [CHAR LIMIT=64] -->
147 <string name="voicemail_status_configure_voicemail">Set up your voicemail.</string>
148 <!-- Voicemail status message shown at the top of call details screen to notify the user that
149 the audio of this voicemail is not available. [CHAR LIMIT=64] -->
150 <string name="voicemail_status_audio_not_available">Audio not available.</string>
151
152 <!-- User action prompt shown next to a voicemail status message to let the user configure
153 visual voicemail. [CHAR LIMIT=20] -->
154 <string name="voicemail_status_action_configure">Set up</string>
155 <!-- User action prompt shown next to a voicemail status message to let the user call voicemail
156 server directly to listen to the voicemails. [CHAR LIMIT=20] -->
157 <string name="voicemail_status_action_call_server">Call voicemail</string>
158
159 <!-- The slowest voicemail playback speed. [CHAR LIMIT=30] -->
160 <string name="voicemail_speed_slowest">Slowest speed</string>
161 <!-- Slower than normal voicemail playback speed. [CHAR LIMIT=30] -->
162 <string name="voicemail_speed_slower">Slow speed</string>
163 <!-- Normal voicemail playback speed. [CHAR LIMIT=30] -->
164 <string name="voicemail_speed_normal">Normal speed</string>
165 <!-- Faster than normal pvoicemail playback speed. [CHAR LIMIT=30] -->
166 <string name="voicemail_speed_faster">Fast speed</string>
167 <!-- Fastest voicemail playback speed. [CHAR LIMIT=30] -->
168 <string name="voicemail_speed_fastest">Fastest speed</string>
169
170 <!-- The counter for calls in a group and the date of the latest call as shown in the call log [CHAR LIMIT=15] -->
171 <string name="call_log_item_count_and_date">(<xliff:g id="count">%1$d</xliff:g>)
172 <xliff:g id="date">%2$s</xliff:g>
173 </string>
174
Chiao Cheng9c5fe442012-10-31 11:12:12 -0700175 <!-- Title for the sms disambiguation dialog -->
176 <string name="sms_disambig_title">Choose number</string>
177
178 <!-- Title for the call disambiguation dialog -->
179 <string name="call_disambig_title">Choose number</string>
180
181 <!-- Message next to disamgiguation dialog check box -->
182 <string name="make_primary">Remember this choice</string>
Chiao Chenga1b886a2012-12-05 12:09:05 -0800183
184 <!-- String describing the image on ImageButton one
185
186 Note: AccessibilityServices use this attribute to announce what the view represents.
187 This is especially valuable for views without textual representation like ImageView.
188 -->
189 <string name="description_image_button_one">one</string>
190
191 <!-- String describing the image on ImageButton two
192
193 Note: AccessibilityServices use this attribute to announce what the view represents.
194 This is especially valuable for views without textual representation like ImageView.
195 -->
196 <string name="description_image_button_two">two</string>
197
198 <!-- String describing the image on ImageButton three
199
200 Note: AccessibilityServices use this attribute to announce what the view represents.
201 This is especially valuable for views without textual representation like ImageView.
202 -->
203 <string name="description_image_button_three">three</string>
204
205 <!-- String describing the image on ImageButton four
206
207 Note: AccessibilityServices use this attribute to announce what the view represents.
208 This is especially valuable for views without textual representation like ImageView.
209 -->
210 <string name="description_image_button_four">four</string>
211
212 <!-- String describing the image on ImageButton five
213
214 Note: AccessibilityServices use this attribute to announce what the view represents.
215 This is especially valuable for views without textual representation like ImageView.
216 -->
217 <string name="description_image_button_five">five</string>
218
219 <!-- String describing the image on ImageButton six
220
221 Note: AccessibilityServices use this attribute to announce what the view represents.
222 This is especially valuable for views without textual representation like ImageView.
223 -->
224 <string name="description_image_button_six">six</string>
225
226 <!-- String describing the image on ImageButton seven
227
228 Note: AccessibilityServices use this attribute to announce what the view represents.
229 This is especially valuable for views without textual representation like ImageView.
230 -->
231 <string name="description_image_button_seven">seven</string>
232
233 <!-- String describing the image on ImageButton eight
234
235 Note: AccessibilityServices use this attribute to announce what the view represents.
236 This is especially valuable for views without textual representation like ImageView.
237 -->
238 <string name="description_image_button_eight">eight</string>
239
240 <!-- String describing the image on ImageButton nine
241
242 Note: AccessibilityServices use this attribute to announce what the view represents.
243 This is especially valuable for views without textual representation like ImageView.
244 -->
245 <string name="description_image_button_nine">nine</string>
246
247 <!-- String describing the image on ImageButton star
248
249 Note: AccessibilityServices use this attribute to announce what the view represents.
250 This is especially valuable for views without textual representation like ImageView.
251 -->
252 <string name="description_image_button_star">star</string>
253
254 <!-- String describing the image on ImageButton zero
255
256 Note: AccessibilityServices use this attribute to announce what the view represents.
257 This is especially valuable for views without textual representation like ImageView.
258 -->
259 <string name="description_image_button_zero">zero</string>
260
261 <!-- String describing the image on ImageButton pound
262
263 Note: AccessibilityServices use this attribute to announce what the view represents.
264 This is especially valuable for views without textual representation like ImageView.
265 -->
266 <string name="description_image_button_pound">pound</string>
267
Alan Viverette949ddad2013-12-19 18:09:10 -0800268 <!-- String describing the image on ImageButton plus
269
270 Used by AccessibilityService to announce the purpose of the button.
271 -->
Chiao Chenga1b886a2012-12-05 12:09:05 -0800272
273 <!-- String describing the Search ImageButton
274
275 Used by AccessibilityService to announce the purpose of the button.
276 [CHAR LIMIT=NONE]
277 -->
278 <string name="description_search_button">search</string>
279
280 <!-- String describing the Dial ImageButton
281
282 Used by AccessibilityService to announce the purpose of the button.
283 -->
284 <string name="description_dial_button">dial</string>
285
Chiao Chenga1b886a2012-12-05 12:09:05 -0800286 <!-- String describing the digits text box containing the number to dial.
287
288 Used by AccessibilityService to announce the purpose of the view.
289 -->
290 <string name="description_digits_edittext">number to dial</string>
291
Yorke Lee714d6c72013-07-26 16:11:39 -0700292 <!-- Content description for the fake action menu button that brings up the call history
293 activity -->
294 <string name="action_menu_call_history_description">Call History</string>
295
Chiao Chenga1b886a2012-12-05 12:09:05 -0800296 <!-- Content description for the fake action menu overflow button.
297 This should be same as the description for the real action menu
298 overflow button available in ActionBar.
299 [CHAR LIMIT=NONE] -->
300 <string name="action_menu_overflow_description" msgid="2295659037509008453">More options</string>
301
Yorke Leeaec57722013-08-16 11:24:20 -0700302 <!-- Content description for the button that displays the dialpad
303 [CHAR LIMIT=NONE] -->
304 <string name="action_menu_dialpad_button">dial pad</string>
305
Chiao Chenga1b886a2012-12-05 12:09:05 -0800306 <!-- Menu item to copy something [CHAR_LIMIT=10] -->
307 <string name="menu_copy">Copy</string>
308
309 <!-- Menu item used to show only outgoing in the call log. [CHAR LIMIT=30] -->
310 <string name="menu_show_outgoing_only">Show outgoing only</string>
311
312 <!-- Menu item used to show only incoming in the call log. [CHAR LIMIT=30] -->
313 <string name="menu_show_incoming_only">Show incoming only</string>
314
315 <!-- Menu item used to show only missed in the call log. [CHAR LIMIT=30] -->
316 <string name="menu_show_missed_only">Show missed only</string>
317
318 <!-- Menu item used to show only voicemails in the call log. [CHAR LIMIT=30] -->
319 <string name="menu_show_voicemails_only">Show voicemails only</string>
320
321 <!-- Menu item used to show all calls in the call log. [CHAR LIMIT=30] -->
322 <string name="menu_show_all_calls">Show all calls</string>
323
Nancy Chenbeededb2014-06-10 18:30:28 -0700324 <!-- Menu items for dialpad options as part of Pause and Wait ftr [CHAR LIMIT=30] -->
Andrew Lee03982752014-05-08 11:47:27 -0700325 <string name="add_contact">Add contact</string>
Chiao Chenga1b886a2012-12-05 12:09:05 -0800326 <string name="add_2sec_pause">Add 2-sec pause</string>
327 <string name="add_wait">Add wait</string>
328
Ihab Awad1d1bd0d2014-06-30 21:24:01 -0700329 <!-- Menu item to select account used to make phone calls [CHAR LIMIT=30] -->
330 <string name="menu_select_account">Select Account</string>
Nancy Chenbeededb2014-06-10 18:30:28 -0700331
Chiao Chenga1b886a2012-12-05 12:09:05 -0800332 <!-- Menu item label for call settings [CHAR LIMIT=30] -->
333 <string name="call_settings">Settings</string>
334
Nancy Chenbeededb2014-06-10 18:30:28 -0700335 <!-- Menu item to create a new contact [CHAR LIMIT=30] -->
Chiao Chenga1b886a2012-12-05 12:09:05 -0800336 <string name="menu_newContact">New contact</string>
337
Nancy Chenbeededb2014-06-10 18:30:28 -0700338 <!-- Menu item to display all contacts [CHAR LIMIT=30] -->
Yorke Lee5e931972013-08-30 11:37:53 -0700339 <string name="menu_allContacts">All contacts</string>
340
Chiao Chenga1b886a2012-12-05 12:09:05 -0800341 <!-- Title bar for call detail screen -->
342 <string name="callDetailTitle">Call details</string>
343
344 <!-- Toast for call detail screen when couldn't read the requested details -->
345 <string name="toast_call_detail_error">Couldn\'t read details for the requested call.</string>
346
347 <!-- Item label: jump to the in-call DTMF dialpad.
348 (Part of a list of options shown in the dialer when another call
349 is already in progress.) -->
350 <string name="dialer_useDtmfDialpad">Use touch tone keypad</string>
351
352 <!-- Item label: jump to the in-call UI.
353 (Part of a list of options shown in the dialer when another call
354 is already in progress.) -->
355 <string name="dialer_returnToInCallScreen">Return to call in progress</string>
356
357 <!-- Item label: use the Dialer's dialpad to add another call.
358 (Part of a list of options shown in the dialer when another call
359 is already in progress.) -->
360 <string name="dialer_addAnotherCall">Add call</string>
361
362 <!-- Title for incoming call details screen -->
363 <string name="type_incoming">Incoming call</string>
364
365 <!-- Title for outgoing call details screen -->
366 <string name="type_outgoing">Outgoing call</string>
367
368 <!-- Title for missed call details screen -->
369 <string name="type_missed">Missed call</string>
370
371 <!-- Title for voicemail details screen -->
372 <string name="type_voicemail">Voicemail</string>
373
374 <!-- Description for incoming calls going to voice mail vs. not -->
375 <string name="actionIncomingCall">Incoming calls</string>
376
377 <!-- String describing the icon in the call log used to play a voicemail.
378
379 Note: AccessibilityServices use this attribute to announce what the view represents.
380 This is especially valuable for views without textual representation like ImageView.
381 -->
382 <string name="description_call_log_play_button">Play voicemail</string>
383
384 <!-- String describing the icon in the call log used to represent an incoming call.
385
386 Note: AccessibilityServices use this attribute to announce what the view represents.
387 This is especially valuable for views without textual representation like ImageView.
388 -->
389 <string name="description_call_log_incoming_call">Incoming call</string>
390
391 <!-- String describing the icon in the call log used to represent an outgoing call.
392
393 Note: AccessibilityServices use this attribute to announce what the view represents.
394 This is especially valuable for views without textual representation like ImageView.
395 -->
396
397 <string name="description_call_log_outgoing_call">Outgoing call</string>
398
399 <!-- String describing the icon in the call log used to represent a missed call.
400
401 Note: AccessibilityServices use this attribute to announce what the view represents.
402 This is especially valuable for views without textual representation like ImageView.
403 -->
404
405 <string name="description_call_log_missed_call">Missed call</string>
406
407 <!-- String describing the icon in the call log used to represent a voicemail left to the user.
408
409 Note: AccessibilityServices use this attribute to announce what the view represents.
410 This is especially valuable for views without textual representation like ImageView.
411 -->
412 <string name="description_call_log_voicemail">Voicemail</string>
413
Chiao Chenga1b886a2012-12-05 12:09:05 -0800414 <!-- String describing the button to view the contact for the current number.
415
416 Note: AccessibilityServices use this attribute to announce what the view represents.
417 This is especially valuable for views without textual representation like ImageView.
418 -->
419 <string name="description_view_contact">View contact <xliff:g id="name">%1$s</xliff:g></string>
420
421 <!-- String describing the button to call a number or contact.
422
423 Note: AccessibilityServices use this attribute to announce what the view represents.
424 This is especially valuable for views without textual representation like ImageView.
425 -->
426 <string name="description_call">Call <xliff:g id="name">%1$s</xliff:g></string>
427
Tyler Gunn45ed3b52014-02-03 08:31:10 -0800428 <!-- String describing the button to access the contact details for a name or number.
429
430 Note: AccessibilityServices use this attribute to announce what the view represents.
431 This is especially valuable for views without textual representation like ImageView.
432 -->
433 <string name="description_contact_details">Contact details for <xliff:g id="nameOrNumber">%1$s</xliff:g></string>
434
Tyler Gunn45ed3b52014-02-03 08:31:10 -0800435 <!-- String indicating a call log entry has an associated voicemail.
436
437 Note: AccessibilityServices use this attribute to announce what the view represents.
438 This is especially valuable for views without textual representation like ImageView.
439 -->
440 <string name="description_new_voicemail">New voicemail.</string>
441
442 <!-- String indicating the number of calls to/from a caller in the call log.
443
444 Note: AccessibilityServices use this attribute to announce what the view represents.
445 This is especially valuable for views without textual representation like ImageView.
446 -->
447 <string name="description_num_calls"><xliff:g id="numberOfCalls">%1$s</xliff:g> calls.</string>
448
Chiao Chenga1b886a2012-12-05 12:09:05 -0800449 <!-- String describing the button to SMS a number or contact.
450
451 Note: AccessibilityServices use this attribute to announce what the view represents.
452 This is especially valuable for views without textual representation like ImageView.
453 [CHAR LIMIT=NONE]
454 -->
455 <string name="description_send_text_message">Send text message to <xliff:g id="name">%1$s</xliff:g></string>
456
457 <!-- String describing the icon in the call log used to represent an unheard voicemail left to
458 the user.
459
460 Note: AccessibilityServices use this attribute to announce what the view represents.
461 This is especially valuable for views without textual representation like ImageView.
462 [CHAR LIMIT=NONE]
463 -->
464 <string name="description_call_log_unheard_voicemail">Unheard voicemail</string>
465
Yorke Lee191df332013-07-30 17:21:28 -0700466 <!-- String describing the icon used to start a voice search -->
467 <string name="description_start_voice_search">Start voice search</string>
468
Chiao Chenga1b886a2012-12-05 12:09:05 -0800469 <!-- Menu item used to call a contact, containing the number of the contact to call -->
470 <string name="menu_callNumber">Call <xliff:g id="number">%s</xliff:g></string>
471
472 <!-- String used to display calls from unknown numbers in the call log -->
473 <string name="unknown">Unknown</string>
474
475 <!-- String used for displaying calls to the voicemail number in the call log -->
476 <string name="voicemail">Voicemail</string>
477
478 <!-- String used to display calls from private numbers in the call log -->
479 <string name="private_num">Private number</string>
480
481 <!-- String used to display calls from pay phone in the call log -->
482 <string name="payphone">Pay phone</string>
483
484 <!-- Displayed in the text entry box in the dialer when in landscape mode to guide the user
485 to dial using the physical keyboard -->
486 <string name="dialerKeyboardHintText">Use keyboard to dial</string>
487
488 <!-- Hint text displayed in the "digits" field above the dialer's
489 dialpad, if there's already a call in progress. (This hint
490 reminds the user that the dialer will add a new call, as opposed
491 to sending DTMF tones over the current call.)
492 [CHAR LIMIT=40] -->
493 <string name="dialerDialpadHintText">Dial to add a call</string>
494
495 <!-- A nicely formatted call duration displayed when viewing call details. For example "42 mins 28 secs" -->
496 <string name="callDetailsDurationFormat"><xliff:g id="minutes" example="42">%s</xliff:g> mins <xliff:g id="seconds" example="28">%s</xliff:g> secs</string>
497
498 <!-- Dialog message which is shown when the user tries to make a phone call
499 to prohibited phone numbers [CHAR LIMIT=NONE] -->
500 <string name="dialog_phone_call_prohibited_message" msgid="4313552620858880999">Call not sent</string>
501
502 <!-- Dialog message which is shown when the user tries to check voicemail
503 while the system isn't ready for the access. [CHAR LIMIT=NONE] -->
504 <string name="dialog_voicemail_not_ready_message">To set up voicemail, go to Menu &gt; Settings.</string>
505
506 <!-- Dialog message which is shown when the user tries to check voicemail
507 while the system is in airplane mode. The user cannot access to
508 voicemail service in Airplane mode. [CHAR LIMI=NONE] -->
509 <string name="dialog_voicemail_airplane_mode_message">To call voicemail, first turn off Airplane mode.</string>
510
511 <!-- Message that appears in the favorites tab of the Phone app when the contact list has not fully loaded yet (below the favorite and frequent contacts) [CHAR LIMIT=20] -->
512 <string name="contact_list_loading">Loading\u2026</string>
513
514 <!-- The title of a dialog that displays the IMEI of the phone -->
515 <string name="imei">IMEI</string>
516
517 <!-- The title of a dialog that displays the MEID of the CDMA phone -->
518 <string name="meid">MEID</string>
519
520 <!-- Dialog text displayed when loading a phone number from the SIM card for speed dial -->
521 <string name="simContacts_emptyLoading">Loading from SIM card\u2026</string>
522
523 <!-- Dialog title displayed when loading a phone number from the SIM card for speed dial -->
524 <string name="simContacts_title">SIM card contacts</string>
525
Chiao Cheng073b5cf2012-12-07 11:36:00 -0800526 <!-- Message displayed when there is no application available to handle the add contact menu option. [CHAR LIMIT=NONE] -->
527 <string name="add_contact_not_available">Re-enable the People application to use this feature.</string>
528
Yorke Leeda0f9042013-12-05 14:25:51 -0800529 <!-- Message displayed when there is no application available to handle voice search. [CHAR LIMIT=NONE] -->
530 <string name="voice_search_not_available">Voice search is not available.</string>
531
Yorke Lee39213592014-04-07 15:39:48 -0700532 <!-- Message displayed when the Phone application has been disabled and a phone call cannot
533 be made. [CHAR LIMIT=NONE] -->
534 <string name="call_not_available">Cannot make a phone call because the Phone application has been disabled.</string>
535
536 <!-- Message displayed when there is no application available to handle a particular action.
537 [CHAR LIMIT=NONE] -->
538 <string name="activity_not_available">No installed activity available to handle selected action.</string>
539
Yorke Leedfb2eee2013-06-26 18:24:32 -0700540 <!-- Hint displayed in dialer search box when there is no query that is currently typed.
Yorke Leea723be52013-09-09 08:54:15 -0700541 [CHAR LIMIT=30] -->
542 <string name="dialer_hint_find_contact">Type a name or phone number</string>
Yorke Leedfb2eee2013-06-26 18:24:32 -0700543
Yorke Leeb7611d72013-07-29 09:45:30 -0700544 <!-- String resource for the font-family to use for the call log activity's title
545 Do not translate. -->
546 <string name="call_log_activity_title_font_family">sans-serif-light</string>
547
Sai Cheemalapatic3206cd2014-05-21 17:58:09 -0700548 <!-- String resource for the font-family to use for the full call history footer
549 Do not translate. -->
550 <string name="view_full_call_history_font_family">sans-serif</string>
551
Yorke Leedfb2eee2013-06-26 18:24:32 -0700552 <!-- Text displayed when the list of missed calls is empty -->
Andrew Lee39f773e2014-06-11 18:10:57 -0700553 <string name="recentMissed_empty">You have no recent missed calls.</string>
Yorke Leedfb2eee2013-06-26 18:24:32 -0700554
555 <!-- Text displayed when the list of voicemails is empty -->
Andrew Lee39f773e2014-06-11 18:10:57 -0700556 <string name="recentVoicemails_empty">You have no recent voicemails.</string>
Yorke Leedfb2eee2013-06-26 18:24:32 -0700557
Yorke Leedfb2eee2013-06-26 18:24:32 -0700558 <!-- Menu option to show favorite contacts only -->
559 <string name="show_favorites_only">Show favorites only</string>
Yorke Leed9999322013-07-19 09:22:03 -0700560
561 <!-- Title of activity that displays a list of all calls -->
562 <string name="call_log_activity_title">History</string>
Yorke Leebf34a902013-07-24 19:00:04 -0700563
Yorke Leee00c9fe2014-04-12 12:42:06 -0700564 <!-- Title for the call log tab containing the list of all voicemails and calls
Yorke Lee0e8b0312014-04-16 16:08:56 -0700565 [CHAR LIMIT=30] -->
Yorke Leee00c9fe2014-04-12 12:42:06 -0700566 <string name="call_log_all_title">All</string>
567
568 <!-- Title for the call log tab containing the list of all missed calls only
Yorke Lee0e8b0312014-04-16 16:08:56 -0700569 [CHAR LIMIT=30] -->
Yorke Leee00c9fe2014-04-12 12:42:06 -0700570 <string name="call_log_missed_title">Missed</string>
571
Andrew Lee470fc452014-04-16 14:26:05 -0700572 <!-- Title for the call log tab containing the list of all voicemail calls only
Yorke Lee0e8b0312014-04-16 16:08:56 -0700573 [CHAR LIMIT=30] -->
Andrew Lee470fc452014-04-16 14:26:05 -0700574 <string name="call_log_voicemail_title">Voicemail</string>
575
Yorke Leee00c9fe2014-04-12 12:42:06 -0700576 <string name="tab_speed_dial">Speed Dial</string>
577
578 <string name="tab_recents">Recents</string>
579
580 <string name="tab_all_contacts">Contacts</string>
581
Christine Chen316b4712013-07-15 18:31:22 -0700582 <!-- Text displayed when user swipes out a favorite contact -->
Yorke Leeed017042013-09-09 16:00:19 -0700583 <string name="favorite_hidden">Removed from favorites</string>
Christine Chen316b4712013-07-15 18:31:22 -0700584 <!-- Text displayed for the undo button to undo removing a favorite contact -->
585 <string name="favorite_hidden_undo">Undo</string>
Yorke Leee1424812013-09-04 18:24:48 -0700586
587 <!-- Shortcut item used to call a number directly from search -->
588 <string name="search_shortcut_call_number">Call
589 <xliff:g id="number">%s</xliff:g>
590 </string>
591
592 <!-- Shortcut item used to add a number directly from search -->
593 <string name="search_shortcut_add_to_contacts">Add to contacts</string>
Chiao Chengcd9f3762013-09-20 16:00:54 -0700594
Andrew Leefc1fed72014-07-02 11:05:53 -0700595 <!-- Shortcut item used to make a video call directly from search. -->
596 <string name="search_shortcut_make_video_call">Make video call</string>
597
Yorke Lee6a1461a2014-04-21 16:27:14 -0700598 <!-- Title for the recent calls footer that brings users to the full call history when clicked -->
599 <string name="recents_footer_text">View full call history</string>
600
Chiao Chengcd9f3762013-09-20 16:00:54 -0700601 <!-- Number of missed calls shown on call card [CHAR LIMIT=40] -->
602 <string name="num_missed_calls"><xliff:g id="number">%s</xliff:g> new missed calls</string>
603
Andrew Lee39f773e2014-06-11 18:10:57 -0700604 <!-- Shown when there are no speed dial favorites. -->
605 <string name="speed_dial_empty">Speed dial is one touch dialing\nfor favorites and numbers\n you call frequently.</string>
606
607 <!-- Shown when there are no contacts in the all contacts list. -->
608 <string name="all_contacts_empty">You have no contacts.</string>
Chiao Chengcd9f3762013-09-20 16:00:54 -0700609
Yorke Lee3a847bd2013-09-24 15:19:53 -0700610 <!-- Shows up as a tooltip to provide a hint to the user that the profile pic in a contact
611 card can be tapped to bring up a list of all numbers, or long pressed to start reordering
612 [CHAR LIMIT=NONE]
613 -->
614 <string name="contact_tooltip">Tap image to see all numbers or press and hold to reorder</string>
Chiao Chengd21c3ad2013-10-04 16:13:26 -0700615
616 <!-- Content description for dismiss button on badge. [CHAR LIMIT=NONE] -->
617 <string name="description_dismiss">Dismiss</string>
Tyler Gunn9a066572014-02-19 15:58:26 -0800618
Yorke Lee3cefcc62014-01-16 11:26:46 -0800619 <!-- Remove button that shows up when contact is long-pressed. [CHAR LIMIT=NONE] -->
620 <string name="remove_contact">Remove</string>
Ihab Awad526c0b82014-02-27 12:55:36 -0800621
Tyler Gunn9a066572014-02-19 15:58:26 -0800622 <!-- Button text for the "all contacts" button displayed on the main dialer screen above the
623 list of favorite phone numbers. Navigates the user to the "All Contacts" list.
624 This text represents the same action as the text in string "menu_allContacts".
625 [CHAR LIMIT=21] -->
626 <string name="favorites_menu_all_contacts">ALL CONTACTS</string>
627
Tyler Gunn146a4cd2014-05-05 16:51:42 -0700628 <!-- Button text for the "call back" button displayed underneath an entry in the call log.
629 Tapping causes a call to be placed to the caller represented by the call log entry.
630 [CHAR LIMIT=30] -->
631 <string name="call_log_action_call_back">CALL BACK</string>
632
Tyler Gunn146a4cd2014-05-05 16:51:42 -0700633 <!-- Button text for the "LISTEN" button displayed underneath an entry in the call log.
634 Tapping navigates the user to the call details screen where the user can listen to the
635 voicemail represented by the call log entry.
636 [CHAR LIMIT=30] -->
637 <string name="call_log_action_voicemail">LISTEN</string>
638
Tyler Gunncf5e0012014-05-16 08:02:55 -0700639 <!-- Button text for the "DETAILS" button displayed underneath an entry in the call log.
640 Tapping navigates the user to the call details screen where the user can view details for
641 the call log entry.
642 [CHAR LIMIT=30] -->
643 <string name="call_log_action_details">DETAILS</string>
644
Tyler Gunn146a4cd2014-05-05 16:51:42 -0700645 <!-- String describing an incoming missed call entry in the call log.
646 Note: AccessibilityServices uses this attribute to announce what the view represents.
647 [CHAR LIMIT=NONE] -->
648 <string name="description_incoming_missed_call">Missed call from <xliff:g id="nameOrNumber" example="John Smith">%1$s</xliff:g>, <xliff:g id="typeOrLocation" example="Mobile">%2$s</xliff:g>, <xliff:g id="timeOfCall" example="2 min ago">%3$s</xliff:g>.</string>
649
650 <!-- String describing an incoming answered call entry in the call log.
651 Note: AccessibilityServices uses this attribute to announce what the view represents.
652 [CHAR LIMIT=NONE] -->
653 <string name="description_incoming_answered_call">Answered call from <xliff:g id="nameOrNumber" example="John Smith">%1$s</xliff:g>, <xliff:g id="typeOrLocation" example="Mobile">%2$s</xliff:g>, <xliff:g id="timeOfCall" example="2 min ago">%3$s</xliff:g>.</string>
654
655 <!-- String describing an outgoing call entry in the call log.
656 Note: AccessibilityServices uses this attribute to announce what the view represents.
657 [CHAR LIMIT=NONE] -->
658 <string name="description_outgoing_call">Call to <xliff:g id="nameOrNumber" example="John Smith">%1$s</xliff:g>, <xliff:g id="typeOrLocation" example="Mobile">%2$s</xliff:g>, <xliff:g id="timeOfCall" example="2 min ago">%3$s</xliff:g>.</string>
659
660 <!-- String describing the "call back" action for an entry in the call log. The call back
661 action triggers a return call to the named user.
662 Note: AccessibilityServices uses this attribute to announce the purpose of the button.
663 [CHAR LIMIT=NONE] -->
664 <string name="description_call_back_action">Call back <xliff:g id="nameOrNumber" example="John Smith">%1$s</xliff:g></string>
665
666 <!-- String describing the "listen" action for an entry in the call log. The listen
667 action is shown for call log entries representing a voicemail message and this button
668 triggers playing back the voicemail.
669 Note: AccessibilityServices uses this attribute to announce the purpose of the button.
670 [CHAR LIMIT=NONE] -->
671 <string name="description_voicemail_action">Listen to voicemail from <xliff:g id="nameOrNumber" example="John Smith">%1$s</xliff:g></string>
672
Tyler Gunncf5e0012014-05-16 08:02:55 -0700673 <!-- String describing the "details" action for an entry in the call log. The details action
674 displays the call details screen for an entry in the call log. This shows the calls to
675 and from the specified number associated with the call log entry.
676 [CHAR LIMIT=NONE] -->
677 <string name="description_details_action">Call details for <xliff:g id="nameOrNumber" example="John Smith">%1$s</xliff:g></string>
678
Tyler Gunn4dfd7122014-05-14 15:12:42 -0700679 <!-- Toast message which appears when a call log entry is deleted.
680 [CHAR LIMIT=NONE] -->
Tyler Gunn146a4cd2014-05-05 16:51:42 -0700681 <string name="toast_entry_removed">Call log entry deleted.</string>
Tyler Gunn4dfd7122014-05-14 15:12:42 -0700682
Tyler Gunn1e273312014-06-10 12:59:53 -0700683 <!-- String used as a header in the call log above calls which occurred today.
684 [CHAR LIMIT=65] -->
685 <string name="call_log_header_today">Today</string>
686
687 <!-- String used as a header in the call log above calls which occurred yesterday.
688 [CHAR LIMIT=65] -->
689 <string name="call_log_header_yesterday">Yesterday</string>
690
Tyler Gunn4dfd7122014-05-14 15:12:42 -0700691 <!-- String used as a header in the call log above calls which occurred last week.
692 [CHAR LIMIT=65] -->
693 <string name="call_log_header_last_week">Last week</string>
694
Tyler Gunn1e273312014-06-10 12:59:53 -0700695 <!-- String used as a header in the call log above calls which occurred more than a week ago.
Tyler Gunn4dfd7122014-05-14 15:12:42 -0700696 [CHAR LIMIT=65] -->
Tyler Gunn480c64d2014-06-11 10:50:27 -0700697 <string name="call_log_header_other">Older</string>
Tyler Gunn18164c82014-06-09 10:20:57 -0700698
699 <!-- String a header on the call details screen. Appears above the list calls to or from a
700 particular number.
701 [CHAR LIMIT=65] -->
702 <string name="call_detail_list_header">Call List</string>
703
704 <!-- String describing the "speaker on" button on the playback control used to listen to a
705 voicemail message. When speaker is on, playback of the voicemail will occur through the
706 phone speaker.
707 Note: AccessibilityServices uses this attribute to announce the purpose of the button.
708 [CHAR LIMIT=NONE] -->
709 <string name="voicemail_speaker_on">Turn speaker on.</string>
710
711 <!-- String describing the "speaker off" button on the playback control used to listen to a
712 voicemail message. When speaker is off, playback of the voicemail will occur through the
713 phone earpiece.
714 Note: AccessibilityServices uses this attribute to announce the purpose of the button.
715 [CHAR LIMIT=NONE] -->
716 <string name="voicemail_speaker_off">Turn speaker off.</string>
717
718 <!-- String describing the "play faster" button in the playback control used to listen to a
719 voicemail message. Speeds up playback of the voicemail message.
720 Note: AccessibilityServices uses this attribute to announce the purpose of the button.
721 [CHAR LIMIT=NONE] -->
722 <string name="voicemail_play_faster">Play faster.</string>
723
724 <!-- String describing the "play slower" button in the playback control used to listen to a
725 voicemail message. Slows down playback of the voicemail message.
726 Note: AccessibilityServices uses this attribute to announce the purpose of the button.
727 [CHAR LIMIT=NONE] -->
728 <string name="voicemail_play_slower">Play slower.</string>
729
730 <!-- String describing the "play/pause" button in the playback control used to listen to a
731 voicemail message. Starts playback or pauses ongoing playback.
732 Note: AccessibilityServices uses this attribute to announce the purpose of the button.
733 [CHAR LIMIT=NONE] -->
734 <string name="voicemail_play_start_pause">Start or pause playback.</string>
Chiao Cheng94b10b52012-08-17 16:59:12 -0700735</resources>