国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
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.

79 lines
3.0KB

  1. // ** I18N
  2. // Calendar EN language
  3. // Author: Mihai Bazon, <mishoo@infoiasi.ro>
  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. // Please note that the following array of short day names (and the same goes
  13. // for short month names, _SMN) isn't absolutely necessary. We give it here
  14. // for exemplification on how one can customize the short day names, but if
  15. // they are simply the first N letters of the full name you can simply say:
  16. //
  17. Calendar._SDN_len = 6; // short day name length
  18. Calendar._SMN_len = 9; // short month name length
  19. //
  20. // If N = 3 then this is not needed either since we assume a value of 3 if not
  21. // present, to be compatible with translation files that were written before
  22. // this feature.
  23. // short day names
  24. Calendar._SDN = new Array
  25. ("周日","周一","周二","周三","周四","周五","周六","周日");
  26. // full month names
  27. Calendar._MN = new Array
  28. ("一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月");
  29. // short month names
  30. Calendar._SMN = new Array
  31. ("一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月");
  32. // tooltips
  33. Calendar._TT = {};
  34. Calendar._TT["INFO"] = "关于";
  35. Calendar._TT["ABOUT"] =
  36. "DHTML Date/Time Selector\n" +
  37. "(c) dynarch.com 2002-2003\n" + // don't translate this this ;-)
  38. "For latest version visit: http://dynarch.com/mishoo/calendar.epl\n" +
  39. "Distributed under GNU LGPL. See http://gnu.org/licenses/lgpl.html for details." +
  40. "\n\n" +
  41. "Date selection:\n" +
  42. "- Use the \xab, \xbb buttons to select year\n" +
  43. "- Use the " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " buttons to select month\n" +
  44. "- Hold mouse button on any of the above buttons for faster selection.";
  45. Calendar._TT["ABOUT_TIME"] = "\n\n" +
  46. "Time selection:\n" +
  47. "- Click on any of the time parts to increase it\n" +
  48. "- or Shift-click to decrease it\n" +
  49. "- or click and drag for faster selection.";
  50. Calendar._TT["PREV_YEAR"] = "上一年";
  51. Calendar._TT["PREV_MONTH"] = "上一月";
  52. Calendar._TT["GO_TODAY"] = "今天";
  53. Calendar._TT["NEXT_MONTH"] = "下一月";
  54. Calendar._TT["NEXT_YEAR"] = "下一年";
  55. Calendar._TT["SEL_DATE"] = "请选择日期";
  56. Calendar._TT["DRAG_TO_MOVE"] = "拖动";
  57. Calendar._TT["PART_TODAY"] = "(今天)";
  58. Calendar._TT["MON_FIRST"] = "周一在前";
  59. Calendar._TT["SUN_FIRST"] = "周日在前";
  60. Calendar._TT["CLOSE"] = "关闭";
  61. Calendar._TT["TODAY"] = "今天";
  62. Calendar._TT["TIME_PART"] = "(Shift-)Click or drag to change value";
  63. // date formats
  64. Calendar._TT["DEF_DATE_FORMAT"] = "%Y-%m-%d";
  65. Calendar._TT["TT_DATE_FORMAT"] = "%a, %b %e";
  66. Calendar._TT["WK"] = "wk";