email-verification-prompt.php 807B

123456789101112131415161718192021222324252627282930313233343536
  1. <?php
  2. return [
  3. 'title' => 'Vérifier votre adresse email',
  4. 'heading' => 'Vérifier votre adresse email',
  5. 'actions' => [
  6. 'resend_notification' => [
  7. 'label' => 'Renvoyer',
  8. ],
  9. ],
  10. 'messages' => [
  11. 'notification_not_received' => "Vous n'avez pas reçu l'email envoyé ?",
  12. 'notification_sent' => "Nous vous avons envoyé un email à l'adresse :email contenant les informations pour vérifier votre adresse email.",
  13. ],
  14. 'notifications' => [
  15. 'notification_resent' => [
  16. 'title' => 'Nous avons renvoyé un email',
  17. ],
  18. 'notification_resend_throttled' => [
  19. 'title' => 'Trop de tentatives de renvoi',
  20. 'body' => 'Merci de réessayer dans :seconds secondes.',
  21. ],
  22. ],
  23. ];