// ** I18N

// Calendar ID language
// Author: Wuri Nugrahadi, <nug@nusacreation.com>
// Encoding: any
// Distributed under the same terms as the calendar itself.

// For translators: please use UTF-8 if possible.  We strongly believe that
// Unicode is the answer to a real internationalized world.  Also please
// include your contact information in the header, as can be seen above.

// 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
("Mng",
 "Sen",
 "Sel",
 "Rab",
 "Kam",
 "Jum",
 "Sab",
 "Mng");

// full month names
Calendar._MN = new Array
("Januari",
 "Februari",
 "Maret",
 "April",
 "Mei",
 "Juni",
 "Juli",
 "Agustus",
 "September",
 "Oktober",
 "November",
 "Desember");

// short month names
Calendar._SMN = new Array
("Jan",
 "Feb",
 "Mar",
 "Apr",
 "Mei",
 "Jun",
 "Jul",
 "Agt",
 "Sep",
 "Okt",
 "Nov",
 "Des");

// tooltips
Calendar._TT = {};
Calendar._TT["INFO"] = "Tentang Calendar";

Calendar._TT["ABOUT"] =
"DHTML Date/Time Selector\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.  Lebih lengkap kunjungi http://gnu.org/licenses/lgpl.html." +
"\n\n" +
"Memilih tanggal:\n" +
"- Gunakan tombol \xab, \xbb untuk memilih tahun\n" +
"- Gunakan tombol " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " untuk memilih bulan\n" +
"- Klik kanan tahan pada tombol untuk memilih cepat.";
Calendar._TT["ABOUT_TIME"] = "\n\n" +
"Memilih waktu:\n" +
"- Klik pada ruas waktu untuk menambah\n" +
"- atau Shift+Klik untuk mengurangi\n" +
"- atau klik seret untuk memilih cepat.";

Calendar._TT["PREV_YEAR"] = "Tahun sebelumnya (klik tahan utk menu)";
Calendar._TT["PREV_MONTH"] = "Bulan sebelumnya (klik tahan utk menu)";
Calendar._TT["GO_TODAY"] = "Menuju Hari Ini";
Calendar._TT["NEXT_MONTH"] = "Bulan selanjutnya (klik tahan utk menu)";
Calendar._TT["NEXT_YEAR"] = "Tahun selanjutnya (klik tahan utk menu)";
Calendar._TT["SEL_DATE"] = "Pilih tanggal";
Calendar._TT["DRAG_TO_MOVE"] = "Seret untuk memindahkan";
Calendar._TT["PART_TODAY"] = " (hari ini)";
Calendar._TT["MON_FIRST"] = "Tampil Senin di awal";
Calendar._TT["SUN_FIRST"] = "Tampil Minggu diawal";
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"] = "%d-%m-%Y";
Calendar._TT["TT_DATE_FORMAT"] = "%A, %e %B";

Calendar._TT["WK"] = "Pkn";
