mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 10:02:33 +03:00
Fix untranslated secretaries + providers js (errors)
Fix provider : MIN_PASSWORD_LENGTH is undefined A constant in php :)
This commit is contained in:
parent
b292e10c13
commit
e2e366eeee
2 changed files with 6 additions and 6 deletions
|
@ -288,7 +288,7 @@ App.Pages.Providers = (function () {
|
|||
|
||||
if ($password.val().length < vars('min_password_length') && $password.val() !== '') {
|
||||
$('#password, #password-confirm').addClass('is-invalid');
|
||||
throw new Error(lang('password_length_notice').replace('$number', MIN_PASSWORD_LENGTH));
|
||||
throw new Error(lang('password_length_notice').replace('$number', vars('min_password_length')));
|
||||
}
|
||||
|
||||
// Validate user email.
|
||||
|
|
|
@ -285,24 +285,24 @@ App.Pages.Secretaries = (function () {
|
|||
}
|
||||
});
|
||||
if (missingRequired) {
|
||||
throw new Error('Fields with * are required.');
|
||||
throw new Error(lang('fields_are_required'));
|
||||
}
|
||||
|
||||
// Validate passwords.
|
||||
if ($password.val() !== $passwordConfirmation.val()) {
|
||||
$('#password, #password-confirm').addClass('is-invalid');
|
||||
throw new Error('Passwords mismatch!');
|
||||
throw new Error(lang('passwords_mismatch'));
|
||||
}
|
||||
|
||||
if ($password.val().length < vars('min_password_length') && $password.val() !== '') {
|
||||
$('#password, #password-confirm').addClass('is-invalid');
|
||||
throw new Error('Password must be at least ' + vars('min_password_length') + ' characters long.');
|
||||
throw new Error(lang('password_length_notice').replace('$number', vars('min_password_length')));
|
||||
}
|
||||
|
||||
// Validate user email.
|
||||
if (!App.Utils.Validation.email($email.val())) {
|
||||
$email.addClass('is-invalid');
|
||||
throw new Error('Invalid email address!');
|
||||
throw new Error(lang('invalid_email'));
|
||||
}
|
||||
|
||||
// Validate phone number.
|
||||
|
@ -324,7 +324,7 @@ App.Pages.Secretaries = (function () {
|
|||
// Check if username exists
|
||||
if ($username.attr('already-exists') === 'true') {
|
||||
$username.addClass('is-invalid');
|
||||
throw new Error('Username already exists.');
|
||||
throw new Error(lang('username_already_exists'));
|
||||
}
|
||||
|
||||
return true;
|
||||
|
|
Loading…
Reference in a new issue