Update hint texts of all entries

The design team discussed the ellipses at the end of the hint text of
our entries and, even though they are present in most mockups, it turned
out they don't like them, so remove them.

It also turned out they don't like the prefixes like "Enter" before it,
so remove those, too.

https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/977
This commit is contained in:
Jonas Dreßler
2020-02-14 22:11:27 +01:00
committed by Florian Müllner
parent 775c3345eb
commit 95ebbb9360
4 changed files with 8 additions and 8 deletions

View File

@ -271,12 +271,12 @@ var AuthenticationDialog = GObject.registerClass({
}
// Hack: The request string comes directly from PAM, if it's "Password:"
// we replace it with our own, if it's something else we replace the
// last colon and any trailing spaces with a "…".
// we replace it with our own to allow localization, if it's something
// else we remove the last colon and any trailing or leading spaces.
if (request === 'Password:' || request === 'Password: ')
this._passwordEntry.hint_text = _('Enter Password');
this._passwordEntry.hint_text = _('Password');
else
this._passwordEntry.hint_text = request.replace(/: *$/, '');
this._passwordEntry.hint_text = request.replace(/: *$/, '').trim();
this._passwordEntry.password_visible = echoOn;