
Calendar._DN = new Array
("ÀÏ¿äÀÏ",
 "¿ù¿äÀÏ",
 "È­¿äÀÏ",
 "¼ö¿äÀÏ",
 "¸ñ¿äÀÏ",
 "±Ý¿äÀÏ",
 "Åä¿äÀÏ",
 "ÀÏ¿äÀÏ");

// 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
("ÀÏ",
 "¿ù",
 "È­",
 "¼ö",
 "¸ñ",
 "±Ý",
 "Åä",
 "ÀÏ");

// full month names
Calendar._MN = new Array
("1¿ù",
 "2¿ù",
 "3¿ù",
 "4¿ù",
 "5¿ù",
 "6¿ù",
 "7¿ù",
 "8¿ù",
 "9¿ù",
 "10¿ù",
 "11¿ù",
 "12¿ù");

// short month names
Calendar._SMN = new Array
("1",
 "2",
 "3",
 "4",
 "5",
 "6",
 "7",
 "8",
 "9",
 "10",
 "11",
 "12");


// tooltips
Calendar._TT = {};
Calendar._TT["INFO"] = "About the calendar";

Calendar._TT["ABOUT"] =
"»ç¿ë¹æ¹ý:\n" +
"- \xab, \xbb ¹öÆ° ¿¬µµº¯°æ\n" +
"-  " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " ¹öÆ° ¿ùº¯°æ"
Calendar._TT["ABOUT_TIME"] = "\n\n" +
"Time selection:\n" +
"- Click on any of the time parts to increase it\n" +
"- or Shift-click to decrease it\n" +
"- or click and drag for faster selection.";

Calendar._TT["PREV_YEAR"] = "ÀÌÀü³â ";
Calendar._TT["PREV_MONTH"] = "ÀÌÀü¿ù";
Calendar._TT["GO_TODAY"] = "¿À´Ã·Î";
Calendar._TT["NEXT_MONTH"] = "´ÙÀ½´Þ";
Calendar._TT["NEXT_YEAR"] = "´ÙÀ½³â";
Calendar._TT["SEL_DATE"] = "³¯Â¥¼±ÅÃ";
Calendar._TT["DRAG_TO_MOVE"] = "´Þ·ÂÀÌµ¿";
Calendar._TT["PART_TODAY"] = " (¿À´Ã)";

// 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"] = " %s À» ½ÃÀÛÀÏ·Î";

// 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,6";

Calendar._TT["CLOSE"] = "Close";
Calendar._TT["TODAY"] = "Today";
Calendar._TT["TIME_PART"] = "(Shift-)Click or drag to change value";

// date formats
Calendar._TT["DEF_DATE_FORMAT"] = "%Y-%m-%d";
Calendar._TT["TT_DATE_FORMAT"] = "%a, %b %e";

Calendar._TT["WK"] = "wk";
Calendar._TT["TIME"] = "Time:";







