Skip to content

Commit 8bcfd52

Browse files
vinklajasonlewis
authored andcommitted
add swedish language
fix misspelling add special html chars fix misspelling changed folder name from se to sv removed se folder
1 parent acbffce commit 8bcfd52

File tree

2 files changed

+123
-0
lines changed

2 files changed

+123
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?php
2+
3+
return array(
4+
5+
/*
6+
|--------------------------------------------------------------------------
7+
| Pagination Language Lines
8+
|--------------------------------------------------------------------------
9+
|
10+
| The following language lines are used by the paginator library to build
11+
| the pagination links. You're free to change them to anything you want.
12+
| If you come up with something more exciting, let us know.
13+
|
14+
*/
15+
16+
'previous' => '&laquo; Föregående',
17+
'next' => 'Nästa &raquo;',
18+
19+
);
Lines changed: 104 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,104 @@
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 m&aring;ste accepteras.",
22+
"active_url" => ":attribute &auml;r inte en giltig webbadress.",
23+
"after" => ":attribute m&aring;ste vara ett datum efter den :date.",
24+
"alpha" => ":attribute f&aring;r endast inneh&aring;lla bokst&auml;ver.",
25+
"alpha_dash" => ":attribute f&aring;r endast inneh&aring;lla bokst&auml;ver, nummer och bindestreck.",
26+
"alpha_num" => ":attribute f&aring;r endast inneh&aring;lla bokst&auml;ver och nummer.",
27+
"array" => ":attribute m&aring;ste ha valda element.",
28+
"before" => ":attribute m&aring;ste vara ett datum innan den :date.",
29+
"between" => array(
30+
"numeric" => ":attribute m&aring;ste vara ett nummer mellan :min och :max.",
31+
"file" => ":attribute m&aring;ste vara mellan :min till :max kilobytes stor.",
32+
"string" => ":attribute m&aring;ste inneh&aring;lla :min till :max tecken.",
33+
),
34+
"confirmed" => ":attribute bekr&auml;ftelsen matchar inte.",
35+
"count" => ":attribute m&aring;ste exakt ha :count valda element.",
36+
"countbetween" => ":attribute f&aring;r endast ha :min till :max valda element.",
37+
"countmax" => ":attribute f&aring;r max ha :max valda element.",
38+
"countmin" => ":attribute m&aring;ste minst ha :min valda element.",
39+
"different" => ":attribute och :other f&aring;r ej vara lika.",
40+
"email" => ":attribute formatet &auml;r ogiltig.",
41+
"exists" => "Det valda :attribute &auml;r ogiltigt.",
42+
"image" => ":attribute m&aring;ste vara en bild.",
43+
"in" => "Det valda :attribute &auml;r ogiltigt.",
44+
"integer" => ":attribute m&aring;ste vara en siffra.",
45+
"ip" => ":attribute m&aring;ste vara en giltig IP-adress.",
46+
"match" => ":attribute formatet &auml;r ogiltig.",
47+
"max" => array(
48+
"numeric" => ":attribute f&aring;r inte vara st&ouml;rre &auml;n :max.",
49+
"file" => ":attribute f&aring;r max vara :max kilobytes stor.",
50+
"string" => ":attribute f&aring;r max inneh&aring;lla :max tecken.",
51+
),
52+
"mimes" => ":attribute m&aring;ste vara en fil av typen: :values.",
53+
"min" => array(
54+
"numeric" => ":attribute m&aring;ste vara st&ouml;rre &auml;n :min.",
55+
"file" => ":attribute m&aring;ste minst vara :min kilobytes stor.",
56+
"string" => ":attribute m&aring;ste minst inneh&aring;lla :min tecken.",
57+
),
58+
"not_in" => "Det valda :attribute &auml;r ogiltigt.",
59+
"numeric" => ":attribute m&aring;ste vara ett nummer.",
60+
"required" => ":attribute f&auml;ltet &auml;r obligatoriskt.",
61+
"same" => ":attribute och :other m&aring;ste vara likadana.",
62+
"size" => array(
63+
"numeric" => ":attribute m&aring;ste vara :size.",
64+
"file" => ":attribute f&aring;r endast vara :size kilobyte stor.",
65+
"string" => ":attribute m&aring;ste inneh&aring;lla :size tecken.",
66+
),
67+
"unique" => ":attribute anv&auml;nds redan.",
68+
"url" => ":attribute formatet &auml;r ogiltig",
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

Comments
 (0)