Skip to content

Commit

Permalink
Fix 'size' translations
Browse files Browse the repository at this point in the history
The size translations are supposed to tell the user that we need the exact same value as `:size`

Current translations are saying that it should be bigger then `:size`
  • Loading branch information
shadoWalker89 committed Dec 11, 2016
1 parent 4d2d2cb commit 0a9e690
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/ar/validation.php
Expand Up @@ -59,7 +59,7 @@
'min' => [
'numeric' => 'يجب أن تكون قيمة الحقل :attribute مساوية أو أكبر لـ :min.',
'file' => 'يجب أن يكون حجم الملف :attribute على الأقل :min كيلوبايت',
'string' => 'يجب أن يكون طول النص :attribute على الأقل :min حروفٍ/حرفا',
'string' => 'يجب أن يكون طول النص :attribute على الأقل :min حروفٍ/حرفًا',
'array' => 'يجب أن يحتوي الحقل :attribute على الأقل على :min عُنصرًا/عناصر',
],
'not_in' => 'الحقل :attribute لاغٍ',
Expand All @@ -75,10 +75,10 @@
'required_without_all' => 'الحقل :attribute إذا لم يتوفّر :values.',
'same' => 'يجب أن يتطابق الحقل :attribute مع :other',
'size' => [
'numeric' => 'يجب أن تكون قيمة :attribute أكبر من :size.',
'file' => 'يجب أن يكون حجم الملف :attribute أكبر من :size كيلو بايت.',
'string' => 'يجب أن يحتوي النص :attribute عن ما لا يقل عن :size حرفٍ/أحرف.',
'array' => 'يجب أن يحتوي الحقل :attribute عن ما لا يقل عن:min عنصرٍ/عناصر',
'numeric' => 'يجب أن تكون قيمة الحقل :attribute مساوية لـ :size',
'file' => 'يجب أن يكون حجم الملف :attribute :size كيلوبايت',
'string' => 'يجب أن يحتوي النص :attribute على :size حروفٍ/حرفًا بالظبط',
'array' => 'يجب أن يحتوي الحقل :attribute على :size عنصرٍ/عناصر بالظبط',
],
'string' => 'يجب أن يكون الحقل :attribute نصآ.',
'timezone' => 'يجب أن يكون :attribute نطاقًا زمنيًا صحيحًا',
Expand Down

0 comments on commit 0a9e690

Please sign in to comment.