Release note for Id83eda95
[mediawiki.git] / resources / lib / moment / locale / ta.js
blobd0356a3ef2ca383bfb5cbe79d72e8f2d9ccfc2be
1 // moment.js locale configuration
2 // locale : tamil (ta)
3 // author : Arjunkumar Krishnamoorthy : https://github.com/tk120404
5 (function (factory) {
6     if (typeof define === 'function' && define.amd) {
7         define(['moment'], factory); // AMD
8     } else if (typeof exports === 'object') {
9         module.exports = factory(require('../moment')); // Node
10     } else {
11         factory((typeof global !== 'undefined' ? global : this).moment); // node or other global
12     }
13 }(function (moment) {
14     /*var symbolMap = {
15             '1': '௧',
16             '2': '௨',
17             '3': '௩',
18             '4': '௪',
19             '5': '௫',
20             '6': '௬',
21             '7': '௭',
22             '8': '௮',
23             '9': '௯',
24             '0': '௦'
25         },
26         numberMap = {
27             '௧': '1',
28             '௨': '2',
29             '௩': '3',
30             '௪': '4',
31             '௫': '5',
32             '௬': '6',
33             '௭': '7',
34             '௮': '8',
35             '௯': '9',
36             '௦': '0'
37         }; */
39     return moment.defineLocale('ta', {
40         months : 'ஜனவரி_பிப்ரவரி_மார்ச்_ஏப்ரல்_மே_ஜூன்_ஜூலை_ஆகஸ்ட்_செப்டெம்பர்_அக்டோபர்_நவம்பர்_டிசம்பர்'.split('_'),
41         monthsShort : 'ஜனவரி_பிப்ரவரி_மார்ச்_ஏப்ரல்_மே_ஜூன்_ஜூலை_ஆகஸ்ட்_செப்டெம்பர்_அக்டோபர்_நவம்பர்_டிசம்பர்'.split('_'),
42         weekdays : 'ஞாயிற்றுக்கிழமை_திங்கட்கிழமை_செவ்வாய்கிழமை_புதன்கிழமை_வியாழக்கிழமை_வெள்ளிக்கிழமை_சனிக்கிழமை'.split('_'),
43         weekdaysShort : 'ஞாயிறு_திங்கள்_செவ்வாய்_புதன்_வியாழன்_வெள்ளி_சனி'.split('_'),
44         weekdaysMin : 'ஞா_தி_செ_பு_வி_வெ_ச'.split('_'),
45         longDateFormat : {
46             LT : 'HH:mm',
47             LTS : 'LT:ss',
48             L : 'DD/MM/YYYY',
49             LL : 'D MMMM YYYY',
50             LLL : 'D MMMM YYYY, LT',
51             LLLL : 'dddd, D MMMM YYYY, LT'
52         },
53         calendar : {
54             sameDay : '[இன்று] LT',
55             nextDay : '[நாளை] LT',
56             nextWeek : 'dddd, LT',
57             lastDay : '[நேற்று] LT',
58             lastWeek : '[கடந்த வாரம்] dddd, LT',
59             sameElse : 'L'
60         },
61         relativeTime : {
62             future : '%s இல்',
63             past : '%s முன்',
64             s : 'ஒரு சில விநாடிகள்',
65             m : 'ஒரு நிமிடம்',
66             mm : '%d நிமிடங்கள்',
67             h : 'ஒரு மணி நேரம்',
68             hh : '%d மணி நேரம்',
69             d : 'ஒரு நாள்',
70             dd : '%d நாட்கள்',
71             M : 'ஒரு மாதம்',
72             MM : '%d மாதங்கள்',
73             y : 'ஒரு வருடம்',
74             yy : '%d ஆண்டுகள்'
75         },
76 /*        preparse: function (string) {
77             return string.replace(/[௧௨௩௪௫௬௭௮௯௦]/g, function (match) {
78                 return numberMap[match];
79             });
80         },
81         postformat: function (string) {
82             return string.replace(/\d/g, function (match) {
83                 return symbolMap[match];
84             });
85         },*/
86         ordinalParse: /\d{1,2}வது/,
87         ordinal : function (number) {
88             return number + 'வது';
89         },
92         // refer http://ta.wikipedia.org/s/1er1
94         meridiem : function (hour, minute, isLower) {
95             if (hour >= 6 && hour <= 10) {
96                 return ' காலை';
97             } else if (hour >= 10 && hour <= 14) {
98                 return ' நண்பகல்';
99             } else if (hour >= 14 && hour <= 18) {
100                 return ' எற்பாடு';
101             } else if (hour >= 18 && hour <= 20) {
102                 return ' மாலை';
103             } else if (hour >= 20 && hour <= 24) {
104                 return ' இரவு';
105             } else if (hour >= 0 && hour <= 6) {
106                 return ' வைகறை';
107             }
108         },
109         week : {
110             dow : 0, // Sunday is the first day of the week.
111             doy : 6  // The week that contains Jan 1st is the first week of the year.
112         }
113     });
114 }));