UNPKG

649 BJavaScriptView Raw
1FullCalendar.globalLocales.push(function () {
2 'use strict';
3
4 var bg = {
5 code: 'bg',
6 week: {
7 dow: 1, // Monday is the first day of the week.
8 doy: 7, // The week that contains Jan 1st is the first week of the year.
9 },
10 buttonText: {
11 prev: 'назад',
12 next: 'напред',
13 today: 'днес',
14 month: 'Месец',
15 week: 'Седмица',
16 day: 'Ден',
17 list: 'График',
18 },
19 allDayText: 'Цял ден',
20 moreLinkText: function(n) {
21 return '+още ' + n
22 },
23 noEventsText: 'Няма събития за показване',
24 };
25
26 return bg;
27
28}());