GNOME Bugzilla – Bug 687656
"Not Listed?" - "Sign In" should read as "Next"
Last modified: 2012-11-07 00:41:16 UTC
If I click on "Not listed?" in the login screen, I come to a username field with two buttons: "Cancel" and "Sign In". Clicking on "Sign In" doesn't actually sign me in though - it takes me to the login entry. It would be better to rename "Sign In" to "Next" for the username stage, therefore. The blue button should still read "Sign In" when the password field is displayed.
Created attachment 228321 [details] [review] unlockDialog: better confirmation button label If I click on "Not listed?" in the login screen, I come to a username field with two buttons: "Cancel" and "Sign In". Clicking on "Sign In" doesn't actually sign me in though - it takes me to the login entry. It would be better to rename "Sign In" to "Next" for the username stage, therefore. Gdm emit a signal to ask a question or a secret, but we can not know if this is the last authentication question, hence we only use "Sign In" for secret questions which improve the situation a lot.
Review of attachment 228321 [details] [review]: This is ugly, but I think it will work for now. In most workflows, the secret is the last thing issued. ::: js/gdm/loginDialog.js @@ +915,3 @@ hold.release(); }), + label: forSecret ? C_('button', 'Sign In') : _('Next'), These need to be ""s.
Comment on attachment 228321 [details] [review] unlockDialog: better confirmation button label Attachment 228321 [details] pushed as 1228db6 - unlockDialog: better confirmation button label