messages.php 1.6 KB

12345678910111213141516171819202122232425262728293031
  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. ],
  25. 'first_access' => [
  26. 'register_success' => 'Registration completed successfully!',
  27. 'already_done' => 'The first access for this badge has already been completed. Please sign in or use "Forgot your password?".',
  28. 'invalid_token' => 'Session expired. Please enter your badge again to continue.',
  29. ],
  30. ];