懒羊羊
2023-11-14 8286c62256f23bc2367a6729c0f46f84215e380b
提交 | 用户 | 时间
8286c6 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.bg = factory()));
5 }(this, function () { 'use strict';
6
7     var bg = {
8         code: "bg",
9         week: {
10             dow: 1,
11             doy: 7 // The week that contains Jan 1st is the first week of the year.
12         },
13         buttonText: {
14             prev: "назад",
15             next: "напред",
16             today: "днес",
17             month: "Месец",
18             week: "Седмица",
19             day: "Ден",
20             list: "График"
21         },
22         allDayText: "Цял ден",
23         eventLimitText: function (n) {
24             return "+още " + n;
25         },
26         noEventsMessage: "Няма събития за показване"
27     };
28
29     return bg;
30
31 }));