1 // moment.js language configuration
2 // language : tamil (ta)
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(window
.moment
); // Browser global
39 return moment
.lang('ta', {
40 months
: 'ஜனவரி_பிப்ரவரி_மார்ச்_ஏப்ரல்_மே_ஜூன்_ஜூலை_ஆகஸ்ட்_செப்டெம்பர்_அக்டோபர்_நவம்பர்_டிசம்பர்'.split("_"),
41 monthsShort
: 'ஜனவரி_பிப்ரவரி_மார்ச்_ஏப்ரல்_மே_ஜூன்_ஜூலை_ஆகஸ்ட்_செப்டெம்பர்_அக்டோபர்_நவம்பர்_டிசம்பர்'.split("_"),
42 weekdays
: 'ஞாயிற்றுக்கிழமை_திங்கட்கிழமை_செவ்வாய்கிழமை_புதன்கிழமை_வியாழக்கிழமை_வெள்ளிக்கிழமை_சனிக்கிழமை'.split("_"),
43 weekdaysShort
: 'ஞாயிறு_திங்கள்_செவ்வாய்_புதன்_வியாழன்_வெள்ளி_சனி'.split("_"),
44 weekdaysMin
: 'ஞா_தி_செ_பு_வி_வெ_ச'.split("_"),
49 LLL
: "D MMMM YYYY, LT",
50 LLLL
: "dddd, D MMMM YYYY, LT"
53 sameDay
: '[இன்று] LT',
54 nextDay
: '[நாளை] LT',
55 nextWeek
: 'dddd, LT',
56 lastDay
: '[நேற்று] LT',
57 lastWeek
: '[கடந்த வாரம்] dddd, LT',
63 s
: "ஒரு சில விநாடிகள்",
75 /* preparse: function (string) {
76 return string.replace(/[௧௨௩௪௫௬௭௮௯௦]/g, function (match) {
77 return numberMap[match];
80 postformat: function (string) {
81 return string.replace(/\d/g, function (match) {
82 return symbolMap[match];
85 ordinal : function (number
) {
86 return number
+ 'வது';
90 // refer http://ta.wikipedia.org/s/1er1
92 meridiem : function (hour
, minute
, isLower
) {
93 if (hour
>= 6 && hour
<= 10) {
95 } else if (hour
>= 10 && hour
<= 14) {
97 } else if (hour
>= 14 && hour
<= 18) {
99 } else if (hour
>= 18 && hour
<= 20) {
101 } else if (hour
>= 20 && hour
<= 24) {
103 } else if (hour
>= 0 && hour
<= 6) {
108 dow
: 0, // Sunday is the first day of the week.
109 doy
: 6 // The week that contains Jan 1st is the first week of the year.