blob: 6ea6db64825eddf20deb92c2a05b989d13d1811e [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
309 <!-- Menu item to copy something [CHAR_LIMIT=10] -->
310 <string name="menu_copy">Copy</string>
311
312 <!-- Menu item used to show only outgoing in the call log. [CHAR LIMIT=30] -->
313 <string name="menu_show_outgoing_only">Show outgoing only</string>
314
315 <!-- Menu item used to show only incoming in the call log. [CHAR LIMIT=30] -->
316 <string name="menu_show_incoming_only">Show incoming only</string>
317
318 <!-- Menu item used to show only missed in the call log. [CHAR LIMIT=30] -->
319 <string name="menu_show_missed_only">Show missed only</string>
320
321 <!-- Menu item used to show only voicemails in the call log. [CHAR LIMIT=30] -->
322 <string name="menu_show_voicemails_only">Show voicemails only</string>
323
324 <!-- Menu item used to show all calls in the call log. [CHAR LIMIT=30] -->
325 <string name="menu_show_all_calls">Show all calls</string>
326
327 <!-- Menu items for dialpad options as part of Pause and Wait ftr -->
328 <string name="add_2sec_pause">Add 2-sec pause</string>
329 <string name="add_wait">Add wait</string>
330
331 <!-- Menu item label for call settings [CHAR LIMIT=30] -->
332 <string name="call_settings">Settings</string>
333
334 <!-- Menu item to create a new contact -->
335 <string name="menu_newContact">New contact</string>
336
337 <!-- Title bar for call detail screen -->
338 <string name="callDetailTitle">Call details</string>
339
340 <!-- Toast for call detail screen when couldn't read the requested details -->
341 <string name="toast_call_detail_error">Couldn\'t read details for the requested call.</string>
342
343 <!-- Item label: jump to the in-call DTMF dialpad.
344 (Part of a list of options shown in the dialer when another call
345 is already in progress.) -->
346 <string name="dialer_useDtmfDialpad">Use touch tone keypad</string>
347
348 <!-- Item label: jump to the in-call UI.
349 (Part of a list of options shown in the dialer when another call
350 is already in progress.) -->
351 <string name="dialer_returnToInCallScreen">Return to call in progress</string>
352
353 <!-- Item label: use the Dialer's dialpad to add another call.
354 (Part of a list of options shown in the dialer when another call
355 is already in progress.) -->
356 <string name="dialer_addAnotherCall">Add call</string>
357
358 <!-- Title for incoming call details screen -->
359 <string name="type_incoming">Incoming call</string>
360
361 <!-- Title for outgoing call details screen -->
362 <string name="type_outgoing">Outgoing call</string>
363
364 <!-- Title for missed call details screen -->
365 <string name="type_missed">Missed call</string>
366
367 <!-- Title for voicemail details screen -->
368 <string name="type_voicemail">Voicemail</string>
369
370 <!-- Description for incoming calls going to voice mail vs. not -->
371 <string name="actionIncomingCall">Incoming calls</string>
372
373 <!-- String describing the icon in the call log used to play a voicemail.
374
375 Note: AccessibilityServices use this attribute to announce what the view represents.
376 This is especially valuable for views without textual representation like ImageView.
377 -->
378 <string name="description_call_log_play_button">Play voicemail</string>
379
380 <!-- String describing the icon in the call log used to represent an incoming call.
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_incoming_call">Incoming call</string>
386
387 <!-- String describing the icon in the call log used to represent an outgoing 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
393 <string name="description_call_log_outgoing_call">Outgoing call</string>
394
395 <!-- String describing the icon in the call log used to represent a missed call.
396
397 Note: AccessibilityServices use this attribute to announce what the view represents.
398 This is especially valuable for views without textual representation like ImageView.
399 -->
400
401 <string name="description_call_log_missed_call">Missed call</string>
402
403 <!-- String describing the icon in the call log used to represent a voicemail left to the user.
404
405 Note: AccessibilityServices use this attribute to announce what the view represents.
406 This is especially valuable for views without textual representation like ImageView.
407 -->
408 <string name="description_call_log_voicemail">Voicemail</string>
409
410 <!-- String describing the button to add a contact for the current number.
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_add_contact">Add contact</string>
416
417 <!-- String describing the button to view the 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_view_contact">View contact <xliff:g id="name">%1$s</xliff:g></string>
423
424 <!-- String describing the button to call a number or contact.
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_call">Call <xliff:g id="name">%1$s</xliff:g></string>
430
431
432 <!-- String describing the button to SMS a number or contact.
433
434 Note: AccessibilityServices use this attribute to announce what the view represents.
435 This is especially valuable for views without textual representation like ImageView.
436 [CHAR LIMIT=NONE]
437 -->
438 <string name="description_send_text_message">Send text message to <xliff:g id="name">%1$s</xliff:g></string>
439
440 <!-- String describing the icon in the call log used to represent an unheard voicemail left to
441 the user.
442
443 Note: AccessibilityServices use this attribute to announce what the view represents.
444 This is especially valuable for views without textual representation like ImageView.
445 [CHAR LIMIT=NONE]
446 -->
447 <string name="description_call_log_unheard_voicemail">Unheard voicemail</string>
448
Yorke Lee191df332013-07-30 17:21:28 -0700449 <!-- String describing the icon used to start a voice search -->
450 <string name="description_start_voice_search">Start voice search</string>
451
Chiao Chenga1b886a2012-12-05 12:09:05 -0800452 <!-- The string used to represent an unknown location for a phone number in the call log [CHAR LIMIT=3] -->
453 <string name="call_log_empty_gecode">-</string>
454
455 <!-- Menu item used to call a contact, containing the number of the contact to call -->
456 <string name="menu_callNumber">Call <xliff:g id="number">%s</xliff:g></string>
457
458 <!-- String used to display calls from unknown numbers in the call log -->
459 <string name="unknown">Unknown</string>
460
461 <!-- String used for displaying calls to the voicemail number in the call log -->
462 <string name="voicemail">Voicemail</string>
463
464 <!-- String used to display calls from private numbers in the call log -->
465 <string name="private_num">Private number</string>
466
467 <!-- String used to display calls from pay phone in the call log -->
468 <string name="payphone">Pay phone</string>
469
470 <!-- Displayed in the text entry box in the dialer when in landscape mode to guide the user
471 to dial using the physical keyboard -->
472 <string name="dialerKeyboardHintText">Use keyboard to dial</string>
473
474 <!-- Hint text displayed in the "digits" field above the dialer's
475 dialpad, if there's already a call in progress. (This hint
476 reminds the user that the dialer will add a new call, as opposed
477 to sending DTMF tones over the current call.)
478 [CHAR LIMIT=40] -->
479 <string name="dialerDialpadHintText">Dial to add a call</string>
480
481 <!-- A nicely formatted call duration displayed when viewing call details. For example "42 mins 28 secs" -->
482 <string name="callDetailsDurationFormat"><xliff:g id="minutes" example="42">%s</xliff:g> mins <xliff:g id="seconds" example="28">%s</xliff:g> secs</string>
483
484 <!-- Dialog message which is shown when the user tries to make a phone call
485 to prohibited phone numbers [CHAR LIMIT=NONE] -->
486 <string name="dialog_phone_call_prohibited_message" msgid="4313552620858880999">Call not sent</string>
487
488 <!-- Dialog message which is shown when the user tries to check voicemail
489 while the system isn't ready for the access. [CHAR LIMIT=NONE] -->
490 <string name="dialog_voicemail_not_ready_message">To set up voicemail, go to Menu &gt; Settings.</string>
491
492 <!-- Dialog message which is shown when the user tries to check voicemail
493 while the system is in airplane mode. The user cannot access to
494 voicemail service in Airplane mode. [CHAR LIMI=NONE] -->
495 <string name="dialog_voicemail_airplane_mode_message">To call voicemail, first turn off Airplane mode.</string>
496
497 <!-- 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] -->
498 <string name="contact_list_loading">Loading\u2026</string>
499
500 <!-- The title of a dialog that displays the IMEI of the phone -->
501 <string name="imei">IMEI</string>
502
503 <!-- The title of a dialog that displays the MEID of the CDMA phone -->
504 <string name="meid">MEID</string>
505
506 <!-- Dialog text displayed when loading a phone number from the SIM card for speed dial -->
507 <string name="simContacts_emptyLoading">Loading from SIM card\u2026</string>
508
509 <!-- Dialog title displayed when loading a phone number from the SIM card for speed dial -->
510 <string name="simContacts_title">SIM card contacts</string>
511
Chiao Cheng073b5cf2012-12-07 11:36:00 -0800512 <!-- Message displayed when there is no application available to handle the add contact menu option. [CHAR LIMIT=NONE] -->
513 <string name="add_contact_not_available">Re-enable the People application to use this feature.</string>
514
Yorke Leedfb2eee2013-06-26 18:24:32 -0700515 <!-- Hint displayed in dialer search box when there is no query that is currently typed.
516 [CHAR LIMIT=25] -->
517 <string name="dialer_hint_find_contact">Type a name or phone</string>
518
519 <!-- Title for the call log tab containing the list of all voicemails and calls
Yorke Lee04890042013-07-19 16:01:02 -0700520 [CHAR LIMIT=15] -->
Yorke Leedfb2eee2013-06-26 18:24:32 -0700521 <string name="call_log_all_title">All</string>
522
523 <!-- Title for the call log tab containing the list of all missed calls only
Yorke Lee04890042013-07-19 16:01:02 -0700524 [CHAR LIMIT=15] -->
Yorke Leedfb2eee2013-06-26 18:24:32 -0700525 <string name="call_log_missed_title">Missed</string>
526
Yorke Leeb7611d72013-07-29 09:45:30 -0700527 <!-- String resource for the font-family to use for the call log activity's title
528 Do not translate. -->
529 <string name="call_log_activity_title_font_family">sans-serif-light</string>
530
Christine Chen60914732013-07-30 14:23:54 -0700531 <!-- String resource for the font-family to use for show all contacts' title
532 Do not translate. -->
533 <string name="show_all_contacts_title_font_family">sans-serif-light</string>
534
Yorke Leedfb2eee2013-06-26 18:24:32 -0700535 <!-- Text displayed when the list of missed calls is empty -->
536 <string name="recentMissed_empty">No recent missed calls.</string>
537
538 <!-- Text displayed when the list of voicemails is empty -->
539 <string name="recentVoicemails_empty">No recent voicemails.</string>
540
541 <!-- Menu option to enable all contacts to be displayed -->
542 <string name="show_all_contacts">Show all contacts</string>
543
544 <!-- Menu option to show favorite contacts only -->
545 <string name="show_favorites_only">Show favorites only</string>
Yorke Leed9999322013-07-19 09:22:03 -0700546
547 <!-- Title of activity that displays a list of all calls -->
548 <string name="call_log_activity_title">History</string>
Yorke Leebf34a902013-07-24 19:00:04 -0700549
Yorke Leec3877df2013-08-09 09:56:00 -0700550 <!-- The digit to be displayed on the 0 key of the dialpad [CHAR LIMIT=1]-->
Yorke Leebf34a902013-07-24 19:00:04 -0700551 <string name="dialpad_0_number">0</string>
Yorke Leec3877df2013-08-09 09:56:00 -0700552 <!-- The digit to be displayed on the 1 key of the dialpad [CHAR LIMIT=1]-->
Yorke Leebf34a902013-07-24 19:00:04 -0700553 <string name="dialpad_1_number">1</string>
Yorke Leec3877df2013-08-09 09:56:00 -0700554 <!-- The digit to be displayed on the 2 key of the dialpad [CHAR LIMIT=1]-->
Yorke Leebf34a902013-07-24 19:00:04 -0700555 <string name="dialpad_2_number">2</string>
Yorke Leec3877df2013-08-09 09:56:00 -0700556 <!-- The digit to be displayed on the 3 key of the dialpad [CHAR LIMIT=1]-->
Yorke Leebf34a902013-07-24 19:00:04 -0700557 <string name="dialpad_3_number">3</string>
Yorke Leec3877df2013-08-09 09:56:00 -0700558 <!-- The digit to be displayed on the 4 key of the dialpad [CHAR LIMIT=1]-->
Yorke Leebf34a902013-07-24 19:00:04 -0700559 <string name="dialpad_4_number">4</string>
Yorke Leec3877df2013-08-09 09:56:00 -0700560 <!-- The digit to be displayed on the 5 key of the dialpad [CHAR LIMIT=1]-->
Yorke Leebf34a902013-07-24 19:00:04 -0700561 <string name="dialpad_5_number">5</string>
Yorke Leec3877df2013-08-09 09:56:00 -0700562 <!-- The digit to be displayed on the 6 key of the dialpad [CHAR LIMIT=1]-->
Yorke Leebf34a902013-07-24 19:00:04 -0700563 <string name="dialpad_6_number">6</string>
Yorke Leec3877df2013-08-09 09:56:00 -0700564 <!-- The digit to be displayed on the 7 key of the dialpad [CHAR LIMIT=1]-->
Yorke Leebf34a902013-07-24 19:00:04 -0700565 <string name="dialpad_7_number">7</string>
Yorke Leec3877df2013-08-09 09:56:00 -0700566 <!-- The digit to be displayed on the 8 key of the dialpad [CHAR LIMIT=1]-->
Yorke Leebf34a902013-07-24 19:00:04 -0700567 <string name="dialpad_8_number">8</string>
Yorke Leec3877df2013-08-09 09:56:00 -0700568 <!-- The digit to be displayed on the 9 key of the dialpad [CHAR LIMIT=1]-->
Yorke Leebf34a902013-07-24 19:00:04 -0700569 <string name="dialpad_9_number">9</string>
570 <!-- Do not translate. -->
Yorke Leebf34a902013-07-24 19:00:04 -0700571 <string name="dialpad_star_number">*</string>
572 <!-- Do not translate. -->
Yorke Leebf34a902013-07-24 19:00:04 -0700573 <string name="dialpad_pound_number">#</string>
Yorke Leec3877df2013-08-09 09:56:00 -0700574
575 <!-- Do not translate. -->
576 <string name="dialpad_0_letters">+</string>
577 <!-- Do not translate. -->
578 <string name="dialpad_1_letters"></string>
579 <!-- Do not translate. -->
580 <string name="dialpad_2_letters">ABC</string>
581 <!-- Do not translate. -->
582 <string name="dialpad_3_letters">DEF</string>
583 <!-- Do not translate. -->
584 <string name="dialpad_4_letters">GHI</string>
585 <!-- Do not translate. -->
586 <string name="dialpad_5_letters">JKL</string>
587 <!-- Do not translate. -->
588 <string name="dialpad_6_letters">MNO</string>
589 <!-- Do not translate. -->
590 <string name="dialpad_7_letters">PQRS</string>
591 <!-- Do not translate. -->
592 <string name="dialpad_8_letters">TUV</string>
593 <!-- Do not translate. -->
594 <string name="dialpad_9_letters">WXYZ</string>
595 <!-- Do not translate. -->
596 <string name="dialpad_star_letters"></string>
Yorke Leebf34a902013-07-24 19:00:04 -0700597 <!-- Do not translate. -->
598 <string name="dialpad_pound_letters"></string>
Christine Chen60914732013-07-30 14:23:54 -0700599
600 <!-- Title of fragment that displays all contacts -->
601 <string name="show_all_contacts_title">All contacts</string>
602 <!-- Title of show all contacts button -->
603 <string name="show_all_contacts_button_text">All contacts</string>
Christine Chen316b4712013-07-15 18:31:22 -0700604 <!-- Text displayed when user swipes out a favorite contact -->
605 <string name="favorite_hidden">Hidden from favorites</string>
606 <!-- Text displayed for the undo button to undo removing a favorite contact -->
607 <string name="favorite_hidden_undo">Undo</string>
Chiao Cheng94b10b52012-08-17 16:59:12 -0700608</resources>