blob: 07dfd81da8e16e7898e5c3b295993c0672490c3f [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
69 <!-- Text displayed when the call log is empty -->
70 <string name="recentCalls_empty">Call log is empty.</string>
71
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 -->
272 <string name="description_image_button_plus">plus</string>
273
Chiao Chenga1b886a2012-12-05 12:09:05 -0800274 <!-- String describing the Voicemail ImageButton
275
276 Used by AccessibilityService to announce the purpose of the button.
277 -->
278 <string name="description_voicemail_button">voicemail</string>
279
280 <!-- String describing the Search ImageButton
281
282 Used by AccessibilityService to announce the purpose of the button.
283 [CHAR LIMIT=NONE]
284 -->
285 <string name="description_search_button">search</string>
286
287 <!-- String describing the Dial ImageButton
288
289 Used by AccessibilityService to announce the purpose of the button.
290 -->
291 <string name="description_dial_button">dial</string>
292
293 <!-- String describing the Delete/Backspace ImageButton
294
295 Used by AccessibilityService to announce the purpose of the button.
296 -->
297 <string name="description_delete_button">backspace</string>
298
299 <!-- String describing the digits text box containing the number to dial.
300
301 Used by AccessibilityService to announce the purpose of the view.
302 -->
303 <string name="description_digits_edittext">number to dial</string>
304
Yorke Lee714d6c72013-07-26 16:11:39 -0700305 <!-- Content description for the fake action menu button that brings up the call history
306 activity -->
307 <string name="action_menu_call_history_description">Call History</string>
308
Chiao Chenga1b886a2012-12-05 12:09:05 -0800309 <!-- Content description for the fake action menu overflow button.
310 This should be same as the description for the real action menu
311 overflow button available in ActionBar.
312 [CHAR LIMIT=NONE] -->
313 <string name="action_menu_overflow_description" msgid="2295659037509008453">More options</string>
314
Yorke Leeaec57722013-08-16 11:24:20 -0700315 <!-- Content description for the button that displays the dialpad
316 [CHAR LIMIT=NONE] -->
317 <string name="action_menu_dialpad_button">dial pad</string>
318
Chiao Chenga1b886a2012-12-05 12:09:05 -0800319 <!-- Menu item to copy something [CHAR_LIMIT=10] -->
320 <string name="menu_copy">Copy</string>
321
322 <!-- Menu item used to show only outgoing in the call log. [CHAR LIMIT=30] -->
323 <string name="menu_show_outgoing_only">Show outgoing only</string>
324
325 <!-- Menu item used to show only incoming in the call log. [CHAR LIMIT=30] -->
326 <string name="menu_show_incoming_only">Show incoming only</string>
327
328 <!-- Menu item used to show only missed in the call log. [CHAR LIMIT=30] -->
329 <string name="menu_show_missed_only">Show missed only</string>
330
331 <!-- Menu item used to show only voicemails in the call log. [CHAR LIMIT=30] -->
332 <string name="menu_show_voicemails_only">Show voicemails only</string>
333
334 <!-- Menu item used to show all calls in the call log. [CHAR LIMIT=30] -->
335 <string name="menu_show_all_calls">Show all calls</string>
336
337 <!-- Menu items for dialpad options as part of Pause and Wait ftr -->
338 <string name="add_2sec_pause">Add 2-sec pause</string>
339 <string name="add_wait">Add wait</string>
340
341 <!-- Menu item label for call settings [CHAR LIMIT=30] -->
342 <string name="call_settings">Settings</string>
343
344 <!-- Menu item to create a new contact -->
345 <string name="menu_newContact">New contact</string>
346
Yorke Lee5e931972013-08-30 11:37:53 -0700347 <!-- Menu item to display all contacts -->
348 <string name="menu_allContacts">All contacts</string>
349
Chiao Chenga1b886a2012-12-05 12:09:05 -0800350 <!-- Title bar for call detail screen -->
351 <string name="callDetailTitle">Call details</string>
352
353 <!-- Toast for call detail screen when couldn't read the requested details -->
354 <string name="toast_call_detail_error">Couldn\'t read details for the requested call.</string>
355
356 <!-- Item label: jump to the in-call DTMF dialpad.
357 (Part of a list of options shown in the dialer when another call
358 is already in progress.) -->
359 <string name="dialer_useDtmfDialpad">Use touch tone keypad</string>
360
361 <!-- Item label: jump to the in-call UI.
362 (Part of a list of options shown in the dialer when another call
363 is already in progress.) -->
364 <string name="dialer_returnToInCallScreen">Return to call in progress</string>
365
366 <!-- Item label: use the Dialer's dialpad to add another call.
367 (Part of a list of options shown in the dialer when another call
368 is already in progress.) -->
369 <string name="dialer_addAnotherCall">Add call</string>
370
371 <!-- Title for incoming call details screen -->
372 <string name="type_incoming">Incoming call</string>
373
374 <!-- Title for outgoing call details screen -->
375 <string name="type_outgoing">Outgoing call</string>
376
377 <!-- Title for missed call details screen -->
378 <string name="type_missed">Missed call</string>
379
380 <!-- Title for voicemail details screen -->
381 <string name="type_voicemail">Voicemail</string>
382
383 <!-- Description for incoming calls going to voice mail vs. not -->
384 <string name="actionIncomingCall">Incoming calls</string>
385
386 <!-- String describing the icon in the call log used to play a voicemail.
387
388 Note: AccessibilityServices use this attribute to announce what the view represents.
389 This is especially valuable for views without textual representation like ImageView.
390 -->
391 <string name="description_call_log_play_button">Play voicemail</string>
392
393 <!-- String describing the icon in the call log used to represent an incoming call.
394
395 Note: AccessibilityServices use this attribute to announce what the view represents.
396 This is especially valuable for views without textual representation like ImageView.
397 -->
398 <string name="description_call_log_incoming_call">Incoming call</string>
399
400 <!-- String describing the icon in the call log used to represent an outgoing call.
401
402 Note: AccessibilityServices use this attribute to announce what the view represents.
403 This is especially valuable for views without textual representation like ImageView.
404 -->
405
406 <string name="description_call_log_outgoing_call">Outgoing call</string>
407
408 <!-- String describing the icon in the call log used to represent a missed call.
409
410 Note: AccessibilityServices use this attribute to announce what the view represents.
411 This is especially valuable for views without textual representation like ImageView.
412 -->
413
414 <string name="description_call_log_missed_call">Missed call</string>
415
416 <!-- String describing the icon in the call log used to represent a voicemail left to the user.
417
418 Note: AccessibilityServices use this attribute to announce what the view represents.
419 This is especially valuable for views without textual representation like ImageView.
420 -->
421 <string name="description_call_log_voicemail">Voicemail</string>
422
423 <!-- String describing the button to add a contact for the current number.
424
425 Note: AccessibilityServices use this attribute to announce what the view represents.
426 This is especially valuable for views without textual representation like ImageView.
427 -->
428 <string name="description_add_contact">Add contact</string>
429
430 <!-- String describing the button to view the contact for the current number.
431
432 Note: AccessibilityServices use this attribute to announce what the view represents.
433 This is especially valuable for views without textual representation like ImageView.
434 -->
435 <string name="description_view_contact">View contact <xliff:g id="name">%1$s</xliff:g></string>
436
437 <!-- String describing the button to call a number or contact.
438
439 Note: AccessibilityServices use this attribute to announce what the view represents.
440 This is especially valuable for views without textual representation like ImageView.
441 -->
442 <string name="description_call">Call <xliff:g id="name">%1$s</xliff:g></string>
443
Tyler Gunn45ed3b52014-02-03 08:31:10 -0800444 <!-- String describing the button to access the contact details for a name or number.
445
446 Note: AccessibilityServices use this attribute to announce what the view represents.
447 This is especially valuable for views without textual representation like ImageView.
448 -->
449 <string name="description_contact_details">Contact details for <xliff:g id="nameOrNumber">%1$s</xliff:g></string>
450
451 <!-- String describing the button to access call details in the call log.
452
453 Note: AccessibilityServices use this attribute to announce what the view represents.
454 This is especially valuable for views without textual representation like ImageView.
455 -->
456 <string name="description_call_details">Call details</string>
457
458 <!-- String indicating a call log entry has an associated voicemail.
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 -->
463 <string name="description_new_voicemail">New voicemail.</string>
464
465 <!-- String indicating the number of calls to/from a caller in the call log.
466
467 Note: AccessibilityServices use this attribute to announce what the view represents.
468 This is especially valuable for views without textual representation like ImageView.
469 -->
470 <string name="description_num_calls"><xliff:g id="numberOfCalls">%1$s</xliff:g> calls.</string>
471
472
473 <!-- Call history description for a missed call from a caller.
474
475 Note: AccessibilityServices use this attribute to announce what the view represents.
476 This is especially valuable for views without textual representation like ImageView.
477 -->
478 <string name="description_return_missed_call">Return missed call from <xliff:g id="nameOrNumber">%1$s</xliff:g> <xliff:g id="typeOrLocation">%2$s</xliff:g> <xliff:g id="timeOfCall">%3$s</xliff:g></string>
479
480
481 <!-- Call history description for an answered call for a caller.
482
483 Note: AccessibilityServices use this attribute to announce what the view represents.
484 This is especially valuable for views without textual representation like ImageView.
485 -->
486 <string name="description_return_answered_call">Return answered call from <xliff:g id="nameOrNumber">%1$s</xliff:g> <xliff:g id="typeOrLocation">%2$s</xliff:g> <xliff:g id="timeOfCall">%3$s</xliff:g></string>
487
488 <!-- Call history description for a missed call from an unknown caller.
489 Drops the "return" part of description_return_missed_call since it is not
490 possible to actually call an unknown number.
491
492 Note: AccessibilityServices use this attribute to announce what the view represents.
493 This is especially valuable for views without textual representation like ImageView.
494 -->
495 <string name="description_unknown_missed_call">Missed call from <xliff:g id="nameOrNumber">%1$s</xliff:g> <xliff:g id="typeOrLocation">%2$s</xliff:g> <xliff:g id="timeOfCall">%3$s</xliff:g></string>
496
497
498 <!-- Call history description for an answered call from an unknown caller.
499 Drops the "return" part of description_return_answered_call since it is not
500 possible to actually call an unknown number.
501 Note: AccessibilityServices use this attribute to announce what the view represents.
502 This is especially valuable for views without textual representation like ImageView.
503 -->
504 <string name="description_unknown_answered_call">Answered call from <xliff:g id="nameOrNumber">%1$s</xliff:g> <xliff:g id="typeOrLocation">%2$s</xliff:g> <xliff:g id="timeOfCall">%3$s</xliff:g></string>
505
506 <!-- String describing an outgoing call entry in the call log. Used to indicate that
507 a call will be made to the specified caller. Used when there are multiple calls to/from
508 the caller.
509
510 Note: AccessibilityServices use this attribute to announce what the view represents.
511 This is especially valuable for views without textual representation like ImageView.
512 -->
513 <string name="description_call_last_multiple">Call <xliff:g id="nameOrNumber">%1$s</xliff:g> <xliff:g id="typeOrLocation">%2$s</xliff:g>. Last called <xliff:g id="timeOfCall">%3$s</xliff:g>.</string>
514
515 <!-- String describing an outgoing call entry in the call log. Used to indicate that
516 a call will be made to the specified caller. Used when there is only a single call
517 related to/from the caller.
518
519 Note: AccessibilityServices use this attribute to announce what the view represents.
520 This is especially valuable for views without textual representation like ImageView.
521 -->
522 <string name="description_call_last">Call <xliff:g id="nameOrNumber">%1$s</xliff:g> <xliff:g id="typeOrLocation">%2$s</xliff:g>. Called <xliff:g id="timeOfCall">%3$s</xliff:g>.</string>
523
Chiao Chenga1b886a2012-12-05 12:09:05 -0800524
525 <!-- String describing the button to SMS a number or contact.
526
527 Note: AccessibilityServices use this attribute to announce what the view represents.
528 This is especially valuable for views without textual representation like ImageView.
529 [CHAR LIMIT=NONE]
530 -->
531 <string name="description_send_text_message">Send text message to <xliff:g id="name">%1$s</xliff:g></string>
532
533 <!-- String describing the icon in the call log used to represent an unheard voicemail left to
534 the user.
535
536 Note: AccessibilityServices use this attribute to announce what the view represents.
537 This is especially valuable for views without textual representation like ImageView.
538 [CHAR LIMIT=NONE]
539 -->
540 <string name="description_call_log_unheard_voicemail">Unheard voicemail</string>
541
Yorke Lee3cefcc62014-01-16 11:26:46 -0800542 <!-- String describing the icon used to clear the search field -->
543 <string name="description_clear_search">Clear search</string>
544
Yorke Lee191df332013-07-30 17:21:28 -0700545 <!-- String describing the icon used to start a voice search -->
546 <string name="description_start_voice_search">Start voice search</string>
547
Yorke Lee36717252013-11-20 15:02:49 -0800548 <!-- The string used to represent an unknown location for a phone number in the call log
549 Do not translate. -->
550 <string name="call_log_empty_geocode"></string>
Chiao Chenga1b886a2012-12-05 12:09:05 -0800551
552 <!-- Menu item used to call a contact, containing the number of the contact to call -->
553 <string name="menu_callNumber">Call <xliff:g id="number">%s</xliff:g></string>
554
555 <!-- String used to display calls from unknown numbers in the call log -->
556 <string name="unknown">Unknown</string>
557
558 <!-- String used for displaying calls to the voicemail number in the call log -->
559 <string name="voicemail">Voicemail</string>
560
561 <!-- String used to display calls from private numbers in the call log -->
562 <string name="private_num">Private number</string>
563
564 <!-- String used to display calls from pay phone in the call log -->
565 <string name="payphone">Pay phone</string>
566
567 <!-- Displayed in the text entry box in the dialer when in landscape mode to guide the user
568 to dial using the physical keyboard -->
569 <string name="dialerKeyboardHintText">Use keyboard to dial</string>
570
571 <!-- Hint text displayed in the "digits" field above the dialer's
572 dialpad, if there's already a call in progress. (This hint
573 reminds the user that the dialer will add a new call, as opposed
574 to sending DTMF tones over the current call.)
575 [CHAR LIMIT=40] -->
576 <string name="dialerDialpadHintText">Dial to add a call</string>
577
578 <!-- A nicely formatted call duration displayed when viewing call details. For example "42 mins 28 secs" -->
579 <string name="callDetailsDurationFormat"><xliff:g id="minutes" example="42">%s</xliff:g> mins <xliff:g id="seconds" example="28">%s</xliff:g> secs</string>
580
581 <!-- Dialog message which is shown when the user tries to make a phone call
582 to prohibited phone numbers [CHAR LIMIT=NONE] -->
583 <string name="dialog_phone_call_prohibited_message" msgid="4313552620858880999">Call not sent</string>
584
585 <!-- Dialog message which is shown when the user tries to check voicemail
586 while the system isn't ready for the access. [CHAR LIMIT=NONE] -->
587 <string name="dialog_voicemail_not_ready_message">To set up voicemail, go to Menu &gt; Settings.</string>
588
589 <!-- Dialog message which is shown when the user tries to check voicemail
590 while the system is in airplane mode. The user cannot access to
591 voicemail service in Airplane mode. [CHAR LIMI=NONE] -->
592 <string name="dialog_voicemail_airplane_mode_message">To call voicemail, first turn off Airplane mode.</string>
593
594 <!-- 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] -->
595 <string name="contact_list_loading">Loading\u2026</string>
596
597 <!-- The title of a dialog that displays the IMEI of the phone -->
598 <string name="imei">IMEI</string>
599
600 <!-- The title of a dialog that displays the MEID of the CDMA phone -->
601 <string name="meid">MEID</string>
602
603 <!-- Dialog text displayed when loading a phone number from the SIM card for speed dial -->
604 <string name="simContacts_emptyLoading">Loading from SIM card\u2026</string>
605
606 <!-- Dialog title displayed when loading a phone number from the SIM card for speed dial -->
607 <string name="simContacts_title">SIM card contacts</string>
608
Chiao Cheng073b5cf2012-12-07 11:36:00 -0800609 <!-- Message displayed when there is no application available to handle the add contact menu option. [CHAR LIMIT=NONE] -->
610 <string name="add_contact_not_available">Re-enable the People application to use this feature.</string>
611
Yorke Leeda0f9042013-12-05 14:25:51 -0800612 <!-- Message displayed when there is no application available to handle voice search. [CHAR LIMIT=NONE] -->
613 <string name="voice_search_not_available">Voice search is not available.</string>
614
Yorke Lee39213592014-04-07 15:39:48 -0700615 <!-- Message displayed when the Phone application has been disabled and a phone call cannot
616 be made. [CHAR LIMIT=NONE] -->
617 <string name="call_not_available">Cannot make a phone call because the Phone application has been disabled.</string>
618
619 <!-- Message displayed when there is no application available to handle a particular action.
620 [CHAR LIMIT=NONE] -->
621 <string name="activity_not_available">No installed activity available to handle selected action.</string>
622
Yorke Leedfb2eee2013-06-26 18:24:32 -0700623 <!-- Hint displayed in dialer search box when there is no query that is currently typed.
Yorke Leea723be52013-09-09 08:54:15 -0700624 [CHAR LIMIT=30] -->
625 <string name="dialer_hint_find_contact">Type a name or phone number</string>
Yorke Leedfb2eee2013-06-26 18:24:32 -0700626
Yorke Leeb7611d72013-07-29 09:45:30 -0700627 <!-- String resource for the font-family to use for the call log activity's title
628 Do not translate. -->
629 <string name="call_log_activity_title_font_family">sans-serif-light</string>
630
Yorke Leedfb2eee2013-06-26 18:24:32 -0700631 <!-- Text displayed when the list of missed calls is empty -->
632 <string name="recentMissed_empty">No recent missed calls.</string>
633
634 <!-- Text displayed when the list of voicemails is empty -->
635 <string name="recentVoicemails_empty">No recent voicemails.</string>
636
Yorke Leedfb2eee2013-06-26 18:24:32 -0700637 <!-- Menu option to show favorite contacts only -->
638 <string name="show_favorites_only">Show favorites only</string>
Yorke Leed9999322013-07-19 09:22:03 -0700639
640 <!-- Title of activity that displays a list of all calls -->
641 <string name="call_log_activity_title">History</string>
Yorke Leebf34a902013-07-24 19:00:04 -0700642
Yorke Leec3877df2013-08-09 09:56:00 -0700643 <!-- The digit to be displayed on the 0 key of the dialpad [CHAR LIMIT=1]-->
Yorke Leebf34a902013-07-24 19:00:04 -0700644 <string name="dialpad_0_number">0</string>
Yorke Leec3877df2013-08-09 09:56:00 -0700645 <!-- The digit to be displayed on the 1 key of the dialpad [CHAR LIMIT=1]-->
Yorke Leebf34a902013-07-24 19:00:04 -0700646 <string name="dialpad_1_number">1</string>
Yorke Leec3877df2013-08-09 09:56:00 -0700647 <!-- The digit to be displayed on the 2 key of the dialpad [CHAR LIMIT=1]-->
Yorke Leebf34a902013-07-24 19:00:04 -0700648 <string name="dialpad_2_number">2</string>
Yorke Leec3877df2013-08-09 09:56:00 -0700649 <!-- The digit to be displayed on the 3 key of the dialpad [CHAR LIMIT=1]-->
Yorke Leebf34a902013-07-24 19:00:04 -0700650 <string name="dialpad_3_number">3</string>
Yorke Leec3877df2013-08-09 09:56:00 -0700651 <!-- The digit to be displayed on the 4 key of the dialpad [CHAR LIMIT=1]-->
Yorke Leebf34a902013-07-24 19:00:04 -0700652 <string name="dialpad_4_number">4</string>
Yorke Leec3877df2013-08-09 09:56:00 -0700653 <!-- The digit to be displayed on the 5 key of the dialpad [CHAR LIMIT=1]-->
Yorke Leebf34a902013-07-24 19:00:04 -0700654 <string name="dialpad_5_number">5</string>
Yorke Leec3877df2013-08-09 09:56:00 -0700655 <!-- The digit to be displayed on the 6 key of the dialpad [CHAR LIMIT=1]-->
Yorke Leebf34a902013-07-24 19:00:04 -0700656 <string name="dialpad_6_number">6</string>
Yorke Leec3877df2013-08-09 09:56:00 -0700657 <!-- The digit to be displayed on the 7 key of the dialpad [CHAR LIMIT=1]-->
Yorke Leebf34a902013-07-24 19:00:04 -0700658 <string name="dialpad_7_number">7</string>
Yorke Leec3877df2013-08-09 09:56:00 -0700659 <!-- The digit to be displayed on the 8 key of the dialpad [CHAR LIMIT=1]-->
Yorke Leebf34a902013-07-24 19:00:04 -0700660 <string name="dialpad_8_number">8</string>
Yorke Leec3877df2013-08-09 09:56:00 -0700661 <!-- The digit to be displayed on the 9 key of the dialpad [CHAR LIMIT=1]-->
Yorke Leebf34a902013-07-24 19:00:04 -0700662 <string name="dialpad_9_number">9</string>
663 <!-- Do not translate. -->
Yorke Leebf34a902013-07-24 19:00:04 -0700664 <string name="dialpad_star_number">*</string>
665 <!-- Do not translate. -->
Yorke Leebf34a902013-07-24 19:00:04 -0700666 <string name="dialpad_pound_number">#</string>
Yorke Leec3877df2013-08-09 09:56:00 -0700667
668 <!-- Do not translate. -->
669 <string name="dialpad_0_letters">+</string>
670 <!-- Do not translate. -->
671 <string name="dialpad_1_letters"></string>
672 <!-- Do not translate. -->
673 <string name="dialpad_2_letters">ABC</string>
674 <!-- Do not translate. -->
675 <string name="dialpad_3_letters">DEF</string>
676 <!-- Do not translate. -->
677 <string name="dialpad_4_letters">GHI</string>
678 <!-- Do not translate. -->
679 <string name="dialpad_5_letters">JKL</string>
680 <!-- Do not translate. -->
681 <string name="dialpad_6_letters">MNO</string>
682 <!-- Do not translate. -->
683 <string name="dialpad_7_letters">PQRS</string>
684 <!-- Do not translate. -->
685 <string name="dialpad_8_letters">TUV</string>
686 <!-- Do not translate. -->
687 <string name="dialpad_9_letters">WXYZ</string>
688 <!-- Do not translate. -->
689 <string name="dialpad_star_letters"></string>
Yorke Leebf34a902013-07-24 19:00:04 -0700690 <!-- Do not translate. -->
691 <string name="dialpad_pound_letters"></string>
Christine Chen60914732013-07-30 14:23:54 -0700692
Yorke Leee00c9fe2014-04-12 12:42:06 -0700693 <!-- Title for the call log tab containing the list of all voicemails and calls
Yorke Lee0e8b0312014-04-16 16:08:56 -0700694 [CHAR LIMIT=30] -->
Yorke Leee00c9fe2014-04-12 12:42:06 -0700695 <string name="call_log_all_title">All</string>
696
697 <!-- Title for the call log tab containing the list of all missed calls only
Yorke Lee0e8b0312014-04-16 16:08:56 -0700698 [CHAR LIMIT=30] -->
Yorke Leee00c9fe2014-04-12 12:42:06 -0700699 <string name="call_log_missed_title">Missed</string>
700
Andrew Lee470fc452014-04-16 14:26:05 -0700701 <!-- Title for the call log tab containing the list of all voicemail calls only
Yorke Lee0e8b0312014-04-16 16:08:56 -0700702 [CHAR LIMIT=30] -->
Andrew Lee470fc452014-04-16 14:26:05 -0700703 <string name="call_log_voicemail_title">Voicemail</string>
704
Yorke Leee00c9fe2014-04-12 12:42:06 -0700705 <string name="tab_speed_dial">Speed Dial</string>
706
707 <string name="tab_recents">Recents</string>
708
709 <string name="tab_all_contacts">Contacts</string>
710
Christine Chen60914732013-07-30 14:23:54 -0700711 <!-- Title of fragment that displays all contacts -->
712 <string name="show_all_contacts_title">All contacts</string>
713 <!-- Title of show all contacts button -->
714 <string name="show_all_contacts_button_text">All contacts</string>
Christine Chen316b4712013-07-15 18:31:22 -0700715 <!-- Text displayed when user swipes out a favorite contact -->
Yorke Leeed017042013-09-09 16:00:19 -0700716 <string name="favorite_hidden">Removed from favorites</string>
Christine Chen316b4712013-07-15 18:31:22 -0700717 <!-- Text displayed for the undo button to undo removing a favorite contact -->
718 <string name="favorite_hidden_undo">Undo</string>
Yorke Leee1424812013-09-04 18:24:48 -0700719
720 <!-- Shortcut item used to call a number directly from search -->
721 <string name="search_shortcut_call_number">Call
722 <xliff:g id="number">%s</xliff:g>
723 </string>
724
725 <!-- Shortcut item used to add a number directly from search -->
726 <string name="search_shortcut_add_to_contacts">Add to contacts</string>
Chiao Chengcd9f3762013-09-20 16:00:54 -0700727
728 <!-- Number of missed calls shown on call card [CHAR LIMIT=40] -->
729 <string name="num_missed_calls"><xliff:g id="number">%s</xliff:g> new missed calls</string>
730
731 <!-- Shows when there are no favorites. -->
Christine Chen4f46a6e2013-09-23 17:33:46 -0700732 <string name="no_favorites">Favorites &amp; contacts you\ncall often will show here.\nSo, start calling.</string>
Chiao Chengcd9f3762013-09-20 16:00:54 -0700733
Yorke Lee3a847bd2013-09-24 15:19:53 -0700734 <!-- Shows up as a tooltip to provide a hint to the user that the profile pic in a contact
735 card can be tapped to bring up a list of all numbers, or long pressed to start reordering
736 [CHAR LIMIT=NONE]
737 -->
738 <string name="contact_tooltip">Tap image to see all numbers or press and hold to reorder</string>
Chiao Chengd21c3ad2013-10-04 16:13:26 -0700739
740 <!-- Content description for dismiss button on badge. [CHAR LIMIT=NONE] -->
741 <string name="description_dismiss">Dismiss</string>
Tyler Gunn9a066572014-02-19 15:58:26 -0800742
Yorke Lee3cefcc62014-01-16 11:26:46 -0800743 <!-- Remove button that shows up when contact is long-pressed. [CHAR LIMIT=NONE] -->
744 <string name="remove_contact">Remove</string>
Ihab Awad526c0b82014-02-27 12:55:36 -0800745
Tyler Gunn9a066572014-02-19 15:58:26 -0800746 <!-- Header text displayed on the main dialer screen above the list of favorite phone numbers.
747 [CHAR LIMIT=21] -->
748 <string name="favorites_menu_speed_dial">Speed Dial</string>
749
750 <!-- Button text for the "all contacts" button displayed on the main dialer screen above the
751 list of favorite phone numbers. Navigates the user to the "All Contacts" list.
752 This text represents the same action as the text in string "menu_allContacts".
753 [CHAR LIMIT=21] -->
754 <string name="favorites_menu_all_contacts">ALL CONTACTS</string>
755
756 <!-- The font-family to use for the "speed dial" label on the favorites menu.
757 Do not translate. -->
758 <string name="favorites_menu_speed_dial_font_family">sans-serif-light</string>
759
760 <!-- The font-family to use for the "all contacts" label on the favorites menu.
761 Do not translate. -->
762 <string name="favorites_menu_all_contacts_font_family">sans-serif</string>
Tyler Gunna8ff9752014-02-24 11:57:57 -0800763
764 <!-- The font-family to use for the text inside the searchbox.
765 Do not translate. -->
766 <string name="search_font_family">sans-serif</string>
767
768 <!-- The font-family to use for tab text.
769 Do not translate. -->
770 <string name="tab_font_family">sans-serif</string>
Chiao Cheng94b10b52012-08-17 16:59:12 -0700771</resources>