]> BookStack Code Mirror - bookstack/blob - lang/eu/validation.php
cd7ba387dfa7f077797e8aa43353b067ca7cf39f
[bookstack] / lang / eu / 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 onartua izan behar du.',
12     'active_url'           => ':attribute ez da baliozko URLa.',
13     'after'                => ':attribute :date baino zaharragoa izan behar da.',
14     'alpha'                => ':attribute eremuak hizkiak solik izan ditzake.',
15     'alpha_dash'           => ':attribute eremuak letrak, zenbakiak, laburpenak eta azpizenbakiak bakarrik eduki ditzake.',
16     'alpha_num'            => ':attribute eremuak hizki eta zenbakiak solik izan ditzake.',
17     'array'                => ':attribute array bat izan behar da.',
18     'backup_codes'         => 'Kode hau ez da baliagarria edo iada erabilia izan da.',
19     'before'               => ':attribute :date baino berriagoa izan behar da.',
20     'between'              => [
21         'numeric' => ':min eta :max bitartean egon behar da :attribute.',
22         'file'    => ':min eta :max kilobytes tartean egon behar da :attribute.',
23         'string'  => ':min eta :max karaktere tartean egon behar da :attribute.',
24         'array'   => ':min eta :max item tartean egon behar da :attribute.',
25     ],
26     'boolean'              => ':attribute true edo false izan behar da.',
27     'confirmed'            => ':attribute berrezpena ez da aurkitu.',
28     'date'                 => ':attribute ez da baliozko data.',
29     'date_format'          => ':attribute ez da :format formatuan aurkitu.',
30     'different'            => ':attribute eta :other ezberdinak izan behar dira.',
31     'digits'               => ':attribute :digits digitu behar ditu.',
32     'digits_between'       => ':min eta :max digitu tartean egon behar da :attribute.',
33     'email'                => ':attribute baliozko email helbide bat izan behar da.',
34     'ends_with' => ':attribute ondorengo balio hauetako batekin bukatu behar da :values',
35     'file'                 => 'The :attribute must be provided as a valid file.',
36     'filled'               => ':attribute eremua beharrezkoa da.',
37     'gt'                   => [
38         'numeric' => 'The :attribute must be greater than :value.',
39         'file'    => 'The :attribute must be greater than :value kilobytes.',
40         'string'  => 'The :attribute must be greater than :value characters.',
41         'array'   => 'The :attribute must have more than :value items.',
42     ],
43     'gte'                  => [
44         'numeric' => 'The :attribute must be greater than or equal :value.',
45         'file'    => 'The :attribute must be greater than or equal :value kilobytes.',
46         'string'  => 'The :attribute must be greater than or equal :value characters.',
47         'array'   => 'The :attribute must have :value items or more.',
48     ],
49     'exists'               => 'The selected :attribute is invalid.',
50     'image'                => ':attribute irudi bat izan behar da.',
51     'image_extension'      => 'The :attribute must have a valid & supported image extension.',
52     'in'                   => 'The selected :attribute is invalid.',
53     'integer'              => ':attribute zenbaki oso bat izan behar da.',
54     'ip'                   => 'The :attribute must be a valid IP address.',
55     'ipv4'                 => 'The :attribute must be a valid IPv4 address.',
56     'ipv6'                 => 'The :attribute must be a valid IPv6 address.',
57     'json'                 => 'The :attribute must be a valid JSON string.',
58     'lt'                   => [
59         'numeric' => 'The :attribute must be less than :value.',
60         'file'    => 'The :attribute must be less than :value kilobytes.',
61         'string'  => 'The :attribute must be less than :value characters.',
62         'array'   => 'The :attribute must have less than :value items.',
63     ],
64     'lte'                  => [
65         'numeric' => 'The :attribute must be less than or equal :value.',
66         'file'    => 'The :attribute must be less than or equal :value kilobytes.',
67         'string'  => 'The :attribute must be less than or equal :value characters.',
68         'array'   => 'The :attribute must not have more than :value items.',
69     ],
70     'max'                  => [
71         'numeric' => 'The :attribute may not be greater than :max.',
72         'file'    => 'The :attribute may not be greater than :max kilobytes.',
73         'string'  => 'The :attribute may not be greater than :max characters.',
74         'array'   => 'The :attribute may not have more than :max items.',
75     ],
76     'mimes'                => 'The :attribute must be a file of type: :values.',
77     'min'                  => [
78         'numeric' => 'The :attribute must be at least :min.',
79         'file'    => 'The :attribute must be at least :min kilobytes.',
80         'string'  => 'The :attribute must be at least :min characters.',
81         'array'   => 'The :attribute must have at least :min items.',
82     ],
83     'not_in'               => 'The selected :attribute is invalid.',
84     'not_regex'            => ':attribute formatua baliogabea da.',
85     'numeric'              => ':attribute zenbaki bat izan behar da.',
86     'regex'                => ':attribute formatua baliogabea da.',
87     'required'             => ':attribute eremua beharrezkoa da.',
88     'required_if'          => 'The :attribute field is required when :other is :value.',
89     'required_with'        => 'The :attribute field is required when :values is present.',
90     'required_with_all'    => 'The :attribute field is required when :values is present.',
91     'required_without'     => 'The :attribute field is required when :values is not present.',
92     'required_without_all' => 'The :attribute field is required when none of :values are present.',
93     'same'                 => 'The :attribute and :other must match.',
94     'safe_url'             => 'The provided link may not be safe.',
95     'size'                 => [
96         'numeric' => 'The :attribute must be :size.',
97         'file'    => 'The :attribute must be :size kilobytes.',
98         'string'  => 'The :attribute must be :size characters.',
99         'array'   => 'The :attribute must contain :size items.',
100     ],
101     'string'               => ':attribute textua izan behar da.',
102     'timezone'             => 'The :attribute must be a valid zone.',
103     'totp'                 => 'The provided code is not valid or has expired.',
104     'unique'               => 'The :attribute has already been taken.',
105     'url'                  => 'The :attribute format is invalid.',
106     'uploaded'             => 'The file could not be uploaded. The server may not accept files of this size.',
107
108     // Custom validation lines
109     'custom' => [
110         'password-confirm' => [
111             'required_with' => 'Baieztatu zure pasahitza',
112         ],
113     ],
114
115     // Custom validation attributes
116     'attributes' => [],
117 ];