Skip to content

Commit bec06f4

Browse files
committed
Merge pull request #209 from wassy123/master
Added Czech language pack
2 parents 39c0246 + 15fc1ab commit bec06f4

1 file changed

Lines changed: 27 additions & 0 deletions

File tree

src/flipclock/js/lang/cs-cz.js

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
(function($) {
2+
3+
/**
4+
* FlipClock Czech Language Pack
5+
*
6+
* This class will used to translate tokens into the Czech language.
7+
*
8+
*/
9+
10+
FlipClock.Lang.Czech = {
11+
12+
'years' : 'Roky',
13+
'months' : 'Měsíce',
14+
'days' : 'Dny',
15+
'hours' : 'Hodiny',
16+
'minutes' : 'Minuty',
17+
'seconds' : 'Sekundy'
18+
19+
};
20+
21+
/* Create various aliases for convenience */
22+
23+
FlipClock.Lang['cs'] = FlipClock.Lang.Czech;
24+
FlipClock.Lang['cs-cz'] = FlipClock.Lang.Czech;
25+
FlipClock.Lang['czech'] = FlipClock.Lang.Czech;
26+
27+
}(jQuery));

0 commit comments

Comments
 (0)