Skip to content

Commit 288eae4

Browse files
authored
Merge pull request #30 from BoGnY/main
Fixed 'en' translations and added 'it' translations
2 parents e99ccfb + ca0ab0c commit 288eae4

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

resources/lang/en/validation.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
'money_positive_or_zero' => 'The value is not a valid positive or zero money',
77
'money_negative' => 'The value is not a valid negative money',
88
'money_negative_or_zero' => 'The value is not a valid negative or zero money',
9-
'money_min' => 'The value must be less than :value',
10-
'money_max' => 'The value must be greater than :value',
9+
'money_min' => 'The value must be greater than :value',
10+
'money_max' => 'The value must be less than :value',
1111
];

resources/lang/it/validation.php

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?php
2+
3+
return [
4+
'money' => 'Il valore non è un importo valido',
5+
'money_positive' => 'Questo valore non è un importo maggiore di 0',
6+
'money_positive_or_zero' => 'Questo valore non è un importo maggiore o uguale a 0',
7+
'money_negative' => 'Questo valore non è un importo minore di 0',
8+
'money_negative_or_zero' => 'Questo valore non è un importo minore o uguale a 0',
9+
'money_min' => 'Il valore deve essere maggiore di :value',
10+
'money_max' => 'Il valore deve essere minore di :value',
11+
];

0 commit comments

Comments
 (0)