選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

30 行
641B

  1. FullCalendar.globalLocales.push(function () {
  2. 'use strict';
  3. var vi = {
  4. code: 'vi',
  5. week: {
  6. dow: 1, // Monday is the first day of the week.
  7. doy: 4, // The week that contains Jan 4th is the first week of the year.
  8. },
  9. buttonText: {
  10. prev: 'Trước',
  11. next: 'Tiếp',
  12. today: 'Hôm nay',
  13. month: 'Tháng',
  14. week: 'Tuần',
  15. day: 'Ngày',
  16. list: 'Lịch biểu',
  17. },
  18. weekText: 'Tu',
  19. allDayText: 'Cả ngày',
  20. moreLinkText: function(n) {
  21. return '+ thêm ' + n
  22. },
  23. noEventsText: 'Không có sự kiện để hiển thị',
  24. };
  25. return vi;
  26. }());