Guest User

Untitled

a guest
Jan 19th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. auth.monaSdk.core.LRObject.$hooks.call(
  2. 'mapValidationMessages',
  3. {
  4. rule: "required",
  5. message: i18n.t('account.profileeditor.required'), // "The %s field is required."
  6. }, {
  7. rule: "valid_email",
  8. message: i18n.t('account.profileeditor.valid_email'), // "The %s field must contain a valid email address."
  9. }, {
  10. rule: "min_length",
  11. message: i18n.t('account.profileeditor.min_length'),
  12. }
  13. );
Add Comment
Please, Sign In to add comment