messages.php 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. 'not_found' => 'Record not found',
  20. 'unauthorized' => 'Unauthorized action',
  21. 'landing' => [
  22. 'register_success' => 'Association request sent successfully!',
  23. 'registration_taken' => 'There is already an account with this badge. Use the "My First Access" option on the login screen.',
  24. '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?".',
  25. '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.',
  26. 'cpf_taken' => 'There is already an account with this CPF. Use the "My First Access" option on the login screen.',
  27. 'email_taken' => 'There is already an account with this email. Use the "My First Access" option on the login screen.',
  28. ],
  29. 'evaluation' => [
  30. 'submitted' => 'Evaluation submitted successfully!',
  31. 'already_answered' => 'You have already answered this evaluation campaign.',
  32. 'inactive' => 'This evaluation campaign is no longer available.',
  33. 'not_eligible' => 'This evaluation campaign is not intended for your profile.',
  34. 'campaign_finished' => 'Campaign finished successfully',
  35. 'already_finished' => 'This campaign has already been finished.',
  36. ],
  37. 'first_access' => [
  38. 'register_success' => 'Registration completed successfully!',
  39. 'register_pending_approval' => 'Registration completed! Your membership is under review by the administration — you will be able to sign in once it is approved.',
  40. 'already_done' => 'The first access for this badge has already been completed. Please sign in or use "Forgot your password?".',
  41. 'not_found' => 'Badge not found. Request your membership on the Serprati website and wait for the administration to approve it.',
  42. 'not_approved' => 'Your registration is still under review by the administration. You will be able to complete the first access once it is approved.',
  43. 'refused' => 'This registration was not approved by the administration. Please contact Serprati.',
  44. 'invalid_token' => 'Session expired. Please enter your badge again to continue.',
  45. ],
  46. ];