summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike LeBeau <mlebeau@android.com>2009-07-13 20:02:37 -0700
committerMike LeBeau <mlebeau@android.com>2009-07-13 20:02:37 -0700
commitf8991f48e945ebd5823714f32fb10152fdc5e4ee (patch)
tree1dd373f86345c55496849bea98b8f86b77955d63
parent36d988b42d72c593bb7eba45366666a6da4673b5 (diff)
downloadGoogleSearch-f8991f48e945ebd5823714f32fb10152fdc5e4ee.tar.gz
Change the GoogleSearch strings so that "Google" shows up for the label
in global search, but "Google Search" shows up as the name in 'manage applications'.
-rw-r--r--AndroidManifest.xml3
-rw-r--r--res/values/strings.xml5
2 files changed, 6 insertions, 2 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 297fb03..c97226b 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -26,7 +26,7 @@
<application
android:process="android.process.acore"
- android:label="@string/search_label">
+ android:label="@string/app_label">
<activity android:name=".GoogleSearch"
android:theme="@android:style/Theme.NoDisplay"
@@ -50,6 +50,7 @@
</activity>
<provider android:name=".SuggestionProvider"
+ android:label="@string/search_label"
android:authorities="com.android.googlesearch.SuggestionProvider" />
<meta-data android:name="android.app.default_searchable"
diff --git a/res/values/strings.xml b/res/values/strings.xml
index 455eca2..e5e3adf 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -15,9 +15,12 @@
-->
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
- <!-- Do not translate. This string is not displayed in UI (because we have a badge icon). -->
+ <!-- Search source name as displayed in the search dialog. -->
<string name="search_label">Google</string>
+ <!-- The app label as shown, for example, in 'manage applications'. -->
+ <string name="app_label">Google Search</string>
+
<!-- This is the hint text shown in the search widget, before text is entered. -->
<!-- This translation MUST MATCH the string "search_hint" which is found in
Home/res/values/strings.xml -->