Home | History | Annotate | Download | only in values
      1 <?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 <resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
     17     <!-- Label for this app's shared user ID (and thus for all other
     18          apps sharing the uid). -->
     19     <string name="sharedUserLabel">Android Core Apps</string>
     20 
     21     <!-- Title for the activity that shows contacts.  This is the name
     22          used in the Launcher icon. -->
     23     <string name="contactsList">Contacts</string>
     24 
     25     <!-- Title for the activity that dials the phone.  This is the name
     26          used in the Launcher icon. -->
     27     <string name="launcherDialer">Phone</string>
     28 
     29     <!-- Name of activity that allows users to create shortcuts on the home screen to a contact.
     30          This shows up in a list of things like bookmark, folder, music playlist, etc -->
     31     <string name="shortcutContact">Contact</string>
     32 
     33     <!-- Name of activity that allows users to create shortcuts on the home screen to dial a contact.
     34          This shows up in a list of things like bookmark, folder, music playlist, etc -->
     35     <string name="shortcutDialContact">Direct dial</string>
     36 
     37     <!-- Name of activity that allows users to create shortcuts on the home screen to message (SMS) a contact.
     38          This shows up in a list of things like bookmark, folder, music playlist, etc -->
     39     <string name="shortcutMessageContact">Direct message</string>
     40 
     41     <!-- Activity title when the user is selecting a contact for a shortcut. -->
     42     <string name="shortcutActivityTitle">Choose a contact shortcut</string>
     43 
     44     <!-- Activity title when the user is selecting a contact for a direct dial shortcut. -->
     45     <string name="callShortcutActivityTitle">Choose a number to call</string>
     46 
     47     <!-- Activity title when the user is selecting a contact for a direct message shortcut. -->
     48     <string name="messageShortcutActivityTitle">Choose a number to message</string>
     49 
     50     <!-- Title for the activity that shows only starred contacts -->
     51     <string name="starredList">Starred</string>
     52 
     53     <!-- Title for the activity that shows only frequently contacted contacts -->
     54     <string name="frequentList">Frequent</string>
     55 
     56     <!-- Title for the activity that shows a mix of starred contacts and frequently contacted
     57          contacts. -->
     58     <string name="strequentList">Favorites</string>
     59 
     60     <!-- The title bar when viewing the contact details activity -->
     61     <string name="viewContactTitle">Contact details</string>
     62 
     63     <!-- The description presented to the user in the Intent choose when there are multiple activities that allow
     64          viewing a contact. This string represents the built in way to view the contact. -->
     65     <string name="viewContactDesription">View contact</string>
     66 
     67     <!-- The description presented to the user in the Intent choose when there are multiple activities that allow
     68          editing a contact. This string represents the built in way to edit the contact. -->
     69     <string name="editContactDescription">Edit contact</string>
     70 
     71     <!-- The description presented to the user in the Intent choose when there are multiple activities that allow
     72          creating a new contact. This string represents the built in way to create the contact. -->
     73     <string name="insertContactDescription">Create contact</string>
     74 
     75     <!-- Hint text in the search box when the user hits the Search key while in the contacts app -->
     76     <string name="searchHint">Search contacts</string>
     77 
     78     <!-- Menu item to search contacts -->
     79     <string name="menu_search">Search</string>
     80 
     81     <!-- Menu item to create a new contact -->
     82     <string name="menu_newContact">New contact</string>
     83 
     84     <!-- Menu item used to view the details for a specific contact -->
     85     <string name="menu_viewContact">View contact</string>
     86 
     87     <!-- Menu item used to call a contact, containing the name of the contact to call -->
     88     <string name="menu_callNumber">Call <xliff:g id="name">%s</xliff:g></string>
     89 
     90     <!-- Menu item used to add a star to a contact, which makes that contact show up at the top of favorites -->
     91     <string name="menu_addStar">Add to favorites</string>
     92 
     93     <!-- Menu item used to remove a star from a contact, making the contact no longer show up at the top of favorites -->
     94     <string name="menu_removeStar">Remove from favorites</string>
     95 
     96     <!-- Menu item used to edit a specific contact -->
     97     <string name="menu_editContact">Edit contact</string>
     98 
     99     <!-- Menu item used to delete a specific contact -->
    100     <string name="menu_deleteContact">Delete contact</string>
    101 
    102     <!-- Menu item used to call a specific contact when viewing the details of that contact. -->
    103     <string name="menu_call">Call contact</string>
    104 
    105     <!-- Menu item used to send an SMS or MMS message to a specific phone number or a contacts default phone number -->
    106     <string name="menu_sendSMS">Text contact</string>
    107 
    108     <!-- Menu item used to send an email message to a specific email address -->
    109     <string name="menu_sendEmail">Send email</string>
    110 
    111     <!-- Menu item used to view a contact's address on a map -->
    112     <string name="menu_viewAddress">Map address</string>
    113 
    114     <!-- Menu item that makes a phone the default for a contact. The default number used when you
    115          try to call a contact without specifying a specific number. -->
    116     <string name="menu_makeDefaultNumber">Make default number</string>
    117 
    118     <!-- Menu item that makes an email address the default for a contact. The default email used
    119          when you try to email a contact without specifying a specific address. -->
    120     <string name="menu_makeDefaultEmail">Make default email</string>
    121 
    122     <!-- Menu item that splits an item from the contact detail into a separate aggregate -->
    123     <string name="menu_splitAggregate">Separate</string>
    124 
    125     <!-- Toast shown after a contact has been split from an aggregate by a user action -->
    126     <string name="contactsSplitMessage">Contacts separated</string>
    127 
    128     <!-- Title of the confirmation dialog for separating contacts into multiple instances  -->
    129     <string name="splitConfirmation_title">Separate Contact</string>
    130 
    131     <!-- Confirmation dialog for separating contacts into multiple instances  -->
    132     <string name="splitConfirmation">Are you sure you want to separate this single contact
    133         into multiple contacts: one for each set of contact information that was joined into it?
    134     </string>
    135 
    136     <!-- Menu item that joins an aggregate with another aggregate -->
    137     <string name="menu_joinAggregate">Join</string>
    138 
    139     <!-- Heading of the Join Contact screen -->
    140     <string name="titleJoinContactDataWith">Join contacts</string>
    141 
    142     <!-- Info blurb on the Join Contact screen -->
    143     <string name="blurbJoinContactDataWith">Select the contact you want to join with <xliff:g id="name">%s</xliff:g>.</string>
    144 
    145     <!-- An item in the Join Contact activity that opens up the full contact A-Z list -->
    146     <string name="showAllContactsJoinItem">Show all contacts</string>
    147 
    148     <!-- List separator for the Join Contact list: Suggestions -->
    149     <string name="separatorJoinAggregateSuggestions">Suggested contacts</string>
    150 
    151     <!-- List separator for the Join Contact list: A-Z -->
    152     <string name="separatorJoinAggregateAll">All contacts</string>
    153 
    154     <!-- Toast shown after two contacts have been joined by a user action -->
    155     <string name="contactsJoinedMessage">Contacts joined</string>
    156 
    157     <!-- Menu item that opens the Options activity for a given contact -->
    158     <string name="menu_contactOptions">Options</string>
    159 
    160     <!-- Title for the Options activity for a given contact -->
    161     <string name="contactOptionsTitle">Options</string>
    162 
    163     <!-- Confirmation dialog title after users selects to delete a contact. -->
    164     <string name="deleteConfirmation_title">Delete</string>
    165 
    166     <!-- Warning dialog contents after users selects to delete a ReadOnly contact. -->
    167     <string name="readOnlyContactWarning">You cannot delete contacts from read-only accounts, but you can hide them in your contacts lists.</string>
    168 
    169     <!-- Warning dialog contents after users selects to delete a contact with ReadOnly and Writable sources. -->
    170     <string name="readOnlyContactDeleteConfirmation">This contact contains information from multiple accounts. Information from read-only accounts will be hidden in your contacts lists, not deleted.</string>
    171 
    172     <!-- Warning dialog contents after users selects to delete a contact with multiple Writable sources. -->
    173     <string name="multipleContactDeleteConfirmation">Deleting this contact will delete information from multiple accounts.</string>
    174 
    175     <!-- Confirmation dialog contents after users selects to delete a Writable contact. -->
    176     <string name="deleteConfirmation">This contact will be deleted.</string>
    177 
    178     <!-- Menu item to indicate you are done editing a contact and want to save the changes you've made -->
    179     <string name="menu_done">Done</string>
    180 
    181     <!-- Menu item to indicate you want to stop editing a contact and NOT save the changes you've made -->
    182     <string name="menu_doNotSave">Revert</string>
    183 
    184     <!-- The title of the activity that edits and existing contact -->
    185     <string name="editContact_title_edit">Edit contact</string>
    186 
    187     <!-- The title of the activity that creates a new contact -->
    188     <string name="editContact_title_insert">New contact</string>
    189 
    190     <!-- The label describing the phonetic pronunciation/reading of a contact name -->
    191     <string name="label_phonetic_name">Phonetic</string>
    192 
    193     <!-- The label describing the Notes field of a contact. This field allows free form text entry about a contact -->
    194     <string name="label_notes">Notes</string>
    195 
    196     <!-- The label describing the SIP address field of a contact. [CHAR LIMIT=20] -->
    197     <string name="label_sip_address">Internet call</string>
    198 
    199     <!-- The label describing the custom ringtone for a contact -->
    200     <string name="label_ringtone">Ringtone</string>
    201 
    202     <!-- Hint text for the contact name when editing -->
    203     <string name="ghostData_name">First and Last</string>
    204 
    205     <!-- Hint text for the phonetic reading of the contact name when editing -->
    206     <string name="ghostData_phonetic_name">Phonetic name</string>
    207 
    208     <!-- Hint text for the organization name when editing -->
    209     <string name="ghostData_company">Company</string>
    210 
    211     <!-- Hint text for the organization title when editing -->
    212     <string name="ghostData_title">Title</string>
    213 
    214     <!-- Message displayed in a toast when you try to view the details of a contact that
    215          for some reason doesn't exist anymore. -->
    216     <string name="invalidContactMessage">The contact does not exist.</string>
    217 
    218     <!-- When picking a contact from a list of all contacts there is an entry at the top of the
    219          list that allows the user to create a new contact, which this string is used for -->
    220     <string name="pickerNewContactHeader">Create new contact</string>
    221 
    222     <!-- Dialog title when you select a label when creating or edit a contact -->
    223     <string name="selectLabel">Select label</string>
    224 
    225     <!-- Header that expands to list all of the types of phone numbers when editing or creating a phone number for a contact -->
    226     <string name="phoneLabelsGroup">Phone</string>
    227 
    228     <!-- Header that expands to list all of the types of email addresses when editing or creating an email address for a contact -->
    229     <string name="emailLabelsGroup">Email</string>
    230 
    231     <!-- Header that expands to list all of the types of IM account when editing or creating an IM account for a contact -->
    232     <string name="imLabelsGroup">IM</string>
    233 
    234     <!-- Header that expands to list all of the types of postal addresses when editing or creating an postal address for a contact -->
    235     <string name="postalLabelsGroup">Postal address</string>
    236 
    237     <!-- The order of the items below is important, don't reorder without changing EditContactActivity.java -->
    238     <skip/>
    239     <!-- The labels that are under the otherLabelsGroup when editing a contact. -->
    240     <string-array name="otherLabels">
    241         <!-- An organization associated with a contact -->
    242         <item>Organization</item>
    243         <!-- A note associated with a contact -->
    244         <item>Note</item>
    245     </string-array>
    246 
    247     <!-- Description in the dialog that appears if there are no pictures from which to create an icon for a contact -->
    248     <string name="photoPickerNotFoundText">No pictures are available on the phone.</string>
    249 
    250     <!-- Description of the activity used to set a photo in the pictures application as the icon for a contact -->
    251     <string name="attachToContact">Contact icon</string>
    252 
    253     <!-- Title of the dialog used to set a custom label for a contact detail, like a phone number or email address.
    254          For example, this may be used to set a phone number's label to "Vaction house" -->
    255     <string name="customLabelPickerTitle">Custom label name</string>
    256 
    257     <!-- The menu item to open the list of groups to display -->
    258     <string name="menu_displayGroup">Display options</string>
    259 
    260     <!-- Title of activity that lets user pick which contact groups to display -->
    261     <string name="displayGroups">Display options</string>
    262 
    263     <!-- Check box label that allows calls to the contact to be sent directly to voicemail -->
    264     <string name="send_to_voicemail_checkbox">Send calls directly to voicemail</string>
    265 
    266     <!-- String used to indicate that a contact doesn't have a custom ringtone -->
    267     <string name="default_ringtone">Default</string>
    268 
    269     <!-- The button/menu item that allows you to change an existing contact picture -->
    270     <string name="changePicture">Change icon</string>
    271 
    272     <!-- The menu item that allows you to remove a picture from a contact -->
    273     <string name="removePicture">Remove icon</string>
    274 
    275     <!-- The text displayed when the contacts list is empty while displaying all contacts -->
    276     <string name="noContacts">No contacts.</string>
    277 
    278     <!-- The text displayed when the contacts list is empty while displaying results after searching contacts -->
    279     <string name="noMatchingContacts">No matching contacts found.</string>
    280 
    281     <!-- The text displayed when the contacts list is empty while displaying only contacts that have phone numbers -->
    282     <string name="noContactsWithPhoneNumbers">No contacts with phone numbers.</string>
    283 
    284     <!-- The title of the filter to only show contacts with phone numbers -->
    285     <string name="showFilterPhones">Only contacts with phones</string>
    286 
    287     <!-- The description of the filter to only show contacts with phone numbers -->
    288     <string name="showFilterPhonesDescrip">Only display contacts that have phone numbers</string>
    289 
    290     <!-- The header over the list of all contacts groups -->
    291     <string name="headerContactGroups">Choose contacts to display</string>
    292 
    293     <!-- The description of a group with the total number of contacts -->
    294     <plurals name="groupDescrip">
    295         <item quantity="other"><xliff:g id="count">%0$d</xliff:g> contacts</item>
    296     </plurals>
    297 
    298     <!-- The description of a group with the total number of contacts, and the total number of contacts with phone numbers -->
    299     <plurals name="groupDescripPhones">
    300         <item quantity="other"><xliff:g id="count">%1$d</xliff:g> contacts, <xliff:g id="countWithPhones">%2$d</xliff:g> with phones</item>
    301     </plurals>
    302 
    303     <!-- Displayed in a spinner dialog after the user creates a contact and it's being saved to the database -->
    304     <string name="savingContact">Saving contact\u2026</string>
    305 
    306     <!-- Displayed in a spinner dialog as user changes to display options are saved -->
    307     <string name="savingDisplayGroups">Saving display options\u2026</string>
    308 
    309     <!-- Toast displayed when a contact is saved -->
    310     <string name="contactSavedToast">Contact saved.</string>
    311 
    312     <!-- Toast displayed when saving a contact failed -->
    313     <string name="contactSavedErrorToast">Error, unable to save contact changes.</string>
    314 
    315     <!-- Displayed at the top of the contacts showing the total number of contacts visible when "Only contacts with phones" is selected -->
    316     <plurals name="listTotalPhoneContacts">
    317         <item quantity="one">Displaying 1 contact with phone number</item>
    318         <item quantity="other">Displaying <xliff:g id="count">%d</xliff:g> contacts with phone numbers</item>
    319     </plurals>
    320 
    321     <!-- Displayed at the top of the contacts showing the zero as total number of contacts visible when "Only contacts with phones" is selected -->
    322     <string name="listTotalPhoneContactsZero">No visible contacts with phone numbers</string>
    323 
    324     <!-- Displayed at the top of the contacts showing the total number of contacts visible when "Only contacts with phones" not selected -->
    325     <plurals name="listTotalAllContacts">
    326         <item quantity="one">Displaying 1 contact</item>
    327         <item quantity="other">Displaying <xliff:g id="count">%d</xliff:g> contacts</item>
    328     </plurals>
    329 
    330     <!-- Displayed at the top of the contacts showing the zero total number of contacts visible when "Only contacts with phones" not selected -->
    331     <string name="listTotalAllContactsZero">No visible contacts</string>
    332 
    333     <!-- Displayed at the top of the contacts showing the total number of contacts found when "Only contacts with phones" not selected -->
    334     <plurals name="listFoundAllContacts">
    335         <item quantity="one">Found 1 contact</item>
    336         <item quantity="other">Found <xliff:g id="count">%d</xliff:g> contacts</item>
    337     </plurals>
    338 
    339     <!-- Displayed at the top of the contacts showing the zero total number of contacts found when "Only contacts with phones" not selected -->
    340     <string name="listFoundAllContactsZero">Contact not found</string>
    341 
    342     <!-- Displayed at the top of the contacts showing the total number of contacts found when typing search query -->
    343     <plurals name="searchFoundContacts">
    344         <item quantity="one">1 contact</item>
    345         <item quantity="other"><xliff:g id="count">%d</xliff:g> contacts</item>
    346     </plurals>
    347 
    348     <!-- The description text for the contacts tab. Space is limited for this string, so the shorter the better -->
    349     <string name="contactsIconLabel">Contacts</string>
    350 
    351     <!-- The description text for the favorites tab. Space is limited for this string, so the shorter the better -->
    352     <string name="contactsFavoritesLabel">Favorites</string>
    353 
    354     <!-- The description text for the dialer tab. Space is limited for this string, so the shorter the better -->
    355     <string name="dialerIconLabel">Phone</string>
    356 
    357     <!-- The description text for the call log tab. Space is limited for this string, so the shorter the better -->
    358     <string name="recentCallsIconLabel">Call log</string>
    359     <string name="liveFolderAll">All contacts</string>
    360     <string name="liveFolderFavorites">Starred contacts</string>
    361     <string name="liveFolderPhone">Contacts with phone numbers</string>
    362 
    363     <!-- Menu item used to send an SMS or MMS message to a phone number  -->
    364     <string name="menu_sendTextMessage">Send text message</string>
    365 
    366     <!-- Menu item used to call a contact from the call log -->
    367     <string name="recentCalls_callNumber">Call <xliff:g id="name">%s</xliff:g></string>
    368 
    369     <!-- Menu item used to copy a number from the call log to the dialer so it can be edited before calling it -->
    370     <string name="recentCalls_editNumberBeforeCall">Edit number before call</string>
    371 
    372     <!-- Menu item used to add a number from the call log to contacts -->
    373     <string name="recentCalls_addToContact">Add to contacts</string>
    374 
    375     <!-- Menu item used to remove a single call from the call log -->
    376     <string name="recentCalls_removeFromRecentList">Remove from call log</string>
    377 
    378     <!-- Menu item used to remove all calls from the call log -->
    379     <string name="recentCalls_deleteAll">Clear call log</string>
    380 
    381     <!-- Text displayed when the call log is empty -->
    382     <string name="recentCalls_empty">Call log is empty.</string>
    383 
    384     <!-- Title of the confirmation dialog for clearing the call log  -->
    385     <string name="clearCallLogConfirmation_title">Clear call log</string>
    386 
    387     <!-- Confirmation dialog for clearing the call log  -->
    388     <string name="clearCallLogConfirmation">Are you sure you want to clear the call log?</string>
    389 
    390     <!-- The title of a dialog that displays the IMEI of the phone -->
    391     <string name="imei">IMEI</string>
    392 
    393     <!-- The title of a dialog that displays the MEID of the CDMA phone -->
    394     <string name="meid">MEID</string>
    395 
    396     <!-- String used for displaying calls to the voicemail number in the call log -->
    397     <string name="voicemail">Voicemail</string>
    398 
    399     <!-- String used to display calls from unknown numbers in the call log -->
    400     <string name="unknown">Unknown</string>
    401 
    402     <!-- String used to display calls from private numbers in the call log -->
    403     <string name="private_num">Private number</string>
    404 
    405     <!-- String used to display calls from pay phone in the call log -->
    406     <string name="payphone">Pay phone</string>
    407 
    408     <!-- Displayed in the text entry box in the dialer when in landscape mode to guide the user
    409          to dial using the physical keyboard -->
    410     <string name="dialerKeyboardHintText">Use keyboard to dial</string>
    411 
    412     <!-- Hint text displayed in the "digits" field above the dialer's
    413          dialpad, if there's already a call in progress.  (This hint
    414          reminds the user that the dialer will add a new call, as opposed
    415          to sending DTMF tones over the current call.) -->
    416     <string name="dialerDialpadHintText">Dial to add a call</string>
    417 
    418     <!-- Dialog text displayed when loading a phone number from the SIM card for speed dial -->
    419     <string name="simContacts_emptyLoading">Loading from SIM card\u2026</string>
    420 
    421     <!-- Dialog title displayed when loading a phone number from the SIM card for speed dial -->
    422     <string name="simContacts_title">SIM card contacts</string>
    423 
    424     <!-- Displayed full screen when the user want to create a shortcut, but there is no contacts, and contact syncing is enabled -->
    425     <string name="noContactsHelpTextWithSyncForCreateShortcut">"You don't have any contacts to display. (If you just added an account, it can take a few minutes to sync contacts.)"</string>
    426 
    427     <!-- Displayed full screen when the user want to create a shortcut, but there is no contacts -->
    428     <string name="noContactsHelpTextForCreateShortcut">"You don't have any contacts to display."</string>
    429 
    430     <!-- Displayed full screen when the user has no contacts and they are displaying the My Contacts group, and contact syncing is disabled -->
    431     <string name="noContactsHelpText">"You don't have any contacts to display.\n\nTo add contacts, press <font fgcolor="#ffffffff"><b>Menu</b></font> and touch:\n
    432         \n<li><font fgcolor="#ffffffff"><b>Accounts</b></font> to add or configure an account with contacts you can sync to the phone\n</li>
    433         \n<li><font fgcolor="#ffffffff"><b>New contact</b></font> to create a new contact from scratch\n</li>
    434         \n<li><font fgcolor="#ffffffff"><b>Import/Export</b></font>\n</li>"
    435     </string>
    436 
    437     <!-- Displayed full screen when the user has no contacts and they are displaying the My Contacts group, and contact syncing is enabled -->
    438     <string name="noContactsHelpTextWithSync">"You don't have any contacts to display. (If you just added an account, it can take a few minutes to sync contacts.)\n\nTo add contacts, press <font fgcolor="#ffffffff"><b>Menu</b></font> and touch:\n
    439         \n<li><font fgcolor="#ffffffff"><b>Accounts</b></font> to add or configure an account with contacts you can sync to the phone\n</li>
    440         \n<li><font fgcolor="#ffffffff"><b>Display options</b></font> to change which contacts are visible\n</li>
    441         \n<li><font fgcolor="#ffffffff"><b>New contact</b></font> to create a new contact from scratch\n</li>
    442         \n<li><font fgcolor="#ffffffff"><b>Import/Export</b></font>\n</li>"
    443     </string>
    444 
    445     <!-- Displayed full screen when the user has no contacts and they are displaying the My Contacts group, and contact syncing is disabled, and there is no sim card (cdma)-->
    446     <string name="noContactsNoSimHelpText">"You don't have any contacts to display.\n\nTo add contacts, press <font fgcolor="#ffffffff"><b>Menu</b></font> and touch:\n
    447         \n<li><font fgcolor="#ffffffff"><b>Accounts</b></font> to add or configure an account with contacts you can sync to the phone\n</li>
    448         \n<li><font fgcolor="#ffffffff"><b>New contact</b></font> to create a new contact from scratch\n</li>
    449         \n<li><font fgcolor="#ffffffff"><b>Import/Export</b></font>\n</li>"
    450     </string>
    451 
    452     <!-- Displayed full screen when the user has no contacts and they are displaying the My Contacts group, and contact syncing is enabled, and there is no sim card (cdma) -->
    453     <string name="noContactsNoSimHelpTextWithSync">"You don't have any contacts to display. (If you just added an account, it can take a few minutes to sync contacts.)\n\nTo add contacts, press <font fgcolor="#ffffffff"><b>Menu</b></font> and touch:\n
    454         \n<li><font fgcolor="#ffffffff"><b>Accounts</b></font> to add or configure an account with contacts you can sync to the phone\n</li>
    455         \n<li><font fgcolor="#ffffffff"><b>Display options</b></font> to change which contacts are visible\n</li>
    456         \n<li><font fgcolor="#ffffffff"><b>New contact</b></font> to create a new contact from scratch\n</li>
    457         \n<li><font fgcolor="#ffffffff"><b>Import/Export</b></font>\n</li>"
    458     </string>
    459 
    460     <!-- Displayed full screen when the user has no favorites and they are displaying the favorites tab -->
    461     <string name="noFavoritesHelpText">"You don't have any favorites.\n\nTo add a contact to your list of favorites:\n
    462         <li>Touch the <b>Contacts</b> tab\n</li>
    463         \n<li>Touch the contact you want to add to your favorites\n</li>
    464         \n<li>Touch the star next to the contact\'s name\n</li>"
    465     </string>
    466 
    467     <!-- Activity title for the activity that lets the user choose which groups of contacts to sync from the server -->
    468     
    469 
    470     <!-- Live folder label for all contacts -->
    471     <string name="liveFolder_all_label">All contacts</string>
    472 
    473     <!-- Live folder label for only starred contacts -->
    474     <string name="liveFolder_favorites_label">Starred</string>
    475 
    476     <!-- Live folder label for all contacts with phone numbers -->
    477     <string name="liveFolder_phones_label">Phones</string>
    478 
    479     <!-- Item label: jump to the in-call DTMF dialpad.
    480          (Part of a list of options shown in the dialer when another call
    481          is already in progress.) -->
    482     <string name="dialer_useDtmfDialpad">Use touch tone keypad</string>
    483 
    484     <!-- Item label: jump to the in-call UI.
    485          (Part of a list of options shown in the dialer when another call
    486          is already in progress.) -->
    487     <string name="dialer_returnToInCallScreen">Return to call in progress</string>
    488 
    489     <!-- Item label: use the Dialer's dialpad to add another call.
    490          (Part of a list of options shown in the dialer when another call
    491          is already in progress.) -->
    492     <string name="dialer_addAnotherCall">Add call</string>
    493 
    494     <!-- Title bar for call detail screen -->
    495     <string name="callDetailTitle">Call details</string>
    496 
    497     <!-- Toast for call detail screen when couldn't read the requested details -->
    498     <string name="toast_call_detail_error">Couldn\'t read details for the requested call.</string>
    499 
    500     <!-- Title for incoming call details screen -->
    501     <string name="type_incoming">Incoming call</string>
    502 
    503     <!-- Title for outgoing call details screen -->
    504     <string name="type_outgoing">Outgoing call</string>
    505 
    506     <!-- Title for missed call details screen -->
    507     <string name="type_missed">Missed call</string>
    508 
    509     <!-- Description for incoming calls going to voice mail vs. not -->
    510     <string name="actionIncomingCall">Incoming calls</string>
    511 
    512     <!-- Action string for calling back a number in the call log -->
    513     <string name="callBack">Call back</string>
    514 
    515     <!-- Action string for calling a number in the call log again -->
    516     <string name="callAgain">Call again</string>
    517 
    518     <!-- Action string for returning a missed call in the call log -->
    519     <string name="returnCall">Return call</string>
    520 
    521     <!-- A nicely formatted call duration displayed when viewing call details. For example "42 mins 28 secs" -->
    522     <string name="callDetailsDurationFormat"><xliff:g id="minutes" example="42">%1$s</xliff:g> mins <xliff:g id="seconds" example="28">%2$s</xliff:g> secs</string>
    523 
    524     <!-- A list separator for the Favorites tab indicating that items below it are frequently contacted contacts rather than starred contacts -->
    525     <string name="favoritesFrquentSeparator">Frequently contacted</string>
    526 
    527     <!-- Dialog title when prompting before creating a contact -->
    528     <string name="add_contact_dlg_title">Add contact</string>
    529     <!-- Dialog message when prompting before creating a contact. Includes
    530          the email address, e.g. "Add xyz (a] foo.com to contacts?" -->
    531     <string name="add_contact_dlg_message_fmt">Add \"<xliff:g id="email">%s</xliff:g>\" to contacts?</string>
    532 
    533     <!-- Label for the all data tab in the view and edit card -->
    534     <string name="all_tab_label">All</string>
    535 
    536     <!-- String describing the image on ImageButton one
    537 
    538         Note: AccessibilityServices use this attribute to announce what the view represents.
    539               This is especially valuable for views without textual representation like ImageView.
    540     -->
    541     <string name="description_image_button_one">one</string>
    542 
    543     <!-- String describing the image on ImageButton two
    544 
    545         Note: AccessibilityServices use this attribute to announce what the view represents.
    546               This is especially valuable for views without textual representation like ImageView.
    547     -->
    548     <string name="description_image_button_two">two</string>
    549 
    550     <!-- String describing the image on ImageButton three
    551 
    552         Note: AccessibilityServices use this attribute to announce what the view represents.
    553               This is especially valuable for views without textual representation like ImageView.
    554     -->
    555     <string name="description_image_button_three">three</string>
    556 
    557     <!-- String describing the image on ImageButton four
    558 
    559         Note: AccessibilityServices use this attribute to announce what the view represents.
    560               This is especially valuable for views without textual representation like ImageView.
    561     -->
    562     <string name="description_image_button_four">four</string>
    563 
    564     <!-- String describing the image on ImageButton five
    565 
    566         Note: AccessibilityServices use this attribute to announce what the view represents.
    567               This is especially valuable for views without textual representation like ImageView.
    568     -->
    569     <string name="description_image_button_five">five</string>
    570 
    571     <!-- String describing the image on ImageButton six
    572 
    573         Note: AccessibilityServices use this attribute to announce what the view represents.
    574               This is especially valuable for views without textual representation like ImageView.
    575     -->
    576     <string name="description_image_button_six">six</string>
    577 
    578     <!-- String describing the image on ImageButton seven
    579 
    580         Note: AccessibilityServices use this attribute to announce what the view represents.
    581               This is especially valuable for views without textual representation like ImageView.
    582     -->
    583     <string name="description_image_button_seven">seven</string>
    584 
    585     <!-- String describing the image on ImageButton eight
    586 
    587         Note: AccessibilityServices use this attribute to announce what the view represents.
    588               This is especially valuable for views without textual representation like ImageView.
    589     -->
    590     <string name="description_image_button_eight">eight</string>
    591 
    592     <!-- String describing the image on ImageButton nine
    593 
    594         Note: AccessibilityServices use this attribute to announce what the view represents.
    595               This is especially valuable for views without textual representation like ImageView.
    596     -->
    597     <string name="description_image_button_nine">nine</string>
    598 
    599     <!-- String describing the image on ImageButton star
    600 
    601         Note: AccessibilityServices use this attribute to announce what the view represents.
    602               This is especially valuable for views without textual representation like ImageView.
    603     -->
    604     <string name="description_image_button_star">star</string>
    605 
    606     <!-- String describing the image on ImageButton zero
    607 
    608         Note: AccessibilityServices use this attribute to announce what the view represents.
    609               This is especially valuable for views without textual representation like ImageView.
    610     -->
    611     <string name="description_image_button_zero">zero</string>
    612 
    613     <!-- String describing the image on ImageButton pound
    614 
    615         Note: AccessibilityServices use this attribute to announce what the view represents.
    616               This is especially valuable for views without textual representation like ImageView.
    617     -->
    618     <string name="description_image_button_pound">pound</string>
    619 
    620     <!-- String describing the Voicemail ImageButton
    621 
    622          Used by AccessibilityService to announce the purpose of the button.
    623     -->
    624     <string name="description_voicemail_button">voicemail</string>
    625 
    626     <!-- String describing the Dial ImageButton
    627 
    628          Used by AccessibilityService to announce the purpose of the button.
    629     -->
    630     <string name="description_dial_button">dial</string>
    631 
    632     <!-- String describing the Delete/Backspace ImageButton
    633 
    634          Used by AccessibilityService to announce the purpose of the button.
    635     -->
    636     <string name="description_delete_button">backspace</string>
    637 
    638     <!-- String describing the digits text box containing the number to dial.
    639 
    640          Used by AccessibilityService to announce the purpose of the view.
    641     -->
    642     <string name="description_digits_edittext">number to dial</string>
    643 
    644     <!-- String describing the Contact Photo Image
    645 
    646          Used by AccessibilityService to announce the purpose of the view.
    647     -->
    648     <string name="description_contact_photo">contact photo</string>
    649 
    650     <!-- String describing the Contact Editor Minus button
    651 
    652          Used by AccessibilityService to announce the purpose of the button.
    653     -->
    654     <string name="description_minus_button">minus</string>
    655 
    656     <!-- String describing the Contact Editor Plus button
    657 
    658          Used by AccessibilityService to announce the purpose of the button.
    659     -->
    660     <string name="description_plus_button">plus</string>
    661 
    662     <!-- Dialog title shown when USB storage does not exist [CHAR LIMIT=25] -->
    663     <string name="no_sdcard_title" product="nosdcard">USB storage unavailable</string>
    664     <!-- Dialog title shown when SD Card does not exist -->
    665     <string name="no_sdcard_title" product="default">No SD card</string>
    666 
    667     <!-- Dialog message shown when USB storage does not exist [CHAR LIMIT=30] -->
    668     <string name="no_sdcard_message" product="nosdcard">No USB storage detected</string>
    669     <!-- Dialog message shown when SDcard does not exist -->
    670     <string name="no_sdcard_message" product="default">No SD card detected</string>
    671 
    672     <!-- Dialog title shown when searching VCard data from SD Card -->
    673     <string name="searching_vcard_title">Searching for vCard</string>
    674 
    675     <!-- Action string for selecting SIM for importing contacts -->
    676     <string name="import_from_sim">Import from SIM card</string>
    677 
    678     <!-- Action string for selecting USB storage for importing contacts [CHAR LIMIT=25] -->
    679     <string name="import_from_sdcard" product="nosdcard">Import from USB storage</string>
    680     <!-- Action string for selecting SD Card for importing contacts -->
    681     <string name="import_from_sdcard" product="default">Import from SD card</string>
    682 
    683     <!-- Action that exports all contacts to USB storage [CHAR LIMIT=25] -->
    684     <string name="export_to_sdcard" product="nosdcard">Export to USB storage</string>
    685     <!-- Action that exports all contacts to SD Card -->
    686     <string name="export_to_sdcard" product="default">Export to SD card</string>
    687 
    688     <!-- Action that shares visible contacts -->
    689     <string name="share_visible_contacts">Share visible contacts</string>
    690 
    691     <!-- One of alternatives shown when the system allows a user to select how many vCard files
    692          should be imported. This message shows only when the system is certain that there's more
    693          than one vCard files available in the system. -->
    694     <string name="import_one_vcard_string">Import one vCard file</string>
    695 
    696     <!-- One of alternatives shown when the system allows a user to select how many vCard files
    697          should be imported. This message shows only when the system is certain that there's more
    698          than one vCard files available in the system. -->
    699     <string name="import_multiple_vcard_string">Import multiple vCard files</string>
    700 
    701     <!-- One of alternatives shown when the system allows a user to select how many vCard files
    702          should be imported. This message shows only when the system is certain that there's more
    703          than one vCard files available in the system. -->
    704     <string name="import_all_vcard_string">Import all vCard files</string>
    705 
    706     <!-- Dialog message shown when searching VCard data from SD Card [CHAR LIMIT=NONE] -->
    707     <string name="searching_vcard_message" product="nosdcard">Searching for vCard data in USB storage</string>
    708     <!-- Dialog message shown when searching VCard data from SD Card -->
    709     <string name="searching_vcard_message" product="default">Searching for vCard data on SD card</string>
    710 
    711     <!-- Dialog title shown when scanning VCard data failed. [CHAR LIMIT=NONE] -->
    712     <string name="scanning_sdcard_failed_title" product="nosdcard">Scanning USB storage failed</string>
    713     <!-- Dialog title shown when scanning VCard data failed. -->
    714     <string name="scanning_sdcard_failed_title" product="default">Scanning SD card failed</string>
    715 
    716     <!-- Dialog message shown when searching VCard data failed.
    717          An exact reason for the failure should [CHAR LIMIT=NONE] -->
    718     <string name="scanning_sdcard_failed_message" product="nosdcard">Scanning USB storage failed (Reason: \"<xliff:g id="fail_reason">%s</xliff:g>\")</string>
    719     <!-- Dialog message shown when searching VCard data failed.
    720          An exact reason for the failure should -->
    721     <string name="scanning_sdcard_failed_message" product="default">Scanning SD card failed (Reason: \"<xliff:g id="fail_reason">%s</xliff:g>\")</string>
    722 
    723     <!-- The failed reason shown when Contacts app (especially vCard importer/exporter)
    724          emitted some I/O error. Exact reason will be appended by the system. -->
    725     <string name="fail_reason_io_error">I/O Error</string>
    726 
    727     <!-- The failed reason shown when vCard parser was not able to be parsed by the current vCard
    728          implementation. This might happen even when the input vCard is completely valid, though
    729          we believe it is rather rare in the actual world. -->
    730     <string name="fail_reason_vcard_parse_error">Failed to parse vCard for unexpected reason</string>
    731 
    732     <!-- The failed reason shown when the current vCard importer cannot parse the file since the
    733          parser is incomplete (actually, there's missing part in the current vCard parser, though
    734          our understanding is that the functionality missed by the current vCard parser
    735          is rarely needed in the actual vCard...). -->
    736     <string name="fail_reason_vcard_not_supported_error">Failed to parse vCard though it seems in valid format, since the current implementation does not support it</string>
    737 
    738     <!-- The failed reason shown when the system could not find any vCard file
    739          (with extension ".vcf" in SDCard.) [CHAR LIMIT=NONE] -->
    740     <string name="fail_reason_no_vcard_file" product="nosdcard">No vCard file found in the USB storage</string>
    741     <!-- The failed reason shown when the system could not find any vCard file
    742          (with extension ".vcf" in SDCard.) -->
    743     <string name="fail_reason_no_vcard_file" product="default">No vCard file found on the SD card</string>
    744 
    745     <!-- The failed reason shown when the import of some of vCard files failed during multiple vCard
    746          files import. It includes the case where all files were failed to be imported. -->
    747     <string name="fail_reason_failed_to_read_files">One or more files failed to be imported (%s).</string>
    748 
    749     <!-- The failed reason which should not be shown but it may in some buggy condition. -->
    750     <string name="fail_reason_unknown">Unknown error</string>
    751 
    752     <!-- Dialog title shown when a user is asked to select VCard file -->
    753     <string name="select_vcard_title">Select vCard file</string>
    754 
    755     <!-- The message shown while reading a vCard file/entry. The first argument is like
    756     "Reading VCard" or "Reading VCard files" and the second is the display name of the current
    757     data being parsed -->
    758     <string name="progress_shower_message"><xliff:g id="action" example="Reading VCard">%1$s</xliff:g>\n<xliff:g id="filename" example="foo.vcf">%2$s</xliff:g></string>
    759 
    760     <!-- Dialog title shown when reading VCard data -->
    761     <string name="reading_vcard_title">Reading vCard</string>
    762 
    763     <!-- Dialog message shown when reading a VCard file -->
    764     <string name="reading_vcard_message">Reading vCard file(s)</string>
    765 
    766     <!-- Dialog title shown when reading VCard data failed -->
    767     <string name="reading_vcard_failed_title">Reading of vCard data has failed</string>
    768 
    769     <!-- Message while reading one vCard file "(current number) of (total number) contacts" The order of "current number" and "total number" cannot be changed (like "total: (total number), current: (current number)")-->
    770     <string name="reading_vcard_contacts"><xliff:g id="current_number">%1$s</xliff:g> of <xliff:g id="total_number">%2$s</xliff:g> contacts</string>
    771 
    772     <!-- Message while reading multiple vCard files "(current number) of (total number) files" The order of "current number" and "total number" cannot be changed (like "total: (total number), current: (current number)")-->
    773     <string name="reading_vcard_files"><xliff:g id="current_number">%1$s</xliff:g> of <xliff:g id="total_number">%2$s</xliff:g> files</string>
    774 
    775     <!-- Dialog title shown when a user confirms whether he/she export Contact data -->
    776     <string name="confirm_export_title">Confirm export</string>
    777 
    778     <!-- Dialog message shown when a user confirms whether he/she export Contact data -->
    779     <string name="confirm_export_message">Are you sure you want to export your contact list to \"<xliff:g id="vcard_filename">%s</xliff:g>\"?</string>
    780 
    781     <!-- Dialog title shown when exporting Contact data failed -->
    782     <string name="exporting_contact_failed_title">Failed to export contact data</string>
    783 
    784     <!-- Dialog message shown when exporting Contact data failed -->
    785     <string name="exporting_contact_failed_message">Failed to export contact data.\nReason for failure: \"<xliff:g id="fail_reason">%s</xliff:g>\"</string>
    786 
    787     <!-- The failed reason shown when there's no contact which is allowed to be exported.
    788          Note that user may have contacts data but all of them are probably not allowed to be
    789          exported because of security/permission reasons. -->
    790     <string name="fail_reason_no_exportable_contact">There is no exportable contact</string>
    791 
    792     <!-- The failed reason shown when vCard exporter could not create a file for the vCard since
    793          there are too many files relevant to vCard. [CHAR LIMIT=NONE] -->
    794     <string name="fail_reason_too_many_vcard" product="nosdcard">Too many vCard files in the USB storage</string>
    795     <!-- The failed reason shown when vCard exporter could not create a file for the vCard since
    796          there are too many files relevant to vCard. -->
    797     <string name="fail_reason_too_many_vcard" product="default">Too many vCard files on the SD card</string>
    798 
    799     <!-- The failed reason shown when the given file name is too long for the system.
    800          The length limit of each file is different in each Android device, so we don't need to
    801          mention it here. -->
    802     <string name="fail_reason_too_long_filename">Required filename is too long (\"<xliff:g id="filename">%s</xliff:g>\")</string>
    803 
    804     <!-- Dialog title shown when the application is exporting contact data outside -->
    805     <string name="exporting_contact_list_title">Exporting contact data</string>
    806 
    807     <!-- Message shown when the application is exporting contact data outside -->
    808     <string name="exporting_contact_list_message">Exporting contact data to \"<xliff:g id="file_name">%s</xliff:g>\"</string>
    809 
    810     <!-- The failed reason shown when contacts exporter fails to be initialized.
    811          Some exact reason must follow this. -->
    812     <string name="fail_reason_could_not_initialize_exporter">Could not initialize the exporter: \"<xliff:g id="exact_reason">%s</xliff:g>\"</string>
    813 
    814     <!-- The failed reason shown when some error happend during contacts export.
    815          Some exact reason must follow this. -->
    816     <string name="fail_reason_error_occurred_during_export">Error occured during export: \"<xliff:g id="exact_reason">%s</xliff:g>\"</string>
    817 
    818     <!-- The error reason the vCard composer "may" emit when database is corrupted or
    819          something is going wrong. Usually users should not see this text. -->
    820     <string name="composer_failed_to_get_database_infomation">Failed to get database information</string>
    821 
    822     <!-- This error message shown when the user actually have no contact
    823          (e.g. just after data-wiping), or, data providers of the contact list prohibits their
    824          contacts from being exported to outside world via vcard exporter, etc. -->
    825     <string name="composer_has_no_exportable_contact">There is no exportable contact. If you have actualy have contacts on your phone, all the contacts may be prohibited from being exported to outside the phone by some data provider.</string>
    826 
    827     <!-- The error reason the vCard composer may emit when vCard composer is not initialized
    828          even when needed.
    829          Users should not usually see this error message. -->
    830     <string name="composer_not_initialized">The vCard composer is not correctly initialized</string>
    831 
    832     <!-- The failed reason shown when vCard importer/exporter could not open the file
    833          specified by a user. The file name should be in the message. -->
    834     <string name="fail_reason_could_not_open_file">Could not open \"<xliff:g id="file_name">%1$s</xliff:g>\": <xliff:g id="exact_reason">%2$s</xliff:g></string>
    835 
    836     <!-- Message in progress bar while exporting contact list to a file "(current number) of (total number) contacts" The order of "current number" and "total number" cannot be changed (like "total: (total number), current: (current number)")-->
    837     <string name="exporting_contact_list_progress"><xliff:g id="current_number">%1$s</xliff:g> of <xliff:g id="total_number">%2$s</xliff:g> contacts</string>
    838 
    839     <!-- The string used to describe Contacts as a searchable item within system search settings. -->
    840     <string name="search_settings_description">Names of your contacts</string>
    841 
    842     <!-- Menu items for dialpad options as part of Pause and Wait ftr -->
    843     <string name="add_2sec_pause">Add 2-sec pause</string>
    844     <string name="add_wait">Add wait</string>
    845 
    846     <!-- Title for the call disambiguation dialog -->
    847     <string name="call_disambig_title">Call using</string>
    848 
    849     <!-- Title for the sms disambiguation dialog -->
    850     <string name="sms_disambig_title">Text using</string>
    851 
    852     <!-- Message next to disamgiguation dialog check box -->
    853     <string name="make_primary">Remember this choice</string>
    854 
    855     <!-- Shown as a toast when the user taps on a Fast-Track icon, and no application
    856          was found that could perform the selected action -->
    857     <string name="quickcontact_missing_app">No application found to handle this action</string>
    858 
    859     <!-- Shown as the checkbox label that, when checked, will store remember the
    860          selected choice and shortcut to it in the future.  For example, this would
    861          make a selected phone number the default. -->
    862     <string name="quickcontact_remember_choice">Remember this choice</string>
    863 
    864     <!-- Shown as the header name for a person when the name is missing or unknown. -->
    865     <string name="quickcontact_missing_name">Unknown</string>
    866 
    867     <!-- The menu item to open the list of accounts -->
    868     <string name="menu_accounts">Accounts</string>
    869 
    870     <!-- The menu item to bulk import or bulk export contacts from SIM card or SD card. -->
    871     <string name="menu_import_export">Import/Export</string>
    872 
    873     <!-- Dialog title when selecting the bulk operation to perform from a list. -->
    874     <string name="dialog_import_export">Import/Export contacts</string>
    875 
    876     <!-- The menu item to share the currently viewed contact -->
    877     <string name="menu_share">Share</string>
    878 
    879     <!-- Dialog title when picking the application to share a contact with. -->
    880     <string name="share_via">Share contact via</string>
    881 
    882     <!-- Toast indicating that sharing a contact has failed. -->
    883     <string name="share_error">This contact cannot be shared.</string>
    884 
    885     <!-- Header that expands to list all name types when editing a structured name of a contact -->
    886     <string name="nameLabelsGroup">Name</string>
    887     <!-- Header that expands to list all nickname types when editing a nickname of a contact -->
    888     <string name="nicknameLabelsGroup">Nickname</string>
    889     <!-- Header that expands to list all organization types when editing an organization of a contact -->
    890     <string name="organizationLabelsGroup">Organization</string>
    891     <!-- Header that expands to list all website types when editing a website of a contact -->
    892     <string name="websiteLabelsGroup">Website</string>
    893     <!-- Header that expands to list all event types when editing an event of a contact -->
    894     <string name="eventLabelsGroup">Event</string>
    895 
    896     <!-- Single-character overlay for home phone numbers when creating desktop shortcuts -->
    897     <string name="type_short_home">H</string>
    898     <!-- Single-character overlay for mobile phone numbers when creating desktop shortcuts -->
    899     <string name="type_short_mobile">M</string>
    900     <!-- Single-character overlay for work phone numbers when creating desktop shortcuts -->
    901     <string name="type_short_work">W</string>
    902     <!-- Single-character overlay for pager phone numbers when creating desktop shortcuts -->
    903     <string name="type_short_pager">P</string>
    904     <!-- Single-character overlay for other phone numbers when creating desktop shortcuts -->
    905     <string name="type_short_other">O</string>
    906 
    907     <!-- In edit dialog, shown if the contact is marked as being read-only -->
    908     <string name="edit_read_only">This contact is read-only</string>
    909 
    910     <!-- Shown as the header title over a collapsible section that, by default, hides
    911          secondary contact detail edit fields, such as birthday. -->
    912     <string name="edit_secondary_collapse">More</string>
    913 
    914     <string name="dialog_primary_name">Primary name</string>
    915     <string name="dialog_new_contact_account">Create contact under account</string>
    916 
    917     <string name="menu_sync_remove">Remove sync group</string>
    918     <string name="dialog_sync_add">Add sync group</string>
    919     <string name="display_more_groups">More groups\u2026</string>
    920 
    921     <!-- List title for a special contacts group that covers all contacts.-->
    922     <string name="display_ungrouped">All Other Contacts</string>
    923 
    924     <!-- List title for a special contacts group that covers all contacts that
    925          aren't members of any other group. -->
    926     <string name="display_all_contacts">All Contacts</string>
    927 
    928     <!-- Warning message given to users just before they remove a currently syncing
    929          group that would also cause all ungrouped contacts to stop syncing. -->
    930     <string name="display_warn_remove_ungrouped">Removing \'<xliff:g id="group" example="Starred">%s</xliff:g>\' from sync will also remove any ungrouped contacts from sync.</string>
    931 
    932     <!-- Title for data source when creating or editing a contact that doesn't
    933          belong to a specific account.  This contact will only exist on the phone
    934          and will not be synced. -->
    935     <string name="account_phone">Phone-only, unsynced</string>
    936 
    937     <!-- Action string for calling a custom phone number -->
    938     <string name="call_custom">Call <xliff:g id="custom">%s</xliff:g></string>
    939     <!-- Action string for calling a home phone number -->
    940     <string name="call_home">Call home</string>
    941     <!-- Action string for calling a mobile phone number -->
    942     <string name="call_mobile">Call mobile</string>
    943     <!-- Action string for calling a work phone number -->
    944     <string name="call_work">Call work</string>
    945     <!-- Action string for calling a work fax phone number -->
    946     <string name="call_fax_work">Call work fax</string>
    947     <!-- Action string for calling a home fax phone number -->
    948     <string name="call_fax_home">Call home fax</string>
    949     <!-- Action string for calling a pager phone number -->
    950     <string name="call_pager">Call pager</string>
    951     <!-- Action string for calling an other phone number -->
    952     <string name="call_other">Call</string>
    953     <!-- Action string for calling a callback number -->
    954     <string name="call_callback">Call callback</string>
    955     <!-- Action string for calling a car phone number -->
    956     <string name="call_car">Call car</string>
    957     <!-- Action string for calling a company main phone number -->
    958     <string name="call_company_main">Call company main</string>
    959     <!-- Action string for calling a ISDN phone number -->
    960     <string name="call_isdn">Call ISDN</string>
    961     <!-- Action string for calling a main phone number -->
    962     <string name="call_main">Call main</string>
    963     <!-- Action string for calling an other fax phone number -->
    964     <string name="call_other_fax">Call fax</string>
    965     <!-- Action string for calling a radio phone number -->
    966     <string name="call_radio">Call radio</string>
    967     <!-- Action string for calling a Telex phone number -->
    968     <string name="call_telex">Call telex</string>
    969     <!-- Action string for calling a TTY/TDD phone number -->
    970     <string name="call_tty_tdd">Call TTY/TDD</string>
    971     <!-- Action string for calling a work mobile phone number -->
    972     <string name="call_work_mobile">Call work mobile</string>
    973     <!-- Action string for calling a work pager phone number -->
    974     <string name="call_work_pager">Call work pager</string>
    975     <!-- Action string for calling an assistant phone number -->
    976     <string name="call_assistant">Call <xliff:g id="assistant">%s</xliff:g></string>
    977     <!-- Action string for calling a MMS phone number -->
    978     <string name="call_mms">Call MMS</string>
    979 
    980     <!-- Action string for sending an SMS to a custom phone number -->
    981     <string name="sms_custom">Text <xliff:g id="custom">%s</xliff:g></string>
    982     <!-- Action string for sending an SMS to a home phone number -->
    983     <string name="sms_home">Text home</string>
    984     <!-- Action string for sending an SMS to a mobile phone number -->
    985     <string name="sms_mobile">Text mobile</string>
    986     <!-- Action string for sending an SMS to a work phone number -->
    987     <string name="sms_work">Text work</string>
    988     <!-- Action string for sending an SMS to a work fax phone number -->
    989     <string name="sms_fax_work">Text work fax</string>
    990     <!-- Action string for sending an SMS to a home fax phone number -->
    991     <string name="sms_fax_home">Text home fax</string>
    992     <!-- Action string for sending an SMS to a pager phone number -->
    993     <string name="sms_pager">Text pager</string>
    994     <!-- Action string for sending an SMS to an other phone number -->
    995     <string name="sms_other">Text</string>
    996     <!-- Action string for sending an SMS to a callback number -->
    997     <string name="sms_callback">Text callback</string>
    998     <!-- Action string for sending an SMS to a car phone number -->
    999     <string name="sms_car">Text car</string>
   1000     <!-- Action string for sending an SMS to a company main phone number -->
   1001     <string name="sms_company_main">Text company main</string>
   1002     <!-- Action string for sending an SMS to a ISDN phone number -->
   1003     <string name="sms_isdn">Text ISDN</string>
   1004     <!-- Action string for sending an SMS to a main phone number -->
   1005     <string name="sms_main">Text main</string>
   1006     <!-- Action string for sending an SMS to an other fax phone number -->
   1007     <string name="sms_other_fax">Text fax</string>
   1008     <!-- Action string for sending an SMS to a radio phone number -->
   1009     <string name="sms_radio">Text radio</string>
   1010     <!-- Action string for sending an SMS to a Telex phone number -->
   1011     <string name="sms_telex">Text telex</string>
   1012     <!-- Action string for sending an SMS to a TTY/TDD phone number -->
   1013     <string name="sms_tty_tdd">Text TTY/TDD</string>
   1014     <!-- Action string for sending an SMS to a work mobile phone number -->
   1015     <string name="sms_work_mobile">Text work mobile</string>
   1016     <!-- Action string for sending an SMS to a work pager phone number -->
   1017     <string name="sms_work_pager">Text work pager</string>
   1018     <!-- Action string for sending an SMS to an assistant phone number -->
   1019     <string name="sms_assistant">Text <xliff:g id="assistant">%s</xliff:g></string>
   1020     <!-- Action string for sending an SMS to a MMS phone number -->
   1021     <string name="sms_mms">Text MMS</string>
   1022 
   1023     <!-- Action string for sending an email to a home email address -->
   1024     <string name="email_home">Email home</string>
   1025     <!-- Action string for sending an email to a mobile email address -->
   1026     <string name="email_mobile">Email mobile</string>
   1027     <!-- Action string for sending an email to a work email address -->
   1028     <string name="email_work">Email work</string>
   1029     <!-- Action string for sending an email to an other email address -->
   1030     <string name="email_other">Email</string>
   1031     <!-- Action string for sending an email to a custom email address -->
   1032     <string name="email_custom">Email <xliff:g id="custom">%s</xliff:g></string>
   1033 
   1034     <!-- Generic action string for sending an email -->
   1035     <string name="email">Email</string>
   1036 
   1037     <!-- Action string for viewing a home postal address -->
   1038     <string name="map_home">View home address</string>
   1039     <!-- Action string for viewing a work postal address -->
   1040     <string name="map_work">View work address</string>
   1041     <!-- Action string for viewing an other postal address -->
   1042     <string name="map_other">View address</string>
   1043     <!-- Action string for viewing a custom postal address -->
   1044     <string name="map_custom">View <xliff:g id="custom">%s</xliff:g> address</string>
   1045 
   1046     <!-- Action string for starting an IM chat with the AIM protocol -->
   1047     <string name="chat_aim">Chat using AIM</string>
   1048     <!-- Action string for starting an IM chat with the MSN or Windows Live protocol -->
   1049     <string name="chat_msn">Chat using Windows Live</string>
   1050     <!-- Action string for starting an IM chat with the Yahoo protocol -->
   1051     <string name="chat_yahoo">Chat using Yahoo</string>
   1052     <!-- Action string for starting an IM chat with the Skype protocol -->
   1053     <string name="chat_skype">Chat using Skype</string>
   1054     <!-- Action string for starting an IM chat with the QQ protocol -->
   1055     <string name="chat_qq">Chat using QQ</string>
   1056     <!-- Action string for starting an IM chat with the Google Talk protocol -->
   1057     <string name="chat_gtalk">Chat using Google Talk</string>
   1058     <!-- Action string for starting an IM chat with the ICQ protocol -->
   1059     <string name="chat_icq">Chat using ICQ</string>
   1060     <!-- Action string for starting an IM chat with the Jabber protocol -->
   1061     <string name="chat_jabber">Chat using Jabber</string>
   1062 
   1063     <!-- Generic action string for starting an IM chat -->
   1064     <string name="chat">Chat</string>
   1065 
   1066     <!-- Field title for the street of a structured postal address of a contact -->
   1067     <string name="postal_street">Street</string>
   1068     <!-- Field title for the PO box of a structured postal address of a contact -->
   1069     <string name="postal_pobox">PO box</string>
   1070     <!-- Field title for the neighborhood of a structured postal address of a contact -->
   1071     <string name="postal_neighborhood">Neighborhood</string>
   1072     <!-- Field title for the city of a structured postal address of a contact -->
   1073     <string name="postal_city">City</string>
   1074     <!-- Field title for the region, or state, of a structured postal address of a contact -->
   1075     <string name="postal_region">State</string>
   1076     <!-- Field title for the postal code of a structured postal address of a contact -->
   1077     <string name="postal_postcode">ZIP code</string>
   1078     <!-- Field title for the country of a structured postal address of a contact -->
   1079     <string name="postal_country">Country</string>
   1080 
   1081     <!-- Field title for the given name of a contact -->
   1082     <string name="name_given">Given name</string>
   1083     <!-- Field title for the family name of a contact -->
   1084     <string name="name_family">Family name</string>
   1085     <!-- Field title for the prefix name of a contact -->
   1086     <string name="name_prefix">Name prefix</string>
   1087     <!-- Field title for the middle name of a contact -->
   1088     <string name="name_middle">Middle name</string>
   1089     <!-- Field title for the suffix name of a contact -->
   1090     <string name="name_suffix">Name suffix</string>
   1091     <!-- Field title for the phonetic given name of a contact -->
   1092     <string name="name_phonetic_given">Phonetic given name</string>
   1093     <!-- Field title for the phonetic middle name of a contact -->
   1094     <string name="name_phonetic_middle">Phonetic middle name</string>
   1095     <!-- Field title for the phonetic family name of a contact -->
   1096     <string name="name_phonetic_family">Phonetic family name</string>
   1097 
   1098     <!-- String describing which account type a contact came from when editing it -->
   1099     <string name="account_type_format"><xliff:g id="source" example="Gmail">%1$s</xliff:g> contact</string>
   1100 
   1101     <!-- String describing which account a contact came from when editing it -->
   1102     <string name="from_account_format">from <xliff:g id="source" example="user (a] gmail.com">%1$s</xliff:g></string>
   1103 
   1104     <!-- Checkbox asking the user if they want to display a particular photo for a contact -->
   1105     <string name="use_photo_as_primary">Use this photo</string>
   1106 
   1107     <!-- Text used to explain that a contact cannot be edited since the data is read only -->
   1108     <string name="contact_read_only"><xliff:g id="source" example="Gmail">%1$s</xliff:g> contact information is not editable on this device.</string>
   1109 
   1110     <!-- Text describing that a contact has no information available other than name and photo -->
   1111     <string name="no_contact_details">No additional information for this contact</string>
   1112     
   1113     <!-- Label of the "sort list by" display option -->
   1114     <string name="display_options_sort_list_by">Sort list by</string>
   1115     
   1116     <!-- An allowable value for the "sort list by" contact display option  -->
   1117     <string name="display_options_sort_by_given_name">Given name</string>
   1118     
   1119     <!-- An allowable value for the "sort list by" contact display option  -->
   1120     <string name="display_options_sort_by_family_name">Family name</string>
   1121            
   1122     <!-- Label of the "view names as" display option -->
   1123     <string name="display_options_view_names_as">View contact names as</string>
   1124     
   1125     <!-- An allowable value for the "view names as" contact display option  -->
   1126     <string name="display_options_view_given_name_first">Given name first</string>
   1127     
   1128     <!-- An allowable value for the "view names as" contact display option  -->
   1129     <string name="display_options_view_family_name_first">Family name first</string>
   1130     
   1131     <!-- Gray hint displayed in the search field in Contacts when empty -->
   1132     <string name="search_bar_hint">Search contacts</string>
   1133     
   1134     <!-- Button displayed underneath the list of filtered visible contacts -->
   1135     <string name="search_for_all_contacts">Search for all contacts</string>
   1136 
   1137     <!-- An option in the 'change photo' or 'pick photo' dialog -->
   1138     <string name="take_photo">Take photo</string>
   1139 
   1140     <!-- An option in the 'change photo' or 'pick photo' dialog -->
   1141     <string name="pick_photo">Select photo from Gallery</string>
   1142 
   1143     <!-- Text shown in the contacts app while the background process updates contacts after a locale change -->
   1144     <string name="locale_change_in_progress">Contact list is being updated to reflect the change of language.\n\nPlease wait...</string>
   1145 
   1146     <!-- Text shown in the contacts app while the background process updates contacts after a system upgrade -->
   1147     <string name="upgrade_in_progress">Contact list is being updated.\n\nPlease wait...</string>
   1148 
   1149     <!-- Text shown in the contacts app if the background process updating contacts fails because of memory shortage -->
   1150     <string name="upgrade_out_of_memory">Contacts are in the process of being upgraded.
   1151     \n\nThe upgrade process requires approximately <xliff:g id="size_in_megabytes">%d</xliff:g>Mb of 
   1152     internal phone storage.\n\nChoose one of the following options:</string>
   1153     
   1154     <!-- Button shown in the contacts app if the background process updating contacts fails because of memory shortage -->
   1155     <string name="upgrade_out_of_memory_uninstall">Uninstall some applications</string>
   1156     
   1157     <!-- Button shown in the contacts app if the background process updating contacts fails because of memory shortage -->
   1158     <string name="upgrade_out_of_memory_retry">Retry upgrade</string>
   1159 
   1160     <!-- Title shown in the search result activity of contacts app -->
   1161     <string name="search_results_for">Search results for: <xliff:g id="query">%s</xliff:g></string>
   1162 
   1163     <!-- Title shown in the search result activity of contacts app while searching -->
   1164     <string name="search_results_searching">Searching...</string>
   1165 </resources>
   1166