-
-
Notifications
You must be signed in to change notification settings - Fork 249
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #84 from CylonSK/slovak-czech-translation
Slovak and czech translations
- Loading branch information
Showing
3 changed files
with
113 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
<?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' => 'před :time', | ||
'from_now' => 'za :time', | ||
'after' => ':time později', | ||
'before' => ':time předtím', | ||
'year' => 'rok|:count roky|:count let', | ||
'month' => 'měsíc|:count měsíce|:count měsíců', | ||
'week' => 'týden|:count týdny|:count týdnů', | ||
'day' => 'den|:count dny|:count dní', | ||
'hour' => 'hodinu|:count hodiny|:count hodin', | ||
'minute' => 'minutu|:count minuty|:count minut', | ||
'second' => 'sekundu|:count sekundy|:count sekund', | ||
|
||
'january' => 'leden', | ||
'february' => 'únor', | ||
'march' => 'březen', | ||
'april' => 'duben', | ||
'may' => 'květen', | ||
'june' => 'červen', | ||
'july' => 'červenec', | ||
'august' => 'srpen', | ||
'september' => 'září', | ||
'october' => 'říjen', | ||
'november' => 'listopad', | ||
'december' => 'prosinec', | ||
|
||
'monday' => 'pondelí', | ||
'tuesday' => 'uterý', | ||
'wednesday' => 'středa', | ||
'thursday' => 'čtvrtek', | ||
'friday' => 'pátek', | ||
'saturday' => 'sobota', | ||
'sunday' => 'neděle', | ||
|
||
'year_ago' => 'rokem|[2,Inf]:count lety', | ||
'month_ago' => 'měsícem|[2,Inf]:count měsíci', | ||
'week_ago' => 'týdnem|[2,Inf]:count týdny', | ||
'day_ago' => 'dnem|[2,Inf]:count dny', | ||
'hour_ago' => 'hodinou|[2,Inf]:count hodinami', | ||
'minute_ago' => 'minútou|[2,Inf]:count minutami', | ||
'second_ago' => 'sekundou|[2,Inf]:count sekundami', | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
<?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' => 'pred :time', | ||
'from_now' => 'za :time', | ||
'after' => ':time neskôr', | ||
'before' => ':time predtým', | ||
'year' => 'rok|:count roky|:count rokov', | ||
'month' => 'mesiac|:count mesiace|:count mesiacov', | ||
'week' => 'týždeň|:count týždne|:count týždňov', | ||
'day' => 'deň|:count dni|:count dní', | ||
'hour' => 'hodinu|:count hodiny|:count hodín', | ||
'minute' => 'minútu|:count minúty|:count minút', | ||
'second' => 'sekundu|:count sekundy|:count sekúnd', | ||
|
||
'january' => 'január', | ||
'february' => 'február', | ||
'march' => 'marec', | ||
'april' => 'apríl', | ||
'may' => 'máj', | ||
'june' => 'jún', | ||
'july' => 'júl', | ||
'august' => 'august', | ||
'september' => 'september', | ||
'october' => 'október', | ||
'november' => 'november', | ||
'december' => 'december', | ||
|
||
'monday' => 'pondelok', | ||
'tuesday' => 'utorok', | ||
'wednesday' => 'streda', | ||
'thursday' => 'štvrtok', | ||
'friday' => 'piatok', | ||
'saturday' => 'sobota', | ||
'sunday' => 'nedeľa', | ||
|
||
'year_ago' => 'rokom|[2,Inf]:count rokmi', | ||
'month_ago' => 'mesiacom|[2,Inf]:count mesiacmi', | ||
'week_ago' => 'týždňom|[2,Inf]:count týždňami', | ||
'day_ago' => 'dňom|[2,Inf]:count dňami', | ||
'hour_ago' => 'hodinou|[2,Inf]:count hodinami', | ||
'minute_ago' => 'minútou|[2,Inf]:count minútami', | ||
'second_ago' => 'sekundou|[2,Inf]:count sekundami', | ||
|
||
); |