UNPKG

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