From 70d19530c478d9bd6dbfb3e3312f89d317a05b72 Mon Sep 17 00:00:00 2001 From: William Jon McCann Date: Mon, 27 Aug 2012 21:16:08 -0400 Subject: [PATCH] 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 --- js/ui/shellMountOperation.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/ui/shellMountOperation.js b/js/ui/shellMountOperation.js index 391a761d8..907df1170 100644 --- a/js/ui/shellMountOperation.js +++ b/js/ui/shellMountOperation.js @@ -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 {