1<?xml version="1.0" encoding="utf-8"?> 2<!-- Copyright (C) 2008 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 18 <!-- Search source name as displayed in the search dialog. --> 19 <string name="search_label">Google</string> 20 21 <!-- The app label as shown, for example, in 'manage applications'. --> 22 <string name="app_label">Google Search</string> 23 24 <!-- This is the hint text shown in the search widget, before text is entered. --> 25 <!-- This translation MUST MATCH the string "search_hint" which is found in 26 Home/res/values/strings.xml --> 27 <string name="search_hint">Google Search</string> 28 29 <!-- Settings category title for 'Google search settings' settings activity --> 30 <string name="google_search_settings">Google search settings</string> 31 32 <!-- Title and summaries for 'show web suggestions' check box setting --> 33 <string name="show_web_suggestions">Show web suggestions</string> 34 <string name="show_web_suggestions_summary_enabled">Show suggestions from Google as you type</string> 35 <string name="show_web_suggestions_summary_disabled">Don\'t show suggestions from Google as you type</string> 36 37 <!-- Note that this is the standard search url. It uses the current locale for language --> 38 <!-- (%1$s) and country (%2$s) and shouldn't need to be replaced by locale or mcc selected --> 39 <!-- resources. --> 40 <!-- Any changes to this (especially in terms of adding/removing the MCC-specific flavors) --> 41 <!-- should be mirrored by changes in GenieProvider. --> 42 <!-- Do not translate. This string is an internal URI, not seen in the UI. --> 43 <string name="google_search_base" translatable="false"> 44 http://www.google.com/m?hl=%1$s&gl=%2$s&</string> 45 46 <!-- Note that this is the standard suggest url. It uses the current locale for language --> 47 <!-- (t%1$s) and country (%2$s) and should not need to be replaced by locale or mcc --> 48 <!-- selected resources. --> 49 <!-- Any changes to this (especially in terms of adding/removing the MCC-specific flavors) --> 50 <!-- should be mirrored by changes in GenieProvider --> 51 <!-- Do not translate. This string is an internal URI, not seen in the UI. --> 52 <string name="google_suggest_base" translatable="false"> 53 http://www.google.com/complete/search?hl=%1$s&gl=%2$s&</string> 54</resources> 55