mirror of
https://github.com/discourse/discourse.git
synced 2024-12-02 06:33:55 +08:00
cdb7ddc258
We updated version of moment and moment-timezone as our current versions are outdated making Discourse Dates broken on places where timezone had updates, like here in Brazil. This also update highlightJS to the latest version and corrected a test that relied on a no longer supported locale in moment.
74 lines
2.8 KiB
JavaScript
74 lines
2.8 KiB
JavaScript
//! moment.js locale configuration
|
||
//! locale : Chuvash [cv]
|
||
//! author : Anatoly Mironov : https://github.com/mirontoli
|
||
|
||
;(function (global, factory) {
|
||
typeof exports === 'object' && typeof module !== 'undefined'
|
||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||
factory(global.moment)
|
||
}(this, (function (moment) { 'use strict';
|
||
|
||
//! moment.js locale configuration
|
||
|
||
var cv = moment.defineLocale('cv', {
|
||
months: 'кӑрлач_нарӑс_пуш_ака_май_ҫӗртме_утӑ_ҫурла_авӑн_юпа_чӳк_раштав'.split(
|
||
'_'
|
||
),
|
||
monthsShort: 'кӑр_нар_пуш_ака_май_ҫӗр_утӑ_ҫур_авн_юпа_чӳк_раш'.split('_'),
|
||
weekdays: 'вырсарникун_тунтикун_ытларикун_юнкун_кӗҫнерникун_эрнекун_шӑматкун'.split(
|
||
'_'
|
||
),
|
||
weekdaysShort: 'выр_тун_ытл_юн_кӗҫ_эрн_шӑм'.split('_'),
|
||
weekdaysMin: 'вр_тн_ыт_юн_кҫ_эр_шм'.split('_'),
|
||
longDateFormat: {
|
||
LT: 'HH:mm',
|
||
LTS: 'HH:mm:ss',
|
||
L: 'DD-MM-YYYY',
|
||
LL: 'YYYY [ҫулхи] MMMM [уйӑхӗн] D[-мӗшӗ]',
|
||
LLL: 'YYYY [ҫулхи] MMMM [уйӑхӗн] D[-мӗшӗ], HH:mm',
|
||
LLLL: 'dddd, YYYY [ҫулхи] MMMM [уйӑхӗн] D[-мӗшӗ], HH:mm',
|
||
},
|
||
calendar: {
|
||
sameDay: '[Паян] LT [сехетре]',
|
||
nextDay: '[Ыран] LT [сехетре]',
|
||
lastDay: '[Ӗнер] LT [сехетре]',
|
||
nextWeek: '[Ҫитес] dddd LT [сехетре]',
|
||
lastWeek: '[Иртнӗ] dddd LT [сехетре]',
|
||
sameElse: 'L',
|
||
},
|
||
relativeTime: {
|
||
future: function (output) {
|
||
var affix = /сехет$/i.exec(output)
|
||
? 'рен'
|
||
: /ҫул$/i.exec(output)
|
||
? 'тан'
|
||
: 'ран';
|
||
return output + affix;
|
||
},
|
||
past: '%s каялла',
|
||
s: 'пӗр-ик ҫеккунт',
|
||
ss: '%d ҫеккунт',
|
||
m: 'пӗр минут',
|
||
mm: '%d минут',
|
||
h: 'пӗр сехет',
|
||
hh: '%d сехет',
|
||
d: 'пӗр кун',
|
||
dd: '%d кун',
|
||
M: 'пӗр уйӑх',
|
||
MM: '%d уйӑх',
|
||
y: 'пӗр ҫул',
|
||
yy: '%d ҫул',
|
||
},
|
||
dayOfMonthOrdinalParse: /\d{1,2}-мӗш/,
|
||
ordinal: '%d-мӗш',
|
||
week: {
|
||
dow: 1, // Monday is the first day of the week.
|
||
doy: 7, // The week that contains Jan 7th is the first week of the year.
|
||
},
|
||
});
|
||
|
||
return cv;
|
||
|
||
})));
|