Skip to content

Commit df7a316

Browse files
committed
feature: validation.gt, .gte, .lt, .lte in all languages files
1 parent aeb475e commit df7a316

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+1876
-268
lines changed

src/ar/validation.php

+24
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,18 @@
4141
'exists' => 'القيمة المحددة :attribute غير موجودة',
4242
'file' => 'الـ :attribute يجب أن يكون ملفا.',
4343
'filled' => ':attribute إجباري',
44+
'gt' => [
45+
'numeric' => 'The :attribute must be greater than :value.',
46+
'file' => 'The :attribute must be greater than :value kilobytes.',
47+
'string' => 'The :attribute must be greater than :value characters.',
48+
'array' => 'The :attribute must have more than :value items.',
49+
],
50+
'gte' => [
51+
'numeric' => 'The :attribute must be greater than or equal :value.',
52+
'file' => 'The :attribute must be greater than or equal :value kilobytes.',
53+
'string' => 'The :attribute must be greater than or equal :value characters.',
54+
'array' => 'The :attribute must have :value items or more.',
55+
],
4456
'image' => 'يجب أن يكون :attribute صورةً',
4557
'in' => ':attribute لاغٍ',
4658
'in_array' => ':attribute غير موجود في :other.',
@@ -49,6 +61,18 @@
4961
'ipv4' => 'يجب أن يكون :attribute عنوان IPv4 صحيحًا.',
5062
'ipv6' => 'يجب أن يكون :attribute عنوان IPv6 صحيحًا.',
5163
'json' => 'يجب أن يكون :attribute نصآ من نوع JSON.',
64+
'lt' => [
65+
'numeric' => 'The :attribute must be less than :value.',
66+
'file' => 'The :attribute must be less than :value kilobytes.',
67+
'string' => 'The :attribute must be less than :value characters.',
68+
'array' => 'The :attribute must have less than :value items.',
69+
],
70+
'lte' => [
71+
'numeric' => 'The :attribute must be less than or equal :value.',
72+
'file' => 'The :attribute must be less than or equal :value kilobytes.',
73+
'string' => 'The :attribute must be less than or equal :value characters.',
74+
'array' => 'The :attribute must not have more than :value items.',
75+
],
5276
'max' => [
5377
'numeric' => 'يجب أن تكون قيمة :attribute مساوية أو أصغر لـ :max.',
5478
'file' => 'يجب أن لا يتجاوز حجم الملف :attribute :max كيلوبايت',

src/az/validation.php

+24
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,18 @@
4141
'exists' => ' seçilmiş :attribute yanlışdır',
4242
'file' => ' :attribute fayl formatında olmalıdır',
4343
'filled' => ' :attribute qiyməti olmalıdır',
44+
'gt' => [
45+
'numeric' => 'The :attribute must be greater than :value.',
46+
'file' => 'The :attribute must be greater than :value kilobytes.',
47+
'string' => 'The :attribute must be greater than :value characters.',
48+
'array' => 'The :attribute must have more than :value items.',
49+
],
50+
'gte' => [
51+
'numeric' => 'The :attribute must be greater than or equal :value.',
52+
'file' => 'The :attribute must be greater than or equal :value kilobytes.',
53+
'string' => 'The :attribute must be greater than or equal :value characters.',
54+
'array' => 'The :attribute must have :value items or more.',
55+
],
4456
'image' => ' :attribute şəkil formatında olmalıdır',
4557
'in' => ' seçilmiş :attribute yanlışdır',
4658
'in_array' => ' :attribute :other qiymətləri arasında olmalıdır',
@@ -49,6 +61,18 @@
4961
'ipv4' => ' :attribute İPv4 adres formatında olmalıdır',
5062
'ipv6' => ' :attribute İPv6 adres formatında olmalıdır',
5163
'json' => ' :attribute JSON formatında olmalıdır',
64+
'lt' => [
65+
'numeric' => 'The :attribute must be less than :value.',
66+
'file' => 'The :attribute must be less than :value kilobytes.',
67+
'string' => 'The :attribute must be less than :value characters.',
68+
'array' => 'The :attribute must have less than :value items.',
69+
],
70+
'lte' => [
71+
'numeric' => 'The :attribute must be less than or equal :value.',
72+
'file' => 'The :attribute must be less than or equal :value kilobytes.',
73+
'string' => 'The :attribute must be less than or equal :value characters.',
74+
'array' => 'The :attribute must not have more than :value items.',
75+
],
5276
'max' => [
5377
'numeric' => ' :attribute maksiumum :max rəqəmdən ibarət ola bilər',
5478
'file' => ' :attribute maksimum :max KB ölçüsündə ola bilər',

src/be/validation.php

+24
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,18 @@
4242
'file' => 'The :attribute must be a file.',
4343
'filled' => 'Поле :attribute абавязкова для запаўнення.',
4444
'exists' => 'Выбранае значэнне для :attribute некарэктна.',
45+
'gt' => [
46+
'numeric' => 'The :attribute must be greater than :value.',
47+
'file' => 'The :attribute must be greater than :value kilobytes.',
48+
'string' => 'The :attribute must be greater than :value characters.',
49+
'array' => 'The :attribute must have more than :value items.',
50+
],
51+
'gte' => [
52+
'numeric' => 'The :attribute must be greater than or equal :value.',
53+
'file' => 'The :attribute must be greater than or equal :value kilobytes.',
54+
'string' => 'The :attribute must be greater than or equal :value characters.',
55+
'array' => 'The :attribute must have :value items or more.',
56+
],
4557
'image' => 'Поле :attribute павінна быць малюнкам.',
4658
'in' => 'Выбранае значэнне для :attribute памылкова.',
4759
'in_array' => 'The :attribute field does not exist in :other.',
@@ -50,6 +62,18 @@
5062
'ipv4' => 'The :attribute must be a valid IPv4 address.',
5163
'ipv6' => 'The :attribute must be a valid IPv6 address.',
5264
'json' => 'Поле :attribute павінна быць JSON радком.',
65+
'lt' => [
66+
'numeric' => 'The :attribute must be less than :value.',
67+
'file' => 'The :attribute must be less than :value kilobytes.',
68+
'string' => 'The :attribute must be less than :value characters.',
69+
'array' => 'The :attribute must have less than :value items.',
70+
],
71+
'lte' => [
72+
'numeric' => 'The :attribute must be less than or equal :value.',
73+
'file' => 'The :attribute must be less than or equal :value kilobytes.',
74+
'string' => 'The :attribute must be less than or equal :value characters.',
75+
'array' => 'The :attribute must not have more than :value items.',
76+
],
5377
'max' => [
5478
'numeric' => 'Поле :attribute не можа быць больш :max.',
5579
'file' => 'Памер файла ў поле :attribute не можа быць больш :max кілабайт).',

src/bg/validation.php

+24
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,18 @@
4141
'exists' => 'Избранато поле :attribute вече съществува.',
4242
'file' => 'Полето :attribute трябва да бъде файл.',
4343
'filled' => 'Полето :attribute е задължително.',
44+
'gt' => [
45+
'numeric' => 'The :attribute must be greater than :value.',
46+
'file' => 'The :attribute must be greater than :value kilobytes.',
47+
'string' => 'The :attribute must be greater than :value characters.',
48+
'array' => 'The :attribute must have more than :value items.',
49+
],
50+
'gte' => [
51+
'numeric' => 'The :attribute must be greater than or equal :value.',
52+
'file' => 'The :attribute must be greater than or equal :value kilobytes.',
53+
'string' => 'The :attribute must be greater than or equal :value characters.',
54+
'array' => 'The :attribute must have :value items or more.',
55+
],
4456
'image' => 'Полето :attribute трябва да бъде изображение.',
4557
'in' => 'Избраното поле :attribute е невалидно.',
4658
'in_array' => 'Полето :attribute не съществува в :other.',
@@ -49,6 +61,18 @@
4961
'ipv4' => 'Полето :attribute трябва да бъде IPv4 адрес.',
5062
'ipv6' => 'Полето :attribute трябва да бъде IPv6 адрес.',
5163
'json' => 'Полето :attribute трябва да бъде JSON низ.',
64+
'lt' => [
65+
'numeric' => 'The :attribute must be less than :value.',
66+
'file' => 'The :attribute must be less than :value kilobytes.',
67+
'string' => 'The :attribute must be less than :value characters.',
68+
'array' => 'The :attribute must have less than :value items.',
69+
],
70+
'lte' => [
71+
'numeric' => 'The :attribute must be less than or equal :value.',
72+
'file' => 'The :attribute must be less than or equal :value kilobytes.',
73+
'string' => 'The :attribute must be less than or equal :value characters.',
74+
'array' => 'The :attribute must not have more than :value items.',
75+
],
5276
'max' => [
5377
'numeric' => 'Полето :attribute трябва да бъде по-малко от :max.',
5478
'file' => 'Полето :attribute трябва да бъде по-малко от :max килобайта.',

src/bn/validation.php

+24
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,18 @@
4141
'exists' => 'নির্বাচিত :attribute টি অবৈধ।',
4242
'file' => ':attribute একটি ফাইল হতে হবে।',
4343
'filled' => ':attribute স্থানটি পূরণ করতে হবে।',
44+
'gt' => [
45+
'numeric' => 'The :attribute must be greater than :value.',
46+
'file' => 'The :attribute must be greater than :value kilobytes.',
47+
'string' => 'The :attribute must be greater than :value characters.',
48+
'array' => 'The :attribute must have more than :value items.',
49+
],
50+
'gte' => [
51+
'numeric' => 'The :attribute must be greater than or equal :value.',
52+
'file' => 'The :attribute must be greater than or equal :value kilobytes.',
53+
'string' => 'The :attribute must be greater than or equal :value characters.',
54+
'array' => 'The :attribute must have :value items or more.',
55+
],
4456
'image' => ':attribute একটি ইমেজ হতে হবে।',
4557
'in' => 'নির্বাচিত :attribute টি অবৈধ।',
4658
'in_array' => ':attribute উপাদানটি :other এ খুঁজে পাওয়া যায়নি।.',
@@ -49,6 +61,18 @@
4961
'ipv4' => ':attribute টি একটি বৈধ IPv4 address হতে হবে।',
5062
'ipv6' => ':attribute টি একটি বৈধ IPv6 address হতে হবে।',
5163
'json' => ':attribute একটি বৈধ JSON স্ট্রিং হতে হবে।',
64+
'lt' => [
65+
'numeric' => 'The :attribute must be less than :value.',
66+
'file' => 'The :attribute must be less than :value kilobytes.',
67+
'string' => 'The :attribute must be less than :value characters.',
68+
'array' => 'The :attribute must have less than :value items.',
69+
],
70+
'lte' => [
71+
'numeric' => 'The :attribute must be less than or equal :value.',
72+
'file' => 'The :attribute must be less than or equal :value kilobytes.',
73+
'string' => 'The :attribute must be less than or equal :value characters.',
74+
'array' => 'The :attribute must not have more than :value items.',
75+
],
5276
'max' => [
5377
'numeric' => ' :attribute এর মান :max এর চেয়ে বড় হতে পারেনা।',
5478
'file' => ':attribute এর মান :max কিলোবাইট এর চেয়ে বড় হতে পারেনা।',

src/bs/validation.php

+24
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,18 @@
4141
'exists' => 'Odabrano polje :attribute nije validno.',
4242
'file' => 'The :attribute must be a file.',
4343
'filled' => 'Polje :attribute je obavezno.',
44+
'gt' => [
45+
'numeric' => 'The :attribute must be greater than :value.',
46+
'file' => 'The :attribute must be greater than :value kilobytes.',
47+
'string' => 'The :attribute must be greater than :value characters.',
48+
'array' => 'The :attribute must have more than :value items.',
49+
],
50+
'gte' => [
51+
'numeric' => 'The :attribute must be greater than or equal :value.',
52+
'file' => 'The :attribute must be greater than or equal :value kilobytes.',
53+
'string' => 'The :attribute must be greater than or equal :value characters.',
54+
'array' => 'The :attribute must have :value items or more.',
55+
],
4456
'image' => 'Polje :attribute mora biti slika.',
4557
'in' => 'Odabrano polje :attribute nije validno.',
4658
'in_array' => 'The :attribute field does not exist in :other.',
@@ -49,6 +61,18 @@
4961
'ipv4' => 'The :attribute must be a valid IPv4 address.',
5062
'ipv6' => 'The :attribute must be a valid IPv6 address.',
5163
'json' => 'The :attribute must be a valid JSON string.',
64+
'lt' => [
65+
'numeric' => 'The :attribute must be less than :value.',
66+
'file' => 'The :attribute must be less than :value kilobytes.',
67+
'string' => 'The :attribute must be less than :value characters.',
68+
'array' => 'The :attribute must have less than :value items.',
69+
],
70+
'lte' => [
71+
'numeric' => 'The :attribute must be less than or equal :value.',
72+
'file' => 'The :attribute must be less than or equal :value kilobytes.',
73+
'string' => 'The :attribute must be less than or equal :value characters.',
74+
'array' => 'The :attribute must not have more than :value items.',
75+
],
5276
'max' => [
5377
'numeric' => 'Polje :attribute mora biti manje od :max.',
5478
'file' => 'Polje :attribute mora biti manje od :max kilobajta.',

src/ca/validation.php

+24
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,18 @@
4141
'exists' => ':attribute és invàlid.',
4242
'file' => 'El camp :attribute ha de ser un arxiu.',
4343
'filled' => 'El camp :attribute és obligatori.',
44+
'gt' => [
45+
'numeric' => 'The :attribute must be greater than :value.',
46+
'file' => 'The :attribute must be greater than :value kilobytes.',
47+
'string' => 'The :attribute must be greater than :value characters.',
48+
'array' => 'The :attribute must have more than :value items.',
49+
],
50+
'gte' => [
51+
'numeric' => 'The :attribute must be greater than or equal :value.',
52+
'file' => 'The :attribute must be greater than or equal :value kilobytes.',
53+
'string' => 'The :attribute must be greater than or equal :value characters.',
54+
'array' => 'The :attribute must have :value items or more.',
55+
],
4456
'image' => ':attribute ha de ser una imatge.',
4557
'in' => ':attribute és invàlid',
4658
'in_array' => 'El camp :attribute no existeix dintre de :other.',
@@ -49,6 +61,18 @@
4961
'ipv4' => ':attribute ha de ser una adreça IPv4 vàlida.',
5062
'ipv6' => ':attribute ha de ser una adreça IPv6 vàlida.',
5163
'json' => 'El camp :attribute ha de ser una cadena JSON vàlida.',
64+
'lt' => [
65+
'numeric' => 'The :attribute must be less than :value.',
66+
'file' => 'The :attribute must be less than :value kilobytes.',
67+
'string' => 'The :attribute must be less than :value characters.',
68+
'array' => 'The :attribute must have less than :value items.',
69+
],
70+
'lte' => [
71+
'numeric' => 'The :attribute must be less than or equal :value.',
72+
'file' => 'The :attribute must be less than or equal :value kilobytes.',
73+
'string' => 'The :attribute must be less than or equal :value characters.',
74+
'array' => 'The :attribute must not have more than :value items.',
75+
],
5276
'max' => [
5377
'numeric' => ':attribute no pot ser més gran que :max.',
5478
'file' => ':attribute no pot ser més gran que :max kilobytes.',

src/cs/validation.php

+24
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,18 @@
4141
'exists' => 'Zvolená hodnota pro :attribute není platná.',
4242
'file' => ':attribute musí být soubor.',
4343
'filled' => ':attribute musí být vyplněno.',
44+
'gt' => [
45+
'numeric' => 'The :attribute must be greater than :value.',
46+
'file' => 'The :attribute must be greater than :value kilobytes.',
47+
'string' => 'The :attribute must be greater than :value characters.',
48+
'array' => 'The :attribute must have more than :value items.',
49+
],
50+
'gte' => [
51+
'numeric' => 'The :attribute must be greater than or equal :value.',
52+
'file' => 'The :attribute must be greater than or equal :value kilobytes.',
53+
'string' => 'The :attribute must be greater than or equal :value characters.',
54+
'array' => 'The :attribute must have :value items or more.',
55+
],
4456
'image' => ':attribute musí být obrázek.',
4557
'in' => 'Zvolená hodnota pro :attribute je neplatná.',
4658
'in_array' => ':attribute není obsažen v :other.',
@@ -49,6 +61,18 @@
4961
'ipv4' => 'The :attribute must be a valid IPv4 address.',
5062
'ipv6' => 'The :attribute must be a valid IPv6 address.',
5163
'json' => ':attribute musí být platný JSON řetězec.',
64+
'lt' => [
65+
'numeric' => 'The :attribute must be less than :value.',
66+
'file' => 'The :attribute must be less than :value kilobytes.',
67+
'string' => 'The :attribute must be less than :value characters.',
68+
'array' => 'The :attribute must have less than :value items.',
69+
],
70+
'lte' => [
71+
'numeric' => 'The :attribute must be less than or equal :value.',
72+
'file' => 'The :attribute must be less than or equal :value kilobytes.',
73+
'string' => 'The :attribute must be less than or equal :value characters.',
74+
'array' => 'The :attribute must not have more than :value items.',
75+
],
5276
'max' => [
5377
'numeric' => ':attribute musí být nižší než :max.',
5478
'file' => ':attribute musí být menší než :max Kilobytů.',

src/cy/validation.php

+24
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,18 @@
4141
'file' => 'The :attribute must be a file.',
4242
'filled' => 'Rhaid cynnwys :attribute.',
4343
'exists' => 'Nid yw :attribute yn ddilys.',
44+
'gt' => [
45+
'numeric' => 'The :attribute must be greater than :value.',
46+
'file' => 'The :attribute must be greater than :value kilobytes.',
47+
'string' => 'The :attribute must be greater than :value characters.',
48+
'array' => 'The :attribute must have more than :value items.',
49+
],
50+
'gte' => [
51+
'numeric' => 'The :attribute must be greater than or equal :value.',
52+
'file' => 'The :attribute must be greater than or equal :value kilobytes.',
53+
'string' => 'The :attribute must be greater than or equal :value characters.',
54+
'array' => 'The :attribute must have :value items or more.',
55+
],
4456
'image' => 'Rhaid i :attribute fod yn lun.',
4557
'in' => 'Nid yw :attribute yn ddilys.',
4658
'in_array' => 'The :attribute field does not exist in :other.',
@@ -49,6 +61,18 @@
4961
'ipv4' => 'The :attribute must be a valid IPv4 address.',
5062
'ipv6' => 'The :attribute must be a valid IPv6 address.',
5163
'json' => 'The :attribute must be a valid JSON string.',
64+
'lt' => [
65+
'numeric' => 'The :attribute must be less than :value.',
66+
'file' => 'The :attribute must be less than :value kilobytes.',
67+
'string' => 'The :attribute must be less than :value characters.',
68+
'array' => 'The :attribute must have less than :value items.',
69+
],
70+
'lte' => [
71+
'numeric' => 'The :attribute must be less than or equal :value.',
72+
'file' => 'The :attribute must be less than or equal :value kilobytes.',
73+
'string' => 'The :attribute must be less than or equal :value characters.',
74+
'array' => 'The :attribute must not have more than :value items.',
75+
],
5276
'max' => [
5377
'numeric' => 'Ni chai :attribute fod yn fwy na :max.',
5478
'file' => 'Ni chai :attribute fod yn fwy na :max kilobytes.',

0 commit comments

Comments
 (0)