增加基本项目配置
This commit is contained in:
39
node_modules/dayjs/esm/locale/fo.js
generated
vendored
Normal file
39
node_modules/dayjs/esm/locale/fo.js
generated
vendored
Normal file
@ -0,0 +1,39 @@
|
||||
// Faroese [fo]
|
||||
import dayjs from '../index';
|
||||
var locale = {
|
||||
name: 'fo',
|
||||
weekdays: 'sunnudagur_mánadagur_týsdagur_mikudagur_hósdagur_fríggjadagur_leygardagur'.split('_'),
|
||||
months: 'januar_februar_mars_apríl_mai_juni_juli_august_september_oktober_november_desember'.split('_'),
|
||||
weekStart: 1,
|
||||
weekdaysShort: 'sun_mán_týs_mik_hós_frí_ley'.split('_'),
|
||||
monthsShort: 'jan_feb_mar_apr_mai_jun_jul_aug_sep_okt_nov_des'.split('_'),
|
||||
weekdaysMin: 'su_má_tý_mi_hó_fr_le'.split('_'),
|
||||
ordinal: function ordinal(n) {
|
||||
return n;
|
||||
},
|
||||
formats: {
|
||||
LT: 'HH:mm',
|
||||
LTS: 'HH:mm:ss',
|
||||
L: 'DD/MM/YYYY',
|
||||
LL: 'D MMMM YYYY',
|
||||
LLL: 'D MMMM YYYY HH:mm',
|
||||
LLLL: 'dddd D. MMMM, YYYY HH:mm'
|
||||
},
|
||||
relativeTime: {
|
||||
future: 'um %s',
|
||||
past: '%s síðani',
|
||||
s: 'fá sekund',
|
||||
m: 'ein minuttur',
|
||||
mm: '%d minuttir',
|
||||
h: 'ein tími',
|
||||
hh: '%d tímar',
|
||||
d: 'ein dagur',
|
||||
dd: '%d dagar',
|
||||
M: 'ein mánaður',
|
||||
MM: '%d mánaðir',
|
||||
y: 'eitt ár',
|
||||
yy: '%d ár'
|
||||
}
|
||||
};
|
||||
dayjs.locale(locale, null, true);
|
||||
export default locale;
|
Reference in New Issue
Block a user