user-service/resources/lang/en/errors.php

14 lines
747 B
PHP
Executable File

<?php
return [
'model_not_found' => 'Does not exist any instance of :model with given id',
'unexpected_error' => 'Unexpected error. Try later',
'validation_error' => 'The field :field has :validation',
'service_unavailable' => 'Service unavailable',
"amount_not_allowed" => "This amount is not allowed. It must be between :min and :max",
"request_already_processed" => "This request has already been processed",
'insufficient_balance' => 'Your balance is insufficient to complete this transaction. You will need to charge :amount',
'payment_not_available' => "Payment not available at this time. Please try again later",
'payment_not_found' => "Payment not found",
'payment_invalid' => "Invalid payment"
];