]> BookStack Code Mirror - bookstack/blob - resources/lang/he/validation.php
Add footer element, styles, and associated settings
[bookstack] / resources / lang / he / validation.php
1 <?php
2 /**
3  * Validation Lines
4  * The following language lines contain the default error messages used by
5  * the validator class. Some of these rules have multiple versions such
6  * as the size rules. Feel free to tweak each of these messages here.
7  */
8 return [
9
10     // Standard laravel validation lines
11     'accepted'        => 'שדה :attribute חייב להיות מסומן.',
12     'active_url'      => 'שדה :attribute הוא לא כתובת אתר תקנית.',
13     'after'           => 'שדה :attribute חייב להיות תאריך אחרי :date.',
14     'alpha'           => 'שדה :attribute יכול להכיל אותיות בלבד.',
15     'alpha_dash'      => 'שדה :attribute יכול להכיל אותיות, מספרים ומקפים בלבד.',
16     'alpha_num'       => 'שדה :attribute יכול להכיל אותיות ומספרים בלבד.',
17     'array'           => 'שדה :attribute חייב להיות מערך.',
18     'before'          => 'שדה :attribute חייב להיות תאריך לפני :date.',
19     'between'         => [
20         'numeric' => 'שדה :attribute חייב להיות בין :min ל-:max.',
21         'file'    => 'שדה :attribute חייב להיות בין :min ל-:max קילובייטים.',
22         'string'  => 'שדה :attribute חייב להיות בין :min ל-:max תווים.',
23         'array'   => 'שדה :attribute חייב להיות בין :min ל-:max פריטים.',
24     ],
25     'boolean'        => 'שדה :attribute חייב להיות אמת או שקר.',
26     'confirmed'      => 'שדה האישור של :attribute לא תואם.',
27     'date'           => 'שדה :attribute אינו תאריך תקני.',
28     'date_format'    => 'שדה :attribute לא תואם את הפורמט :format.',
29     'different'      => 'שדה :attribute ושדה :other חייבים להיות שונים.',
30     'digits'         => 'שדה :attribute חייב להיות בעל :digits ספרות.',
31     'digits_between' => 'שדה :attribute חייב להיות בין :min ו-:max ספרות.',
32     'email'          => 'שדה :attribute חייב להיות כתובת אימייל תקנית.',
33     'filled'         => 'שדה :attribute הוא חובה.',
34     'exists'         => 'בחירת ה-:attribute אינה תקפה.',
35     'image'    => 'שדה :attribute חייב להיות תמונה.',
36     'image_extension'      => 'שדה :attribute חייב להיות מסוג תמונה נתמך',
37     'in'       => 'בחירת ה-:attribute אינה תקפה.',
38     'integer'  => 'שדה :attribute חייב להיות מספר שלם.',
39     'ip'       => 'שדה :attribute חייב להיות כתובת IP תקנית.',
40     'max' => [
41         'numeric' => 'שדה :attribute אינו יכול להיות גדול מ-:max.',
42         'file'    => 'שדה :attribute לא יכול להיות גדול מ-:max קילובייטים.',
43         'string'  => 'שדה :attribute לא יכול להיות גדול מ-:max characters.',
44         'array'   => 'שדה :attribute לא יכול להכיל יותר מ-:max פריטים.',
45     ],
46     'mimes'     => 'שדה :attribute צריך להיות קובץ מסוג: :values.',
47     'min'       => [
48         'numeric' => 'שדה :attribute חייב להיות לפחות :min.',
49         'file'    => 'שדה :attribute חייב להיות לפחות :min קילובייטים.',
50         'string'  => 'שדה :attribute חייב להיות לפחות :min תווים.',
51         'array'   => 'שדה :attribute חייב להיות לפחות :min פריטים.',
52     ],
53     'no_double_extension'  => 'השדה :attribute חייב להיות בעל סיומת קובץ אחת בלבד.',
54     'not_in'               => 'בחירת ה-:attribute אינה תקפה.',
55     'numeric'              => 'שדה :attribute חייב להיות מספר.',
56     'regex'                => 'שדה :attribute בעל פורמט שאינו תקין.',
57     'required'             => 'שדה :attribute הוא חובה.',
58     'required_if'          => 'שדה :attribute נחוץ כאשר :other הוא :value.',
59     'required_with'        => 'שדה :attribute נחוץ כאשר :values נמצא.',
60     'required_with_all'    => 'שדה :attribute נחוץ כאשר :values נמצא.',
61     'required_without'     => 'שדה :attribute נחוץ כאשר :values לא בנמצא.',
62     'required_without_all' => 'שדה :attribute נחוץ כאשר אף אחד מ-:values נמצאים.',
63     'same'                 => 'שדה :attribute ו-:other חייבים להיות זהים.',
64     'size'                 => [
65         'numeric' => 'שדה :attribute חייב להיות :size.',
66         'file'    => 'שדה :attribute חייב להיות :size קילובייטים.',
67         'string'  => 'שדה :attribute חייב להיות :size תווים.',
68         'array'   => 'שדה :attribute חייב להכיל :size פריטים.',
69     ],
70     'string'      => 'שדה :attribute חייב להיות מחרוזת.',
71     'timezone'    => 'שדה :attribute חייב להיות איזור תקני.',
72     'unique'      => 'שדה :attribute כבר תפוס.',
73     'url'         => 'שדה :attribute בעל פורמט שאינו תקין.',
74     'uploaded'    => 'שדה :attribute ארעה שגיאה בעת ההעלאה.',
75
76     // Custom validation lines
77     'custom' => [
78         'password-confirm' => [
79             'required_with' => 'נדרש אימות סיסמא',
80         ],
81     ],
82
83     // Custom validation attributes
84     'attributes' => [],
85 ];