Skip to content

Commit

Permalink
Merge pull request #1514 from sudwebdesign/develop-fix-untranslated-s…
Browse files Browse the repository at this point in the history
…ecretaries-js-errors

Fix untranslated secretaries + providers js (errors)
  • Loading branch information
alextselegidis committed Apr 26, 2024
2 parents 6ee5e14 + e2e366e commit df51d68
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion assets/js/pages/providers.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
10 changes: 5 additions & 5 deletions assets/js/pages/secretaries.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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;
Expand Down

0 comments on commit df51d68

Please sign in to comment.