From 136ed3623b697922cc4148a89d7337fea1fff353 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Fri, 18 Feb 2011 19:35:17 +0100 Subject: [PATCH] search-entry: Update hint text 'Search your computer' is problematic for various reasons: - it specifies the kind of device - it focuses on local search (while we also do web search) - it does not advertise the instant search functionality Change the hint text to 'Type to search' as proposed by Allan Day. https://bugzilla.gnome.org/show_bug.cgi?id=642287 --- js/ui/viewSelector.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/js/ui/viewSelector.js b/js/ui/viewSelector.js index f59dccb87..be031b541 100644 --- a/js/ui/viewSelector.js +++ b/js/ui/viewSelector.js @@ -23,7 +23,11 @@ function SearchEntry(focusBase) { SearchEntry.prototype = { _init : function(focusBase) { this.actor = new St.Entry({ name: 'searchEntry', - hint_text: _("Search your computer"), + /* Translators: this is the text displayed + in the search entry when no search is + active; it should not exceed ~30 + characters */ + hint_text: _("Type to search..."), track_hover: true }); this.entry = this.actor.clutter_text;