messages.php 3.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <?php
  2. return [
  3. 'welcome' => 'Welcome to our application',
  4. 'created' => 'Created successfully',
  5. 'updated' => 'Updated successfully',
  6. 'deleted' => 'Deleted successfully',
  7. 'email_sent' => 'Email sent successfully',
  8. 'email_not_sent' => 'Email not sent',
  9. 'imported' => 'Imported successfully',
  10. 'import_error' => 'Error importing',
  11. 'buyer_not_allowed' => 'Buyer not allowed',
  12. 'notification_sent' => 'Notification sent successfully',
  13. 'notification_read' => 'Notification marked as read',
  14. 'interest_added' => 'Interest registered successfully',
  15. 'interest_removed' => 'Interest removed successfully',
  16. 'appointment_created' => 'Appointment created successfully',
  17. 'appointment_cancelled' => 'Appointment cancelled successfully',
  18. 'appointment_confirmed' => 'Appointment confirmed successfully',
  19. 'guide_unavailable' => 'The consultation guide can only be generated for confirmed appointments with a defined date and time. The exam guide is only available after the member accepts it.',
  20. 'appointment_frozen' => 'This appointment can no longer be changed. To correct a refused guide, issue a new one.',
  21. 'exam_accepted' => 'Exam guide accepted successfully',
  22. 'exam_refused' => 'Exam guide refused',
  23. 'exam_decision_unavailable' => 'This exam guide is no longer waiting for your decision',
  24. 'not_found' => 'Record not found',
  25. 'unauthorized' => 'Unauthorized action',
  26. 'landing' => [
  27. 'register_success' => 'Association request sent successfully!',
  28. 'registration_taken' => 'There is already an account with this badge. Use the "My First Access" option on the login screen.',
  29. 'registration_first_access_done' => 'There is already an account with this badge and the first access has already been completed. Sign in normally or use "Forgot password?".',
  30. 'registration_pending_approval' => 'There is already a request with this badge awaiting approval by the administration. You will be able to complete the first access once it is approved.',
  31. 'cpf_taken' => 'There is already an account with this CPF. Use the "My First Access" option on the login screen.',
  32. 'email_taken' => 'There is already an account with this email. Use the "My First Access" option on the login screen.',
  33. ],
  34. 'evaluation' => [
  35. 'submitted' => 'Evaluation submitted successfully!',
  36. 'already_answered' => 'You have already answered this evaluation campaign.',
  37. 'inactive' => 'This evaluation campaign is no longer available.',
  38. 'not_eligible' => 'This evaluation campaign is not intended for your profile.',
  39. 'campaign_finished' => 'Campaign finished successfully',
  40. 'already_finished' => 'This campaign has already been finished.',
  41. ],
  42. 'first_access' => [
  43. 'register_success' => 'Registration completed successfully!',
  44. 'register_pending_approval' => 'Registration completed! Your membership is under review by the administration — you will be able to sign in once it is approved.',
  45. 'already_done' => 'The first access for this badge has already been completed. Please sign in or use "Forgot your password?".',
  46. 'not_found' => 'Badge not found. Request your membership on the Serprati website and wait for the administration to approve it.',
  47. 'not_approved' => 'Your registration is still under review by the administration. You will be able to complete the first access once it is approved.',
  48. 'refused' => 'This registration was not approved by the administration. Please contact Serprati.',
  49. 'invalid_token' => 'Session expired. Please enter your badge again to continue.',
  50. ],
  51. ];