// ** I18N

// Calendar ID language
// Author: Andronicus Riyono, <andronicus@riyono.com>
// Encoding: UTF-8
// Distributed under the same terms as the calendar itself.

// full day names
Calendar._DN = new Array
("Minggu",
 "Senin",
 "Selasa",
 "Rabu",
 "Kamis",
 "Jumat",
 "Sabtu",
 "Minggu");

// Please note that the following array of short day names (and the same goes
// for short month names, _SMN) isn't absolutely necessary.  We give it here
// for exemplification on how one can customize the short day names, but if
// they are simply the first N letters of the full name you can simply say:
//
//   Calendar._SDN_len = N; // short day name length
//   Calendar._SMN_len = N; // short month name length
//
// If N = 3 then this is not needed either since we assume a value of 3 if not
// present, to be compatible with translation files that were written before
// this feature.

// short day names
Calendar._SDN = new Array
("Min",
 "Sen",
 "Sel",
 "Rab",
 "Kam",
 "Jum",
 "Sab",
 "Min");

// full month names
Calendar._MN = new Array
("Januari",
 "Pebruari",
 "Maret",
 "April",
 "Mei",
 "Juni",
 "Juli",
 "Agustus",
 "September",
 "Oktober",
 "Nopember",
 "Desember");

// short month names
Calendar._SMN = new Array
("Jan",
 "Peb",
 "Mar",
 "Apr",
 "Mei",
 "Jun",
 "Jul",
 "Agu",
 "Sep",
 "Okt",
 "Nop",
 "Des");

// tooltips
Calendar._TT = {};
Calendar._TT["INFO"] = "Tentang kalendar";

Calendar._TT["ABOUT"] =
"Pemilih Tanggal/Waktu DHTML\n" +
"(c) dynarch.com 2002-2003\n" + // don't translate this this ;-)
"Untuk versi terbaru kunjungi: http://dynarch.com/mishoo/calendar.epl\n" +
"Didistribusikan di bawah GNU LGPL.  Lihat http://gnu.org/licenses/lgpl.html for untuk detil." +
"\n\n" +
"Pemilihan tanggal:\n" +
"- Gunakan tombol \xab, \xbb untuk memilih tahun\n" +
"- Gunakan tombol " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " untuk memilih bulan\n" +
"- Tahan tombol mouse pada tombol-tombol tersebut di atas untuk pemilihan lebih cepat.";

Calendar._TT["ABOUT_TIME"] = "\n\n" +
"Pemilihan waktu:\n" +
"- Klik bagian waktu manapun untuk menambah\n" +
"- atau Shift-klik untuk mengurang\n" +
"- atau Klik dan seret untuk pemilihan lebih cepat.";

Calendar._TT["PREV_YEAR"] = "Tahun sebelumnya (tahan untuk menu)";
Calendar._TT["PREV_MONTH"] = "Bulan sebelumnya (tahan untuk menu)";
Calendar._TT["GO_TODAY"] = "Pergi ke Hari Ini";
Calendar._TT["NEXT_MONTH"] = "Bulan berikutnya (tahan untuk menu)";
Calendar._TT["NEXT_YEAR"] = "Tahun berikutnya (tahan untuk menu)";
Calendar._TT["SEL_DATE"] = "Pilih tanggal";
Calendar._TT["DRAG_TO_MOVE"] = "Seret untuk memindah";
Calendar._TT["PART_TODAY"] = " (Hari Ini)";

// the following is to inform that "%s" is to be the first day of week
// %s will be replaced with the day name.
Calendar._TT["DAY_FIRST"] = "Tampilkan %s di awal";

// This may be locale-dependent.  It specifies the week-end days, as an array
// of comma-separated numbers.  The numbers are from 0 to 6: 0 means Sunday, 1
// means Monday, etc.
Calendar._TT["WEEKEND"] = "0";

Calendar._TT["CLOSE"] = "Tutup";
Calendar._TT["TODAY"] = "Hari Ini";
Calendar._TT["TIME_PART"] = "(Shift-)Klik atau seret untuk mengubah nilai";

// date formats
Calendar._TT["DEF_DATE_FORMAT"] = "%Y-%m-%d";
Calendar._TT["TT_DATE_FORMAT"] = "%a, %b %e";

Calendar._TT["WK"] = "mgg";
Calendar._TT["TIME"] = "Waktu:";
