[pve-devel] [PATCH] Usability: enhance password label in LXC wizzard

Emmanuel Kasper e.kasper at proxmox.com
Thu Jul 30 12:22:35 CEST 2015


It seems according to http://pve.proxmox.com/pipermail/pve-user/2015-July/008954.html
some users get confused about this field.
---
 www/manager/lxc/CreateWizard.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/www/manager/lxc/CreateWizard.js b/www/manager/lxc/CreateWizard.js
index 5506731..3cde772 100644
--- a/www/manager/lxc/CreateWizard.js
+++ b/www/manager/lxc/CreateWizard.js
@@ -103,7 +103,7 @@ Ext.define('PVE.lxc.CreateWizard', {
 			    inputType: 'password',
 			    name: 'password',
 			    value: '',
-			    fieldLabel: gettext('Password'),
+			    fieldLabel: gettext('Root password'),
 			    allowBlank: false,
 			    minLength: 5,
 			    change: function(f, value) {
@@ -118,7 +118,7 @@ Ext.define('PVE.lxc.CreateWizard', {
 			    inputType: 'password',
 			    name: 'confirmpw',
 			    value: '',
-			    fieldLabel: gettext('Confirm password'),
+			    fieldLabel: gettext('Confirm root password'),
 			    allowBlank: false,
 			    validator: function(value) {
 				var pw = me.down('field[name=password]').getValue();
-- 
2.1.4





More information about the pve-devel mailing list