aboutsummaryrefslogtreecommitdiffstats
path: root/library/fullcalendar/packages/core/locales/pt-br.global.js
blob: 7ec6f79f39ea7106df1249906bf2db80702ed6f4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*!
FullCalendar Core v6.0.3
Docs & License: https://fullcalendar.io
(c) 2022 Adam Shaw
*/
(function (index_js) {
    'use strict';

    var locale = {
        code: 'pt-br',
        buttonText: {
            prev: 'Anterior',
            next: 'Próximo',
            today: 'Hoje',
            month: 'Mês',
            week: 'Semana',
            day: 'Dia',
            list: 'Lista',
        },
        weekText: 'Sm',
        allDayText: 'dia inteiro',
        moreLinkText(n) {
            return 'mais +' + n;
        },
        noEventsText: 'Não há eventos para mostrar',
    };

    index_js.globalLocales.push(locale);

})(FullCalendar);