Skip to content

Fixed 'en' translations and added 'it' translations #30

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Feb 27, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions resources/lang/en/validation.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
'money_positive_or_zero' => 'The value is not a valid positive or zero money',
'money_negative' => 'The value is not a valid negative money',
'money_negative_or_zero' => 'The value is not a valid negative or zero money',
'money_min' => 'The value must be less than :value',
'money_max' => 'The value must be greater than :value',
'money_min' => 'The value must be greater than :value',
'money_max' => 'The value must be less than :value',
];
11 changes: 11 additions & 0 deletions resources/lang/it/validation.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?php

return [
'money' => 'Il valore non è un importo valido',
'money_positive' => 'Questo valore non è un importo maggiore di 0',
'money_positive_or_zero' => 'Questo valore non è un importo maggiore o uguale a 0',
'money_negative' => 'Questo valore non è un importo minore di 0',
'money_negative_or_zero' => 'Questo valore non è un importo minore o uguale a 0',
'money_min' => 'Il valore deve essere maggiore di :value',
'money_max' => 'Il valore deve essere minore di :value',
];