JSCalendar Vietnamese translation

  1. // ** I18N
  2.  
  3. // Calendar VI language
  4. // Author: The Hong Truong, <thehong@toila.net>
  5. // Encoding: utf-8
  6. // Distributed under the same terms as the calendar itself.
  7.  
  8. // For translators: please use UTF-8 if possible. We strongly believe that
  9. // Unicode is the answer to a real internationalized world. Also please
  10. // include your contact information in the header, as can be seen above.
  11.  
  12. // full day names
  13. Calendar._DN = new Array
  14. ("Chủ nhật",
  15. "Thứ hai",
  16. "Thứ ba",
  17. "Thứ tư",
  18. "Thứ năm",
  19. "Thứ sáu",
  20. "Thứ bảy",
  21. "Chủ nhật");
  22.  
  23. // Please note that the following array of short day names (and the same goes
  24. // for short month names, _SMN) isn't absolutely necessary. We give it here
  25. // for exemplification on how one can customize the short day names, but if
  26. // they are simply the first N letters of the full name you can simply say:
  27. //
  28. // Calendar._SDN_len = N; // short day name length
  29. // Calendar._SMN_len = N; // short month name length
  30. //
  31. // If N = 3 then this is not needed either since we assume a value of 3 if not
  32. // present, to be compatible with translation files that were written before
  33. // this feature.
  34.  
  35. // short day names
  36. Calendar._SDN = new Array
  37. ("CN",
  38. "T2",
  39. "T3",
  40. "T4",
  41. "T5",
  42. "T6",
  43. "T7",
  44. "CN");
  45.  
  46. // First day of the week. "0" means display Sunday first,
  47. // "1" means display Monday first, etc.
  48. Calendar._FD = 1;
  49.  
  50. // full month names
  51. Calendar._MN = new Array
  52. ("Tháng giêng",
  53. "Tháng hai",
  54. "Tháng ba",
  55. "Tháng thư",
  56. "Tháng năm",
  57. "Tháng sáu",
  58. "Tháng bảy",
  59. "Tháng tám",
  60. "Tháng chín",
  61. "Tháng mười",
  62. "Tháng mười một",
  63. "Tháng mười hai");
  64.  
  65. // short month names
  66. Calendar._SMN = new Array
  67. ("Th1",
  68. "Th2",
  69. "Th3",
  70. "Th4",
  71. "Th5",
  72. "Th6",
  73. "Th7",
  74. "Th8",
  75. "Th9",
  76. "Th10",
  77. "Th11",
  78. "Th12");
  79.  
  80. // tooltips
  81. Calendar._TT = {};
  82. Calendar._TT["INFO"] = "Giới thiệu lịch";
  83.  
  84. Calendar._TT["ABOUT"] =
  85. "DHTML Date/Time Selector\n" +
  86. "(c) dynarch.com 2002-2005 / Author: Mihai Bazon\n" + // don't translate this this ;-)
  87. "Phiên bản mới nhất có tại: http://www.dynarch.com/projects/calendar/\n" +
  88. "Được phân phối với giấy phép GNU LGPL. Xem chi tiết tại http://gnu.org/licenses/lgpl.html." +
  89. "\n\n" +
  90. "Chọn ngày tháng:\n" +
  91. "- Sử dụng các nút \xab, \xbb để chọn năm\n" +
  92. "- Sử dụng các nút " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " để chọn tháng\n" +
  93. "- Giữ phím trái chuột trên các nút ở trên để chọn lựa nhanh hơn.";
  94. Calendar._TT["ABOUT_TIME"] = "\n\n" +
  95. "Chọn giờ:\n" +
  96. "- Nhấp chuột trên các thành phần thời gian để tăng giá trị\n" +
  97. "- hoặc nhập chuột +shift để giảm giá trị\n" +
  98. "- hoặc nhấp chuột và kéo để chọn nhanh hơn.";
  99.  
  100. Calendar._TT["TOGGLE"] = "Ngày đầu của tuần lễ";
  101. Calendar._TT["PREV_YEAR"] = "Năm trước (Giữ chuột để hiện danh sách chọn)";
  102. Calendar._TT["PREV_MONTH"] = "Tháng trước (Giữ chuột để hiện danh sách chọn)";
  103. Calendar._TT["GO_TODAY"] = "Về ngày hiện tại";
  104. Calendar._TT["NEXT_MONTH"] = "Tháng tiếp (Giữ chuột để hiện danh sách chọn)";
  105. Calendar._TT["NEXT_YEAR"] = "Năm tiếp (Giữ chuột để hiện danh sách chọn)";
  106. Calendar._TT["SEL_DATE"] = "Chọn ngày";
  107. Calendar._TT["DRAG_TO_MOVE"] = "Kéo để di chuyển";
  108. Calendar._TT["PART_TODAY"] = " (Hôm nay)";
  109.  
  110. // the following is to inform that "%s" is to be the first day of week
  111. // %s will be replaced with the day name.
  112. Calendar._TT["DAY_FIRST"] = "trình bày %s trước";
  113.  
  114. // This may be locale-dependent. It specifies the week-end days, as an array
  115. // of comma-separated numbers. The numbers are from 0 to 6: 0 means Sunday, 1
  116. // means Monday, etc.
  117. Calendar._TT["WEEKEND"] = "0,6";
  118.  
  119. Calendar._TT["CLOSE"] = "Đóng";
  120. Calendar._TT["TODAY"] = "Hôm nay";
  121. Calendar._TT["TIME_PART"] = "Nhấp chuột +Shift hoặc kéo để thay đổi giá trị";
  122.  
  123. // date formats
  124. Calendar._TT["DEF_DATE_FORMAT"] = "%Y-%m-%d";
  125. Calendar._TT["TT_DATE_FORMAT"] = "%a, %b %e";
  126.  
  127. Calendar._TT["WK"] = "wk";
  128. Calendar._TT["TIME"] = "Giờ:";

Comments

Help me

Ban co the share cho toi bo code jscalenda tren duoc ko
hien tai toi dang can dung lich am

toi cam on rat nhieu

JSCalendar Vietnamese translation

JSCalendar, được tích hợp với gói modules jstools, giúp người dùng dễ dàng hơn trong việc chọn lựa ngày/tháng/năm. Lưu lại đoạn code trên thành file calendar-vi.js, đặt vào folder jstools/jscalendar/lib/lang/calendar-vi.js.

Feature này cũng đang được TH request.

Thế Hồng