1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3 Copyright (C) 2013 The Android Open Source Project 4 5 Licensed under the Apache License, Version 2.0 (the "License"); 6 you may not use this file except in compliance with the License. 7 You may obtain a copy of the License at 8 9 http://www.apache.org/licenses/LICENSE-2.0 10 11 Unless required by applicable law or agreed to in writing, software 12 distributed under the License is distributed on an "AS IS" BASIS, 13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 See the License for the specific language governing permissions and 15 limitations under the License. 16--> 17<resources> 18 19 <string name="app_name">Contacts List</string> 20 <string name="activity_contacts_list">Contacts List</string> 21 <string name="activity_contact_detail">Contact Detail</string> 22 <string name="contacts_list_search_results_title">Contacts List Search for \"%s\"</string> 23 <string name="app_description">This is a sample app, demonstrating use of the Android system Contacts Provider.</string> 24 <string name="imageview_description">Contact Thumbnail</string> 25 <string name="address_button_description">View Address</string> 26 <string name="menu_search">Search</string> 27 <string name="menu_add_contact">Add Contact</string> 28 <string name="menu_edit_contact">Edit Contact</string> 29 <string name="no_contacts">No Contacts Found</string> 30 <string name="no_contact_selected">No Contact Selected</string> 31 <string name="search_hint">Find contacts</string> 32 33 <!-- Used for the AlphabetIndexer in ContactsListFragment to provide quick navigation by 34 alphabet using ListView fast scroll. --> 35 <string name="alphabet">ABCDEFGHIJKLMNOPQRSTUVWXYZ</string> 36 37 <!-- When using ContactsContract.Contacts#CONTENT_FILTER_URI to search contacts, a match occurs 38 when using a number of different fields, such as name, e-mail address, address, phone 39 number, etc. When a match occurs that is not the name, there is currently no way to tell 40 which other field was matched. This string is displayed in the secondary display text in 41 ContactsListFragment when a search query match occurs that is not the display name. 42 --> 43 <string name="search_match_other">Matches Other Field</string> 44 45 <string name="no_address">No addresses found</string> 46 <string name="no_intent_found">No application found to handle this action</string> 47 48</resources> 49