[gnome-shell] UnlockDialog: Fix "other user" label



commit a909017a2be06dfe7d3cf0cc04024b5cffd0bde7
Author: Ray Strode <rstrode redhat com>
Date:   Sat Aug 18 22:58:50 2012 -0400

    UnlockDialog: Fix "other user" label
    
    The unlock dialog has a mechanism for manually typing in a username
    and password.  This mechanism is mislabeled:
    
    Login as another user
    
    when it should be labeled
    
    Log in as another user
    
    This commit adds the space.
    
    Spotted by Stef Walter <stefw gnome org>
    
    https://bugzilla.gnome.org/show_bug.cgi?id=681750

 js/ui/unlockDialog.js |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/js/ui/unlockDialog.js b/js/ui/unlockDialog.js
index c582635..86ce8ec 100644
--- a/js/ui/unlockDialog.js
+++ b/js/ui/unlockDialog.js
@@ -140,7 +140,7 @@ const UnlockDialog = new Lang.Class({
         this._updateOkButton(false);
         this._reset();
 
-        let otherUserLabel = new St.Label({ text: _("Login as another user"),
+        let otherUserLabel = new St.Label({ text: _("Log in as another user"),
                                             style_class: 'login-dialog-not-listed-label' });
         this._otherUserButton = new St.Button({ style_class: 'login-dialog-not-listed-button',
                                                 can_focus: true,



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