1 // moment.js locale configuration
3 // author : Arjunkumar Krishnamoorthy : https://github.com/tk120404
6 // Comment out broken wrapper, see T145382
7 /*if (typeof define === 'function' && define.amd) {
8 define(['moment'], factory); // AMD
9 } else if (typeof exports === 'object') {
10 module.exports = factory(require('../moment')); // Node
12 factory((typeof global !== 'undefined' ? global : this).moment); // node or other global
41 return moment
.defineLocale('ta', {
42 months
: 'ஜனவரி_பிப்ரவரி_மார்ச்_ஏப்ரல்_மே_ஜூன்_ஜூலை_ஆகஸ்ட்_செப்டெம்பர்_அக்டோபர்_நவம்பர்_டிசம்பர்'.split('_'),
43 monthsShort
: 'ஜனவரி_பிப்ரவரி_மார்ச்_ஏப்ரல்_மே_ஜூன்_ஜூலை_ஆகஸ்ட்_செப்டெம்பர்_அக்டோபர்_நவம்பர்_டிசம்பர்'.split('_'),
44 weekdays
: 'ஞாயிற்றுக்கிழமை_திங்கட்கிழமை_செவ்வாய்கிழமை_புதன்கிழமை_வியாழக்கிழமை_வெள்ளிக்கிழமை_சனிக்கிழமை'.split('_'),
45 weekdaysShort
: 'ஞாயிறு_திங்கள்_செவ்வாய்_புதன்_வியாழன்_வெள்ளி_சனி'.split('_'),
46 weekdaysMin
: 'ஞா_தி_செ_பு_வி_வெ_ச'.split('_'),
52 LLL
: 'D MMMM YYYY, LT',
53 LLLL
: 'dddd, D MMMM YYYY, LT'
56 sameDay
: '[இன்று] LT',
57 nextDay
: '[நாளை] LT',
58 nextWeek
: 'dddd, LT',
59 lastDay
: '[நேற்று] LT',
60 lastWeek
: '[கடந்த வாரம்] dddd, LT',
66 s
: 'ஒரு சில விநாடிகள்',
78 /* preparse: function (string) {
79 return string.replace(/[௧௨௩௪௫௬௭௮௯௦]/g, function (match) {
80 return numberMap[match];
83 postformat: function (string) {
84 return string.replace(/\d/g, function (match) {
85 return symbolMap[match];
88 ordinalParse
: /\d{1,2}வது/,
89 ordinal : function (number
) {
90 return number
+ 'வது';
94 // refer http://ta.wikipedia.org/s/1er1
96 meridiem : function (hour
, minute
, isLower
) {
97 if (hour
>= 6 && hour
<= 10) {
99 } else if (hour
>= 10 && hour
<= 14) {
101 } else if (hour
>= 14 && hour
<= 18) {
103 } else if (hour
>= 18 && hour
<= 20) {
105 } else if (hour
>= 20 && hour
<= 24) {
107 } else if (hour
>= 0 && hour
<= 6) {
112 dow
: 0, // Sunday is the first day of the week.
113 doy
: 6 // The week that contains Jan 1st is the first week of the year.