1 //! moment.js locale configuration
2 //! locale : Telugu [te]
3 //! author : Krishna Chaitanya Thota : https://github.com/kcthota
5 ;(function (global, factory) {
6 typeof exports === 'object' && typeof module !== 'undefined'
7 && typeof require === 'function' ? factory(require('../moment')) :
8 typeof define === 'function' && define.amd ? define(['../moment'], factory) :
10 }(this, (function (moment) { 'use strict';
12 //! moment.js locale configuration
14 var te = moment.defineLocale('te', {
15 months: 'జనవరి_ఫిబ్రవరి_మార్చి_ఏప్రిల్_మే_జూన్_జులై_ఆగస్టు_సెప్టెంబర్_అక్టోబర్_నవంబర్_డిసెంబర్'.split(
18 monthsShort: 'జన._ఫిబ్ర._మార్చి_ఏప్రి._మే_జూన్_జులై_ఆగ._సెప్._అక్టో._నవ._డిసె.'.split(
21 monthsParseExact: true,
22 weekdays: 'ఆదివారం_సోమవారం_మంగళవారం_బుధవారం_గురువారం_శుక్రవారం_శనివారం'.split(
25 weekdaysShort: 'ఆది_సోమ_మంగళ_బుధ_గురు_శుక్ర_శని'.split('_'),
26 weekdaysMin: 'ఆ_సో_మం_బు_గు_శు_శ'.split('_'),
32 LLL: 'D MMMM YYYY, A h:mm',
33 LLLL: 'dddd, D MMMM YYYY, A h:mm',
39 lastDay: '[నిన్న] LT',
40 lastWeek: '[గత] dddd, LT',
59 dayOfMonthOrdinalParse: /\d{1,2}వ/,
61 meridiemParse: /రాత్రి|ఉదయం|మధ్యాహ్నం|సాయంత్రం/,
62 meridiemHour: function (hour, meridiem) {
66 if (meridiem === 'రాత్రి') {
67 return hour < 4 ? hour : hour + 12;
68 } else if (meridiem === 'ఉదయం') {
70 } else if (meridiem === 'మధ్యాహ్నం') {
71 return hour >= 10 ? hour : hour + 12;
72 } else if (meridiem === 'సాయంత్రం') {
76 meridiem: function (hour, minute, isLower) {
79 } else if (hour < 10) {
81 } else if (hour < 17) {
83 } else if (hour < 20) {
90 dow: 0, // Sunday is the first day of the week.
91 doy: 6, // The week that contains Jan 6th is the first week of the year.