[gnome-shell] Use the term password instead of passphrase



commit 70d19530c478d9bd6dbfb3e3312f89d317a05b72
Author: William Jon McCann <jmccann redhat com>
Date:   Mon Aug 27 21:16:08 2012 -0400

    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 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/js/ui/shellMountOperation.js b/js/ui/shellMountOperation.js
index 391a761..907df11 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 {



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]