From ea5ae4b1cf1aa912ca4b88a7f2dbb59594b28cdb Mon Sep 17 00:00:00 2001 From: Petr Vobornik Date: Thu, 3 May 2012 10:48:23 +0200 Subject: User password widget modified. Currently the user password is shown as follows in the details page: Password: Reset Password This is inconsistent with the rest of the page because the 'Reset Password' is an action, not the value of the password. Now password is shown as follows: Password: ******* (if set) Password: (if not set) Reset password link was removed as well the dialog for reset password was removed from password widget. The dialog was moved to its own object and can be now showed independently. An action for showing this dialog should be created. https://fedorahosted.org/freeipa/ticket/2248 --- ipalib/plugins/internal.py | 1 + 1 file changed, 1 insertion(+) (limited to 'ipalib/plugins') diff --git a/ipalib/plugins/internal.py b/ipalib/plugins/internal.py index 30ab9164..2ed57f69 100644 --- a/ipalib/plugins/internal.py +++ b/ipalib/plugins/internal.py @@ -564,6 +564,7 @@ class i18n_messages(Command): "current_password": _("Current Password"), "current_password_required": _("Current password is required"), "new_password": _("New Password"), + "new_password_required": _("New password is required"), "password_change_complete": _("Password change complete"), "password_must_match": _("Passwords must match"), "reset_password": _("Reset Password"), -- cgit