1
+ <?php
2
+
3
+ return array (
4
+
5
+ /*
6
+ |--------------------------------------------------------------------------
7
+ | Validation Language Lines
8
+ |--------------------------------------------------------------------------
9
+ |
10
+ | The following language lines contain the default error messages used
11
+ | by the validator class. Some of the rules contain multiple versions,
12
+ | such as the size (max, min, between) rules. These versions are used
13
+ | for different input types such as strings and files.
14
+ |
15
+ | These language lines may be easily changed to provide custom error
16
+ | messages in your application. Error messages for custom validation
17
+ | rules may also be added to this file.
18
+ |
19
+ */
20
+
21
+ "accepted " => ":attribute pitää hyväksyä. " ,
22
+ "active_url " => ":attribute pitää olla validi URL-osoite. " ,
23
+ "after " => ":attribute pitää olla päiväys :date päiväyksen jälkeen. " ,
24
+ "alpha " => ":attribute voi vain sisältää kirjaimia. " ,
25
+ "alpha_dash " => ":attribute voi vain sisältää kirjaimia, numeroita ja viivoja. " ,
26
+ "alpha_num " => ":attribute voi vain sisältää kirjaimia ja numeroita. " ,
27
+ "array " => ":attribute pitää sisältää elementin. " ,
28
+ "before " => ":attribute pitää olla päiväys ennen :date. " ,
29
+ "between " => array (
30
+ "numeric " => ":attribute numeron pitää olla välillä :min - :max. " ,
31
+ "file " => ":attribute tiedoston pitää olla välillä :min - :max kilobittiä. " ,
32
+ "string " => ":attribute elementin pitää olla välillä :min - :max kirjainta. " ,
33
+ ),
34
+ "confirmed " => ":attribute vahvistus ei täsmää. " ,
35
+ "count " => ":attribute pitää olla tarkalleen :count määrä elementtejä. " ,
36
+ "countbetween " => ":attribute pitää olla välillä :min ja :max määrä elementtejä. " ,
37
+ "countmax " => ":attribute pitää olla vähemmän kun :max määrä elementtejä. " ,
38
+ "countmin " => ":attribute pitää olla vähintään :min määrä elementtejä. " ,
39
+ "different " => ":attribute ja :other tulee olla eri arvoisia. " ,
40
+ "email " => ":attribute muoto on virheellinen. " ,
41
+ "exists " => "valittu :attribute on virheellinen. " ,
42
+ "image " => ":attribute pitää olla kuva. " ,
43
+ "in " => "valittu :attribute on virheellinen. " ,
44
+ "integer " => ":attribute pitää olla numero. " ,
45
+ "ip " => ":attribute pitää olla validi IP-osoite. " ,
46
+ "match " => ":attribute muoto on virheellinen. " ,
47
+ "max " => array (
48
+ "numeric " => ":attribute pitää olla pienempi kuin :max. " ,
49
+ "file " => ":attribute pitää olla pienempi :max kilobittiä. " ,
50
+ "string " => ":attribute pitää olla pienempi :max kirjainta. " ,
51
+ ),
52
+ "mimes " => ":attribute pitää olla tiedostotyyppi: :values. " ,
53
+ "min " => array (
54
+ "numeric " => ":attribute pitää olla vähintään :min. " ,
55
+ "file " => ":attribute pitää olla vähintään :min kilobittiä. " ,
56
+ "string " => ":attribute pitää olla vähintään :min kirjainta. " ,
57
+ ),
58
+ "not_in " => "valittu :attribute on virheellinen. " ,
59
+ "numeric " => ":attribute pitää olla numero. " ,
60
+ "required " => ":attribute kenttä on pakollinen. " ,
61
+ "same " => ":attribute ja :other on oltava samat. " ,
62
+ "size " => array (
63
+ "numeric " => ":attribute pitää olla kokoa: :size. " ,
64
+ "file " => ":attribute pitää olla kokoa: :size kilobittiä. " ,
65
+ "string " => ":attribute pitää olla kokoa: :size kirjainta. " ,
66
+ ),
67
+ "unique " => ":attribute on jo valittu. " ,
68
+ "url " => ":attribute URL-osoite on virheellinen. " ,
69
+
70
+ /*
71
+ |--------------------------------------------------------------------------
72
+ | Custom Validation Language Lines
73
+ |--------------------------------------------------------------------------
74
+ |
75
+ | Here you may specify custom validation messages for attributes using the
76
+ | convention "attribute_rule" to name the lines. This helps keep your
77
+ | custom validation clean and tidy.
78
+ |
79
+ | So, say you want to use a custom validation message when validating that
80
+ | the "email" attribute is unique. Just add "email_unique" to this array
81
+ | with your custom message. The Validator will handle the rest!
82
+ |
83
+ */
84
+
85
+ 'custom ' => array (),
86
+
87
+ /*
88
+ |--------------------------------------------------------------------------
89
+ | Validation Attributes
90
+ |--------------------------------------------------------------------------
91
+ |
92
+ | The following language lines are used to swap attribute place-holders
93
+ | with something more reader friendly such as "E-Mail Address" instead
94
+ | of "email". Your users will thank you.
95
+ |
96
+ | The Validator class will automatically search this array of lines it
97
+ | is attempting to replace the :attribute place-holder in messages.
98
+ | It's pretty slick. We think you'll like it.
99
+ |
100
+ */
101
+
102
+ 'attributes ' => array (),
103
+
104
+ );
0 commit comments