Skip to content

Commit cce7dbe

Browse files
author
Saji
committed
Datepicker: Added Malayalam translation. Fixes #6822 - Datepicker: Add i18n translation for Malayalam.
1 parent 74ddb30 commit cce7dbe

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

ui/i18n/jquery.ui.datepicker-ml.js

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
/* Malayalam (UTF-8) initialisation for the jQuery UI date picker plugin. */
2+
/* Written by Saji Nediyanchath (saji89@gmail.com). */
3+
jQuery(function($){
4+
$.datepicker.regional['ml'] = {
5+
closeText: 'ശരി',
6+
prevText: 'മുന്നത്തെ',
7+
nextText: 'അടുത്തത് ',
8+
currentText: 'ഇന്ന്',
9+
monthNames: ['ജനുവരി','ഫെബ്രുവരി','മാര്‍ച്ച്','ഏപ്രില്‍','മേയ്','ജൂണ്‍',
10+
'ജൂലൈ','ആഗസ്റ്റ്','സെപ്റ്റംബര്‍','ഒക്ടോബര്‍','നവംബര്‍','ഡിസംബര്‍'],
11+
monthNamesShort: ['ജനു', 'ഫെബ്', 'മാര്‍', 'ഏപ്രി', 'മേയ്', 'ജൂണ്‍',
12+
'ജൂലാ', 'ആഗ', 'സെപ്', 'ഒക്ടോ', 'നവം', 'ഡിസ'],
13+
dayNames: ['ഞായര്‍', 'തിങ്കള്‍', 'ചൊവ്വ', 'ബുധന്‍', 'വ്യാഴം', 'വെള്ളി', 'ശനി'],
14+
dayNamesShort: ['ഞായ', 'തിങ്ക', 'ചൊവ്വ', 'ബുധ', 'വ്യാഴം', 'വെള്ളി', 'ശനി'],
15+
dayNamesMin: ['ഞാ','തി','ചൊ','ബു','വ്യാ','വെ','ശ'],
16+
weekHeader: 'ആ',
17+
dateFormat: 'dd/mm/yy',
18+
firstDay: 1,
19+
isRTL: false,
20+
showMonthAfterYear: false,
21+
yearSuffix: ''};
22+
$.datepicker.setDefaults($.datepicker.regional['ml']);
23+
});

0 commit comments

Comments
 (0)