Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b9a5cc0

Browse files
committed
Merge pull request Laravel-Lang#415 from nemanjakrstic/master
Couple of fixes for validation strings for 'sr' locale
2 parents 58a5873 + 6a3e5bf commit b9a5cc0

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

sr/auth.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010
| these language lines according to your application's requirements.
1111
|
1212
*/
13-
'failed' => 'These credentials do not match our records.',
14-
'throttle' => 'Too many login attempts. Please try again in :seconds seconds.',
13+
'failed' => 'Podaci ne odgovaraju ni jednom nalogu.',
14+
'throttle' => 'Previše neuspelih pokušaja. Pokušajte ponovo za :seconds sekundi.',
1515
];

sr/passwords.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@
1313
|
1414
*/
1515

16-
"password" => "Lozinke moraju biti naj manje 6 karaktera i da odgovaraju potvrdu.",
16+
"password" => "Lozinka mora imati najmanje 6 karaktera i da odgovara potvrdi.",
1717

18-
"user" => "Nismo uspeli pronaći korisnika sa emajl adresom.",
18+
"user" => "Nismo uspeli pronaći korisnika sa email adresom.",
1919

20-
"token" => "Ukucena oznaka za resetovanje lozinke nije važeći.",
20+
"token" => "Ukucana oznaka za resetovanje lozinke nije važeća.",
2121

22-
"sent" => "Poslali smo oporavak za vašu lozinku!",
22+
"sent" => "Poslali smo reset link za vašu lozinku!",
2323

2424
"reset" => "Lozinka je resetovana!",
2525

sr/validation.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"alpha" => "Polje :attribute može sadržati samo slova.",
1919
"alpha_dash" => "Polje :attribute može sadržati samo slova, brojeve i povlake.",
2020
"alpha_num" => "Polje :attribute može sadržati samo slova i brojeve.",
21-
"array" => "Polje :attribute mora sadržati nekih stroj stavki.",
21+
"array" => "Polje :attribute mora sadržati nekih niz stavki.",
2222
"before" => "Polje :attribute mora biti datum pre :date.",
2323
"between" => [
2424
"numeric" => "Polje :attribute mora biti između :min - :max.",
@@ -55,7 +55,7 @@
5555
],
5656
"not_in" => "Odabrani element polja :attribute nije validan.",
5757
"numeric" => "Polje :attribute mora biti broj.",
58-
"regex" => "Polje :attribute format is invalid.",
58+
"regex" => "Format polja :attribute nije validan.",
5959
"required" => "Polje :attribute je obavezno.",
6060
"required_if" => "Polje :attribute je potrebno kada polje :other sadrži :value.",
6161
"required_with" => "Polje :attribute je potrebno kada polje :values je prisutan.",
@@ -69,7 +69,7 @@
6969
"string" => "Polje :attribute mora biti :size karaktera.",
7070
"array" => "Polje :attribute mora sadržati :size stavki.",
7171
],
72-
"string" => "Polje :attribute mora sadrzavati slova.",
72+
"string" => "Polje :attribute mora sadržati slova.",
7373
"timezone" => "Polje :attribute mora biti ispravna vremenska zona.",
7474
"unique" => "Polje :attribute već postoji.",
7575
"url" => "Format polja :attribute ne važi.",

0 commit comments

Comments
 (0)