http.php 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. return [
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Http Language Lines
  6. |--------------------------------------------------------------------------
  7. |
  8. | The following language lines are used during http for various
  9. | messages that we need to display to the user. You are free to modify
  10. | these language lines according to your application's requirements.
  11. |
  12. */
  13. 'created' => 'Created successfully',
  14. 'updated' => 'Updated successfully',
  15. 'deleted' => 'Deleted successfully',
  16. 'success' => 'Success',
  17. 'error' => 'Error',
  18. 'not_found' => 'Not found',
  19. 'unauthorized' => 'Unauthorized',
  20. 'forbidden' => 'Forbidden',
  21. 'validation_error' => 'Validation error',
  22. 'internal_server_error' => 'Internal server error',
  23. 'bad_request' => 'Bad request',
  24. 'no_content' => 'No content',
  25. 'conflict' => 'Conflict',
  26. 'unprocessable_entity' => 'Unprocessable entity',
  27. 'too_many_requests' => 'Too many requests',
  28. 'service_unavailable' => 'Service unavailable',
  29. 'gateway_timeout' => 'Gateway timeout',
  30. 'not_implemented' => 'Not implemented',
  31. 'not_acceptable' => 'Not acceptable',
  32. 'not_allowed' => 'Method not allowed',
  33. 'not_acceptable' => 'Not acceptable',
  34. 'webhook_received' => 'Webhook received',
  35. 'unauthorized_ip' => 'Unauthorized IP address',
  36. 'unauthorized_token' => 'Invalid webhook token',
  37. ];