Skip to content

Commit 888bdec

Browse files
feat: Add Marathi Language Support (#943)
* feat: Add Marathi Language Support * feat: Update date time format and add translations for shortWeekDays and shortMonths
1 parent 741e709 commit 888bdec

File tree

1 file changed

+50
-0
lines changed

1 file changed

+50
-0
lines changed

src/locale/mr_IN.ts

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
import { commonLocale } from './common';
2+
import type { Locale } from '../interface';
3+
4+
const locale: Locale = {
5+
...commonLocale,
6+
fieldDateFormat: 'DD-MM-YYYY',
7+
fieldDateTimeFormat: 'DD-MM-YYYY HH:mm:ss',
8+
fieldMonthFormat: 'MM-YYYY',
9+
locale: 'mr_IN',
10+
today: 'आज',
11+
now: 'आता',
12+
backToToday: 'आजवर परत जा',
13+
ok: 'ठीक आहे',
14+
clear: 'साफ करा',
15+
week: 'आठवडा',
16+
month: 'महिना',
17+
year: 'वर्ष',
18+
timeSelect: 'वेळ निवडा',
19+
dateSelect: 'दिनांक निवडा',
20+
weekSelect: 'आठवडा निवडा',
21+
monthSelect: 'महिना निवडा',
22+
yearSelect: 'वर्ष निवडा',
23+
decadeSelect: 'दशक निवडा',
24+
25+
previousMonth: 'मागील महिना (पेजअप)',
26+
nextMonth: 'पुढचा महिना (पेजडाउन)',
27+
previousYear: 'गेल्या वर्षी (Ctrl + left)',
28+
nextYear: 'पुढचे वर्ष (Ctrl + right)',
29+
previousDecade: 'मागील दशक',
30+
nextDecade: 'पुढचे दशक',
31+
previousCentury: 'मागील शतक',
32+
nextCentury: 'पुढचे शतक',
33+
shortWeekDays: ['रवि', 'सोम', 'मंगळ', 'बुध', 'गुरु', 'शुक्र', 'शनि'],
34+
shortMonths: [
35+
'जाने',
36+
'फेब्रु',
37+
'मार्च',
38+
'एप्रिल',
39+
'मे',
40+
'जून',
41+
'जुलै',
42+
'ऑगस्ट',
43+
'सप्टें',
44+
'ऑक्टो',
45+
'नोव्हें',
46+
'डिसें',
47+
],
48+
};
49+
50+
export default locale;

0 commit comments

Comments
 (0)