We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a98d97c + 886536c commit 6e1e09eCopy full SHA for 6e1e09e
1 file changed
src/flipclock/js/lang/ko-kr.js
@@ -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