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

// Punjabi (India) [pa-in]
import dayjs from '../index';
var locale = {
name: 'pa-in',
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;