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