[gnome-shell] [dash] Change section titles to match 20091114 mockup



commit 5202dd5157947d17454d43f12e1bfd110ee01d0c
Author: Colin Walters <walters verbum org>
Date:   Fri Dec 25 12:41:58 2009 -0500

    [dash] Change section titles to match 20091114 mockup
    
    Documents is changed to Items, and add "& Devices" to Places.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=605491

 js/ui/dash.js         |    4 ++--
 js/ui/docDisplay.js   |    2 +-
 js/ui/placeDisplay.js |    2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/js/ui/dash.js b/js/ui/dash.js
index 0d941a7..54ff6eb 100644
--- a/js/ui/dash.js
+++ b/js/ui/dash.js
@@ -882,14 +882,14 @@ Dash.prototype = {
 
         /* Translators: This is in the sense of locations for documents,
            network locations, etc. */
-        this._placesSection = new Section(_("PLACES"), true);
+        this._placesSection = new Section(_("PLACES & DEVICES"), true);
         let placesDisplay = new PlaceDisplay.DashPlaceDisplay();
         this._placesSection.content.add(placesDisplay.actor, { expand: true });
         this.sectionArea.add(this._placesSection.actor);
 
         /***** Documents *****/
 
-        this._docsSection = new Section(_("RECENT DOCUMENTS"));
+        this._docsSection = new Section(_("RECENT ITEMS"));
 
         this._docDisplay = new DocDisplay.DashDocDisplay();
         this._docsSection.content.add(this._docDisplay.actor, { expand: true });
diff --git a/js/ui/docDisplay.js b/js/ui/docDisplay.js
index ee4fa7e..57a8009 100644
--- a/js/ui/docDisplay.js
+++ b/js/ui/docDisplay.js
@@ -485,7 +485,7 @@ DocSearchProvider.prototype = {
     __proto__: Search.SearchProvider.prototype,
 
     _init: function(name) {
-        Search.SearchProvider.prototype._init.call(this, _("DOCUMENTS"));
+        Search.SearchProvider.prototype._init.call(this, _("RECENT ITEMS"));
         this._docManager = DocInfo.getDocManager();
     },
 
diff --git a/js/ui/placeDisplay.js b/js/ui/placeDisplay.js
index 160a029..745acc9 100644
--- a/js/ui/placeDisplay.js
+++ b/js/ui/placeDisplay.js
@@ -516,7 +516,7 @@ PlaceSearchProvider.prototype = {
     __proto__: Search.SearchProvider.prototype,
 
     _init: function() {
-        Search.SearchProvider.prototype._init.call(this, _("PLACES"));
+        Search.SearchProvider.prototype._init.call(this, _("PLACES & DEVICES"));
     },
 
     getResultMeta: function(resultId) {



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