Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed typo in 'August' in Serbian; Added Serbo-croatian (sh.php) for backwards compatibility. #163

Merged
merged 2 commits into from
Oct 26, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 48 additions & 0 deletions src/Lang/sh.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
<?php

return array(

/*
|--------------------------------------------------------------------------
| Date Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the date library. Each line can
| have a singular and plural translation separated by a '|'.
|
*/

'ago' => 'pre :time',
'from_now' => 'za :time',
'after' => 'nakon :time',
'before' => ':time raniјe',
'year' => ':count godina|:count godine|:count godina',
'month' => ':count mesec|:count meseca|:count meseci',
'week' => ':count nedelja|:count nedelje|:count nedelja',
'day' => ':count dan|:count dana|:count dana',
'hour' => ':count čas|:count časa|:count časova',
'minute' => ':count minut|:count minuta|:count minuta',
'second' => ':count sekund|:count sekunda|:count sekundi',

'january' => 'јanuar',
'february' => 'februar',
'march' => 'mart',
'april' => 'april',
'may' => 'maј',
'june' => 'јun',
'july' => 'јul',
'august' => 'avgust',
'september' => 'septembar',
'october' => 'oktobar',
'november' => 'novembar',
'december' => 'decembar',

'monday' => 'ponedeljak',
'tuesday' => 'utorak',
'wednesday' => 'sreda',
'thursday' => 'četvrtak',
'friday' => 'petak',
'saturday' => 'subota',
'sunday' => 'nedelja',

);
2 changes: 1 addition & 1 deletion src/Lang/sr.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
'may' => 'мај',
'june' => 'јун',
'july' => 'јул',
'august' => 'авгус',
'august' => 'август',
'september' => 'септембар',
'october' => 'октобар',
'november' => 'новембар',
Expand Down