1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- 3 /* 4 ** Copyright 2010, The Android Open Source Project 5 ** 6 ** Licensed under the Apache License, Version 2.0 (the "License"); 7 ** you may not use this file except in compliance with the License. 8 ** You may obtain a copy of the License at 9 ** 10 ** http://www.apache.org/licenses/LICENSE-2.0 11 ** 12 ** Unless required by applicable law or agreed to in writing, software 13 ** distributed under the License is distributed on an "AS IS" BASIS, 14 ** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 ** See the License for the specific language governing permissions and 16 ** limitations under the License. 17 */ 18 --> 19 <resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> 20 21 <!-- The name for the recognizer - to be shown in system settings. --> 22 <string name="service_name">Sample Recognizer</string> 23 24 <!-- The name of the settings activity. --> 25 <string name="settings_name">Voice Recognition Settings</string> 26 27 <!-- The title of the preference for the type of results to return (letters or numbers). --> 28 <string name="results_type_title">Results type</string> 29 30 <!-- The entry names of the preference for the type of results to return 31 (letters or numbers). --> 32 <string-array name="results_type_entries"> 33 <item>Letters</item> 34 <item>Numbers</item> 35 </string-array> 36 37 <!-- The entry values of the preference for the type of results to return 38 (letters or numbers). --> 39 <string-array name="results_type_values"> 40 <item>0</item> 41 <item>1</item> 42 </string-array> 43 44 <!-- The default value of the preference for the type of results to return 45 (letters or numbers). --> 46 <string name="results_type_default_value">0</string> 47 48 </resources> 49