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