user.php 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. return array(
  3. 'email' => array(
  4. 'feedback' => array(
  5. 'invalid' => 'The email address is invalid.',
  6. 'required' => 'The email address is required.',
  7. ),
  8. 'validation' => array(
  9. 'change_email' => 'You can change your email address <a href="%s">on the profile page</a>.',
  10. 'email_sent_to' => 'We sent you an email at <strong>%s</strong>, please follow its indications to validate your address.',
  11. 'feedback' => array(
  12. 'email_failed' => 'We couldn’t send you an email because of a misconfiguration of the server.',
  13. 'email_sent' => 'An email has been sent to your address.',
  14. 'error' => 'The email address failed to be validated.',
  15. 'ok' => 'The email address has been validated.',
  16. 'unneccessary' => 'The email address was already validated.',
  17. 'wrong_token' => 'The email address failed to be validated due to a wrong token.',
  18. ),
  19. 'need_to' => 'You need to validate your email address before being able to use %s.',
  20. 'resend_email' => 'Resend the email',
  21. 'title' => 'Email address validation',
  22. ),
  23. ),
  24. 'tos' => array(
  25. 'feedback' => array(
  26. 'invalid' => 'You must accept the Terms of Service to be able to register.',
  27. ),
  28. ),
  29. 'mailer' => array(
  30. 'email_need_validation' => array(
  31. 'title' => 'You need to validate your account',
  32. 'welcome' => 'Welcome %s,',
  33. 'body' => 'You’ve just registered on %s but you still need to validate your email. For that, just follow the link:',
  34. ),
  35. ),
  36. );