We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a067bda commit 0634d4eCopy full SHA for 0634d4e
interface/web/tools/lib/lang/en_usersettings.lng
@@ -3,4 +3,5 @@ $wb["passwort_txt"] = 'Password';
3
$wb["language_txt"] = 'Language';
4
$wb["btn_save_txt"] = 'Save';
5
$wb["btn_cancel_txt"] = 'Cancel';
6
+$wb["password_mismatch"] = 'The password in the second password field does not match the first password.';
7
?>
interface/web/tools/user_settings.php
@@ -77,7 +77,7 @@ function onBeforeUpdate() {
77
global $app, $conf;
78
79
if($_POST['passwort'] != $_POST['passwort2']) {
80
- $app->tform->errorMessage = 'The passwords in the second password field does not match the first password.';
+ $app->tform->errorMessage = $app->tform->lng('password_mismatch');
81
}
82
83
0 commit comments