You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
1002 B
JavaScript
26 lines
1002 B
JavaScript
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt Expat (MIT) */
|
|
/* Indonesian initialisation for the jQuery UI date picker plugin. */
|
|
/* Written by Deden Fathurahman (dedenf@gmail.com). */
|
|
jQuery(function($){
|
|
$.datepicker.regional['id'] = {
|
|
closeText: 'Tutup',
|
|
prevText: '<mundur',
|
|
nextText: 'maju>',
|
|
currentText: 'hari ini',
|
|
monthNames: ['Januari','Februari','Maret','April','Mei','Juni',
|
|
'Juli','Agustus','September','Oktober','Nopember','Desember'],
|
|
monthNamesShort: ['Jan','Feb','Mar','Apr','Mei','Jun',
|
|
'Jul','Agus','Sep','Okt','Nop','Des'],
|
|
dayNames: ['Minggu','Senin','Selasa','Rabu','Kamis','Jumat','Sabtu'],
|
|
dayNamesShort: ['Min','Sen','Sel','Rab','kam','Jum','Sab'],
|
|
dayNamesMin: ['Mg','Sn','Sl','Rb','Km','jm','Sb'],
|
|
weekHeader: 'Mg',
|
|
dateFormat: 'dd/mm/yy',
|
|
firstDay: 0,
|
|
isRTL: false,
|
|
showMonthAfterYear: false,
|
|
yearSuffix: ''};
|
|
$.datepicker.setDefaults($.datepicker.regional['id']);
|
|
});
|
|
/* @license-end */
|