LaravelTest
97 строк · 3.9 Кб
1//! moment.js locale configuration
2//! locale : Telugu [te]
3//! author : Krishna Chaitanya Thota : https://github.com/kcthota
4
5;(function (global, factory) {6typeof exports === 'object' && typeof module !== 'undefined'7&& typeof require === 'function' ? factory(require('../moment')) :8typeof define === 'function' && define.amd ? define(['../moment'], factory) :9factory(global.moment)10}(this, (function (moment) { 'use strict';11
12//! moment.js locale configuration13
14var te = moment.defineLocale('te', {15months: 'జనవరి_ఫిబ్రవరి_మార్చి_ఏప్రిల్_మే_జూన్_జులై_ఆగస్టు_సెప్టెంబర్_అక్టోబర్_నవంబర్_డిసెంబర్'.split(16'_'17),18monthsShort: 'జన._ఫిబ్ర._మార్చి_ఏప్రి._మే_జూన్_జులై_ఆగ._సెప్._అక్టో._నవ._డిసె.'.split(19'_'20),21monthsParseExact: true,22weekdays: 'ఆదివారం_సోమవారం_మంగళవారం_బుధవారం_గురువారం_శుక్రవారం_శనివారం'.split(23'_'24),25weekdaysShort: 'ఆది_సోమ_మంగళ_బుధ_గురు_శుక్ర_శని'.split('_'),26weekdaysMin: 'ఆ_సో_మం_బు_గు_శు_శ'.split('_'),27longDateFormat: {28LT: 'A h:mm',29LTS: 'A h:mm:ss',30L: 'DD/MM/YYYY',31LL: 'D MMMM YYYY',32LLL: 'D MMMM YYYY, A h:mm',33LLLL: 'dddd, D MMMM YYYY, A h:mm',34},35calendar: {36sameDay: '[నేడు] LT',37nextDay: '[రేపు] LT',38nextWeek: 'dddd, LT',39lastDay: '[నిన్న] LT',40lastWeek: '[గత] dddd, LT',41sameElse: 'L',42},43relativeTime: {44future: '%s లో',45past: '%s క్రితం',46s: 'కొన్ని క్షణాలు',47ss: '%d సెకన్లు',48m: 'ఒక నిమిషం',49mm: '%d నిమిషాలు',50h: 'ఒక గంట',51hh: '%d గంటలు',52d: 'ఒక రోజు',53dd: '%d రోజులు',54M: 'ఒక నెల',55MM: '%d నెలలు',56y: 'ఒక సంవత్సరం',57yy: '%d సంవత్సరాలు',58},59dayOfMonthOrdinalParse: /\d{1,2}వ/,60ordinal: '%dవ',61meridiemParse: /రాత్రి|ఉదయం|మధ్యాహ్నం|సాయంత్రం/,62meridiemHour: function (hour, meridiem) {63if (hour === 12) {64hour = 0;65}66if (meridiem === 'రాత్రి') {67return hour < 4 ? hour : hour + 12;68} else if (meridiem === 'ఉదయం') {69return hour;70} else if (meridiem === 'మధ్యాహ్నం') {71return hour >= 10 ? hour : hour + 12;72} else if (meridiem === 'సాయంత్రం') {73return hour + 12;74}75},76meridiem: function (hour, minute, isLower) {77if (hour < 4) {78return 'రాత్రి';79} else if (hour < 10) {80return 'ఉదయం';81} else if (hour < 17) {82return 'మధ్యాహ్నం';83} else if (hour < 20) {84return 'సాయంత్రం';85} else {86return 'రాత్రి';87}88},89week: {90dow: 0, // Sunday is the first day of the week.91doy: 6, // The week that contains Jan 6th is the first week of the year.92},93});94
95return te;96
97})));98