Skip to content

Commit 886536c

Browse files
committed
Added Korean (ko-kr) translation.
1 parent 39c0246 commit 886536c

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

src/flipclock/js/lang/ko-kr.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 Korean Language Pack
5+
*
6+
* This class will used to translate tokens into the Korean language.
7+
*
8+
*/
9+
10+
FlipClock.Lang.Korean = {
11+
12+
'years' : '년',
13+
'months' : '월',
14+
'days' : '일',
15+
'hours' : '시',
16+
'minutes' : '분',
17+
'seconds' : '초'
18+
19+
};
20+
21+
/* Create various aliases for convenience */
22+
23+
FlipClock.Lang['ko'] = FlipClock.Lang.Korean;
24+
FlipClock.Lang['ko-kr'] = FlipClock.Lang.Korean;
25+
FlipClock.Lang['korean'] = FlipClock.Lang.Korean;
26+
27+
}(jQuery));

0 commit comments

Comments
 (0)