mirror of
https://github.com/vale981/Vulcan
synced 2025-03-05 17:41:43 -05:00
add email already exists error to i18n to fix bug where duplicate emails returns an 'unknown error' message
This commit is contained in:
parent
68351674da
commit
8298f5afba
1 changed files with 4 additions and 3 deletions
|
@ -3,6 +3,7 @@ import { addStrings } from 'meteor/vulcan:core';
|
|||
addStrings('en', {
|
||||
|
||||
"accounts.error_emailRequired": "Email required",
|
||||
"accounts.error_email_already_exists": "Email already exists",
|
||||
"accounts.error_invalid_email": "Invalid email",
|
||||
"accounts.error_minchar": "Your password is too short",
|
||||
"accounts.error_username_required": "Username required",
|
||||
|
@ -41,7 +42,7 @@ addStrings('en', {
|
|||
"forms.select_option": "-- select option --",
|
||||
"forms.delete": "Delete",
|
||||
"forms.delete_confirm": "Delete document?",
|
||||
|
||||
|
||||
"users.profile": "Profile",
|
||||
"users.complete_profile": "Complete your Profile",
|
||||
"users.profile_completed": "Profile completed.",
|
||||
|
@ -124,10 +125,10 @@ addStrings('en', {
|
|||
"app.required_field_missing": "{fieldName} is required.",
|
||||
"app.field_is_too_long": "{fieldName} cannot exceed {limit} characters.",
|
||||
"app.schema_validation_error": "Schema validation error",
|
||||
|
||||
|
||||
"cards.edit": "Edit",
|
||||
"datatable.edit": "Edit",
|
||||
|
||||
|
||||
"admin": "Admin",
|
||||
"notifications": "Notifications",
|
||||
});
|
||||
|
|
Loading…
Add table
Reference in a new issue