NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/dayjs/esm/locale/gu.js
2023-09-14 14:47:11 +08:00

38 lines
1.6 KiB
Java

// 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;