From a909017a2be06dfe7d3cf0cc04024b5cffd0bde7 Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Sat, 18 Aug 2012 22:58:50 -0400 Subject: [PATCH] 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 https://bugzilla.gnome.org/show_bug.cgi?id=681750 --- js/ui/unlockDialog.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/unlockDialog.js b/js/ui/unlockDialog.js index c58263580..86ce8ec52 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,