|
| 1 | +import type { Locale } from '../interface'; |
| 2 | + |
| 3 | +const locale: Locale = { |
| 4 | + locale: 'ml_IN', |
| 5 | + today: 'ഇന്ന്', |
| 6 | + now: 'ഇപ്പോൾ', |
| 7 | + backToToday: 'ഇന്നത്തെ ദിവസത്തിലേക്ക് തിരിച്ചു പോകുക', |
| 8 | + ok: 'ശരിയാണ്', |
| 9 | + clear: 'നീക്കം ചെയ്യുക', |
| 10 | + month: 'മാസം', |
| 11 | + year: 'വർഷം', |
| 12 | + timeSelect: 'സമയം തിരഞ്ഞെടുക്കുക', |
| 13 | + dateSelect: 'ദിവസം തിരഞ്ഞെടുക്കുക', |
| 14 | + weekSelect: 'വാരം തിരഞ്ഞെടുക്കുക', |
| 15 | + monthSelect: 'മാസം തിരഞ്ഞെടുക്കുക', |
| 16 | + yearSelect: 'വർഷം തിരഞ്ഞെടുക്കുക', |
| 17 | + decadeSelect: 'ദശാബ്ദം തിരഞ്ഞെടുക്കുക', |
| 18 | + yearFormat: 'YYYY', |
| 19 | + dateFormat: 'M/D/YYYY', |
| 20 | + dayFormat: 'D', |
| 21 | + dateTimeFormat: 'M/D/YYYY HH:mm:ss', |
| 22 | + monthBeforeYear: true, |
| 23 | + previousMonth: 'കഴിഞ്ഞ മാസം (PageUp)', |
| 24 | + nextMonth: 'അടുത്ത മാസം (PageDown)', |
| 25 | + previousYear: 'കഴിഞ്ഞ വർഷം (Control + left)', |
| 26 | + nextYear: 'അടുത്ത വർഷം (Control + right)', |
| 27 | + previousDecade: 'കഴിഞ്ഞ ദശാബ്ദം', |
| 28 | + nextDecade: 'അടുത്ത ദശാബ്ദം', |
| 29 | + previousCentury: 'കഴിഞ്ഞ നൂറ്റാണ്ട്', |
| 30 | + nextCentury: 'അടുത്ത നൂറ്റാണ്ട്', |
| 31 | +}; |
| 32 | + |
| 33 | +export default locale; |
0 commit comments