You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

calendar-zh-tw.js 3.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. // ** I18N
  2. // Calendar EN language
  3. // Author: Mihai Bazon, <mihai_bazon@yahoo.com>
  4. // Encoding: any
  5. // Distributed under the same terms as the calendar itself.
  6. // For translators: please use UTF-8 if possible. We strongly believe that
  7. // Unicode is the answer to a real internationalized world. Also please
  8. // include your contact information in the header, as can be seen above.
  9. // full day names
  10. Calendar._DN = new Array
  11. ("星期日",
  12. "星期一",
  13. "星期二",
  14. "星期三",
  15. "星期四",
  16. "星期五",
  17. "星期六",
  18. "星期日");
  19. // Please note that the following array of short day names (and the same goes
  20. // for short month names, _SMN) isn't absolutely necessary. We give it here
  21. // for exemplification on how one can customize the short day names, but if
  22. // they are simply the first N letters of the full name you can simply say:
  23. //
  24. // Calendar._SDN_len = N; // short day name length
  25. // Calendar._SMN_len = N; // short month name length
  26. //
  27. // If N = 3 then this is not needed either since we assume a value of 3 if not
  28. // present, to be compatible with translation files that were written before
  29. // this feature.
  30. // short day names
  31. Calendar._SDN = new Array
  32. ("日",
  33. "一",
  34. "二",
  35. "三",
  36. "四",
  37. "五",
  38. "六",
  39. "日");
  40. // First day of the week. "0" means display Sunday first, "1" means display
  41. // Monday first, etc.
  42. Calendar._FD = 0;
  43. // full month names
  44. Calendar._MN = new Array
  45. ("一月",
  46. "二月",
  47. "三月",
  48. "四月",
  49. "五月",
  50. "六月",
  51. "七月",
  52. "八月",
  53. "九月",
  54. "十月",
  55. "十一月",
  56. "十二月");
  57. // short month names
  58. Calendar._SMN = new Array
  59. ("一月",
  60. "二月",
  61. "三月",
  62. "四月",
  63. "五月",
  64. "六月",
  65. "七月",
  66. "八月",
  67. "九月",
  68. "十月",
  69. "十一月",
  70. "十二月");
  71. // tooltips
  72. Calendar._TT = {};
  73. Calendar._TT["INFO"] = "關於 calendar";
  74. Calendar._TT["ABOUT"] =
  75. "DHTML 日期/時間 選擇器\n" +
  76. "(c) dynarch.com 2002-2005 / Author: Mihai Bazon\n" + // don't translate this this ;-)
  77. "最新版本取得位址: http://www.dynarch.com/projects/calendar/\n" +
  78. "使用 GNU LGPL 發行. 參考 http://gnu.org/licenses/lgpl.html 以取得更多關於 LGPL 之細節。" +
  79. "\n\n" +
  80. "日期選擇方式:\n" +
  81. "- 使用滑鼠點擊 \xab 、 \xbb 按鈕選擇年份\n" +
  82. "- 使用滑鼠點擊 " + String.fromCharCode(0x2039) + " 、 " + String.fromCharCode(0x203a) + " 按鈕選擇月份\n" +
  83. "- 使用滑鼠點擊上述按鈕並按住不放,可開啟快速選單。";
  84. Calendar._TT["ABOUT_TIME"] = "\n\n" +
  85. "時間選擇方式:\n" +
  86. "- 「單擊」時分秒為遞增\n" +
  87. "- 或 「Shift-單擊」為遞減\n" +
  88. "- 或 「單擊且拖拉」為快速選擇";
  89. Calendar._TT["PREV_YEAR"] = "前一年 (按住不放可顯示選單)";
  90. Calendar._TT["PREV_MONTH"] = "前一個月 (按住不放可顯示選單)";
  91. Calendar._TT["GO_TODAY"] = "選擇今天";
  92. Calendar._TT["NEXT_MONTH"] = "後一個月 (按住不放可顯示選單)";
  93. Calendar._TT["NEXT_YEAR"] = "下一年 (按住不放可顯式選單)";
  94. Calendar._TT["SEL_DATE"] = "請點選日期";
  95. Calendar._TT["DRAG_TO_MOVE"] = "按住不放可拖拉視窗";
  96. Calendar._TT["PART_TODAY"] = " (今天)";
  97. // the following is to inform that "%s" is to be the first day of week
  98. // %s will be replaced with the day name.
  99. Calendar._TT["DAY_FIRST"] = "以 %s 做為一週的首日";
  100. // This may be locale-dependent. It specifies the week-end days, as an array
  101. // of comma-separated numbers. The numbers are from 0 to 6: 0 means Sunday, 1
  102. // means Monday, etc.
  103. Calendar._TT["WEEKEND"] = "0,6";
  104. Calendar._TT["CLOSE"] = "關閉視窗";
  105. Calendar._TT["TODAY"] = "今天";
  106. Calendar._TT["TIME_PART"] = "(Shift-)加「單擊」或「拖拉」可變更值";
  107. // date formats
  108. Calendar._TT["DEF_DATE_FORMAT"] = "%Y-%m-%d";
  109. Calendar._TT["TT_DATE_FORMAT"] = "星期 %a, %b %e 日";
  110. Calendar._TT["WK"] = "週";
  111. Calendar._TT["TIME"] = "時間:";