user.php 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?php
  2. return array(
  3. 'email' => array(
  4. 'feedback' => array(
  5. 'invalid' => 'This email address is invalid.', // TODO - Translation
  6. 'required' => 'An email address is required.', // TODO - Translation
  7. ),
  8. 'validation' => array(
  9. 'change_email' => 'You can change your email address <a href="%s">on the profile page</a>.', // TODO - Translation
  10. 'email_sent_to' => 'We sent you an email at <strong>%s</strong>. Please follow its instructions to validate your address.', // TODO - Translation
  11. 'feedback' => array(
  12. 'email_failed' => 'We couldn’t send you an email because of a server configuration error.', // TODO - Translation
  13. 'email_sent' => 'An email has been sent to your address.', // TODO - Translation
  14. 'error' => 'Email address validation failed.', // TODO - Translation
  15. 'ok' => 'This email address has been validated.', // TODO - Translation
  16. 'unneccessary' => 'This email address was already validated.', // TODO - Translation
  17. 'wrong_token' => 'This email address failed to be validated due to a wrong token.', // TODO - Translation
  18. ),
  19. 'need_to' => 'You need to validate your email address before being able to use %s.', // TODO - Translation
  20. 'resend_email' => 'Resend the email', // TODO - Translation
  21. 'title' => 'Email address validation', // TODO - Translation
  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:', // TODO - Translation
  27. 'title' => 'You need to validate your account', // TODO - Translation
  28. 'welcome' => 'Welcome %s,', // TODO - Translation
  29. ),
  30. ),
  31. 'password' => array(
  32. 'invalid' => 'The password is invalid.', // TODO - Translation
  33. ),
  34. 'tos' => array(
  35. 'feedback' => array(
  36. 'invalid' => 'You must accept the Terms of Service to be able to register.', // TODO - Translation
  37. ),
  38. ),
  39. 'username' => array(
  40. 'invalid' => 'This username is invalid.', // TODO - Translation
  41. 'taken' => 'This username, %s, is taken.', // TODO - Translation
  42. ),
  43. );