Skip to content

Commit

Permalink
Merge pull request #84 from CylonSK/slovak-czech-translation
Browse files Browse the repository at this point in the history
Slovak and czech translations
  • Loading branch information
jenssegers committed Feb 8, 2015
2 parents 0733a49 + 32a65db commit 28d0cd3
Show file tree
Hide file tree
Showing 3 changed files with 113 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ This package contains language files for the following languages:
- Croatian
- Chinese Simplified
- Chinese Traditional
- Czech
- Danish
- Dutch
- English
Expand All @@ -54,6 +55,7 @@ This package contains language files for the following languages:
- Russian
- Thai
- Serbian
- Slovak
- Spanish
- Swedish (incomplete)
- Turkish
Expand Down
55 changes: 55 additions & 0 deletions src/lang/cs/date.php
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',
);
56 changes: 56 additions & 0 deletions src/lang/sk/date.php
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',

);

0 comments on commit 28d0cd3

Please sign in to comment.