We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 919d988 + e981e5a commit 4d747dbCopy full SHA for 4d747db
1 file changed
src/flipclock/js/lang/zh-tw.js
@@ -0,0 +1,25 @@
1
+(function($) {
2
+
3
+ /**
4
+ * FlipClock Traditional Chinese Language Pack
5
+ *
6
+ * This class will used to translate tokens into the Traditional Chinese.
7
8
+ */
9
10
+ FlipClock.Lang.TraditionalChinese = {
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['zh-tw'] = FlipClock.Lang.TraditionalChinese;
24
25
+}(jQuery));
0 commit comments