From a113c0117ec32b340a45de6aa524f523c5053f19 Mon Sep 17 00:00:00 2001 From: j1t Date: Tue, 22 May 2018 06:43:04 +0000 Subject: [PATCH 01/11] Create auth.php --- resources/lang/he/auth.php | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 resources/lang/he/auth.php diff --git a/resources/lang/he/auth.php b/resources/lang/he/auth.php new file mode 100644 index 000000000..c9bc5125c --- /dev/null +++ b/resources/lang/he/auth.php @@ -0,0 +1,8 @@ + 'פרטים אלו אינם תואמים לרשימותינו.', + 'throttle' => 'יותר מדי ניסיונות כניסה. אנא נסה שוב בעוד :seconds שניות.', + +]; From 37ab4942007f6ef2e4da6aeee04e73ad26565258 Mon Sep 17 00:00:00 2001 From: j1t Date: Tue, 22 May 2018 06:43:48 +0000 Subject: [PATCH 02/11] Create pagination.php --- resources/lang/he/pagination.php | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 resources/lang/he/pagination.php diff --git a/resources/lang/he/pagination.php b/resources/lang/he/pagination.php new file mode 100644 index 000000000..fbcdf5faa --- /dev/null +++ b/resources/lang/he/pagination.php @@ -0,0 +1,8 @@ + '« הקודם', + 'next' => 'הבא »', + +]; From f8424180311dad55a9aa21ff06b04ad2044ae6aa Mon Sep 17 00:00:00 2001 From: j1t Date: Tue, 22 May 2018 06:51:57 +0000 Subject: [PATCH 03/11] Create passwords.php --- resources/lang/he/passwords.php | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 resources/lang/he/passwords.php diff --git a/resources/lang/he/passwords.php b/resources/lang/he/passwords.php new file mode 100644 index 000000000..4fa87bde7 --- /dev/null +++ b/resources/lang/he/passwords.php @@ -0,0 +1,12 @@ + 'סיסמאות צריכות לכלול לפחות שש אותיות ולהתאים לאישור סיסמה.', + 'reset' => 'סיסמאתך אופסה!', + 'sent' => 'קישור איפוס הסיסמה נשלח לך לאימייל!', + 'token' => 'אסימון איפוס סיסמה זה אינו תקין.', + 'user' => "איננו יכולים למצוא משתמש בעל אימייל זה.", + +]; + From 16e29a0ecd51c7270779f50576cba795f87405a3 Mon Sep 17 00:00:00 2001 From: j1t Date: Tue, 22 May 2018 06:54:05 +0000 Subject: [PATCH 04/11] Create validation.php --- resources/lang/he/validation.php | 65 ++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 resources/lang/he/validation.php diff --git a/resources/lang/he/validation.php b/resources/lang/he/validation.php new file mode 100644 index 000000000..78c3d2516 --- /dev/null +++ b/resources/lang/he/validation.php @@ -0,0 +1,65 @@ + ], + 'mimes' => 'The :attribute must be a file of type: :values.', + 'mimetypes' => 'The :attribute must be a file of type: :values.', + 'min' => [ + 'numeric' => 'The :attribute must be at least :min.', + 'file' => 'The :attribute must be at least :min kilobytes.', + 'string' => 'The :attribute must be at least :min characters.', + 'array' => 'The :attribute must have at least :min items.', + ], + 'not_in' => 'The selected :attribute is invalid.', + 'not_regex' => 'The :attribute format is invalid.', + 'numeric' => 'The :attribute must be a number.', + 'present' => 'The :attribute field must be present.', + 'regex' => 'The :attribute format is invalid.', + 'required' => 'The :attribute field is required.', + 'required_if' => 'The :attribute field is required when :other is :value.', + 'required_unless' => 'The :attribute field is required unless :other is in :values.', + 'required_with' => 'The :attribute field is required when :values is present.', + 'required_with_all' => 'The :attribute field is required when :values is present.', + 'required_without' => 'The :attribute field is required when :values is not present.', + 'required_without_all' => 'The :attribute field is required when none of :values are present.', + 'same' => 'The :attribute and :other must match.', + 'size' => [ + 'numeric' => 'The :attribute must be :size.', + 'file' => 'The :attribute must be :size kilobytes.', + 'string' => 'The :attribute must be :size characters.', + 'array' => 'The :attribute must contain :size items.', + ], + 'string' => 'The :attribute must be a string.', + 'timezone' => 'The :attribute must be a valid zone.', + 'unique' => 'The :attribute has already been taken.', + 'uploaded' => 'The :attribute failed to upload.', + 'url' => 'The :attribute format is invalid.', + + /* + |-------------------------------------------------------------------------- + | Custom Validation Language Lines + |-------------------------------------------------------------------------- + | + | Here you may specify custom validation messages for attributes using the + | convention "attribute.rule" to name the lines. This makes it quick to + | specify a specific custom language line for a given attribute rule. + | + */ + + 'custom' => [ + 'attribute-name' => [ + 'rule-name' => 'custom-message', + ], + ], + + /* + |-------------------------------------------------------------------------- + | Custom Validation Attributes + |-------------------------------------------------------------------------- + | + | The following language lines are used to swap attribute place-holders + | with something more reader friendly such as E-Mail Address instead + | of "email". This simply helps us make messages a little cleaner. + | + */ + + 'attributes' => [], + +]; From fe7c443ffb13a001876df51ae2d4ba4bc00cd2b5 Mon Sep 17 00:00:00 2001 From: j1t Date: Tue, 22 May 2018 06:55:04 +0000 Subject: [PATCH 05/11] Update auth.php --- resources/lang/he/auth.php | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/resources/lang/he/auth.php b/resources/lang/he/auth.php index c9bc5125c..a3f5f101d 100644 --- a/resources/lang/he/auth.php +++ b/resources/lang/he/auth.php @@ -2,6 +2,17 @@ return [ + /* + |-------------------------------------------------------------------------- + | Authentication Language Lines + |-------------------------------------------------------------------------- + | + | The following language lines are used during authentication for various + | messages that we need to display to the user. You are free to modify + | these language lines according to your application's requirements. + | + */ + 'failed' => 'פרטים אלו אינם תואמים לרשימותינו.', 'throttle' => 'יותר מדי ניסיונות כניסה. אנא נסה שוב בעוד :seconds שניות.', From b4ab656f70baf5bce6bd4b28a023412cee947f14 Mon Sep 17 00:00:00 2001 From: j1t Date: Tue, 22 May 2018 06:55:30 +0000 Subject: [PATCH 06/11] Update pagination.php --- resources/lang/he/pagination.php | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/resources/lang/he/pagination.php b/resources/lang/he/pagination.php index fbcdf5faa..82eb0d2af 100644 --- a/resources/lang/he/pagination.php +++ b/resources/lang/he/pagination.php @@ -2,6 +2,17 @@ return [ + /* + |-------------------------------------------------------------------------- + | Pagination Language Lines + |-------------------------------------------------------------------------- + | + | The following language lines are used by the paginator library to build + | the simple pagination links. You are free to change them to anything + | you want to customize your views to better match your application. + | + */ + 'previous' => '« הקודם', 'next' => 'הבא »', From 18e06945e8118df2e84f305b33aa5968f3e0a8f1 Mon Sep 17 00:00:00 2001 From: j1t Date: Tue, 22 May 2018 06:56:07 +0000 Subject: [PATCH 07/11] Update passwords.php --- resources/lang/he/passwords.php | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/resources/lang/he/passwords.php b/resources/lang/he/passwords.php index 4fa87bde7..706876765 100644 --- a/resources/lang/he/passwords.php +++ b/resources/lang/he/passwords.php @@ -2,6 +2,17 @@ return [ + /* + |-------------------------------------------------------------------------- + | Password Reset Language Lines + |-------------------------------------------------------------------------- + | + | The following language lines are the default lines which match reasons + | that are given by the password broker for a password update attempt + | has failed, such as for an invalid token or invalid new password. + | + */ + 'password' => 'סיסמאות צריכות לכלול לפחות שש אותיות ולהתאים לאישור סיסמה.', 'reset' => 'סיסמאתך אופסה!', 'sent' => 'קישור איפוס הסיסמה נשלח לך לאימייל!', From 1173a53266d3a58b6a670f57acbdb478068eb05c Mon Sep 17 00:00:00 2001 From: j1t Date: Tue, 22 May 2018 07:03:27 +0000 Subject: [PATCH 08/11] Update validation.php --- resources/lang/he/validation.php | 113 +++++++++++++++++++++++-------- 1 file changed, 85 insertions(+), 28 deletions(-) diff --git a/resources/lang/he/validation.php b/resources/lang/he/validation.php index 78c3d2516..237051116 100644 --- a/resources/lang/he/validation.php +++ b/resources/lang/he/validation.php @@ -1,36 +1,93 @@ + 'ה- :attribute must be accepted.', + 'active_url' => 'ה- :attribute is not a valid URL.', + 'after' => 'ה- :attribute must be a date after :date.', + 'after_or_equal' => 'ה- :attribute must be a date after or equal to :date.', + 'alpha' => 'ה- :attribute may only contain letters.', + 'alpha_dash' => 'ה- :attribute may only contain letters, numbers, and dashes.', + 'alpha_num' => 'ה- :attribute may only contain letters and numbers.', + 'array' => 'ה- :attribute must be an array.', + '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 must have between :min and :max items.', ], - 'mimes' => 'The :attribute must be a file of type: :values.', - 'mimetypes' => 'The :attribute must be a file of type: :values.', + '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.', + '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.', + ], + 'mimes' => 'ה- :attribute צריך להיות קובץ מסוג: :values.', + 'mimetypes' => 'ה- :attribute צריך להיות קובץ מסוג: :values.', 'min' => [ - 'numeric' => 'The :attribute must be at least :min.', - 'file' => 'The :attribute must be at least :min kilobytes.', - 'string' => 'The :attribute must be at least :min characters.', - 'array' => 'The :attribute must have at least :min items.', + 'numeric' => 'ה- :attribute צריך להיות לפחות :min.', + 'file' => 'ה- :attribute צריך להיות לפחות :min kilobytes.', + 'string' => 'ה- :attribute צריך להיות לפחות :min characters.', + 'array' => 'ה- :attribute must have at least :min items.', ], - 'not_in' => 'The selected :attribute is invalid.', - 'not_regex' => 'The :attribute format is invalid.', - 'numeric' => 'The :attribute must be a number.', - 'present' => 'The :attribute field must be present.', - 'regex' => 'The :attribute format is invalid.', - 'required' => 'The :attribute field is required.', - 'required_if' => 'The :attribute field is required when :other is :value.', - 'required_unless' => 'The :attribute field is required unless :other is in :values.', - 'required_with' => 'The :attribute field is required when :values is present.', - 'required_with_all' => 'The :attribute field is required when :values is present.', - 'required_without' => 'The :attribute field is required when :values is not present.', - 'required_without_all' => 'The :attribute field is required when none of :values are present.', - 'same' => 'The :attribute and :other must match.', + '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.', 'size' => [ - 'numeric' => 'The :attribute must be :size.', - 'file' => 'The :attribute must be :size kilobytes.', - 'string' => 'The :attribute must be :size characters.', - 'array' => 'The :attribute must contain :size items.', + 'numeric' => 'ה- :attribute must be :size.', + 'file' => 'ה- :attribute must be :size kilobytes.', + 'string' => 'ה- :attribute must be :size characters.', + 'array' => 'ה- :attribute must contain :size items.', ], - 'string' => 'The :attribute must be a string.', - 'timezone' => 'The :attribute must be a valid zone.', - 'unique' => 'The :attribute has already been taken.', - 'uploaded' => 'The :attribute failed to upload.', - 'url' => 'The :attribute format is invalid.', + '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.', /* |-------------------------------------------------------------------------- From 0fb5e143a59678c912ac2fc6450f75ed7f46d4de Mon Sep 17 00:00:00 2001 From: j1t Date: Sat, 26 May 2018 17:38:22 +0000 Subject: [PATCH 09/11] Update validation.php --- resources/lang/he/validation.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/resources/lang/he/validation.php b/resources/lang/he/validation.php index 237051116..dbcd28768 100644 --- a/resources/lang/he/validation.php +++ b/resources/lang/he/validation.php @@ -27,7 +27,7 @@ return [ 'numeric' => 'ה- :attribute צריך להיות בין :min and :max.', 'file' => 'ה- :attribute צריך להיות בין :min and :max kilobytes.', 'string' => 'ה- :attribute צריך להיות בין :min and :max characters.', - 'array' => 'ה- :attribute must have between :min and :max items.', + 'array' => 'ה- :attribute צריך לכלול בין :min and :max items.', ], 'boolean' => 'ה- :attribute field must be true or false.', 'confirmed' => 'ה- :attribute confirmation does not match.', @@ -62,7 +62,7 @@ return [ 'numeric' => 'ה- :attribute צריך להיות לפחות :min.', 'file' => 'ה- :attribute צריך להיות לפחות :min kilobytes.', 'string' => 'ה- :attribute צריך להיות לפחות :min characters.', - 'array' => 'ה- :attribute must have at least :min items.', + 'array' => 'ה- :attribute צריך לכלול לפחות :min items.', ], 'not_in' => 'ה- selected :attribute is invalid.', 'not_regex' => 'ה- :attribute format is invalid.', @@ -78,10 +78,10 @@ return [ 'required_without_all' => 'ה- :attribute field is required when none of :values are present.', 'same' => 'ה- :attribute and :other must match.', 'size' => [ - 'numeric' => 'ה- :attribute must be :size.', - 'file' => 'ה- :attribute must be :size kilobytes.', - 'string' => 'ה- :attribute must be :size characters.', - 'array' => 'ה- :attribute must contain :size items.', + 'numeric' => 'ה- :attribute צריך להיות :size.', + 'file' => 'ה- :attribute צריך להיות :size kilobytes.', + 'string' => 'ה- :attribute צריך להיות :size characters.', + 'array' => 'ה- :attribute צריך לכלול :size items.', ], 'string' => 'ה- :attribute must be a string.', 'timezone' => 'ה- :attribute must be a valid zone.', From 9f6b9bcd3874340ad022be71bb667c0298f4f7aa Mon Sep 17 00:00:00 2001 From: j1t Date: Sat, 26 May 2018 22:45:52 +0000 Subject: [PATCH 10/11] Update validation.php --- resources/lang/he/validation.php | 106 +++++++++++++++---------------- 1 file changed, 53 insertions(+), 53 deletions(-) diff --git a/resources/lang/he/validation.php b/resources/lang/he/validation.php index dbcd28768..da36d5c9e 100644 --- a/resources/lang/he/validation.php +++ b/resources/lang/he/validation.php @@ -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 אינו תקין.', /* |-------------------------------------------------------------------------- From 02ec1688b4ddd678ce65dbe5a415e3e89df115bf Mon Sep 17 00:00:00 2001 From: j1t Date: Sat, 26 May 2018 22:49:41 +0000 Subject: [PATCH 11/11] Update validation.php --- resources/lang/he/validation.php | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/resources/lang/he/validation.php b/resources/lang/he/validation.php index da36d5c9e..bbe8aedb7 100644 --- a/resources/lang/he/validation.php +++ b/resources/lang/he/validation.php @@ -13,16 +13,16 @@ return [ | */ - 'accepted' => 'ה- :attribute must be accepted.', - 'active_url' => 'ה- :attribute is not a valid URL.', - 'after' => 'ה- :attribute must be a date after :date.', - 'after_or_equal' => 'ה- :attribute must be a date after or equal to :date.', - 'alpha' => 'ה- :attribute may only contain letters.', - 'alpha_dash' => 'ה- :attribute may only contain letters, numbers, and dashes.', - 'alpha_num' => 'ה- :attribute may only contain letters and numbers.', - 'array' => 'ה- :attribute must be an array.', - 'before' => 'ה- :attribute must be a date before :date.', - 'before_or_equal' => 'ה- :attribute must be a date before or equal to :date.', + 'accepted' => 'חובה לאשר את ה- :attribute.', + 'active_url' => 'ה- :attribute לא URL תקין.', + 'after' => 'ה- :attribute חייב להיות תאריך אחרי :date.', + 'after_or_equal' => 'ה- :attribute חייב להיות תאריך אחרי או שווה ל- :date.', + 'alpha' => 'ה- :attribute יכול לכלול רק אותיות.', + 'alpha_dash' => 'ה- :attribute יכול לכלול רק אותיות, מספרים וקוים מפרידים.', + 'alpha_num' => 'ה- :attribute יכול לכלול רק אותיות ומספרים.', + 'array' => 'ה- :attribute חייב להיות מערך.', + 'before' => 'ה- :attribute חייב להיות תאריך לפני :date.', + 'before_or_equal' => 'ה- :attribute חייב להיות תאריך לפני או שווה ל- :date.', 'between' => [ 'numeric' => 'ה- :attribute צריך להיות בין :min ו- :max.', 'file' => 'ה- :attribute צריך להיות בין :min ו- :max קילובייט.',