[gnome-documents] loadmore: use the correct singular version of the string



commit e2aca9451e73d3a6a96a5867a1ec92765cbb266c
Author: Christian Kirbach <Christian Kirbach googlemail com>
Date:   Thu Sep 29 15:28:43 2011 -0400

    loadmore: use the correct singular version of the string
    
    https://bugzilla.gnome.org/show_bug.cgi?id=659639

 src/loadMore.js |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/loadMore.js b/src/loadMore.js
index dc0c168..0fc285e 100644
--- a/src/loadMore.js
+++ b/src/loadMore.js
@@ -67,7 +67,7 @@ LoadMoreButton.prototype = {
         if (remainingDocs > offsetStep)
             remainingDocs = offsetStep;
 
-        this.widget.label = Gettext.ngettext("Load %d more documents",
+        this.widget.label = Gettext.ngettext("Load %d more document",
                                              "Load %d more documents",
                                              remainingDocs).format(remainingDocs);
         this.widget.show();
@@ -77,4 +77,4 @@ LoadMoreButton.prototype = {
         this._block = block;
         this._onItemCountChanged();
     }
-};
\ No newline at end of file
+};



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