blob: 412467e8c83e00aa2361c995b58c5d10e08e76ac [file] [log] [blame]
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -08001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2006 The Android Open Source Project
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15-->
16
17<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
18 <!-- Title for the activity that shows contacts. This is the name
19 used in the Launcher icon. -->
Jeff Hamilton7f805bf2009-05-21 16:16:35 -070020 <string name="contactsList">People</string>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080021
22 <!-- Title for the activity that dials the phone. This is the name
23 used in the Launcher icon. -->
24 <string name="launcherDialer">Dialer</string>
25
26 <!-- Name of activity that allows users to create shortcuts on the home screen to a contact.
27 This shows up in a list of things like bookmark, folder, music playlist, etc -->
28 <string name="shortcutContact">Contact</string>
29
30 <!-- Title for the activity that shows only starred contacts -->
31 <string name="starredList">Starred</string>
32
33 <!-- Title for the activity that shows only frequently contacted contacts -->
34 <string name="frequentList">Frequent</string>
35
36 <!-- Title for the activity that shows a mix of starred contacts and frequently contacted
37 contacts. -->
38 <string name="strequentList">Favorites</string>
39
40 <!-- The title bar when viewing the contact details activity -->
41 <string name="viewContactTitle">Contact details</string>
42
43 <!-- The description presented to the user in the Intent choose when there are multiple activities that allow
44 viewing a contact. This string represents the built in way to view the contact. -->
45 <string name="viewContactDesription">View contact</string>
46
47 <!-- The description presented to the user in the Intent choose when there are multiple activities that allow
48 editing a contact. This string represents the built in way to edit the contact. -->
49 <string name="editContactDescription">Edit contact</string>
50
51 <!-- The description presented to the user in the Intent choose when there are multiple activities that allow
52 creating a new contact. This string represents the built in way to create the contact. -->
53 <string name="insertContactDescription">Create contact</string>
54
55 <!-- Hint text in the search box when the user hits the Search key while in the contacts app -->
56 <string name="searchHint">Search contacts</string>
57
58 <!-- Menu item to search contacts -->
59 <string name="menu_search">Search</string>
60
61 <!-- Menu item to create a new contact -->
62 <string name="menu_newContact">New contact</string>
63
64 <!-- Menu item used to view the details for a specific contact -->
65 <string name="menu_viewContact">View contact</string>
66
67 <!-- Menu item used to call a contact, containing the name of the contact to call -->
68 <string name="menu_callNumber">Call <xliff:g id="name">%s</xliff:g></string>
69
70 <!-- Menu item used to add a star to a contact, which makes that contact show up at the top of favorites -->
71 <string name="menu_addStar">Add to favorites</string>
72
73 <!-- Menu item used to remove a star from a contact, making the contact no longer show up at the top of favorites -->
74 <string name="menu_removeStar">Remove from favorites</string>
75
76 <!-- Optional menu item to encode the current contact as a QR Code using Barcode Scanner. -->
77 <string name="menu_showBarcode">Show barcode</string>
78
79 <!-- Menu item used to edit a specific contact -->
80 <string name="menu_editContact">Edit contact</string>
81
82 <!-- Menu item used to delete a specific contact -->
83 <string name="menu_deleteContact">Delete contact</string>
84
85 <!-- Menu item used to call a specific contact when viewing the details of that contact. -->
86 <string name="menu_call">Call</string>
87
88 <!-- Menu item used to send an SMS or MMS message to a specific phone number or a contacts default phone number -->
89 <string name="menu_sendSMS">Send SMS/MMS</string>
90
91 <!-- Menu item used to send an email message to a specific email address -->
92 <string name="menu_sendEmail">Send email</string>
93
94 <!-- Menu item used to view a contact's address on a map -->
95 <string name="menu_viewAddress">Map address</string>
96
97 <!-- Menu item that makes a phone the default for a contact. The default number used when you
98 try to call a contact without specifying a specific number. -->
99 <string name="menu_makeDefaultNumber">Make default number</string>
Dmitri Plotnikov49f705f2009-06-17 18:31:56 -0700100
Evan Millar45e0ed32009-06-01 16:44:38 -0700101 <!-- Menu item that makes an email address the default for a contact. The default email used
102 when you try to email a contact without specifying a specific address. -->
103 <string name="menu_makeDefaultEmail">Make default email</string>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800104
Dmitri Plotnikovb4491ee2009-06-15 09:31:02 -0700105 <!-- Menu item that splits an item from the contact detail into a separate aggregate -->
106 <string name="menu_splitAggregate">Split</string>
Dmitri Plotnikov49f705f2009-06-17 18:31:56 -0700107
Dmitri Plotnikovb4491ee2009-06-15 09:31:02 -0700108 <!-- Dialog title for the list of constituent contacts in the split aggregate dialog. -->
109 <string name="splitAggregate_title">Split contact</string>
Dmitri Plotnikov49f705f2009-06-17 18:31:56 -0700110
111 <!-- Toast shown after a contact has been split from an aggregate by a user action -->
112 <string name="contactsSplitMessage">Contact split</string>
113
114 <!-- Menu item that joins an aggregate with another aggregate -->
115 <string name="menu_joinAggregate">Join</string>
116
Dmitri Plotnikovd7c4af22009-06-19 18:31:00 -0700117 <!-- Activity title for the Join Contact list -->
118 <string name="titleJoinAggregate">Join contact</string>
119
120 <!-- List separator for the Join Contact list: Suggestions -->
121 <string name="separatorJoinAggregateSuggestions">Suggestions</string>
122
123 <!-- List separator for the Join Contact list: A-Z -->
124 <string name="separatorJoinAggregateAll">All contacts</string>
125
Dmitri Plotnikov49f705f2009-06-17 18:31:56 -0700126 <!-- Toast shown after two contacts have been joined by a user action -->
127 <string name="contactsJoinedMessage">Contacts joined</string>
128
Dmitri Plotnikovef038722009-06-24 18:51:47 -0700129 <!-- Menu item that opens the Options activity for a given contact -->
130 <string name="menu_contactOptions">Options</string>
131
132 <!-- Title for the Options activity for a given contact -->
133 <string name="contactOptionsTitle">Options</string>
134
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800135 <!-- Confirmation dialog title after users selects to delete a contact. -->
136 <string name="deleteConfirmation_title">Delete</string>
137
138 <!-- Confirmation dialog contents after users selects to delete a contact. -->
139 <string name="deleteConfirmation">This contact will be deleted.</string>
140
141 <!-- Menu item to indicate you are done editing a contact and want to save the changes you've made -->
142 <string name="menu_done">Done</string>
143
144 <!-- Menu item to indicate you want to stop editing a contact and NOT save the changes you've made -->
145 <string name="menu_doNotSave">Revert</string>
146
147 <!-- The title of the activity that edits and existing contact -->
148 <string name="editContact_title_edit">Edit contact</string>
149
150 <!-- The title of the activity that creates a new contact -->
151 <string name="editContact_title_insert">New contact</string>
152
153 <!-- Button that adds more info to a contact, like a new phone number, email address, or postal address -->
154 <string name="menu_addItem">More info</string>
155
156 <!-- The label describing the phonetic pronunciation/reading of a contact name -->
157 <string name="label_phonetic_name">Phonetic</string>
158
159 <!-- The label describing the Notes field of a contact. This field allows free form text entry about a contact -->
160 <string name="label_notes">Notes</string>
161
162 <!-- The label describing the custom ringtone for a contact -->
163 <string name="label_ringtone">Ringtone</string>
164
The Android Open Source Projectcac191e2009-03-18 22:20:27 -0700165 <!-- The label for a list of all the groups that the contact is associated with -->
166 <string name="label_groups">Groups</string>
167
168 <!-- Provides a delimeter in a list of groups. For example, "g1, g2" has ", g2" generated using this string -->
169 <string name="group_list">, <xliff:g id="groupName">%s</xliff:g></string>
170
Alex Kennbergbd7e1232009-03-27 10:28:23 -0700171 <!-- Menu item used to send user to the edit contact screen -->
172 <string name="menu_viewGroup">Edit groups</string>
173
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800174 <!-- Hint text for the contact name when editing -->
175 <string name="ghostData_name">First and Last</string>
176
177 <!-- Hint text for the phonetic reading of the contact name when editing -->
178 <string name="ghostData_phonetic_name">Phonetic name</string>
179
180 <!-- Hint text for the organization name when editing -->
181 <string name="ghostData_company">Company</string>
182
183 <!-- Hint text for the organization position when editing -->
184 <string name="ghostData_title">Position</string>
185
186 <!-- Hint text for an IM account when editing -->
187 <string name="ghostData_im">IM name</string>
188
189 <!-- Hint text for the notes field when editing -->
190 <string name="ghostData_notes">My note</string>
191
192 <!-- Hint text for the phone number field when editing -->
193 <string name="ghostData_phone">Phone number</string>
194
195 <!-- Hint text for the email address field when editing -->
196 <string name="ghostData_email">Email address</string>
197
198 <!-- Hint text for the postal address field when editing -->
199 <string name="ghostData_postal">Postal address</string>
200
Alex Kennberg87fc3172009-03-28 06:43:06 -0700201 <!-- Hint text for the group field when editing -->
202 <string name="ghostData_group">Display group</string>
203
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800204 <!-- Message displayed in a toast when you try to view the details of a contact that
205 for some reason doesn't exist anymore. -->
206 <string name="invalidContactMessage">The contact does not exist.</string>
207
208 <!-- When picking a contact from a list of all contacts there is an entry at the top of the
209 list that allows the user to create a new contact, which this string is used for -->
210 <string name="pickerNewContactHeader">Create new contact</string>
211
212 <!-- Dialog title when you select a label when creating or edit a contact -->
213 <string name="selectLabel">Select label</string>
214
215 <!-- Header that expands to list all of the types of phone numbers when editing or creating a phone number for a contact -->
216 <string name="phoneLabelsGroup">Phone</string>
217
218 <!-- Header that expands to list all of the types of email addresses when editing or creating an email address for a contact -->
219 <string name="emailLabelsGroup">Email</string>
220
221 <!-- Header that expands to list all of the types of IM account when editing or creating an IM account for a contact -->
222 <string name="imLabelsGroup">IM</string>
223
224 <!-- Header that expands to list all of the types of postal addresses when editing or creating an postal address for a contact -->
225 <string name="postalLabelsGroup">Postal address</string>
226
227 <!-- Header that expands to list other types of data you can add to a contact, like notes and organizations -->
228 <string name="otherLabelsGroup">Other</string>
229
230 <!-- The order of the items below is important, don't reorder without changing EditContactActivity.java -->
231 <skip/>
232 <!-- The labels that are under the otherLabelsGroup when editing a contact. -->
233 <string-array name="otherLabels">
234 <!-- An organization associated with a contact -->
235 <item>Organization</item>
236 <!-- A note associated with a contact -->
237 <item>Note</item>
238 </string-array>
239
240 <!-- Title of the dialog that appears if there are no pictures from which to create an icon for a contact -->
241 <string name="errorDialogTitle">No pictures</string>
242
243 <!-- Description in the dialog that appears if there are no pictures from which to create an icon for a contact -->
244 <string name="photoPickerNotFoundText">No pictures are available on the phone.</string>
245
246 <!-- Description of the activity used to set a photo in the pictures application as the icon for a contact -->
247 <string name="attachToContact">Contact icon</string>
248
249 <!-- Title of the dialog used to set a custom label for a contact detail, like a phone number or email address.
250 For example, this may be used to set a phone number's label to "Vaction house" -->
251 <string name="customLabelPickerTitle">Custom label name</string>
252
253 <!-- The menu item to open the list of groups to display -->
Jeff Sharkeyd5c5b9a2009-06-21 19:46:04 -0700254 <string name="menu_displayGroup">Display groups</string>
255
256 <!-- Title of activity that lets user pick which contact groups to display -->
257 <string name="displayGroups">Display groups</string>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800258
259 <!-- The menu item that leads to the settings for contact syncing -->
260 <string name="syncGroupPreference">Edit sync groups</string>
261
262 <!-- The menu item that launches the SIM card import activity -->
263 <string name="importFromSim">Import contacts</string>
264
265 <!-- Check box label that allows calls to the contact to be sent directly to voicemail -->
266 <string name="send_to_voicemail_checkbox">Send calls directly to voicemail</string>
267
268 <!-- String letting the user know that calls from the contact they're viewing will be sent directly to voicemail -->
269 <string name="send_to_voicemail_view">Calls are sent directly to voicemail.</string>
270
271 <!-- String used to indicate that a contact doesn't have a custom ringtone -->
272 <string name="default_ringtone">Default</string>
273
274 <!-- The button/menu item that allows you to add a picture to a contact -->
275 <string name="addPicture">Add icon</string>
276
277 <!-- The menu item that allows you to remove a picture from a contact -->
278 <string name="removePicture">Remove icon</string>
279
280 <!-- The text displayed when the contacts list is empty while displaying all contacts -->
281 <string name="noContacts">No contacts.</string>
282
283 <!-- The text displayed when the contacts list is empty while displaying only contacts that have phone numbers -->
284 <string name="noContactsWithPhoneNumbers">No contacts with phone numbers.</string>
285
286 <!-- The text displayed when the contacts list is empty while displaying favorite contacts -->
287 <string name="noFavorites">No favorites.</string>
288
289 <!-- Title for group selection dialog. The dialog contains a list of contact groups that the
290 user can pick from, indicating they only want to see the contacts in that group. -->
291 <string name="select_group_title">Groups</string>
The Android Open Source Projectcac191e2009-03-18 22:20:27 -0700292
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800293 <!-- The text displayed when the contacts list is empty while displaying a single group of contacts -->
294 <string name="groupEmpty">Your \"<xliff:g id="groupName">%s</xliff:g>\" group is empty.</string>
295
296 <!-- The description of all groups when asking the user what they want to display -->
297 <string name="showAllGroups">All contacts</string>
298
Jeff Sharkeyd5c5b9a2009-06-21 19:46:04 -0700299 <!-- The title of the filter to only show contacts with phone numbers -->
300 <string name="showFilterPhones">Only contacts with phones</string>
301
302 <!-- The description of the filter to only show contacts with phone numbers -->
303 <string name="showFilterPhonesDescrip">Only display contacts that have phone numbers</string>
304
305 <!-- The header over the list of all contacts groups -->
306 <string name="headerContactGroups">Contact groups</string>
307
308 <!-- The description of a group with the total number of contacts -->
309 <plurals name="groupDescrip">
310 <item quantity="other"><xliff:g id="count">%0$d</xliff:g> contacts</item>
311 </plurals>
312
313 <!-- The description of a group with the total number of contacts, and the total number of contacts with phone numbers -->
314 <plurals name="groupDescripPhones">
315 <item quantity="other"><xliff:g id="count">%1$d</xliff:g> contacts, <xliff:g id="countWithPhones">%2$d</xliff:g> with phones</item>
316 </plurals>
317
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800318 <!-- The setting to sync all contacts from the server -->
319 <string name="syncAllGroups">Sync all contacts</string>
320
321 <!-- The name of the system "My Contacts" group. This should be kept in sync with the web UI -->
322 <string name="groupNameMyContacts">My Contacts</string>
323
324 <!-- The group type that displays only contacts with phone numbers -->
325 <string name="groupNameWithPhones">Contacts with phone numbers</string>
326
Evan Millar56f996e2009-03-24 21:09:37 -0700327 <!-- The group type that displays "Starred in Android" contacts -->
328 <string name="starredInAndroid">Starred in Android</string>
329
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800330 <!-- Toast displayed when a contact is created -->
331 <string name="contactCreatedToast">Contact created.</string>
332
333 <!-- Toast displayed when a contact is saved -->
334 <string name="contactSavedToast">Contact saved.</string>
335
336 <!-- Separator in the contact details list describing that the items below it will place a call when clicked -->
337 <string name="listSeparatorCallNumber">Dial number</string>
338
339 <!-- Section header in the Edit Contacts screen for phone numbers -->
340 <string name="listSeparatorCallNumber_edit">Phone numbers</string>
341
342 <!-- Separator in the contact details list describing that the items below it will send an SMS/MMS to a phone number -->
343 <string name="listSeparatorSendSmsMms">Send SMS/MMS</string>
344
345 <!-- Separator in the contact details list describing that the items below it will send an email -->
346 <string name="listSeparatorSendEmail">Send email</string>
347
348 <!-- Section header in the Edit Contacts screen for E-mail addresses -->
349 <string name="listSeparatorSendEmail_edit">Email addresses</string>
350
351 <!-- Separator in the contact details list describing that the items below it will send an IM -->
352 <string name="listSeparatorSendIm">Send instant message</string>
353
354 <!-- Section header in the Edit Contacts screen for Instant messanger accounts -->
355 <string name="listSeparatorSendIm_edit">Chat addresses</string>
356
357 <!-- Separator in the contact details list describing that the items below it will open maps with the given address -->
358 <string name="listSeparatorMapAddress">Map address</string>
359
360 <!-- Section header in the Edit Contacts screen for map addresses -->
361 <string name="listSeparatorMapAddress_edit">Postal addresses</string>
362
363 <!-- Separator in the contact details list describing that the items below are non-actionable organization information -->
364 <string name="listSeparatorOrganizations">Organizations</string>
365
The Android Open Source Projectcac191e2009-03-18 22:20:27 -0700366 <!-- Separator in the contact details list describing that the items below are non-actionable group information -->
367 <string name="listSeparatorGroups">Groups</string>
368
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800369 <!-- Separator in the contact details list describing that the items below are random other non-actionable information about a contact -->
370 <string name="listSeparatorOtherInformation">Other information</string>
371
372 <!-- Section header in the Edit Contacts screen for other options, such as setting ringtone -->
373 <string name="listSeparatorOtherInformation_edit">Other options</string>
374
375 <!-- Section header in the Edit Contacts screen for the "Add more items" button -->
376 <string name="listSeparatorMore_edit">More</string>
377
Dmitri Plotnikov3a0e2592009-05-11 17:49:53 -0700378 <!-- The description text for the social activity stream tab. Space is limited for this string, so the shorter the better -->
379 <string name="socialStreamIconLabel">Social</string>
Dmitri Plotnikov06191cd2009-05-07 14:11:52 -0700380
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800381 <!-- The description text for the contacts tab. Space is limited for this string, so the shorter the better -->
Jeff Hamilton7f805bf2009-05-21 16:16:35 -0700382 <string name="contactsIconLabel">People</string>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800383
384 <!-- The description text for the favorites tab. Space is limited for this string, so the shorter the better -->
385 <string name="contactsFavoritesLabel">Favorites</string>
386
387 <!-- The description text for the dialer tab. Space is limited for this string, so the shorter the better -->
388 <string name="dialerIconLabel">Dialer</string>
389
390 <!-- The description text for the call log tab. Space is limited for this string, so the shorter the better -->
391 <string name="recentCallsIconLabel">Call log</string>
392 <string name="liveFolderAll">All contacts</string>
393 <string name="liveFolderFavorites">Starred contacts</string>
394 <string name="liveFolderPhone">Contacts with phone numbers</string>
395
396 <!-- Menu item used to send an SMS or MMS message to a phone number -->
397 <string name="menu_sendTextMessage">Send SMS message</string>
398
399 <!-- Menu item used to call a contact from the call log -->
400 <string name="recentCalls_callNumber">Call <xliff:g id="name">%s</xliff:g></string>
401
402 <!-- Menu item used to copy a number from the call log to the dialer so it can be edited before calling it -->
403 <string name="recentCalls_editNumberBeforeCall">Edit number before call</string>
404
405 <!-- Menu item used to add a number from the call log to contacts -->
406 <string name="recentCalls_addToContact">Add to contacts</string>
407
408 <!-- Menu item used to remove a single call from the call log -->
409 <string name="recentCalls_removeFromRecentList">Remove from call log</string>
410
411 <!-- Menu item used to remove all calls from the call log -->
412 <string name="recentCalls_deleteAll">Clear call log</string>
413
414 <!-- Text displayed when the call log is empty -->
415 <string name="recentCalls_empty">Call log is empty.</string>
416
417 <!-- The title of a dialog that displays the IMEI of the phone -->
418 <string name="imei">IMEI</string>
419
420 <!-- String used for displaying calls to the voicemail number in the call log -->
421 <string name="voicemail">Voicemail</string>
422
423 <!-- String used to display calls from unknown numbers in the call log -->
424 <string name="unknown">Unknown</string>
425
426 <!-- String used to display calls from private numbers in the call log -->
427 <string name="private_num">Private number</string>
The Android Open Source Project37a16ac2009-03-18 17:39:48 -0700428
429 <!-- String used to display calls from pay phone in the call log -->
430 <string name="payphone">Pay phone</string>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800431
432 <!-- Displayed in the text entry box in the dialer when in landscape mode to guide the user
433 to dial using the physical keyboard -->
434 <string name="dialerKeyboardHintText">Use keyboard to dial</string>
435
436 <!-- Hint text displayed in the "digits" field above the dialer's
437 dialpad, if there's already a call in progress. (This hint
438 reminds the user that the dialer will add a new call, as opposed
439 to sending DTMF tones over the current call.) -->
440 <string name="dialerDialpadHintText">Dial to add a call</string>
441
442 <!-- Dialog text displayed when loading a phone number from the SIM card for speed dial -->
443 <string name="simContacts_emptyLoading">Loading from SIM card\u2026</string>
444
445 <!-- Dialog title displayed when loading a phone number from the SIM card for speed dial -->
446 <string name="simContacts_title">SIM card contacts</string>
447
448 <!-- Displayed when a user is prompted to setup a Google account for syncing -->
449 <string name="contactsSyncPlug"><font fgcolor="#ffffffff">Sync your Google contacts!</font>
450 \nAfter syncing to your phone, your contacts will be available to you wherever you go.</string>
451
452 <!-- Displayed full screen when the user has no contacts and they are displaying the My Contacts group, and contact syncing is disabled -->
453 <string name="noContactsHelpText">"You don't have any contacts.\n\nTo add contacts, press <font fgcolor="#ffffffff"><b>Menu</b></font> and select:\n
454 \n<li><font fgcolor="#ffffffff"><b>New contact</b></font> to create a new contact from scratch\n</li>
455 \n<li><font fgcolor="#ffffffff"><b>Import contacts</b></font> to add contacts from your SIM card\n</li>"
456 </string>
457
458 <!-- Displayed full screen when the user has no contacts and they are displaying the My Contacts group, and contact syncing is enabled -->
459 <string name="noContactsHelpTextWithSync">"You don't have any contacts.\n\nTo add contacts, press <font fgcolor="#ffffffff"><b>Menu</b></font> and select:\n
460 \n<li><font fgcolor="#ffffffff"><b>Edit sync groups</b></font> to add from a new or existing Google account\n</li>
461 \n<li><font fgcolor="#ffffffff"><b>New contact</b></font> to create a new contact from scratch\n</li>
462 \n<li><font fgcolor="#ffffffff"><b>Import contacts</b></font> to add contacts from your SIM card\n</li>"
463 </string>
464
465 <!-- Activity title for the activity that lets the user choose which groups of contacts to sync from the server -->
466 <string name="seclectSyncGroups_title">Select groups to sync</string>
467
468 <!-- Live folder label for all contacts -->
469 <string name="liveFolder_all_label">All Contacts</string>
470
471 <!-- Live folder label for only starred contacts -->
472 <string name="liveFolder_favorites_label">Starred</string>
473
474 <!-- Live folder label for all contacts with phone numbers -->
475 <string name="liveFolder_phones_label">Phones</string>
476
477 <!-- Item label: jump to the in-call DTMF dialpad.
478 (Part of a list of options shown in the dialer when another call
479 is already in progress.) -->
480 <string name="dialer_useDtmfDialpad">Use touch tone keypad</string>
481
482 <!-- Item label: jump to the in-call UI.
483 (Part of a list of options shown in the dialer when another call
484 is already in progress.) -->
485 <string name="dialer_returnToInCallScreen">Return to call in progress</string>
486
487 <!-- Item label: use the Dialer's dialpad to add another call.
488 (Part of a list of options shown in the dialer when another call
489 is already in progress.) -->
490 <string name="dialer_addAnotherCall">Add call</string>
491
492 <!-- Title bar for call detail screen -->
493 <string name="callDetailTitle">Call details</string>
494
495 <!-- Toast for call detail screen when couldn't read the requested details -->
496 <string name="toast_call_detail_error">Couldn\'t read details for the requested call.</string>
497
498 <!-- In call detail screen, label for call type -->
499 <string name="call_type">Type</string>
500
501 <!-- Title for incoming call details screen -->
502 <string name="type_incoming">Incoming call</string>
503
504 <!-- Title for outgoing call details screen -->
505 <string name="type_outgoing">Outgoing call</string>
506
507 <!-- Title for missed call details screen -->
508 <string name="type_missed">Missed call</string>
509
510 <!-- In call detail screen, label for call date/time -->
511 <string name="call_time">Time</string>
512
513 <!-- In call detail screen, combine date/time string and relative time to give verbose call date/time -->
514 <string name="datetime_relative">"<xliff:g id="datetime" example="Dec 31, 2007, 11:00 am">%1$s</xliff:g> (<xliff:g id="relative" example="4 hours ago">%2$s</xliff:g>)"</string>
515
516 <!-- In call detail screen, label for call duration -->
517 <string name="call_duration">Duration</string>
518
519 <!-- In call detail screen, header title for actions section -->
520 <string name="header_actions">Actions</string>
521
522 <!-- In edit contact screen, combine the actual ringtone name with prefix for placement in spinner -->
523 <string name="ringtone_spinner">"Ringtone: <xliff:g id="ringtone" example="Caribbean Ice">%1$s</xliff:g>"</string>
524
525 <!-- In edit contact screen, add more info spinner title -->
526 <string name="add_more_items">Add more items</string>
527
528 <!-- Action string for calling a phone number. -->
529 <string name="actionCall">Call <xliff:g id="type" example="mobile">%s</xliff:g></string>
530
531 <!-- Action string for sending an email to an email address. -->
532 <string name="actionEmail">Email <xliff:g id="type" example="home">%s</xliff:g></string>
533
534 <!-- Action string for sending a text message to a phone number. -->
535 <string name="actionText">Text <xliff:g id="type" example="mobile">%s</xliff:g></string>
536
537 <!-- Action string for sending an instant message to a chat buddy. -->
538 <string name="actionChat">Chat using <xliff:g id="type" example="Google Talk">%s</xliff:g></string>
539
540 <!-- Action string for viewing an address on a map. -->
541 <string name="actionMap">View <xliff:g id="type" example="home">%s</xliff:g> address</string>
542
543 <!-- Description for incoming calls going to voice mail vs. not -->
544 <string name="actionIncomingCall">Incoming calls</string>
545
546 <!-- Detail text for incoming calls going to voice mail -->
547 <string name="detailIncomingCallsGoToVoicemail">Will be sent directly to voicemail</string>
548
549 <!-- Description of what the contact specific ringtone is set to -->
550 <string name="detailsRingtone">Set to <xliff:g id="ringtone_name" example="Flutey Phone">%s</xliff:g></string>
551
552 <!-- Action string for calling back a number in the call log -->
553 <string name="callBack">Call back</string>
554
555 <!-- Action string for calling a number in the call log again -->
556 <string name="callAgain">Call again</string>
557
558 <!-- Action string for returning a missed call in the call log -->
559 <string name="returnCall">Return call</string>
560
561 <!-- A nicely formatted call duration displayed when viewing call details. For example "42 mins 28 secs" -->
562 <string name="callDetailsDurationFormat"><xliff:g id="minutes" example="42">%s</xliff:g> mins <xliff:g id="seconds" example="28">%s</xliff:g> secs</string>
The Android Open Source Project1f620962009-03-09 11:52:14 -0700563
564 <!-- A list separator for the Favorites tab indicating that items below it are frequently called contacts rather than starred contacts -->
565 <string name="favoritesFrquentSeparator">Frequently called</string>
566
567 <!-- Dialog title when prompting before creating a contact -->
568 <string name="add_contact_dlg_title">Add Contact</string>
569 <!-- Dialog message when prompting before creating a contact. Includes
570 the email address, e.g. "Add xyz@foo.com to contacts?" -->
571 <string name="add_contact_dlg_message_fmt">Add \"<xliff:g id="email">%s</xliff:g>\" to contacts?</string>
svetoslavganove2ba9042009-04-28 19:22:46 -0700572
Evan Millar7911ff52009-07-21 15:55:18 -0700573 <!-- Label for the all data tab in the view and edit card -->
574 <string name="all_tab_label">All</string>
svetoslavganove2ba9042009-04-28 19:22:46 -0700575 <!-- Content description values -->
576
577 <!-- String describing the image on ImageButton one
578
579 Note: AccessibilityServices use this attribute to announce what the view represents.
580 This is especially valuable for views without textual representation like ImageView.
581 -->
582 <string name="description_image_button_one">one</string>
583
584 <!-- String describing the image on ImageButton two
585
586 Note: AccessibilityServices use this attribute to announce what the view represents.
587 This is especially valuable for views without textual representation like ImageView.
588 -->
589 <string name="description_image_button_two">two</string>
590
591 <!-- String describing the image on ImageButton three
592
593 Note: AccessibilityServices use this attribute to announce what the view represents.
594 This is especially valuable for views without textual representation like ImageView.
595 -->
596 <string name="description_image_button_three">three</string>
597
598 <!-- String describing the image on ImageButton four
599
600 Note: AccessibilityServices use this attribute to announce what the view represents.
601 This is especially valuable for views without textual representation like ImageView.
602 -->
603 <string name="description_image_button_four">four</string>
604
605 <!-- String describing the image on ImageButton five
606
607 Note: AccessibilityServices use this attribute to announce what the view represents.
608 This is especially valuable for views without textual representation like ImageView.
609 -->
610 <string name="description_image_button_five">five</string>
611
612 <!-- String describing the image on ImageButton six
613
614 Note: AccessibilityServices use this attribute to announce what the view represents.
615 This is especially valuable for views without textual representation like ImageView.
616 -->
617 <string name="description_image_button_six">six</string>
618
619 <!-- String describing the image on ImageButton seven
620
621 Note: AccessibilityServices use this attribute to announce what the view represents.
622 This is especially valuable for views without textual representation like ImageView.
623 -->
624 <string name="description_image_button_seven">seven</string>
625
626 <!-- String describing the image on ImageButton eight
627
628 Note: AccessibilityServices use this attribute to announce what the view represents.
629 This is especially valuable for views without textual representation like ImageView.
630 -->
631 <string name="description_image_button_eight">eight</string>
632
633 <!-- String describing the image on ImageButton nine
634
635 Note: AccessibilityServices use this attribute to announce what the view represents.
636 This is especially valuable for views without textual representation like ImageView.
637 -->
638 <string name="description_image_button_nine">nine</string>
639
640 <!-- String describing the image on ImageButton star
641
642 Note: AccessibilityServices use this attribute to announce what the view represents.
643 This is especially valuable for views without textual representation like ImageView.
644 -->
645 <string name="description_image_button_star">star</string>
646
647 <!-- String describing the image on ImageButton zero
648
649 Note: AccessibilityServices use this attribute to announce what the view represents.
650 This is especially valuable for views without textual representation like ImageView.
651 -->
652 <string name="description_image_button_zero">zero</string>
653
654 <!-- String describing the image on ImageButton pound
655
656 Note: AccessibilityServices use this attribute to announce what the view represents.
657 This is especially valuable for views without textual representation like ImageView.
658 -->
659 <string name="description_image_button_pound">pound</string>
660
Jeff Sharkey802b2052009-08-04 14:21:06 -0700661 <!-- Shown as a toast when the user taps on a Fast-Track icon, and no application
662 was found that could perform the selected action -->
663 <string name="fasttrack_missing_app">No application found to handle this action</string>
664
665 <!-- Shown as the header name for a person when the name is missing or unknown. -->
666 <string name="fasttrack_missing_name">Unknown</string>
667
668 <!-- Shown as the social status snippet for a person when no social updates exist. -->
669 <string name="fasttrack_missing_status">No recent updates</string>
670
Jeff Sharkey2ae666e2009-07-21 19:30:57 -0700671<!-- TODO: add comments to each of these strings to prepare for translation -->
672<!-- TODO: split out separate strings for "Home" versus "Call home", see http://b/2029022 -->
673<string name="nameLabelsGroup">Name</string>
674<string name="nicknameLabelsGroup">Nickname</string>
675<string name="organizationLabelsGroup">Organization</string>
676<string name="websiteLabelsGroup">Website</string>
677
678<string name="type_home">Home</string>
679<string name="type_mobile">Mobile</string>
680<string name="type_work">Work</string>
681<string name="type_fax_work">Work Fax</string>
682<string name="type_fax_home">Home Fax</string>
683<string name="type_pager">Pager</string>
684<string name="type_other">Other</string>
685<string name="type_custom">Custom</string>
686
687<!-- exchange specific -->
688<string name="type_home_2">Home 2</string>
689<string name="type_work_2">Work 2</string>
690<string name="type_car">Car</string>
691<string name="type_company_main">Company Main</string>
692<string name="type_mms">MMS</string>
693<string name="type_radio">Radio</string>
694<string name="type_assistant">Assistant</string>
695
696<string name="type_email_1">Email 1</string>
697<string name="type_email_2">Email 2</string>
698<string name="type_email_3">Email 3</string>
699
Jeff Sharkeye731d422009-07-28 21:12:43 -0700700<string name="type_im_1">Im 1</string>
701<string name="type_im_2">Im 2</string>
702<string name="type_im_3">Im 3</string>
Jeff Sharkey2ae666e2009-07-21 19:30:57 -0700703
704<string name="type_im_aim">AIM</string>
Jeff Sharkeye731d422009-07-28 21:12:43 -0700705<string name="type_im_msn">Windows Live</string>
Jeff Sharkey2ae666e2009-07-21 19:30:57 -0700706<string name="type_im_yahoo">Yahoo</string>
707<string name="type_im_skype">Skype</string>
708<string name="type_im_qq">QQ</string>
Jeff Sharkeye731d422009-07-28 21:12:43 -0700709<string name="type_im_google_talk">Google Talk</string>
Jeff Sharkey2ae666e2009-07-21 19:30:57 -0700710<string name="type_im_icq">ICQ</string>
711<string name="type_im_jabber">Jabber</string>
712
713
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800714</resources>