[gnome-documents] Disambiguate another two strings



commit 706ca061f5cf3d0551aa454dee425bd8c8c6aa5e
Author: Cosimo Cecchi <cosimoc gnome org>
Date:   Thu Mar 28 10:10:58 2013 -0400

    Disambiguate another two strings
    
    https://bugzilla.gnome.org/show_bug.cgi?id=685753

 src/properties.js |    4 ++--
 src/search.js     |    4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/src/properties.js b/src/properties.js
index 1fcfdf5..c6998a5 100644
--- a/src/properties.js
+++ b/src/properties.js
@@ -77,7 +77,7 @@ const PropertiesDialog = new Lang.Class({
         // Title item
         // Translators: "Title" is the label next to the document title
         // in the properties dialog
-        this._title = new Gtk.Label({ label: _("Title"),
+        this._title = new Gtk.Label({ label: C_("Document Title", "Title"),
                                       halign: Gtk.Align.END });
         this._title.get_style_context ().add_class('dim-label');
         grid.add(this._title);
@@ -86,7 +86,7 @@ const PropertiesDialog = new Lang.Class({
         if (doc.author) {
             // Translators: "Author" is the label next to the document author
             // in the properties dialog
-            this._author = new Gtk.Label({ label: _("Author"),
+            this._author = new Gtk.Label({ label: C_("Document Author", "Author"),
                                            halign: Gtk.Align.END });
             this._author.get_style_context ().add_class('dim-label');
             grid.add(this._author);
diff --git a/src/search.js b/src/search.js
index 84a97a1..c9c2193 100644
--- a/src/search.js
+++ b/src/search.js
@@ -255,10 +255,10 @@ const SearchMatchManager = new Lang.Class({
                                        name: _("All") }));
         this.addItem(new SearchMatch({ id: SearchMatchStock.TITLE,
         //Translators: "Title" refers to "Match Title" when searching
-                                       name: _("Title") }));
+                                       name: C_("Search Filter", "Title") }));
         this.addItem(new SearchMatch({ id: SearchMatchStock.AUTHOR,
         //Translators: "Author" refers to "Match Author" when searching
-                                       name: _("Author") }));
+                                       name: C_("Search Filter", "Author") }));
 
         this.setActiveItemById(SearchMatchStock.ALL);
     },


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