UNPKG

575 BJavaScriptView Raw
1FullCalendar.globalLocales.push(function () {
2 'use strict';
3
4 var pt = {
5 code: 'pt',
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: 'Anterior',
12 next: 'Seguinte',
13 today: 'Hoje',
14 month: 'Mês',
15 week: 'Semana',
16 day: 'Dia',
17 list: 'Agenda',
18 },
19 weekText: 'Sem',
20 allDayText: 'Todo o dia',
21 moreLinkText: 'mais',
22 noEventsText: 'Não há eventos para mostrar',
23 };
24
25 return pt;
26
27}());