货无忧
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.
 
 
 
 
 

38 lines
1.6 KiB

// Gujarati [gu]
import dayjs from '../index';
var locale = {
name: 'gu',
weekdays: 'રવિર_સમવર_મગળવર_બર_ગર_શરવર_શનિર'.split('_'),
months: 'જઆર_ફઆર_મચ_એપિલ_મ_જન_જઈ_ઑગસટ_સપબર_ઑકબર_નવબર_ડિબર'.split('_'),
weekdaysShort: 'રવિ_સમ_મગળ_બ_ગ_શર_શનિ'.split('_'),
monthsShort: 'જ._ફ._મચ_એપિ._મ_જન_જ._ઑગ._સપ._ઑક._નવ._ડિ.'.split('_'),
weekdaysMin: 'ર_સ_મ_બ_ગ_શ_શ'.split('_'),
ordinal: function ordinal(n) {
return n;
},
formats: {
LT: 'A h:mm વ',
LTS: 'A h:mm:ss વ',
L: 'DD/MM/YYYY',
LL: 'D MMMM YYYY',
LLL: 'D MMMM YYYY, A h:mm વ',
LLLL: 'dddd, D MMMM YYYY, A h:mm વ'
},
relativeTime: {
future: '%s મ',
past: '%s પહલ',
s: 'અમક પળ',
m: 'એક મિિટ',
mm: '%d મિિટ',
h: 'એક કલક',
hh: '%d કલક',
d: 'એક દિવસ',
dd: '%d દિવસ',
M: 'એક મહિ',
MM: '%d મહિ',
y: 'એક વરષ',
yy: '%d વરષ'
}
};
dayjs.locale(locale, null, true);
export default locale;