calendar-zh.js 3.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. // ** I18N
  2. // Calendar ZH language
  3. // Author: muziq, <muziq@sina.com>
  4. // Encoding: GB2312 or GBK
  5. // Distributed under the same terms as the calendar itself.
  6. // full day names
  7. Calendar._DN = new Array
  8. ("星期日",
  9. "星期一",
  10. "星期二",
  11. "星期三",
  12. "星期四",
  13. "星期五",
  14. "星期六",
  15. "星期日");
  16. // Please note that the following array of short day names (and the same goes
  17. // for short month names, _SMN) isn't absolutely necessary. We give it here
  18. // for exemplification on how one can customize the short day names, but if
  19. // they are simply the first N letters of the full name you can simply say:
  20. //
  21. // Calendar._SDN_len = N; // short day name length
  22. // Calendar._SMN_len = N; // short month name length
  23. //
  24. // If N = 3 then this is not needed either since we assume a value of 3 if not
  25. // present, to be compatible with translation files that were written before
  26. // this feature.
  27. // short day names
  28. Calendar._SDN = new Array
  29. ("日",
  30. "一",
  31. "二",
  32. "三",
  33. "四",
  34. "五",
  35. "六",
  36. "日");
  37. // full month names
  38. Calendar._MN = new Array
  39. ("一月",
  40. "二月",
  41. "三月",
  42. "四月",
  43. "五月",
  44. "六月",
  45. "七月",
  46. "八月",
  47. "九月",
  48. "十月",
  49. "十一月",
  50. "十二月");
  51. // short month names
  52. Calendar._SMN = new Array
  53. ("一月",
  54. "二月",
  55. "三月",
  56. "四月",
  57. "五月",
  58. "六月",
  59. "七月",
  60. "八月",
  61. "九月",
  62. "十月",
  63. "十一月",
  64. "十二月");
  65. // tooltips
  66. Calendar._TT = {};
  67. Calendar._TT["INFO"] = "帮助";
  68. Calendar._TT["ABOUT"] =
  69. "DHTML Date/Time Selector\n" +
  70. "(c) dynarch.com 2002-2005 / Author: Mihai Bazon\n" + // don't translate this this ;-)
  71. "For latest version visit: http://www.dynarch.com/projects/calendar/\n" +
  72. "Distributed under GNU LGPL. See http://gnu.org/licenses/lgpl.html for details." +
  73. "\n\n" +
  74. "选择日期:\n" +
  75. "- 点击 \xab, \xbb 按钮选择年份\n" +
  76. "- 点击 " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " 按钮选择月份\n" +
  77. "- 长按以上按钮可从菜单中快速选择年份或月份";
  78. Calendar._TT["ABOUT_TIME"] = "\n\n" +
  79. "选择时间:\n" +
  80. "- 点击小时或分钟可使改数值加一\n" +
  81. "- 按住Shift键点击小时或分钟可使改数值减一\n" +
  82. "- 点击拖动鼠标可进行快速选择";
  83. Calendar._TT["PREV_YEAR"] = "上一年 (按住出菜单)";
  84. Calendar._TT["PREV_MONTH"] = "上一月 (按住出菜单)";
  85. Calendar._TT["GO_TODAY"] = "转到今日";
  86. Calendar._TT["NEXT_MONTH"] = "下一月 (按住出菜单)";
  87. Calendar._TT["NEXT_YEAR"] = "下一年 (按住出菜单)";
  88. Calendar._TT["SEL_DATE"] = "选择日期";
  89. Calendar._TT["DRAG_TO_MOVE"] = "拖动";
  90. Calendar._TT["PART_TODAY"] = " (今日)";
  91. // the following is to inform that "%s" is to be the first day of week
  92. // %s will be replaced with the day name.
  93. Calendar._TT["DAY_FIRST"] = "最左边显示%s";
  94. // This may be locale-dependent. It specifies the week-end days, as an array
  95. // of comma-separated numbers. The numbers are from 0 to 6: 0 means Sunday, 1
  96. // means Monday, etc.
  97. Calendar._TT["WEEKEND"] = "0,6";
  98. Calendar._TT["CLOSE"] = "关闭";
  99. Calendar._TT["TODAY"] = "今日";
  100. Calendar._TT["TIME_PART"] = "(Shift-)点击鼠标或拖动改变值";
  101. // date formats
  102. Calendar._TT["DEF_DATE_FORMAT"] = "%Y-%m-%d";
  103. Calendar._TT["TT_DATE_FORMAT"] = "%A, %b %e日";
  104. Calendar._TT["WK"] = "周";
  105. Calendar._TT["TIME"] = "时间:";