messages.php 1002 B

12345678910111213141516171819202122
  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. ];