增加基本项目配置
This commit is contained in:
24
node_modules/dayjs/esm/locale/lv.js
generated
vendored
Normal file
24
node_modules/dayjs/esm/locale/lv.js
generated
vendored
Normal file
@ -0,0 +1,24 @@
|
||||
// Latvian [lv]
|
||||
import dayjs from '../index';
|
||||
var locale = {
|
||||
name: 'lv',
|
||||
weekdays: 'svētdiena_pirmdiena_otrdiena_trešdiena_ceturtdiena_piektdiena_sestdiena'.split('_'),
|
||||
months: 'janvāris_februāris_marts_aprīlis_maijs_jūnijs_jūlijs_augusts_septembris_oktobris_novembris_decembris'.split('_'),
|
||||
weekStart: 1,
|
||||
weekdaysShort: 'Sv_P_O_T_C_Pk_S'.split('_'),
|
||||
monthsShort: 'jan_feb_mar_apr_mai_jūn_jūl_aug_sep_okt_nov_dec'.split('_'),
|
||||
weekdaysMin: 'Sv_P_O_T_C_Pk_S'.split('_'),
|
||||
ordinal: function ordinal(n) {
|
||||
return n;
|
||||
},
|
||||
formats: {
|
||||
LT: 'HH:mm',
|
||||
LTS: 'HH:mm:ss',
|
||||
L: 'DD.MM.YYYY.',
|
||||
LL: 'YYYY. [gada] D. MMMM',
|
||||
LLL: 'YYYY. [gada] D. MMMM, HH:mm',
|
||||
LLLL: 'YYYY. [gada] D. MMMM, dddd, HH:mm'
|
||||
}
|
||||
};
|
||||
dayjs.locale(locale, null, true);
|
||||
export default locale;
|
Reference in New Issue
Block a user