diff --git a/resources/lang/de_DE/validation.php b/resources/lang/de_DE/validation.php index aa045fd645..2043a1d484 100644 --- a/resources/lang/de_DE/validation.php +++ b/resources/lang/de_DE/validation.php @@ -85,4 +85,5 @@ return [ 'file' => 'Das :attribute muss eine Datei sein.', 'in_array' => ':attribute existiert nicht in :other.', 'present' => 'Das :attribute Feld muss vorhanden sein.', + 'amount_zero' => 'The total amount cannot be zero', ]; \ No newline at end of file diff --git a/resources/lang/fr_FR/validation.php b/resources/lang/fr_FR/validation.php index 9a671c5a01..11f910cddc 100644 --- a/resources/lang/fr_FR/validation.php +++ b/resources/lang/fr_FR/validation.php @@ -85,4 +85,5 @@ return [ 'file' => 'The :attribute must be a file.', 'in_array' => 'The :attribute field does not exist in :other.', 'present' => 'The :attribute field must be present.', + 'amount_zero' => 'The total amount cannot be zero', ]; \ No newline at end of file diff --git a/resources/lang/hr_HR/validation.php b/resources/lang/hr_HR/validation.php index 39d9ae5ed9..b391855829 100644 --- a/resources/lang/hr_HR/validation.php +++ b/resources/lang/hr_HR/validation.php @@ -85,4 +85,5 @@ return [ 'file' => 'The :attribute must be a file.', 'in_array' => 'The :attribute field does not exist in :other.', 'present' => 'The :attribute field must be present.', + 'amount_zero' => 'The total amount cannot be zero', ]; \ No newline at end of file diff --git a/resources/lang/nl_NL/validation.php b/resources/lang/nl_NL/validation.php index 902c6ccf2f..6ddaad4ec1 100644 --- a/resources/lang/nl_NL/validation.php +++ b/resources/lang/nl_NL/validation.php @@ -85,4 +85,5 @@ return [ 'file' => ':attribute moet een bestand zijn.', 'in_array' => 'Het :attribute veld bestaat niet in :other.', 'present' => 'Het :attribute veld moet aanwezig zijn.', + 'amount_zero' => 'The total amount cannot be zero', ]; \ No newline at end of file diff --git a/resources/lang/pt_BR/validation.php b/resources/lang/pt_BR/validation.php index f35ca914d2..fa6003e890 100644 --- a/resources/lang/pt_BR/validation.php +++ b/resources/lang/pt_BR/validation.php @@ -85,4 +85,5 @@ return [ 'file' => 'O :attribute deve ser um arquivo.', 'in_array' => 'O campo :attribute não existe em :other.', 'present' => 'O campo :attribute deve estar presente.', + 'amount_zero' => 'The total amount cannot be zero', ]; \ No newline at end of file diff --git a/resources/lang/zh_HK/validation.php b/resources/lang/zh_HK/validation.php index 39d9ae5ed9..b391855829 100644 --- a/resources/lang/zh_HK/validation.php +++ b/resources/lang/zh_HK/validation.php @@ -85,4 +85,5 @@ return [ 'file' => 'The :attribute must be a file.', 'in_array' => 'The :attribute field does not exist in :other.', 'present' => 'The :attribute field must be present.', + 'amount_zero' => 'The total amount cannot be zero', ]; \ No newline at end of file diff --git a/resources/lang/zh_TW/validation.php b/resources/lang/zh_TW/validation.php index dbf37d12b2..9334e9cfa3 100644 --- a/resources/lang/zh_TW/validation.php +++ b/resources/lang/zh_TW/validation.php @@ -85,4 +85,5 @@ return [ 'file' => 'The :attribute must be a file.', 'in_array' => 'The :attribute field does not exist in :other.', 'present' => 'The :attribute field must be present.', + 'amount_zero' => 'The total amount cannot be zero', ]; \ No newline at end of file