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 skal accepteres. " ,
22
+ "active_url " => ":attribute er ikke en gyldig URL. " ,
23
+ "after " => ":attribute skal være en dato efter :date. " ,
24
+ "alpha " => ":attribute må kun indeholde bogstaver. " ,
25
+ "alpha_dash " => ":attribute må kun indeholde bogstaver, numre, og skråstreg. " ,
26
+ "alpha_num " => ":attribute må kun indeholde bogstaver og numre. " ,
27
+ "array " => ":attribute skal have valgte elementer. " ,
28
+ "before " => ":attribute skal have en dato før :date. " ,
29
+ "between " => array (
30
+ "numeric " => ":attribute skal være mellem :min - :max. " ,
31
+ "file " => ":attribute skal være mellem :min - :max kilobytes. " ,
32
+ "string " => ":attribute skal være mellem :min - :max karakterer. " ,
33
+ ),
34
+ "confirmed " => ":attribute bekræftelse stemmer ikke overens. " ,
35
+ "count " => ":attribute skal være præcis :count valgte elementer. " ,
36
+ "countbetween " => ":attribute skal være mellem :min and :max valgte elementer. " ,
37
+ "countmax " => ":attribute skal have mindre end :max valgte elementer. " ,
38
+ "countmin " => ":attribute skal have minimum :min valgte elementer. " ,
39
+ "different " => ":attribute og :other skal være forskellige. " ,
40
+ "email " => "Formatet for :attribute er ugyldigt. " ,
41
+ "exists " => "Den valgte :attribute er ugyldig. " ,
42
+ "image " => ":attribute skal være et billede. " ,
43
+ "in " => "Den valgte :attribute er ugyldig. " ,
44
+ "integer " => ":attribute må kun indeholde tal. " ,
45
+ "ip " => ":attribute skal være en gyldig IP adresse. " ,
46
+ "match " => "Formatet for :attribute er ugyldigt. " ,
47
+ "max " => array (
48
+ "numeric " => ":attribute skal være mindre end :max. " ,
49
+ "file " => ":attribute skal være mindre end :max kilobytes. " ,
50
+ "string " => ":attribute skal være mindre end :max karakterer. " ,
51
+ ),
52
+ "mimes " => ":attribute skal have filtypen type: :values. " ,
53
+ "min " => array (
54
+ "numeric " => ":attribute ska minimum være :min. " ,
55
+ "file " => ":attribute skal være mindst :min kilobytes. " ,
56
+ "string " => ":attribute skal være mindst :min karakterer. " ,
57
+ ),
58
+ "not_in " => "Den valgte :attribute er ugyldig. " ,
59
+ "numeric " => ":attribute skal være et nummer. " ,
60
+ "required " => ":attribute er krævet. " ,
61
+ "same " => ":attribute og :other stemmer ikke overens. " ,
62
+ "size " => array (
63
+ "numeric " => ":attribute skal være :size. " ,
64
+ "file " => ":attribute skal være :size kilobyte. " ,
65
+ "string " => ":attribute skal være :size karakterer. " ,
66
+ ),
67
+ "unique " => ":attribute er allerede optaget. " ,
68
+ "url " => ":attribute formatet er ugyldigt. " ,
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