No Description

vi.js 1017B

1234567891011121314151617181920212223242526272829303132
  1. (function (global, factory) {
  2. typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
  3. typeof define === 'function' && define.amd ? define(factory) :
  4. (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.vi = factory()));
  5. }(this, function () { 'use strict';
  6. var vi = {
  7. code: "vi",
  8. week: {
  9. dow: 1,
  10. doy: 4 // The week that contains Jan 4th is the first week of the year.
  11. },
  12. buttonText: {
  13. prev: "Trước",
  14. next: "Tiếp",
  15. today: "Hôm nay",
  16. month: "Tháng",
  17. week: "Tuần",
  18. day: "Ngày",
  19. list: "Lịch biểu"
  20. },
  21. weekLabel: "Tu",
  22. allDayText: "Cả ngày",
  23. eventLimitText: function (n) {
  24. return "+ thêm " + n;
  25. },
  26. noEventsMessage: "Không có sự kiện để hiển thị"
  27. };
  28. return vi;
  29. }));