Skip to content

Commit a98d97c

Browse files
committed
Merge pull request #264 from eka7a/patch-1
Added Turkish Language File
2 parents b8f6562 + 6e4d881 commit a98d97c

File tree

1 file changed

+27
-0
lines changed
  • src/flipclock/js/lang

1 file changed

+27
-0
lines changed

src/flipclock/js/lang/tr-tr

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)