messages.php 1.4 KB

12345678910111213141516171819202122
  1. <?php
  2. return [
  3. 'welcome' => 'Welcome to our application',
  4. 'created' => 'Created successfully',
  5. 'updated' => 'Updated successfully',
  6. 'deleted' => 'Deleted successfully',
  7. 'not_found' => 'Record not found',
  8. 'email_sent' => 'Email sent successfully',
  9. 'email_not_sent' => 'Email not sent',
  10. 'imported' => 'Imported successfully',
  11. 'import_error' => 'Error importing',
  12. 'buyer_not_allowed' => 'Buyer not allowed',
  13. 'code_sent' => 'Verification code sent successfully',
  14. 'user_not_found_or_code_not_validated' => 'User not found or invalid code.',
  15. 'provider_approved' => 'Provider approved successfully.',
  16. 'provider_rejected' => 'Provider rejected.',
  17. 'provider_registered_pending' => 'Registration submitted successfully! Your profile is under review and you will be able to access the app once it is approved.',
  18. 'payment_confirmed' => 'Payment confirmed.',
  19. 'payment_pending_confirmation' => 'Payment created and awaiting confirmation.',
  20. 'payment_not_confirmed' => 'Payment not confirmed.',
  21. ];