Skip to content

Commit 19e765f

Browse files
Add Slovenian language
1 parent b1a7daa commit 19e765f

File tree

8 files changed

+1138
-2
lines changed

8 files changed

+1138
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ If you want to support the project feel free to **star this repository**. It hel
3636

3737
* No limitations on the number of users, tickets, mailboxes, etc.
3838
* 100% Mobile-friendly.
39-
* Multilingual: English, Chinese, Croatian, Czech, Danish, Dutch, Finnish, French, German, Hebrew, Hungarian, Italian, Japanese, Kazakh, Korean, Norwegian, Persian, Polish, Portuguese, Romanian, Russian, Spanish, Slovak, Swedish, Turkish, Ukrainian.
39+
* Multilingual: English, Chinese, Croatian, Czech, Danish, Dutch, Finnish, French, German, Hebrew, Hungarian, Italian, Japanese, Kazakh, Korean, Norwegian, Persian, Polish, Portuguese, Romanian, Russian, Spanish, Slovak, Slovenian, Swedish, Turkish, Ukrainian.
4040
* Seamless email integration.
4141
* Supports modern Microsoft Exchange authentication.
4242
* Fully supports screen readers (for visually impaired).

config/app.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@
9898
*/
9999

100100
'locale' => env('APP_LOCALE', 'en'),
101-
'locales' => ['en', 'ar', 'zh-CN', 'hr', 'cs', 'da', 'nl', 'fi', 'fr', 'de', 'he', 'hu', 'it', 'ja', 'kz', 'ko', 'no', 'fa', 'pl', 'pt-PT', 'pt-BR', 'ro', 'ru', 'es', 'sk', 'sv', 'tr', 'uk'],
101+
'locales' => ['en', 'ar', 'zh-CN', 'hr', 'cs', 'da', 'nl', 'fi', 'fr', 'de', 'he', 'hu', 'it', 'ja', 'kz', 'ko', 'no', 'fa', 'pl', 'pt-PT', 'pt-BR', 'ro', 'ru', 'es', 'sk', 'sl', 'sv', 'tr', 'uk'],
102102
'locales_rtl' => ['ar', 'fa', 'he'],
103103
'default_locale' => 'en',
104104

resources/lang/sl.json

Lines changed: 795 additions & 0 deletions
Large diffs are not rendered by default.

resources/lang/sl/auth.php

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?php
2+
3+
return [
4+
/*
5+
|--------------------------------------------------------------------------
6+
| Authentication Language Lines
7+
|--------------------------------------------------------------------------
8+
|
9+
| The following language lines are used during authentication for various
10+
| messages that we need to display to the user. You are free to modify
11+
| these language lines according to your application's requirements.
12+
|
13+
*/
14+
15+
'failed' => 'Ti podatki se ne ujemajo z našimi.',
16+
'throttle' => 'Preveč poskusov prijave. Prosimo, poskusite ponovno čez :seconds sekund.',
17+
];

resources/lang/sl/pagination.php

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?php
2+
3+
return [
4+
/*
5+
|--------------------------------------------------------------------------
6+
| Pagination Language Lines
7+
|--------------------------------------------------------------------------
8+
|
9+
| The following language lines are used by the paginator library to build
10+
| the simple pagination links. You are free to change them to anything
11+
| you want to customize your views to better match your application.
12+
|
13+
*/
14+
15+
'previous' => '&laquo; Prejšnja',
16+
'next' => 'Naslednja &raquo;',
17+
];

resources/lang/sl/passwords.php

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?php
2+
3+
return [
4+
/*
5+
|--------------------------------------------------------------------------
6+
| Password Reminder Language Lines
7+
|--------------------------------------------------------------------------
8+
|
9+
| The following language lines are the default lines which match reasons
10+
| that are given by the password broker for a password update attempt
11+
| has failed, such as for an invalid token or invalid new password.
12+
|
13+
*/
14+
15+
'reset' => 'Geslo je bilo spremenjeno!',
16+
'sent' => 'Opomnik za geslo poslano!',
17+
'throttled' => 'Please wait before retrying.',
18+
'token' => 'Ponastavitveni žeton je neveljaven.',
19+
'user' => 'Ne moremo najti uporabnika s tem e-poštnim naslovom.',
20+
];
Lines changed: 138 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,138 @@
1+
<?php
2+
3+
return [
4+
5+
/*
6+
|--------------------------------------------------------------------------
7+
| Validation Language Lines
8+
|--------------------------------------------------------------------------
9+
|
10+
| The following language lines contain the default error messages used by
11+
| the validator class. Some of these rules have multiple versions such
12+
| as the size rules. Feel free to tweak each of these messages here.
13+
|
14+
*/
15+
16+
'accepted' => 'This field must be accepted.',
17+
'active_url' => 'This is not a valid URL.',
18+
'after' => 'This must be a date after :date.',
19+
'after_or_equal' => 'This must be a date after or equal to :date.',
20+
'alpha' => 'This field may only contain letters.',
21+
'alpha_dash' => 'This field may only contain letters, numbers, dashes and underscores.',
22+
'alpha_num' => 'This field may only contain letters and numbers.',
23+
'array' => 'This field must be an array.',
24+
'before' => 'This must be a date before :date.',
25+
'before_or_equal' => 'This must be a date before or equal to :date.',
26+
'between' => [
27+
'numeric' => 'This value must be between :min and :max.',
28+
'file' => 'This file must be between :min and :max kilobytes.',
29+
'string' => 'This string must be between :min and :max characters.',
30+
'array' => 'This content must have between :min and :max items.',
31+
],
32+
'boolean' => 'This field must be true or false.',
33+
'confirmed' => 'The confirmation does not match.',
34+
'date' => 'This is not a valid date.',
35+
'date_equals' => 'This must be a date equal to :date.',
36+
'date_format' => 'This does not match the format :format.',
37+
'different' => 'This value must be different from :other.',
38+
'digits' => 'This must be :digits digits.',
39+
'digits_between' => 'This must be between :min and :max digits.',
40+
'dimensions' => 'This image has invalid dimensions.',
41+
'distinct' => 'This field has a duplicate value.',
42+
'email' => 'This must be a valid email address.',
43+
'ends_with' => 'This must end with one of the following: :values.',
44+
'exists' => 'The selected value is invalid.',
45+
'file' => 'The content must be a file.',
46+
'filled' => 'This field must have a value.',
47+
'gt' => [
48+
'numeric' => 'The value must be greater than :value.',
49+
'file' => 'The file size must be greater than :value kilobytes.',
50+
'string' => 'The string must be greater than :value characters.',
51+
'array' => 'The content must have more than :value items.',
52+
],
53+
'gte' => [
54+
'numeric' => 'The value must be greater than or equal :value.',
55+
'file' => 'The file size must be greater than or equal :value kilobytes.',
56+
'string' => 'The string must be greater than or equal :value characters.',
57+
'array' => 'The content must have :value items or more.',
58+
],
59+
'image' => 'This must be an image.',
60+
'in' => 'The selected value is invalid.',
61+
'in_array' => 'This value does not exist in :other.',
62+
'integer' => 'This must be an integer.',
63+
'ip' => 'This must be a valid IP address.',
64+
'ipv4' => 'This must be a valid IPv4 address.',
65+
'ipv6' => 'This must be a valid IPv6 address.',
66+
'json' => 'This must be a valid JSON string.',
67+
'lt' => [
68+
'numeric' => 'The value must be less than :value.',
69+
'file' => 'The file size must be less than :value kilobytes.',
70+
'string' => 'The string must be less than :value characters.',
71+
'array' => 'The content must have less than :value items.',
72+
],
73+
'lte' => [
74+
'numeric' => 'The value must be less than or equal :value.',
75+
'file' => 'The file size must be less than or equal :value kilobytes.',
76+
'string' => 'The string must be less than or equal :value characters.',
77+
'array' => 'The content must not have more than :value items.',
78+
],
79+
'max' => [
80+
'numeric' => 'The value may not be greater than :max.',
81+
'file' => 'The file size may not be greater than :max kilobytes.',
82+
'string' => 'The string may not be greater than :max characters.',
83+
'array' => 'The content may not have more than :max items.',
84+
],
85+
'mimes' => 'This must be a file of type: :values.',
86+
'mimetypes' => 'This must be a file of type: :values.',
87+
'min' => [
88+
'numeric' => 'The value must be at least :min.',
89+
'file' => 'The file size must be at least :min kilobytes.',
90+
'string' => 'The string must be at least :min characters.',
91+
'array' => 'The value must have at least :min items.',
92+
],
93+
'not_in' => 'The selected value is invalid.',
94+
'not_regex' => 'This format is invalid.',
95+
'numeric' => 'This must be a number.',
96+
'password' => 'The password is incorrect.',
97+
'present' => 'This field must be present.',
98+
'regex' => 'This format is invalid.',
99+
'required' => 'This field is required.',
100+
'required_if' => 'This field is required when :other is :value.',
101+
'required_unless' => 'This field is required unless :other is in :values.',
102+
'required_with' => 'This field is required when :values is present.',
103+
'required_with_all' => 'This field is required when :values are present.',
104+
'required_without' => 'This field is required when :values is not present.',
105+
'required_without_all' => 'This field is required when none of :values are present.',
106+
'same' => 'The value of this field must match the one from :other.',
107+
'size' => [
108+
'numeric' => 'The value must be :size.',
109+
'file' => 'The file size must be :size kilobytes.',
110+
'string' => 'The string must be :size characters.',
111+
'array' => 'The content must contain :size items.',
112+
],
113+
'starts_with' => 'This must start with one of the following: :values.',
114+
'string' => 'This must be a string.',
115+
'timezone' => 'This must be a valid zone.',
116+
'unique' => 'This has already been taken.',
117+
'uploaded' => 'This failed to upload.',
118+
'url' => 'This format is invalid.',
119+
'uuid' => 'This must be a valid UUID.',
120+
121+
/*
122+
|--------------------------------------------------------------------------
123+
| Custom Validation Language Lines
124+
|--------------------------------------------------------------------------
125+
|
126+
| Here you may specify custom validation messages for attributes using the
127+
| convention "attribute.rule" to name the lines. This makes it quick to
128+
| specify a specific custom language line for a given attribute rule.
129+
|
130+
*/
131+
132+
'custom' => [
133+
'attribute-name' => [
134+
'rule-name' => 'custom-message',
135+
],
136+
],
137+
138+
];

resources/lang/sl/validation.php

Lines changed: 149 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,149 @@
1+
<?php
2+
3+
return [
4+
/*
5+
|--------------------------------------------------------------------------
6+
| Validation Language Lines
7+
|--------------------------------------------------------------------------
8+
|
9+
| The following language lines contain the default error messages used by
10+
| the validator class. Some of these rules have multiple versions such
11+
| as the size rules. Feel free to tweak each of these messages here.
12+
|
13+
*/
14+
15+
'accepted' => ':attribute mora biti sprejet.',
16+
'active_url' => ':attribute ni pravilen.',
17+
'after' => ':attribute mora biti za datumom :date.',
18+
'after_or_equal' => ':attribute mora biti za ali enak :date.',
19+
'alpha' => ':attribute lahko vsebuje samo črke.',
20+
'alpha_dash' => ':attribute lahko vsebuje samo črke, številke in črtice.',
21+
'alpha_num' => ':attribute lahko vsebuje samo črke in številke.',
22+
'array' => ':attribute mora biti polje.',
23+
'before' => ':attribute mora biti pred datumom :date.',
24+
'before_or_equal' => ':attribute mora biti pred ali enak :date.',
25+
'between' => [
26+
'numeric' => ':attribute mora biti med :min in :max.',
27+
'file' => ':attribute mora biti med :min in :max kilobajti.',
28+
'string' => ':attribute mora biti med :min in :max znaki.',
29+
'array' => ':attribute mora imeti med :min in :max elementov.',
30+
],
31+
'boolean' => ':attribute polje mora biti 1 ali 0',
32+
'confirmed' => ':attribute potrditev se ne ujema.',
33+
'date' => ':attribute ni veljaven datum.',
34+
'date_equals' => ':attribute mora biti enak :date.',
35+
'date_format' => ':attribute se ne ujema z obliko :format.',
36+
'different' => ':attribute in :other mora biti drugačen.',
37+
'digits' => ':attribute mora imeti :digits cifer.',
38+
'digits_between' => ':attribute mora biti med :min in :max ciframi.',
39+
'dimensions' => ':attribute ima napačne dimenzije slike.',
40+
'distinct' => ':attribute je duplikat.',
41+
'email' => ':attribute mora biti veljaven e-poštni naslov.',
42+
'ends_with' => 'The :attribute must end with one of the following: :values.',
43+
'exists' => 'izbran :attribute je neveljaven.',
44+
'file' => ':attribute mora biti datoteka.',
45+
'filled' => ':attribute mora biti izpolnjen.',
46+
'gt' => [
47+
'numeric' => ':attribute mora biti večji od :value.',
48+
'file' => ':attribute mora biti večji od :value kilobajtov.',
49+
'string' => ':attribute mora imeti več kot :value znakov.',
50+
'array' => ':attribute mora imeti več kot :value elementov.',
51+
],
52+
'gte' => [
53+
'numeric' => ':attribute mora biti večji ali enak :value.',
54+
'file' => ':attribute mora biti večji ali enak :value kilobajtov.',
55+
'string' => ':attribute mora imeti število znakov večje ali enako :value.',
56+
'array' => ':attribute mora imeti število elementov enako ali večje od :value.',
57+
],
58+
'image' => ':attribute mora biti slika.',
59+
'in' => 'izbran :attribute je neveljaven.',
60+
'in_array' => ':attribute ne obstaja v :other.',
61+
'integer' => ':attribute mora biti število.',
62+
'ip' => ':attribute mora biti veljaven IP naslov.',
63+
'ipv4' => ':attribute mora biti veljaven IPv4 naslov.',
64+
'ipv6' => ':attribute mora biti veljaven IPv6 naslov.',
65+
'json' => ':attribute mora biti veljaven JSON tekst.',
66+
'lt' => [
67+
'numeric' => ':attribute mora biti manjši od :value.',
68+
'file' => ':attribute mora biti manjši od :value kilobajtov.',
69+
'string' => ':attribute mora imeti manj kot :value znakov.',
70+
'array' => ':attribute mora imeti manj kot :value elementov.',
71+
],
72+
'lte' => [
73+
'numeric' => ':attribute mora biti manjši ali enak :value.',
74+
'file' => ':attribute mora biti manjši ali enak od :value kilobajtov.',
75+
'string' => ':attribute mora imeti število znakov manjše ali enako :value.',
76+
'array' => ':attribute mora imeti število elementov manjše ali enako :value.',
77+
],
78+
'max' => [
79+
'numeric' => ':attribute ne sme biti večje od :max.',
80+
'file' => ':attribute ne sme biti večje :max kilobajtov.',
81+
'string' => ':attribute ne sme biti večje :max znakov.',
82+
'array' => ':attribute ne smejo imeti več kot :max elementov.',
83+
],
84+
'mimes' => ':attribute mora biti datoteka tipa: :values.',
85+
'mimetypes' => ':attribute mora biti datoteka tipa: :values.',
86+
'min' => [
87+
'numeric' => ':attribute mora biti vsaj dolžine :min.',
88+
'file' => ':attribute mora imeti vsaj :min kilobajtov.',
89+
'string' => ':attribute mora imeti vsaj :min znakov.',
90+
'array' => ':attribute mora imeti vsaj :min elementov.',
91+
],
92+
'not_in' => 'Izbran :attribute je neveljaven.',
93+
'not_regex' => 'Format :attribute je neveljaven.',
94+
'numeric' => ':attribute mora biti število.',
95+
'present' => 'Polje :attribute mora biti prisotno.',
96+
'regex' => 'Format polja :attribute je neveljaven.',
97+
'required' => 'Polje :attribute je obvezno.',
98+
'required_if' => 'Polje :attribute je obvezno, če je :other enak :value.',
99+
'required_unless' => 'Polje :attribute je obvezno, razen če je :other v :values.',
100+
'required_with' => 'Polje :attribute je obvezno, če je :values prisoten.',
101+
'required_with_all' => 'Polje :attribute je obvezno, če so :values prisoten.',
102+
'required_without' => 'Polje :attribute je obvezno, če :values ni prisoten.',
103+
'required_without_all' => 'Polje :attribute je obvezno, če :values niso prisotni.',
104+
'same' => 'Polje :attribute in :other se morata ujemati.',
105+
'size' => [
106+
'numeric' => ':attribute mora biti :size.',
107+
'file' => ':attribute mora biti :size kilobajtov.',
108+
'string' => ':attribute mora biti :size znakov.',
109+
'array' => ':attribute mora vsebovati :size elementov.',
110+
],
111+
'starts_with' => ':attribute se mora začeti z eno od naslednjih vrednosti: :values',
112+
'string' => ':attribute mora biti tekst.',
113+
'timezone' => ':attribute mora biti časovna cona.',
114+
'unique' => ':attribute je že zaseden.',
115+
'uploaded' => 'Nalaganje :attribute ni uspelo.',
116+
'url' => ':attribute format je neveljaven.',
117+
'uuid' => ':attribute mora biti veljaven UUID.',
118+
119+
/*
120+
|--------------------------------------------------------------------------
121+
| Custom Validation Language Lines
122+
|--------------------------------------------------------------------------
123+
|
124+
| Here you may specify custom validation messages for attributes using the
125+
| convention "attribute.rule" to name the lines. This makes it quick to
126+
| specify a specific custom language line for a given attribute rule.
127+
|
128+
*/
129+
130+
'custom' => [
131+
'attribute-name' => [
132+
'rule-name' => 'Prilagojeno sporočilo',
133+
],
134+
],
135+
136+
/*
137+
|--------------------------------------------------------------------------
138+
| Custom Validation Attributes
139+
|--------------------------------------------------------------------------
140+
|
141+
| The following language lines are used to swap attribute place-holders
142+
| with something more reader friendly such as E-Mail Address instead
143+
| of "email". This simply helps us make messages a little cleaner.
144+
|
145+
*/
146+
147+
'attributes' => [
148+
],
149+
];

0 commit comments

Comments
 (0)