Skip to content

Commit 79a7afa

Browse files
author
peter.siman
committed
Slovak and czech translations
1 parent 39c0246 commit 79a7afa

File tree

2 files changed

+54
-0
lines changed

2 files changed

+54
-0
lines changed

src/flipclock/js/lang/cz-cs.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['cz'] = FlipClock.Lang.Czech;
24+
FlipClock.Lang['cz-cs'] = FlipClock.Lang.Czech;
25+
FlipClock.Lang['czech'] = FlipClock.Lang.Czech;
26+
27+
}(jQuery));

src/flipclock/js/lang/sk-sk.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 Slovak Language Pack
5+
*
6+
* This class will used to translate tokens into the Slovak language.
7+
*
8+
*/
9+
10+
FlipClock.Lang.Slovak = {
11+
12+
'years' : 'Roky',
13+
'months' : 'Mesiace',
14+
'days' : 'Dni',
15+
'hours' : 'Hodiny',
16+
'minutes' : 'Minúty',
17+
'seconds' : 'Sekundy'
18+
19+
};
20+
21+
/* Create various aliases for convenience */
22+
23+
FlipClock.Lang['sk'] = FlipClock.Lang.Slovak;
24+
FlipClock.Lang['sk-sk'] = FlipClock.Lang.Slovak;
25+
FlipClock.Lang['slovak'] = FlipClock.Lang.Slovak;
26+
27+
}(jQuery));

0 commit comments

Comments
 (0)