messages.php 930 B

1234567891011121314151617181920
  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. 'code_sent' => 'Verification code sent successfully',
  13. 'user_not_found_or_code_not_validated' => 'User not found or invalid code.',
  14. 'provider_approved' => 'Provider approved successfully.',
  15. 'provider_rejected' => 'Provider rejected.',
  16. 'payment_confirmed' => 'Payment confirmed.',
  17. 'payment_pending_confirmation' => 'Payment created and awaiting confirmation.',
  18. 'payment_not_confirmed' => 'Payment not confirmed.',
  19. ];