对接烟台app的h5页面
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

63 lines
2.0 KiB

!(function (e, t) {
if ('object' == typeof exports && 'undefined' != typeof module) {
module.exports = t(require('dayjs'));
} else {
if ('function' == typeof define && define.amd) {
define(['dayjs'], t);
} else {
(e = 'undefined' != typeof globalThis ? globalThis : e || self).dayjs_locale_sv = t(e.dayjs);
}
}
})(this, function (e) {
'use strict';
function t(e) {
return e && 'object' == typeof e && 'default' in e
? e
: {
default: e
};
}
var a = t(e);
var d = {
name: 'sv',
weekdays: 'söndag_måndag_tisdag_onsdag_torsdag_fredag_lördag'.split('_'),
weekdaysShort: 'sön_mån_tis_ons_tor_fre_lör'.split('_'),
weekdaysMin: 'sö_må_ti_on_to_fr_lö'.split('_'),
months: 'januari_februari_mars_april_maj_juni_juli_augusti_september_oktober_november_december'.split('_'),
monthsShort: 'jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec'.split('_'),
weekStart: 1,
yearStart: 4,
ordinal: function (e) {
var t = e % 10;
return '[' + e + (1 === t || 2 === t ? 'a' : 'e') + ']';
},
formats: {
LT: 'HH:mm',
LTS: 'HH:mm:ss',
L: 'YYYY-MM-DD',
LL: 'D MMMM YYYY',
LLL: 'D MMMM YYYY [kl.] HH:mm',
LLLL: 'dddd D MMMM YYYY [kl.] HH:mm',
lll: 'D MMM YYYY HH:mm',
llll: 'ddd D MMM YYYY HH:mm'
},
relativeTime: {
future: 'om %s',
past: 'för %s sedan',
s: 'några sekunder',
m: 'en minut',
mm: '%d minuter',
h: 'en timme',
hh: '%d timmar',
d: 'en dag',
dd: '%d dagar',
M: 'en månad',
MM: '%d månader',
y: 'ett år',
yy: '%d år'
}
};
a.default.locale(d, null, true);
return d;
});