user.php 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?php
  2. return array(
  3. 'email' => array(
  4. 'feedback' => array(
  5. 'invalid' => 'This email address is invalid.',
  6. 'required' => 'An 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 instructions to validate your address.',
  11. 'feedback' => array(
  12. 'email_failed' => 'We couldn’t send you an email because of a server configuration error.',
  13. 'email_sent' => 'An email has been sent to your address.',
  14. 'error' => 'Email address validation failed.',
  15. 'ok' => 'This email address has been validated.',
  16. 'unneccessary' => 'This email address was already validated.',
  17. 'wrong_token' => 'This 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. 'mailer' => array(
  25. 'email_need_validation' => array(
  26. 'body' => 'You’ve just registered on %s, but you still need to validate your email address. For that, just follow the link:',
  27. 'title' => 'You need to validate your account',
  28. 'welcome' => 'Welcome %s,',
  29. ),
  30. ),
  31. 'password' => array(
  32. 'invalid' => 'The password is invalid.',
  33. ),
  34. 'tos' => array(
  35. 'feedback' => array(
  36. 'invalid' => 'You must accept the Terms of Service to be able to register.',
  37. ),
  38. ),
  39. 'username' => array(
  40. 'invalid' => 'This username is invalid.',
  41. 'taken' => 'This username, %s, is taken.',
  42. ),
  43. );