1 // moment.js locale configuration
3 // author : Arjunkumar Krishnamoorthy : https://github.com/tk120404
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
11 factory((typeof global
!== 'undefined' ? global
: this).moment
); // node or other global
39 return moment
.defineLocale('ta', {
40 months
: 'ஜனவரி_பிப்ரவரி_மார்ச்_ஏப்ரல்_மே_ஜூன்_ஜூலை_ஆகஸ்ட்_செப்டெம்பர்_அக்டோபர்_நவம்பர்_டிசம்பர்'.split('_'),
41 monthsShort
: 'ஜனவரி_பிப்ரவரி_மார்ச்_ஏப்ரல்_மே_ஜூன்_ஜூலை_ஆகஸ்ட்_செப்டெம்பர்_அக்டோபர்_நவம்பர்_டிசம்பர்'.split('_'),
42 weekdays
: 'ஞாயிற்றுக்கிழமை_திங்கட்கிழமை_செவ்வாய்கிழமை_புதன்கிழமை_வியாழக்கிழமை_வெள்ளிக்கிழமை_சனிக்கிழமை'.split('_'),
43 weekdaysShort
: 'ஞாயிறு_திங்கள்_செவ்வாய்_புதன்_வியாழன்_வெள்ளி_சனி'.split('_'),
44 weekdaysMin
: 'ஞா_தி_செ_பு_வி_வெ_ச'.split('_'),
50 LLL
: 'D MMMM YYYY, LT',
51 LLLL
: 'dddd, D MMMM YYYY, LT'
54 sameDay
: '[இன்று] LT',
55 nextDay
: '[நாளை] LT',
56 nextWeek
: 'dddd, LT',
57 lastDay
: '[நேற்று] LT',
58 lastWeek
: '[கடந்த வாரம்] dddd, LT',
64 s
: 'ஒரு சில விநாடிகள்',
76 /* preparse: function (string) {
77 return string.replace(/[௧௨௩௪௫௬௭௮௯௦]/g, function (match) {
78 return numberMap[match];
81 postformat: function (string) {
82 return string.replace(/\d/g, function (match) {
83 return symbolMap[match];
86 ordinalParse
: /\d{1,2}வது/,
87 ordinal : function (number
) {
88 return number
+ 'வது';
92 // refer http://ta.wikipedia.org/s/1er1
94 meridiem : function (hour
, minute
, isLower
) {
95 if (hour
>= 6 && hour
<= 10) {
97 } else if (hour
>= 10 && hour
<= 14) {
99 } else if (hour
>= 14 && hour
<= 18) {
101 } else if (hour
>= 18 && hour
<= 20) {
103 } else if (hour
>= 20 && hour
<= 24) {
105 } else if (hour
>= 0 && hour
<= 6) {
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.