We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b8f6562 + 6e4d881 commit a98d97cCopy full SHA for a98d97c
1 file changed
src/flipclock/js/lang/tr-tr
@@ -0,0 +1,27 @@
1
+(function($) {
2
+
3
+ /**
4
+ * FlipClock Turkish Language Pack
5
+ *
6
+ * This class will used to translate tokens into the Turkish language.
7
8
+ */
9
10
+ FlipClock.Lang.Turkish = {
11
12
+ 'years' : 'Yıl',
13
+ 'months' : 'Ay',
14
+ 'days' : 'Gün',
15
+ 'hours' : 'Saat',
16
+ 'minutes' : 'Dakika',
17
+ 'seconds' : 'Saniye'
18
19
+ };
20
21
+ /* Create various aliases for convenience */
22
23
+ FlipClock.Lang['tr'] = FlipClock.Lang.Turkish;
24
+ FlipClock.Lang['tr-tr'] = FlipClock.Lang.Turkish;
25
+ FlipClock.Lang['turkish'] = FlipClock.Lang.Turkish;
26
27
+}(jQuery));
0 commit comments