1 // moment.js locale configuration
2 // locale : chuvash (cv)
3 // author : Anatoly Mironov : https://github.com/mirontoli
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
16 return moment.defineLocale('cv', {
17 months : 'кăрлач_нарăс_пуш_ака_май_çĕртме_утă_çурла_авăн_юпа_чӳк_раштав'.split('_'),
18 monthsShort : 'кăр_нар_пуш_ака_май_çĕр_утă_çур_ав_юпа_чӳк_раш'.split('_'),
19 weekdays : 'вырсарникун_тунтикун_ытларикун_юнкун_кĕçнерникун_эрнекун_шăматкун'.split('_'),
20 weekdaysShort : 'выр_тун_ытл_юн_кĕç_эрн_шăм'.split('_'),
21 weekdaysMin : 'вр_тн_ыт_юн_кç_эр_шм'.split('_'),
26 LL : 'YYYY [çулхи] MMMM [уйăхĕн] D[-мĕшĕ]',
27 LLL : 'YYYY [çулхи] MMMM [уйăхĕн] D[-мĕшĕ], LT',
28 LLLL : 'dddd, YYYY [çулхи] MMMM [уйăхĕн] D[-мĕшĕ], LT'
31 sameDay: '[Паян] LT [сехетре]',
32 nextDay: '[Ыран] LT [сехетре]',
33 lastDay: '[Ĕнер] LT [сехетре]',
34 nextWeek: '[Çитес] dddd LT [сехетре]',
35 lastWeek: '[Иртнĕ] dddd LT [сехетре]',
39 future : function (output) {
40 var affix = /сехет$/i.exec(output) ? 'рен' : /çул$/i.exec(output) ? 'тан' : 'ран';
41 return output + affix;
56 ordinalParse: /\d{1,2}-мĕш/,
59 dow : 1, // Monday is the first day of the week.
60 doy : 7 // The week that contains Jan 1st is the first week of the year.