[polari] entryArea: Remove spaces before ellipses in translatable strings



commit 5ee00b989bc59ce71efcb43a3551a12c531fcc33
Author: Piotr Drąg <piotrdrag gmail com>
Date:   Thu Feb 18 01:39:00 2016 +0100

    entryArea: Remove spaces before ellipses in translatable strings

 src/entryArea.js |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/src/entryArea.js b/src/entryArea.js
index bd4b7c5..3fc9810 100644
--- a/src/entryArea.js
+++ b/src/entryArea.js
@@ -237,15 +237,15 @@ const EntryArea = new Lang.Class({
                      "Paste %s lines of text to public paste service?",
                      nLines).format(nLines);
         this._uploadLabel.label =
-            ngettext("Uploading %s line of text to public paste service …",
-                     "Uploading %s lines of text to public paste service …",
+            ngettext("Uploading %s line of text to public paste service…",
+                     "Uploading %s lines of text to public paste service…",
                      nLines).format(nLines);
         this._setPasteContent(text);
     },
 
     _onImagePasted: function(entry, pixbuf) {
         this._confirmLabel.label = _("Upload image to public paste service?");
-        this._uploadLabel.label = _("Uploading image to public paste service …");
+        this._uploadLabel.label = _("Uploading image to public paste service…");
         this._setPasteContent(pixbuf);
     },
 


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