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

// Telugu [te]
import dayjs from '../index';
var locale = {
name: 'te',
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;