To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / .svn / pristine / 78 / 78ef90d8dd2d30dc5f9d99544acf15a71808248b.svn-base @ 1297:0a574315af3e

History | View | Annotate | Download (881 Bytes)

1 1296:038ba2d95de8 Chris
/* Indonesian initialisation for the jQuery UI date picker plugin. */
2
/* Written by Deden Fathurahman (dedenf@gmail.com). */
3
jQuery(function($){
4
	$.datepicker.regional['id'] = {
5
		closeText: 'Tutup',
6
		prevText: '<mundur',
7
		nextText: 'maju>',
8
		currentText: 'hari ini',
9
		monthNames: ['Januari','Februari','Maret','April','Mei','Juni',
10
		'Juli','Agustus','September','Oktober','Nopember','Desember'],
11
		monthNamesShort: ['Jan','Feb','Mar','Apr','Mei','Jun',
12
		'Jul','Agus','Sep','Okt','Nop','Des'],
13
		dayNames: ['Minggu','Senin','Selasa','Rabu','Kamis','Jumat','Sabtu'],
14
		dayNamesShort: ['Min','Sen','Sel','Rab','kam','Jum','Sab'],
15
		dayNamesMin: ['Mg','Sn','Sl','Rb','Km','jm','Sb'],
16
		weekHeader: 'Mg',
17
		dateFormat: 'dd/mm/yy',
18
		firstDay: 0,
19
		isRTL: false,
20
		showMonthAfterYear: false,
21
		yearSuffix: ''};
22
	$.datepicker.setDefaults($.datepicker.regional['id']);
23
});