user.php 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. return array(
  3. 'email' => array(
  4. 'feedback' => array(
  5. 'invalid' => 'The email address is invalid.', // TODO - Translation
  6. 'required' => 'The 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 indications to validate your address.', // TODO - Translation
  11. 'feedback' => array(
  12. 'email_failed' => 'We couldn’t send you an email because of a misconfiguration of the server.', // TODO - Translation
  13. 'email_sent' => 'An email has been sent to your address.', // TODO - Translation
  14. 'error' => 'The email address failed to be validated.', // TODO - Translation
  15. 'ok' => 'The email address has been validated.', // TODO - Translation
  16. 'unneccessary' => 'The email address was already validated.', // TODO - Translation
  17. 'wrong_token' => 'The 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. 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. 'tos' => array(
  32. 'feedback' => array(
  33. 'invalid' => 'You must accept the Terms of Service to be able to register.', // TODO - Translation
  34. ),
  35. ),
  36. );