mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-22 06:21:27 +00:00
Update validation.php
This commit is contained in:
parent
0fb5e143a5
commit
9f6b9bcd38
1 changed files with 53 additions and 53 deletions
|
@ -24,70 +24,70 @@ return [
|
|||
'before' => 'ה- :attribute must be a date before :date.',
|
||||
'before_or_equal' => 'ה- :attribute must be a date before or equal to :date.',
|
||||
'between' => [
|
||||
'numeric' => 'ה- :attribute צריך להיות בין :min and :max.',
|
||||
'file' => 'ה- :attribute צריך להיות בין :min and :max kilobytes.',
|
||||
'string' => 'ה- :attribute צריך להיות בין :min and :max characters.',
|
||||
'array' => 'ה- :attribute צריך לכלול בין :min and :max items.',
|
||||
'numeric' => 'ה- :attribute צריך להיות בין :min ו- :max.',
|
||||
'file' => 'ה- :attribute צריך להיות בין :min ו- :max קילובייט.',
|
||||
'string' => 'ה- :attribute צריך להיות בין :min ו- :max אותיות.',
|
||||
'array' => 'ה- :attribute צריך לכלול בין :min ו- :max פריטים.',
|
||||
],
|
||||
'boolean' => 'ה- :attribute field must be true or false.',
|
||||
'confirmed' => 'ה- :attribute confirmation does not match.',
|
||||
'date' => 'ה- :attribute is not a valid date.',
|
||||
'date_format' => 'ה- :attribute does not match the format :format.',
|
||||
'different' => 'ה- :attribute and :other must be different.',
|
||||
'digits' => 'ה- :attribute must be :digits digits.',
|
||||
'digits_between' => 'ה- :attribute must be between :min and :max digits.',
|
||||
'dimensions' => 'ה- :attribute has invalid image dimensions.',
|
||||
'distinct' => 'ה- :attribute field has a duplicate value.',
|
||||
'email' => 'ה- :attribute must be a valid email address.',
|
||||
'exists' => 'ה- selected :attribute is invalid.',
|
||||
'file' => 'ה- :attribute must be a file.',
|
||||
'filled' => 'ה- :attribute field must have a value.',
|
||||
'image' => 'ה- :attribute must be an image.',
|
||||
'in' => 'ה- selected :attribute is invalid.',
|
||||
'in_array' => 'ה- :attribute field does not exist in :other.',
|
||||
'integer' => 'ה- :attribute must be an integer.',
|
||||
'ip' => 'ה- :attribute must be a valid IP address.',
|
||||
'ipv4' => 'ה- :attribute must be a valid IPv4 address.',
|
||||
'ipv6' => 'ה- :attribute must be a valid IPv6 address.',
|
||||
'json' => 'ה- :attribute must be a valid JSON string.',
|
||||
'boolean' => 'השדה :attribute חייב להיות אמת או שקר.',
|
||||
'confirmed' => 'ה- :attribute אישור לא תואם.',
|
||||
'date' => 'ה- :attribute לא תאריך תקין.',
|
||||
'date_format' => 'ה- :attribute לא תואם את הפורמט :format.',
|
||||
'different' => 'ה- :attribute ו- :other חייבים להיות שונים.',
|
||||
'digits' => 'ה- :attribute חייב להיות :digits ספרות.',
|
||||
'digits_between' => 'ה- :attribute חייב להיות בין :min ו- :max ספרות.',
|
||||
'dimensions' => 'ה- :attribute בעל ממדי תמונה לא תקינים.',
|
||||
'distinct' => 'השדה :attribute בעל ערך כפול.',
|
||||
'email' => 'ה- :attribute חייב להיות כתובת אימייל תקינה.',
|
||||
'exists' => 'ה- :attribute הנבחר לא תקין.',
|
||||
'file' => 'ה- :attribute חייב להיות קובץ.',
|
||||
'filled' => 'השדה :attribute חייב להיות בעל ערך.',
|
||||
'image' => 'ה- :attribute חייב להיות תמונה.',
|
||||
'in' => 'ה- :attribute הנבחר לא תקין.',
|
||||
'in_array' => 'השדה :attribute לא קיים ב- :other.',
|
||||
'integer' => 'ה- :attribute צריך להיות מספר שלם.',
|
||||
'ip' => 'ה- :attribute צריך להיות כתובת IP תקינה.',
|
||||
'ipv4' => 'ה- :attribute צריך להיות כתובת IPv4 תקינה.',
|
||||
'ipv6' => 'ה- :attribute צריך להיות כתובת IPv6 תקינה.',
|
||||
'json' => 'ה- :attribute צריך להיות רצף אותיות JSON תקין.',
|
||||
'max' => [
|
||||
'numeric' => 'ה- :attribute may not be greater than :max.',
|
||||
'file' => 'ה- :attribute may not be greater than :max kilobytes.',
|
||||
'string' => 'ה- :attribute may not be greater than :max characters.',
|
||||
'array' => 'ה- :attribute may not have more than :max items.',
|
||||
'numeric' => 'ה- :attribute צריך להיות מתחת ל- :max.',
|
||||
'file' => 'ה- :attribute צריך להיות מתחת ל- :max קילובייט.',
|
||||
'string' => 'ה- :attribute צריך להיות מתחת ל- :max תוים.',
|
||||
'array' => 'ה- :attribute לא יכול לכלול יותר מ- :max פריטים.',
|
||||
],
|
||||
'mimes' => 'ה- :attribute צריך להיות קובץ מסוג: :values.',
|
||||
'mimetypes' => 'ה- :attribute צריך להיות קובץ מסוג: :values.',
|
||||
'min' => [
|
||||
'numeric' => 'ה- :attribute צריך להיות לפחות :min.',
|
||||
'file' => 'ה- :attribute צריך להיות לפחות :min kilobytes.',
|
||||
'string' => 'ה- :attribute צריך להיות לפחות :min characters.',
|
||||
'array' => 'ה- :attribute צריך לכלול לפחות :min items.',
|
||||
'file' => 'ה- :attribute צריך להיות לפחות :min קילובייט.',
|
||||
'string' => 'ה- :attribute צריך להיות לפחות :min תוים.',
|
||||
'array' => 'ה- :attribute צריך לכלול לפחות :min פריטים.',
|
||||
],
|
||||
'not_in' => 'ה- selected :attribute is invalid.',
|
||||
'not_regex' => 'ה- :attribute format is invalid.',
|
||||
'numeric' => 'ה- :attribute must be a number.',
|
||||
'present' => 'ה- :attribute field must be present.',
|
||||
'regex' => 'ה- :attribute format is invalid.',
|
||||
'required' => 'ה- :attribute field is required.',
|
||||
'required_if' => 'ה- :attribute field is required when :other is :value.',
|
||||
'required_unless' => 'ה- :attribute field is required unless :other is in :values.',
|
||||
'required_with' => 'ה- :attribute field is required when :values is present.',
|
||||
'required_with_all' => 'ה- :attribute field is required when :values is present.',
|
||||
'required_without' => 'ה- :attribute field is required when :values is not present.',
|
||||
'required_without_all' => 'ה- :attribute field is required when none of :values are present.',
|
||||
'same' => 'ה- :attribute and :other must match.',
|
||||
'not_in' => 'ה- :attribute הנבחר אינו תקין.',
|
||||
'not_regex' => 'הפורמט :attribute אינו תקין.',
|
||||
'numeric' => 'ה- :attribute חייב להיות מספר.',
|
||||
'present' => 'השדה :attribute חייב להיות קיים.',
|
||||
'regex' => 'הפורמט :attribute לא תקין.',
|
||||
'required' => 'השדה :attribute הכרחי.',
|
||||
'required_if' => 'השדה :attribute הכרחי כש- :other הוא :value.',
|
||||
'required_unless' => 'השדה :attribute הכרחי אלא אם :other בתוך :values.',
|
||||
'required_with' => 'השדה :attribute הכרחי כש- :values קיים.',
|
||||
'required_with_all' => 'השדה :attribute הכרחי כש- :values קיים.',
|
||||
'required_without' => 'השדה :attribute הכרחי כש- :values לא קיים.',
|
||||
'required_without_all' => 'השדה :attribute הכרחי כשאף מן ה- :values לא נמצאים.',
|
||||
'same' => 'ה- :attribute ו- :other חייבים להתאים.',
|
||||
'size' => [
|
||||
'numeric' => 'ה- :attribute צריך להיות :size.',
|
||||
'file' => 'ה- :attribute צריך להיות :size kilobytes.',
|
||||
'string' => 'ה- :attribute צריך להיות :size characters.',
|
||||
'array' => 'ה- :attribute צריך לכלול :size items.',
|
||||
'file' => 'ה- :attribute צריך להיות :size קילובייט.',
|
||||
'string' => 'ה- :attribute צריך להיות :size תוים.',
|
||||
'array' => 'ה- :attribute צריך לכלול :size פריטים.',
|
||||
],
|
||||
'string' => 'ה- :attribute must be a string.',
|
||||
'timezone' => 'ה- :attribute must be a valid zone.',
|
||||
'unique' => 'ה- :attribute has already been taken.',
|
||||
'uploaded' => 'ה- :attribute failed to upload.',
|
||||
'url' => 'ה- :attribute format is invalid.',
|
||||
'string' => 'ה- :attribute חייב להיות רצף של אותיות.',
|
||||
'timezone' => 'ה- :attribute חייב להיות איזור תקין.',
|
||||
'unique' => 'ה- :attribute כבר נלקח.',
|
||||
'uploaded' => 'ההעלאה של ה- :attribute נכשלה.',
|
||||
'url' => 'הפורמט של ה- :attribute אינו תקין.',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
Loading…
Reference in a new issue