| 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
|
| 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 | }));
|