// ** I18N

// Calendar TW UTF-8  language
// Author: LOA, <lockead@gmail.com> 2007-03-14
// Encoding: any
// Distributed under the same terms as the calendar itself.

// full day names
Calendar._DN = new Array
("(日)",
 "(一)",
 "(二)",
 "(三)",
 "(四)",
 "(五)",
 "(六)",
 "(日)");

// First day of the week. "0" means display Sunday first, "1" means display
// Monday first, etc.
Calendar._FD = 0;

// 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["TOGGLE"] = "切換 一週 排列方式";
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"] = "Display %s first";

// 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"] = "關閉";
Calendar._TT["TODAY"] = "今日";
Calendar._TT["TIME_PART"] = "(Shift-)Click or drag to change value";

// date formats
Calendar._TT["DEF_DATE_FORMAT"] = "y-mm-dd";
Calendar._TT["TT_DATE_FORMAT"] = "D, M d";

Calendar._TT["WK"] = "週";
Calendar._TT["TIME"] = "Time:";

