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.
34 lines
1.2 KiB
34 lines
1.2 KiB
import type { Locale } from '../interface';
|
|
|
|
const locale: Locale = {
|
|
locale: 'hi_IN',
|
|
today: 'आज',
|
|
now: 'अभी',
|
|
backToToday: 'आज तक',
|
|
ok: 'ठीक',
|
|
clear: 'स्पष्ट',
|
|
month: 'महीना',
|
|
year: 'साल',
|
|
timeSelect: 'समय का चयन करें',
|
|
dateSelect: 'तारीख़ चुनें',
|
|
weekSelect: 'एक सप्ताह चुनें',
|
|
monthSelect: 'एक महीना चुनें',
|
|
yearSelect: 'एक वर्ष चुनें',
|
|
decadeSelect: 'एक दशक चुनें',
|
|
yearFormat: 'YYYY',
|
|
dateFormat: 'M/D/YYYY',
|
|
dayFormat: 'D',
|
|
dateTimeFormat: 'M/D/YYYY HH:mm:ss',
|
|
monthBeforeYear: true,
|
|
previousMonth: 'पिछला महीना (पेजअप)',
|
|
nextMonth: 'अगले महीने (पेजडाउन)',
|
|
previousYear: 'पिछले साल (Ctrl + बाएं)',
|
|
nextYear: 'अगले साल (Ctrl + दाहिना)',
|
|
previousDecade: 'पिछला दशक',
|
|
nextDecade: 'अगले दशक',
|
|
previousCentury: 'पीछ्ली शताब्दी',
|
|
nextCentury: 'अगली सदी',
|
|
};
|
|
|
|
export default locale;
|