[gnome-music] searchbar: Replace "Search By" and "All fields" to "Match" and "All"



commit 774ffbc4442031f045c8d54fcbf619c4b77774b3
Author: Arnel Borja <arnelborja src gnome org>
Date:   Tue May 6 02:12:46 2014 +0800

    searchbar: Replace "Search By" and "All fields" to "Match" and "All"
    
    To be consistent with other GNOME Core Apps.

 gnomemusic/searchbar.py |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/gnomemusic/searchbar.py b/gnomemusic/searchbar.py
index 45f8b00..2b940e7 100644
--- a/gnomemusic/searchbar.py
+++ b/gnomemusic/searchbar.py
@@ -27,7 +27,7 @@ class BaseManager:
         if self.id == "search":
             self.values = [
                 ["", "", self.label],
-                ["search_all", "All fields", ""],
+                ["search_all", "All", ""],
                 ["search_artist", "Artist", ""],
                 ["search_album", "Album", ""],
                 ["search_track", "Track", ""],
@@ -171,7 +171,7 @@ class DropDown(Gd.Revealer):
         sourcesFilter = FilterView(self.sourcesManager, self)
         self._grid.add(sourcesFilter.view)
 
-        self.searchFieldsManager = BaseManager('search', "Search By", searchbar._search_entry)
+        self.searchFieldsManager = BaseManager('search', "Match", searchbar._search_entry)
         searchFieldsFilter = FilterView(self.searchFieldsManager, self)
         self._grid.add(searchFieldsFilter.view)
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]