Use the term password instead of passphrase
Since that is what the primary label uses as well as the gtk mount operation. https://bugzilla.gnome.org/show_bug.cgi?id=682645
This commit is contained in:
parent
e34ab6c5ae
commit
70d19530c4
@ -365,7 +365,7 @@ const ShellMountPasswordDialog = new Lang.Class({
|
||||
this._messageBox.add(this._passwordBox);
|
||||
|
||||
this._passwordLabel = new St.Label(({ style_class: 'prompt-dialog-password-label',
|
||||
text: _("Passphrase") }));
|
||||
text: _("Password") }));
|
||||
this._passwordBox.add(this._passwordLabel, { y_fill: false, y_align: St.Align.MIDDLE });
|
||||
|
||||
this._passwordEntry = new St.Entry({ style_class: 'prompt-dialog-password-entry',
|
||||
@ -386,7 +386,7 @@ const ShellMountPasswordDialog = new Lang.Class({
|
||||
|
||||
if (flags & Gio.AskPasswordFlags.SAVING_SUPPORTED) {
|
||||
this._rememberChoice = new CheckBox.CheckBox();
|
||||
this._rememberChoice.getLabelActor().text = _("Remember Passphrase");
|
||||
this._rememberChoice.getLabelActor().text = _("Remember Password");
|
||||
this._rememberChoice.actor.checked = true;
|
||||
this._messageBox.add(this._rememberChoice.actor);
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user