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.
13 lines
593 B
13 lines
593 B
3 years ago
|
// Indonesian
|
||
|
|
||
|
jQuery.extend( jQuery.fn.pickadate.defaults, {
|
||
|
monthsFull: [ 'Januari', 'Februari', 'Maret', 'April', 'Mei', 'Juni', 'Juli', 'Agustus', 'September', 'Oktober', 'November', 'Desember' ],
|
||
|
monthsShort: [ 'Jan', 'Feb', 'Mar', 'Apr', 'Mei', 'Jun', 'Jul', 'Agu', 'Sep', 'Okt', 'Nov', 'Des' ],
|
||
|
weekdaysFull: [ 'Minggu', 'Senin', 'Selasa', 'Rabu', 'Kamis', 'Jumat', 'Sabtu' ],
|
||
|
weekdaysShort: [ 'Min', 'Sen', 'Sel', 'Rab', 'Kam', 'Jum', 'Sab' ],
|
||
|
today: 'hari ini',
|
||
|
clear: 'menghapus',
|
||
|
firstDay: 1,
|
||
|
format: 'd mmmm yyyy',
|
||
|
formatSubmit: 'yyyy/mm/dd'
|
||
|
});
|