decidim-calendar 0.13.1.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (162) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE-AGPLv3.txt +661 -0
  3. data/README.md +9 -0
  4. data/Rakefile +43 -0
  5. data/app/assets/config/decidim_calendar_manifest.css +2 -0
  6. data/app/assets/config/decidim_calendar_manifest.js +2 -0
  7. data/app/assets/images/decidim/calendar/icon.svg +51 -0
  8. data/app/assets/javascripts/decidim/calendar/calendar.js.es6 +6 -0
  9. data/app/assets/javascripts/decidim/calendar/gantt.js.es6 +1 -0
  10. data/app/assets/stylesheets/decidim/calendar/calendar.scss +102 -0
  11. data/app/assets/stylesheets/decidim/calendar/gantt.scss +1 -0
  12. data/app/commands/decidim/calendar/admin/create_external_event.rb +38 -0
  13. data/app/commands/decidim/calendar/admin/destroy_external_event.rb +27 -0
  14. data/app/commands/decidim/calendar/admin/update_external_event.rb +43 -0
  15. data/app/controllers/decidim/calendar/admin/application_controller.rb +23 -0
  16. data/app/controllers/decidim/calendar/admin/external_events_controller.rb +84 -0
  17. data/app/controllers/decidim/calendar/application_controller.rb +21 -0
  18. data/app/controllers/decidim/calendar/calendar_controller.rb +33 -0
  19. data/app/forms/decidim/calendar/admin/external_event_form.rb +21 -0
  20. data/app/helpers/decidim/calendar/calendar_helper.rb +57 -0
  21. data/app/models/decidim/calendar/application_record.rb +9 -0
  22. data/app/models/decidim/calendar/event.rb +25 -0
  23. data/app/models/decidim/calendar/external_event.rb +18 -0
  24. data/app/permissions/decidim/calendar/admin/permissions.rb +22 -0
  25. data/app/presenters/decidim/calendar/event_presenter.rb +104 -0
  26. data/app/queries/decidim/calendar/organization_calendar.rb +15 -0
  27. data/app/services/decidim/calendar/event_to_ical.rb +27 -0
  28. data/app/services/decidim/calendar/general_calendar.rb +13 -0
  29. data/app/services/decidim/calendar/meeting_to_event.rb +8 -0
  30. data/app/services/decidim/meetings/calendar/base_calendar.rb +61 -0
  31. data/app/views/decidim/calendar/admin/external_events/_form.html.erb +22 -0
  32. data/app/views/decidim/calendar/admin/external_events/edit.html.erb +6 -0
  33. data/app/views/decidim/calendar/admin/external_events/index.html.erb +66 -0
  34. data/app/views/decidim/calendar/admin/external_events/new.html.erb +6 -0
  35. data/app/views/decidim/calendar/calendar/gantt.html.erb +22 -0
  36. data/app/views/decidim/calendar/calendar/index.html.erb +63 -0
  37. data/app/views/decidim/shared/_extended_navigation_bar.html.erb +51 -0
  38. data/app/views/layouts/_calendar_navigation.html.erb +18 -0
  39. data/app/views/layouts/calendar.html.erb +4 -0
  40. data/config/locales/ca.yml +38 -0
  41. data/config/locales/de.yml +38 -0
  42. data/config/locales/en.yml +48 -0
  43. data/config/locales/es.yml +38 -0
  44. data/config/locales/fi.yml +38 -0
  45. data/config/locales/fr.yml +38 -0
  46. data/config/locales/it.yml +38 -0
  47. data/config/locales/pl.yml +38 -0
  48. data/config/locales/pt.yml +38 -0
  49. data/config/locales/ro.yml +38 -0
  50. data/config/locales/ru.yml +38 -0
  51. data/config/locales/sv.yml +38 -0
  52. data/config/locales/tr.yml +38 -0
  53. data/config/locales/uk.yml +38 -0
  54. data/db/migrate/20190312132654_create_decidim_calendar_external_events.rb +18 -0
  55. data/lib/decidim/calendar.rb +11 -0
  56. data/lib/decidim/calendar/admin.rb +9 -0
  57. data/lib/decidim/calendar/admin_engine.rb +30 -0
  58. data/lib/decidim/calendar/engine.rb +34 -0
  59. data/lib/decidim/calendar/participatory_space.rb +20 -0
  60. data/lib/decidim/calendar/test/factories.rb +12 -0
  61. data/lib/decidim/calendar/version.rb +10 -0
  62. data/vendor/assets/javascripts/frappe-gantt/frappe-gantt.css +119 -0
  63. data/vendor/assets/javascripts/frappe-gantt/frappe-gantt.js +1883 -0
  64. data/vendor/assets/javascripts/fullcalendar/bootstrap/main.css +33 -0
  65. data/vendor/assets/javascripts/fullcalendar/bootstrap/main.js +90 -0
  66. data/vendor/assets/javascripts/fullcalendar/bootstrap/main.min.css +5 -0
  67. data/vendor/assets/javascripts/fullcalendar/bootstrap/main.min.js +20 -0
  68. data/vendor/assets/javascripts/fullcalendar/core/locales-all.js +1353 -0
  69. data/vendor/assets/javascripts/fullcalendar/core/locales-all.min.js +6 -0
  70. data/vendor/assets/javascripts/fullcalendar/core/locales/af.js +30 -0
  71. data/vendor/assets/javascripts/fullcalendar/core/locales/ar-dz.js +31 -0
  72. data/vendor/assets/javascripts/fullcalendar/core/locales/ar-kw.js +31 -0
  73. data/vendor/assets/javascripts/fullcalendar/core/locales/ar-ly.js +31 -0
  74. data/vendor/assets/javascripts/fullcalendar/core/locales/ar-ma.js +31 -0
  75. data/vendor/assets/javascripts/fullcalendar/core/locales/ar-sa.js +31 -0
  76. data/vendor/assets/javascripts/fullcalendar/core/locales/ar-tn.js +31 -0
  77. data/vendor/assets/javascripts/fullcalendar/core/locales/ar.js +31 -0
  78. data/vendor/assets/javascripts/fullcalendar/core/locales/bg.js +31 -0
  79. data/vendor/assets/javascripts/fullcalendar/core/locales/bs.js +32 -0
  80. data/vendor/assets/javascripts/fullcalendar/core/locales/ca.js +30 -0
  81. data/vendor/assets/javascripts/fullcalendar/core/locales/cs.js +32 -0
  82. data/vendor/assets/javascripts/fullcalendar/core/locales/da.js +30 -0
  83. data/vendor/assets/javascripts/fullcalendar/core/locales/de.js +33 -0
  84. data/vendor/assets/javascripts/fullcalendar/core/locales/el.js +30 -0
  85. data/vendor/assets/javascripts/fullcalendar/core/locales/en-au.js +17 -0
  86. data/vendor/assets/javascripts/fullcalendar/core/locales/en-gb.js +17 -0
  87. data/vendor/assets/javascripts/fullcalendar/core/locales/en-nz.js +17 -0
  88. data/vendor/assets/javascripts/fullcalendar/core/locales/es-us.js +30 -0
  89. data/vendor/assets/javascripts/fullcalendar/core/locales/es.js +30 -0
  90. data/vendor/assets/javascripts/fullcalendar/core/locales/et.js +32 -0
  91. data/vendor/assets/javascripts/fullcalendar/core/locales/eu.js +30 -0
  92. data/vendor/assets/javascripts/fullcalendar/core/locales/fa.js +33 -0
  93. data/vendor/assets/javascripts/fullcalendar/core/locales/fi.js +30 -0
  94. data/vendor/assets/javascripts/fullcalendar/core/locales/fr-ca.js +27 -0
  95. data/vendor/assets/javascripts/fullcalendar/core/locales/fr-ch.js +31 -0
  96. data/vendor/assets/javascripts/fullcalendar/core/locales/fr.js +31 -0
  97. data/vendor/assets/javascripts/fullcalendar/core/locales/gl.js +30 -0
  98. data/vendor/assets/javascripts/fullcalendar/core/locales/he.js +27 -0
  99. data/vendor/assets/javascripts/fullcalendar/core/locales/hi.js +32 -0
  100. data/vendor/assets/javascripts/fullcalendar/core/locales/hr.js +32 -0
  101. data/vendor/assets/javascripts/fullcalendar/core/locales/hu.js +30 -0
  102. data/vendor/assets/javascripts/fullcalendar/core/locales/id.js +30 -0
  103. data/vendor/assets/javascripts/fullcalendar/core/locales/is.js +30 -0
  104. data/vendor/assets/javascripts/fullcalendar/core/locales/it.js +32 -0
  105. data/vendor/assets/javascripts/fullcalendar/core/locales/ja.js +28 -0
  106. data/vendor/assets/javascripts/fullcalendar/core/locales/ka.js +32 -0
  107. data/vendor/assets/javascripts/fullcalendar/core/locales/kk.js +32 -0
  108. data/vendor/assets/javascripts/fullcalendar/core/locales/ko.js +26 -0
  109. data/vendor/assets/javascripts/fullcalendar/core/locales/lb.js +30 -0
  110. data/vendor/assets/javascripts/fullcalendar/core/locales/lt.js +30 -0
  111. data/vendor/assets/javascripts/fullcalendar/core/locales/lv.js +32 -0
  112. data/vendor/assets/javascripts/fullcalendar/core/locales/mk.js +28 -0
  113. data/vendor/assets/javascripts/fullcalendar/core/locales/ms.js +32 -0
  114. data/vendor/assets/javascripts/fullcalendar/core/locales/nb.js +30 -0
  115. data/vendor/assets/javascripts/fullcalendar/core/locales/nl.js +30 -0
  116. data/vendor/assets/javascripts/fullcalendar/core/locales/nn.js +30 -0
  117. data/vendor/assets/javascripts/fullcalendar/core/locales/pl.js +30 -0
  118. data/vendor/assets/javascripts/fullcalendar/core/locales/pt-br.js +28 -0
  119. data/vendor/assets/javascripts/fullcalendar/core/locales/pt.js +30 -0
  120. data/vendor/assets/javascripts/fullcalendar/core/locales/ro.js +32 -0
  121. data/vendor/assets/javascripts/fullcalendar/core/locales/ru.js +32 -0
  122. data/vendor/assets/javascripts/fullcalendar/core/locales/sk.js +32 -0
  123. data/vendor/assets/javascripts/fullcalendar/core/locales/sl.js +30 -0
  124. data/vendor/assets/javascripts/fullcalendar/core/locales/sq.js +32 -0
  125. data/vendor/assets/javascripts/fullcalendar/core/locales/sr-cyrl.js +32 -0
  126. data/vendor/assets/javascripts/fullcalendar/core/locales/sr.js +32 -0
  127. data/vendor/assets/javascripts/fullcalendar/core/locales/sv.js +30 -0
  128. data/vendor/assets/javascripts/fullcalendar/core/locales/th.js +25 -0
  129. data/vendor/assets/javascripts/fullcalendar/core/locales/tr.js +30 -0
  130. data/vendor/assets/javascripts/fullcalendar/core/locales/uk.js +32 -0
  131. data/vendor/assets/javascripts/fullcalendar/core/locales/vi.js +32 -0
  132. data/vendor/assets/javascripts/fullcalendar/core/locales/zh-cn.js +33 -0
  133. data/vendor/assets/javascripts/fullcalendar/core/locales/zh-tw.js +26 -0
  134. data/vendor/assets/javascripts/fullcalendar/core/main.css +900 -0
  135. data/vendor/assets/javascripts/fullcalendar/core/main.js +8791 -0
  136. data/vendor/assets/javascripts/fullcalendar/core/main.min.css +5 -0
  137. data/vendor/assets/javascripts/fullcalendar/core/main.min.js +9 -0
  138. data/vendor/assets/javascripts/fullcalendar/daygrid/main.css +69 -0
  139. data/vendor/assets/javascripts/fullcalendar/daygrid/main.js +1630 -0
  140. data/vendor/assets/javascripts/fullcalendar/daygrid/main.min.css +5 -0
  141. data/vendor/assets/javascripts/fullcalendar/daygrid/main.min.js +20 -0
  142. data/vendor/assets/javascripts/fullcalendar/google-calendar/main.js +169 -0
  143. data/vendor/assets/javascripts/fullcalendar/google-calendar/main.min.js +20 -0
  144. data/vendor/assets/javascripts/fullcalendar/interaction/main.js +2155 -0
  145. data/vendor/assets/javascripts/fullcalendar/interaction/main.min.js +21 -0
  146. data/vendor/assets/javascripts/fullcalendar/list/main.css +101 -0
  147. data/vendor/assets/javascripts/fullcalendar/list/main.js +341 -0
  148. data/vendor/assets/javascripts/fullcalendar/list/main.min.css +5 -0
  149. data/vendor/assets/javascripts/fullcalendar/list/main.min.js +20 -0
  150. data/vendor/assets/javascripts/fullcalendar/luxon/main.js +162 -0
  151. data/vendor/assets/javascripts/fullcalendar/luxon/main.min.js +20 -0
  152. data/vendor/assets/javascripts/fullcalendar/moment-timezone/main.js +64 -0
  153. data/vendor/assets/javascripts/fullcalendar/moment-timezone/main.min.js +20 -0
  154. data/vendor/assets/javascripts/fullcalendar/moment/main.js +103 -0
  155. data/vendor/assets/javascripts/fullcalendar/moment/main.min.js +6 -0
  156. data/vendor/assets/javascripts/fullcalendar/rrule/main.js +127 -0
  157. data/vendor/assets/javascripts/fullcalendar/rrule/main.min.js +20 -0
  158. data/vendor/assets/javascripts/fullcalendar/timegrid/main.css +266 -0
  159. data/vendor/assets/javascripts/fullcalendar/timegrid/main.js +1339 -0
  160. data/vendor/assets/javascripts/fullcalendar/timegrid/main.min.css +5 -0
  161. data/vendor/assets/javascripts/fullcalendar/timegrid/main.min.js +20 -0
  162. metadata +247 -0
@@ -0,0 +1,33 @@
1
+ /*!
2
+ FullCalendar Bootstrap Plugin v4.0.2
3
+ Docs & License: https://fullcalendar.io/
4
+ (c) 2019 Adam Shaw
5
+ */
6
+ .fc.fc-bootstrap a {
7
+ text-decoration: none; }
8
+
9
+ .fc.fc-bootstrap a[data-goto]:hover {
10
+ text-decoration: underline; }
11
+
12
+ .fc-bootstrap hr.fc-divider {
13
+ border-color: inherit; }
14
+
15
+ .fc-bootstrap .fc-today.alert {
16
+ border-radius: 0; }
17
+
18
+ .fc-bootstrap a.fc-event:not([href]):not([tabindex]) {
19
+ color: #fff; }
20
+
21
+ .fc-bootstrap .fc-popover.card {
22
+ position: absolute; }
23
+
24
+ /* Popover
25
+ --------------------------------------------------------------------------------------------------*/
26
+ .fc-bootstrap .fc-popover .card-body {
27
+ padding: 0; }
28
+
29
+ /* TimeGrid Slats (lines that run horizontally)
30
+ --------------------------------------------------------------------------------------------------*/
31
+ .fc-bootstrap .fc-time-grid .fc-slats table {
32
+ /* some themes have background color. see through to slats */
33
+ background: none; }
@@ -0,0 +1,90 @@
1
+ /*!
2
+ FullCalendar Bootstrap Plugin v4.0.2
3
+ Docs & License: https://fullcalendar.io/
4
+ (c) 2019 Adam Shaw
5
+ */
6
+ (function (global, factory) {
7
+ typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@fullcalendar/core')) :
8
+ typeof define === 'function' && define.amd ? define(['exports', '@fullcalendar/core'], factory) :
9
+ (global = global || self, factory(global.FullCalendarBootstrap = {}, global.FullCalendar));
10
+ }(this, function (exports, core) { 'use strict';
11
+
12
+ /*! *****************************************************************************
13
+ Copyright (c) Microsoft Corporation. All rights reserved.
14
+ Licensed under the Apache License, Version 2.0 (the "License"); you may not use
15
+ this file except in compliance with the License. You may obtain a copy of the
16
+ License at http://www.apache.org/licenses/LICENSE-2.0
17
+
18
+ THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
19
+ KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
20
+ WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
21
+ MERCHANTABLITY OR NON-INFRINGEMENT.
22
+
23
+ See the Apache Version 2.0 License for specific language governing permissions
24
+ and limitations under the License.
25
+ ***************************************************************************** */
26
+ /* global Reflect, Promise */
27
+
28
+ var extendStatics = function(d, b) {
29
+ extendStatics = Object.setPrototypeOf ||
30
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
31
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
32
+ return extendStatics(d, b);
33
+ };
34
+
35
+ function __extends(d, b) {
36
+ extendStatics(d, b);
37
+ function __() { this.constructor = d; }
38
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
39
+ }
40
+
41
+ var BootstrapTheme = /** @class */ (function (_super) {
42
+ __extends(BootstrapTheme, _super);
43
+ function BootstrapTheme() {
44
+ return _super !== null && _super.apply(this, arguments) || this;
45
+ }
46
+ return BootstrapTheme;
47
+ }(core.Theme));
48
+ BootstrapTheme.prototype.classes = {
49
+ widget: 'fc-bootstrap',
50
+ tableGrid: 'table-bordered',
51
+ tableList: 'table',
52
+ tableListHeading: 'table-active',
53
+ buttonGroup: 'btn-group',
54
+ button: 'btn btn-primary',
55
+ buttonActive: 'active',
56
+ today: 'alert alert-info',
57
+ popover: 'card card-primary',
58
+ popoverHeader: 'card-header',
59
+ popoverContent: 'card-body',
60
+ // day grid
61
+ // for left/right border color when border is inset from edges (all-day in timeGrid view)
62
+ // avoid `table` class b/c don't want margins/padding/structure. only border color.
63
+ headerRow: 'table-bordered',
64
+ dayRow: 'table-bordered',
65
+ // list view
66
+ listView: 'card card-primary'
67
+ };
68
+ BootstrapTheme.prototype.baseIconClass = 'fa';
69
+ BootstrapTheme.prototype.iconClasses = {
70
+ close: 'fa-times',
71
+ prev: 'fa-chevron-left',
72
+ next: 'fa-chevron-right',
73
+ prevYear: 'fa-angle-double-left',
74
+ nextYear: 'fa-angle-double-right'
75
+ };
76
+ BootstrapTheme.prototype.iconOverrideOption = 'bootstrapFontAwesome';
77
+ BootstrapTheme.prototype.iconOverrideCustomButtonOption = 'bootstrapFontAwesome';
78
+ BootstrapTheme.prototype.iconOverridePrefix = 'fa-';
79
+ var main = core.createPlugin({
80
+ themeClasses: {
81
+ bootstrap: BootstrapTheme
82
+ }
83
+ });
84
+
85
+ exports.BootstrapTheme = BootstrapTheme;
86
+ exports.default = main;
87
+
88
+ Object.defineProperty(exports, '__esModule', { value: true });
89
+
90
+ }));
@@ -0,0 +1,5 @@
1
+ /*!
2
+ FullCalendar Bootstrap Plugin v4.0.2
3
+ Docs & License: https://fullcalendar.io/
4
+ (c) 2019 Adam Shaw
5
+ */.fc.fc-bootstrap a{text-decoration:none}.fc.fc-bootstrap a[data-goto]:hover{text-decoration:underline}.fc-bootstrap hr.fc-divider{border-color:inherit}.fc-bootstrap .fc-today.alert{border-radius:0}.fc-bootstrap a.fc-event:not([href]):not([tabindex]){color:#fff}.fc-bootstrap .fc-popover.card{position:absolute}.fc-bootstrap .fc-popover .card-body{padding:0}.fc-bootstrap .fc-time-grid .fc-slats table{background:0 0}
@@ -0,0 +1,20 @@
1
+ /*!
2
+ FullCalendar Bootstrap Plugin v4.0.2
3
+ Docs & License: https://fullcalendar.io/
4
+ (c) 2019 Adam Shaw
5
+ */
6
+ !function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports,require("@fullcalendar/core")):"function"==typeof define&&define.amd?define(["exports","@fullcalendar/core"],t):(e=e||self,t(e.FullCalendarBootstrap={},e.FullCalendar))}(this,function(e,t){"use strict";function o(e,t){function o(){this.constructor=e}r(e,t),e.prototype=null===t?Object.create(t):(o.prototype=t.prototype,new o)}/*! *****************************************************************************
7
+ Copyright (c) Microsoft Corporation. All rights reserved.
8
+ Licensed under the Apache License, Version 2.0 (the "License"); you may not use
9
+ this file except in compliance with the License. You may obtain a copy of the
10
+ License at http://www.apache.org/licenses/LICENSE-2.0
11
+
12
+ THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
13
+ KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
14
+ WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
15
+ MERCHANTABLITY OR NON-INFRINGEMENT.
16
+
17
+ See the Apache Version 2.0 License for specific language governing permissions
18
+ and limitations under the License.
19
+ ***************************************************************************** */
20
+ var r=function(e,t){return(r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var o in t)t.hasOwnProperty(o)&&(e[o]=t[o])})(e,t)},a=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return o(t,e),t}(t.Theme);a.prototype.classes={widget:"fc-bootstrap",tableGrid:"table-bordered",tableList:"table",tableListHeading:"table-active",buttonGroup:"btn-group",button:"btn btn-primary",buttonActive:"active",today:"alert alert-info",popover:"card card-primary",popoverHeader:"card-header",popoverContent:"card-body",headerRow:"table-bordered",dayRow:"table-bordered",listView:"card card-primary"},a.prototype.baseIconClass="fa",a.prototype.iconClasses={close:"fa-times",prev:"fa-chevron-left",next:"fa-chevron-right",prevYear:"fa-angle-double-left",nextYear:"fa-angle-double-right"},a.prototype.iconOverrideOption="bootstrapFontAwesome",a.prototype.iconOverrideCustomButtonOption="bootstrapFontAwesome",a.prototype.iconOverridePrefix="fa-";var n=t.createPlugin({themeClasses:{bootstrap:a}});e.BootstrapTheme=a,e.default=n,Object.defineProperty(e,"__esModule",{value:!0})});
@@ -0,0 +1,1353 @@
1
+ /*!
2
+ FullCalendar Core Package v4.0.2
3
+ Docs & License: https://fullcalendar.io/
4
+ (c) 2019 Adam Shaw
5
+ */
6
+ (function (global, factory) {
7
+ typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
8
+ typeof define === 'function' && define.amd ? define(factory) :
9
+ (global = global || self, global.FullCalendarLocalesAll = factory());
10
+ }(this, function () { 'use strict';
11
+
12
+ var _m0 = {
13
+ code: "af",
14
+ week: {
15
+ dow: 1,
16
+ doy: 4 // Die week wat die 4de Januarie bevat is die eerste week van die jaar.
17
+ },
18
+ buttonText: {
19
+ prev: "Vorige",
20
+ next: "Volgende",
21
+ today: "Vandag",
22
+ year: "Jaar",
23
+ month: "Maand",
24
+ week: "Week",
25
+ day: "Dag",
26
+ list: "Agenda"
27
+ },
28
+ allDayHtml: "Heeldag",
29
+ eventLimitText: "Addisionele",
30
+ noEventsMessage: "Daar is geen gebeurtenisse nie"
31
+ };
32
+
33
+ var _m1 = {
34
+ code: "ar-dz",
35
+ week: {
36
+ dow: 0,
37
+ doy: 4 // The week that contains Jan 1st is the first week of the year.
38
+ },
39
+ dir: 'rtl',
40
+ buttonText: {
41
+ prev: "السابق",
42
+ next: "التالي",
43
+ today: "اليوم",
44
+ month: "شهر",
45
+ week: "أسبوع",
46
+ day: "يوم",
47
+ list: "أجندة"
48
+ },
49
+ weekLabel: "أسبوع",
50
+ allDayText: "اليوم كله",
51
+ eventLimitText: "أخرى",
52
+ noEventsMessage: "أي أحداث لعرض"
53
+ };
54
+
55
+ var _m2 = {
56
+ code: "ar-kw",
57
+ week: {
58
+ dow: 0,
59
+ doy: 12 // The week that contains Jan 1st is the first week of the year.
60
+ },
61
+ dir: 'rtl',
62
+ buttonText: {
63
+ prev: "السابق",
64
+ next: "التالي",
65
+ today: "اليوم",
66
+ month: "شهر",
67
+ week: "أسبوع",
68
+ day: "يوم",
69
+ list: "أجندة"
70
+ },
71
+ weekLabel: "أسبوع",
72
+ allDayText: "اليوم كله",
73
+ eventLimitText: "أخرى",
74
+ noEventsMessage: "أي أحداث لعرض"
75
+ };
76
+
77
+ var _m3 = {
78
+ code: "ar-ly",
79
+ week: {
80
+ dow: 6,
81
+ doy: 12 // The week that contains Jan 1st is the first week of the year.
82
+ },
83
+ dir: 'rtl',
84
+ buttonText: {
85
+ prev: "السابق",
86
+ next: "التالي",
87
+ today: "اليوم",
88
+ month: "شهر",
89
+ week: "أسبوع",
90
+ day: "يوم",
91
+ list: "أجندة"
92
+ },
93
+ weekLabel: "أسبوع",
94
+ allDayText: "اليوم كله",
95
+ eventLimitText: "أخرى",
96
+ noEventsMessage: "أي أحداث لعرض"
97
+ };
98
+
99
+ var _m4 = {
100
+ code: "ar-ma",
101
+ week: {
102
+ dow: 6,
103
+ doy: 12 // The week that contains Jan 1st is the first week of the year.
104
+ },
105
+ dir: 'rtl',
106
+ buttonText: {
107
+ prev: "السابق",
108
+ next: "التالي",
109
+ today: "اليوم",
110
+ month: "شهر",
111
+ week: "أسبوع",
112
+ day: "يوم",
113
+ list: "أجندة"
114
+ },
115
+ weekLabel: "أسبوع",
116
+ allDayText: "اليوم كله",
117
+ eventLimitText: "أخرى",
118
+ noEventsMessage: "أي أحداث لعرض"
119
+ };
120
+
121
+ var _m5 = {
122
+ code: "ar-sa",
123
+ week: {
124
+ dow: 0,
125
+ doy: 6 // The week that contains Jan 1st is the first week of the year.
126
+ },
127
+ dir: 'rtl',
128
+ buttonText: {
129
+ prev: "السابق",
130
+ next: "التالي",
131
+ today: "اليوم",
132
+ month: "شهر",
133
+ week: "أسبوع",
134
+ day: "يوم",
135
+ list: "أجندة"
136
+ },
137
+ weekLabel: "أسبوع",
138
+ allDayText: "اليوم كله",
139
+ eventLimitText: "أخرى",
140
+ noEventsMessage: "أي أحداث لعرض"
141
+ };
142
+
143
+ var _m6 = {
144
+ code: "ar-tn",
145
+ week: {
146
+ dow: 1,
147
+ doy: 4 // The week that contains Jan 4th is the first week of the year.
148
+ },
149
+ dir: 'rtl',
150
+ buttonText: {
151
+ prev: "السابق",
152
+ next: "التالي",
153
+ today: "اليوم",
154
+ month: "شهر",
155
+ week: "أسبوع",
156
+ day: "يوم",
157
+ list: "أجندة"
158
+ },
159
+ weekLabel: "أسبوع",
160
+ allDayText: "اليوم كله",
161
+ eventLimitText: "أخرى",
162
+ noEventsMessage: "أي أحداث لعرض"
163
+ };
164
+
165
+ var _m7 = {
166
+ code: "ar",
167
+ week: {
168
+ dow: 6,
169
+ doy: 12 // The week that contains Jan 1st is the first week of the year.
170
+ },
171
+ dir: 'rtl',
172
+ buttonText: {
173
+ prev: "السابق",
174
+ next: "التالي",
175
+ today: "اليوم",
176
+ month: "شهر",
177
+ week: "أسبوع",
178
+ day: "يوم",
179
+ list: "أجندة"
180
+ },
181
+ weekLabel: "أسبوع",
182
+ allDayText: "اليوم كله",
183
+ eventLimitText: "أخرى",
184
+ noEventsMessage: "أي أحداث لعرض"
185
+ };
186
+
187
+ var _m8 = {
188
+ code: "bg",
189
+ week: {
190
+ dow: 1,
191
+ doy: 7 // The week that contains Jan 1st is the first week of the year.
192
+ },
193
+ buttonText: {
194
+ prev: "назад",
195
+ next: "напред",
196
+ today: "днес",
197
+ month: "Месец",
198
+ week: "Седмица",
199
+ day: "Ден",
200
+ list: "График"
201
+ },
202
+ allDayText: "Цял ден",
203
+ eventLimitText: function (n) {
204
+ return "+още " + n;
205
+ },
206
+ noEventsMessage: "Няма събития за показване"
207
+ };
208
+
209
+ var _m9 = {
210
+ code: "bs",
211
+ week: {
212
+ dow: 1,
213
+ doy: 7 // The week that contains Jan 1st is the first week of the year.
214
+ },
215
+ buttonText: {
216
+ prev: "Prošli",
217
+ next: "Sljedeći",
218
+ today: "Danas",
219
+ month: "Mjesec",
220
+ week: "Sedmica",
221
+ day: "Dan",
222
+ list: "Raspored"
223
+ },
224
+ weekLabel: "Sed",
225
+ allDayText: "Cijeli dan",
226
+ eventLimitText: function (n) {
227
+ return "+ još " + n;
228
+ },
229
+ noEventsMessage: "Nema događaja za prikazivanje"
230
+ };
231
+
232
+ var _m10 = {
233
+ code: "ca",
234
+ week: {
235
+ dow: 1,
236
+ doy: 4 // The week that contains Jan 4th is the first week of the year.
237
+ },
238
+ buttonText: {
239
+ prev: "Anterior",
240
+ next: "Següent",
241
+ today: "Avui",
242
+ month: "Mes",
243
+ week: "Setmana",
244
+ day: "Dia",
245
+ list: "Agenda"
246
+ },
247
+ weekLabel: "Set",
248
+ allDayText: "Tot el dia",
249
+ eventLimitText: "més",
250
+ noEventsMessage: "No hi ha esdeveniments per mostrar"
251
+ };
252
+
253
+ var _m11 = {
254
+ code: "cs",
255
+ week: {
256
+ dow: 1,
257
+ doy: 4 // The week that contains Jan 4th is the first week of the year.
258
+ },
259
+ buttonText: {
260
+ prev: "Dříve",
261
+ next: "Později",
262
+ today: "Nyní",
263
+ month: "Měsíc",
264
+ week: "Týden",
265
+ day: "Den",
266
+ list: "Agenda"
267
+ },
268
+ weekLabel: "Týd",
269
+ allDayText: "Celý den",
270
+ eventLimitText: function (n) {
271
+ return "+další: " + n;
272
+ },
273
+ noEventsMessage: "Žádné akce k zobrazení"
274
+ };
275
+
276
+ var _m12 = {
277
+ code: "da",
278
+ week: {
279
+ dow: 1,
280
+ doy: 4 // The week that contains Jan 4th is the first week of the year.
281
+ },
282
+ buttonText: {
283
+ prev: "Forrige",
284
+ next: "Næste",
285
+ today: "Idag",
286
+ month: "Måned",
287
+ week: "Uge",
288
+ day: "Dag",
289
+ list: "Agenda"
290
+ },
291
+ weekLabel: "Uge",
292
+ allDayText: "Hele dagen",
293
+ eventLimitText: "flere",
294
+ noEventsMessage: "Ingen arrangementer at vise"
295
+ };
296
+
297
+ var _m13 = {
298
+ code: "de",
299
+ week: {
300
+ dow: 1,
301
+ doy: 4 // The week that contains Jan 4th is the first week of the year.
302
+ },
303
+ buttonText: {
304
+ prev: "Zurück",
305
+ next: "Vor",
306
+ today: "Heute",
307
+ year: "Jahr",
308
+ month: "Monat",
309
+ week: "Woche",
310
+ day: "Tag",
311
+ list: "Terminübersicht"
312
+ },
313
+ weekLabel: "KW",
314
+ allDayText: "Ganztägig",
315
+ eventLimitText: function (n) {
316
+ return "+ weitere " + n;
317
+ },
318
+ noEventsMessage: "Keine Ereignisse anzuzeigen"
319
+ };
320
+
321
+ var _m14 = {
322
+ code: "el",
323
+ week: {
324
+ dow: 1,
325
+ doy: 4 // The week that contains Jan 4st is the first week of the year.
326
+ },
327
+ buttonText: {
328
+ prev: "Προηγούμενος",
329
+ next: "Επόμενος",
330
+ today: "Σήμερα",
331
+ month: "Μήνας",
332
+ week: "Εβδομάδα",
333
+ day: "Ημέρα",
334
+ list: "Ατζέντα"
335
+ },
336
+ weekLabel: "Εβδ",
337
+ allDayText: "Ολοήμερο",
338
+ eventLimitText: "περισσότερα",
339
+ noEventsMessage: "Δεν υπάρχουν γεγονότα για να εμφανιστεί"
340
+ };
341
+
342
+ var _m15 = {
343
+ code: "en-au",
344
+ week: {
345
+ dow: 1,
346
+ doy: 4 // The week that contains Jan 4th is the first week of the year.
347
+ }
348
+ };
349
+
350
+ var _m16 = {
351
+ code: "en-gb",
352
+ week: {
353
+ dow: 1,
354
+ doy: 4 // The week that contains Jan 4th is the first week of the year.
355
+ }
356
+ };
357
+
358
+ var _m17 = {
359
+ code: "en-nz",
360
+ week: {
361
+ dow: 1,
362
+ doy: 4 // The week that contains Jan 4th is the first week of the year.
363
+ }
364
+ };
365
+
366
+ var _m18 = {
367
+ code: "es",
368
+ week: {
369
+ dow: 0,
370
+ doy: 6 // The week that contains Jan 1st is the first week of the year.
371
+ },
372
+ buttonText: {
373
+ prev: "Ant",
374
+ next: "Sig",
375
+ today: "Hoy",
376
+ month: "Mes",
377
+ week: "Semana",
378
+ day: "Día",
379
+ list: "Agenda"
380
+ },
381
+ weekLabel: "Sm",
382
+ allDayHtml: "Todo<br/>el día",
383
+ eventLimitText: "más",
384
+ noEventsMessage: "No hay eventos para mostrar"
385
+ };
386
+
387
+ var _m19 = {
388
+ code: "es",
389
+ week: {
390
+ dow: 1,
391
+ doy: 4 // The week that contains Jan 4th is the first week of the year.
392
+ },
393
+ buttonText: {
394
+ prev: "Ant",
395
+ next: "Sig",
396
+ today: "Hoy",
397
+ month: "Mes",
398
+ week: "Semana",
399
+ day: "Día",
400
+ list: "Agenda"
401
+ },
402
+ weekLabel: "Sm",
403
+ allDayHtml: "Todo<br/>el día",
404
+ eventLimitText: "más",
405
+ noEventsMessage: "No hay eventos para mostrar"
406
+ };
407
+
408
+ var _m20 = {
409
+ code: "et",
410
+ week: {
411
+ dow: 1,
412
+ doy: 4 // The week that contains Jan 4th is the first week of the year.
413
+ },
414
+ buttonText: {
415
+ prev: "Eelnev",
416
+ next: "Järgnev",
417
+ today: "Täna",
418
+ month: "Kuu",
419
+ week: "Nädal",
420
+ day: "Päev",
421
+ list: "Päevakord"
422
+ },
423
+ weekLabel: "näd",
424
+ allDayText: "Kogu päev",
425
+ eventLimitText: function (n) {
426
+ return "+ veel " + n;
427
+ },
428
+ noEventsMessage: "Kuvamiseks puuduvad sündmused"
429
+ };
430
+
431
+ var _m21 = {
432
+ code: "eu",
433
+ week: {
434
+ dow: 1,
435
+ doy: 7 // The week that contains Jan 1st is the first week of the year.
436
+ },
437
+ buttonText: {
438
+ prev: "Aur",
439
+ next: "Hur",
440
+ today: "Gaur",
441
+ month: "Hilabetea",
442
+ week: "Astea",
443
+ day: "Eguna",
444
+ list: "Agenda"
445
+ },
446
+ weekLabel: "As",
447
+ allDayHtml: "Egun<br/>osoa",
448
+ eventLimitText: "gehiago",
449
+ noEventsMessage: "Ez dago ekitaldirik erakusteko"
450
+ };
451
+
452
+ var _m22 = {
453
+ code: "fa",
454
+ week: {
455
+ dow: 6,
456
+ doy: 12 // The week that contains Jan 1st is the first week of the year.
457
+ },
458
+ dir: 'rtl',
459
+ buttonText: {
460
+ prev: "قبلی",
461
+ next: "بعدی",
462
+ today: "امروز",
463
+ month: "ماه",
464
+ week: "هفته",
465
+ day: "روز",
466
+ list: "برنامه"
467
+ },
468
+ weekLabel: "هف",
469
+ allDayText: "تمام روز",
470
+ eventLimitText: function (n) {
471
+ return "بیش از " + n;
472
+ },
473
+ noEventsMessage: "هیچ رویدادی به نمایش"
474
+ };
475
+
476
+ var _m23 = {
477
+ code: "fi",
478
+ week: {
479
+ dow: 1,
480
+ doy: 4 // The week that contains Jan 4th is the first week of the year.
481
+ },
482
+ buttonText: {
483
+ prev: "Edellinen",
484
+ next: "Seuraava",
485
+ today: "Tänään",
486
+ month: "Kuukausi",
487
+ week: "Viikko",
488
+ day: "Päivä",
489
+ list: "Tapahtumat"
490
+ },
491
+ weekLabel: "Vk",
492
+ allDayText: "Koko päivä",
493
+ eventLimitText: "lisää",
494
+ noEventsMessage: "Ei näytettäviä tapahtumia"
495
+ };
496
+
497
+ var _m24 = {
498
+ code: "fr",
499
+ buttonText: {
500
+ prev: "Précédent",
501
+ next: "Suivant",
502
+ today: "Aujourd'hui",
503
+ year: "Année",
504
+ month: "Mois",
505
+ week: "Semaine",
506
+ day: "Jour",
507
+ list: "Mon planning"
508
+ },
509
+ weekLabel: "Sem.",
510
+ allDayHtml: "Toute la<br/>journée",
511
+ eventLimitText: "en plus",
512
+ noEventsMessage: "Aucun événement à afficher"
513
+ };
514
+
515
+ var _m25 = {
516
+ code: "fr-ch",
517
+ week: {
518
+ dow: 1,
519
+ doy: 4 // The week that contains Jan 4th is the first week of the year.
520
+ },
521
+ buttonText: {
522
+ prev: "Précédent",
523
+ next: "Suivant",
524
+ today: "Courant",
525
+ year: "Année",
526
+ month: "Mois",
527
+ week: "Semaine",
528
+ day: "Jour",
529
+ list: "Mon planning"
530
+ },
531
+ weekLabel: "Sm",
532
+ allDayHtml: "Toute la<br/>journée",
533
+ eventLimitText: "en plus",
534
+ noEventsMessage: "Aucun événement à afficher"
535
+ };
536
+
537
+ var _m26 = {
538
+ code: "fr",
539
+ week: {
540
+ dow: 1,
541
+ doy: 4 // The week that contains Jan 4th is the first week of the year.
542
+ },
543
+ buttonText: {
544
+ prev: "Précédent",
545
+ next: "Suivant",
546
+ today: "Aujourd'hui",
547
+ year: "Année",
548
+ month: "Mois",
549
+ week: "Semaine",
550
+ day: "Jour",
551
+ list: "Mon planning"
552
+ },
553
+ weekLabel: "Sem.",
554
+ allDayHtml: "Toute la<br/>journée",
555
+ eventLimitText: "en plus",
556
+ noEventsMessage: "Aucun événement à afficher"
557
+ };
558
+
559
+ var _m27 = {
560
+ code: "gl",
561
+ week: {
562
+ dow: 1,
563
+ doy: 4 // The week that contains Jan 4th is the first week of the year.
564
+ },
565
+ buttonText: {
566
+ prev: "Ant",
567
+ next: "Seg",
568
+ today: "Hoxe",
569
+ month: "Mes",
570
+ week: "Semana",
571
+ day: "Día",
572
+ list: "Axenda"
573
+ },
574
+ weekLabel: "Sm",
575
+ allDayHtml: "Todo<br/>o día",
576
+ eventLimitText: "máis",
577
+ noEventsMessage: "Non hai eventos para amosar"
578
+ };
579
+
580
+ var _m28 = {
581
+ code: "he",
582
+ dir: 'rtl',
583
+ buttonText: {
584
+ prev: "הקודם",
585
+ next: "הבא",
586
+ today: "היום",
587
+ month: "חודש",
588
+ week: "שבוע",
589
+ day: "יום",
590
+ list: "סדר יום"
591
+ },
592
+ allDayText: "כל היום",
593
+ eventLimitText: "אחר",
594
+ noEventsMessage: "אין אירועים להצגה",
595
+ weekLabel: "שבוע"
596
+ };
597
+
598
+ var _m29 = {
599
+ code: "hi",
600
+ week: {
601
+ dow: 0,
602
+ doy: 6 // The week that contains Jan 1st is the first week of the year.
603
+ },
604
+ buttonText: {
605
+ prev: "पिछला",
606
+ next: "अगला",
607
+ today: "आज",
608
+ month: "महीना",
609
+ week: "सप्ताह",
610
+ day: "दिन",
611
+ list: "कार्यसूची"
612
+ },
613
+ weekLabel: "हफ्ता",
614
+ allDayText: "सभी दिन",
615
+ eventLimitText: function (n) {
616
+ return "+अधिक " + n;
617
+ },
618
+ noEventsMessage: "कोई घटनाओं को प्रदर्शित करने के लिए"
619
+ };
620
+
621
+ var _m30 = {
622
+ code: "hr",
623
+ week: {
624
+ dow: 1,
625
+ doy: 7 // The week that contains Jan 1st is the first week of the year.
626
+ },
627
+ buttonText: {
628
+ prev: "Prijašnji",
629
+ next: "Sljedeći",
630
+ today: "Danas",
631
+ month: "Mjesec",
632
+ week: "Tjedan",
633
+ day: "Dan",
634
+ list: "Raspored"
635
+ },
636
+ weekLabel: "Tje",
637
+ allDayText: "Cijeli dan",
638
+ eventLimitText: function (n) {
639
+ return "+ još " + n;
640
+ },
641
+ noEventsMessage: "Nema događaja za prikaz"
642
+ };
643
+
644
+ var _m31 = {
645
+ code: "hu",
646
+ week: {
647
+ dow: 1,
648
+ doy: 4 // The week that contains Jan 4th is the first week of the year.
649
+ },
650
+ buttonText: {
651
+ prev: "vissza",
652
+ next: "előre",
653
+ today: "ma",
654
+ month: "Hónap",
655
+ week: "Hét",
656
+ day: "Nap",
657
+ list: "Napló"
658
+ },
659
+ weekLabel: "Hét",
660
+ allDayText: "Egész nap",
661
+ eventLimitText: "további",
662
+ noEventsMessage: "Nincs megjeleníthető esemény"
663
+ };
664
+
665
+ var _m32 = {
666
+ code: "id",
667
+ week: {
668
+ dow: 1,
669
+ doy: 7 // The week that contains Jan 1st is the first week of the year.
670
+ },
671
+ buttonText: {
672
+ prev: "mundur",
673
+ next: "maju",
674
+ today: "hari ini",
675
+ month: "Bulan",
676
+ week: "Minggu",
677
+ day: "Hari",
678
+ list: "Agenda"
679
+ },
680
+ weekLabel: "Mg",
681
+ allDayHtml: "Sehari<br/>penuh",
682
+ eventLimitText: "lebih",
683
+ noEventsMessage: "Tidak ada acara untuk ditampilkan"
684
+ };
685
+
686
+ var _m33 = {
687
+ code: "is",
688
+ week: {
689
+ dow: 1,
690
+ doy: 4 // The week that contains Jan 4th is the first week of the year.
691
+ },
692
+ buttonText: {
693
+ prev: "Fyrri",
694
+ next: "Næsti",
695
+ today: "Í dag",
696
+ month: "Mánuður",
697
+ week: "Vika",
698
+ day: "Dagur",
699
+ list: "Dagskrá"
700
+ },
701
+ weekLabel: "Vika",
702
+ allDayHtml: "Allan<br/>daginn",
703
+ eventLimitText: "meira",
704
+ noEventsMessage: "Engir viðburðir til að sýna"
705
+ };
706
+
707
+ var _m34 = {
708
+ code: "it",
709
+ week: {
710
+ dow: 1,
711
+ doy: 4 // The week that contains Jan 4th is the first week of the year.
712
+ },
713
+ buttonText: {
714
+ prev: "Prec",
715
+ next: "Succ",
716
+ today: "Oggi",
717
+ month: "Mese",
718
+ week: "Settimana",
719
+ day: "Giorno",
720
+ list: "Agenda"
721
+ },
722
+ weekLabel: "Sm",
723
+ allDayHtml: "Tutto il<br/>giorno",
724
+ eventLimitText: function (n) {
725
+ return "+altri " + n;
726
+ },
727
+ noEventsMessage: "Non ci sono eventi da visualizzare"
728
+ };
729
+
730
+ var _m35 = {
731
+ code: "ja",
732
+ buttonText: {
733
+ prev: "前",
734
+ next: "次",
735
+ today: "今日",
736
+ month: "月",
737
+ week: "週",
738
+ day: "日",
739
+ list: "予定リスト"
740
+ },
741
+ weekLabel: "週",
742
+ allDayText: "終日",
743
+ eventLimitText: function (n) {
744
+ return "他 " + n + " 件";
745
+ },
746
+ noEventsMessage: "表示する予定はありません"
747
+ };
748
+
749
+ var _m36 = {
750
+ code: "ka",
751
+ week: {
752
+ dow: 1,
753
+ doy: 7
754
+ },
755
+ buttonText: {
756
+ prev: "წინა",
757
+ next: "შემდეგი",
758
+ today: "დღეს",
759
+ month: "თვე",
760
+ week: "კვირა",
761
+ day: "დღე",
762
+ list: "დღის წესრიგი"
763
+ },
764
+ weekLabel: "კვ",
765
+ allDayText: "მთელი დღე",
766
+ eventLimitText: function (n) {
767
+ return "+ კიდევ " + n;
768
+ },
769
+ noEventsMessage: "ღონისძიებები არ არის"
770
+ };
771
+
772
+ var _m37 = {
773
+ code: "kk",
774
+ week: {
775
+ dow: 1,
776
+ doy: 7 // The week that contains Jan 1st is the first week of the year.
777
+ },
778
+ buttonText: {
779
+ prev: "Алдыңғы",
780
+ next: "Келесі",
781
+ today: "Бүгін",
782
+ month: "Ай",
783
+ week: "Апта",
784
+ day: "Күн",
785
+ list: "Күн тәртібі"
786
+ },
787
+ weekLabel: "Не",
788
+ allDayText: "Күні бойы",
789
+ eventLimitText: function (n) {
790
+ return "+ тағы " + n;
791
+ },
792
+ noEventsMessage: "Көрсету үшін оқиғалар жоқ"
793
+ };
794
+
795
+ var _m38 = {
796
+ code: "ko",
797
+ buttonText: {
798
+ prev: "이전달",
799
+ next: "다음달",
800
+ today: "오늘",
801
+ month: "월",
802
+ week: "주",
803
+ day: "일",
804
+ list: "일정목록"
805
+ },
806
+ weekLabel: "주",
807
+ allDayText: "종일",
808
+ eventLimitText: "개",
809
+ noEventsMessage: "일정이 없습니다"
810
+ };
811
+
812
+ var _m39 = {
813
+ code: "lb",
814
+ week: {
815
+ dow: 1,
816
+ doy: 4 // The week that contains Jan 4th is the first week of the year.
817
+ },
818
+ buttonText: {
819
+ prev: "Zréck",
820
+ next: "Weider",
821
+ today: "Haut",
822
+ month: "Mount",
823
+ week: "Woch",
824
+ day: "Dag",
825
+ list: "Terminiwwersiicht"
826
+ },
827
+ weekLabel: "W",
828
+ allDayText: "Ganzen Dag",
829
+ eventLimitText: "méi",
830
+ noEventsMessage: "Nee Evenementer ze affichéieren"
831
+ };
832
+
833
+ var _m40 = {
834
+ code: "lt",
835
+ week: {
836
+ dow: 1,
837
+ doy: 4 // The week that contains Jan 4th is the first week of the year.
838
+ },
839
+ buttonText: {
840
+ prev: "Atgal",
841
+ next: "Pirmyn",
842
+ today: "Šiandien",
843
+ month: "Mėnuo",
844
+ week: "Savaitė",
845
+ day: "Diena",
846
+ list: "Darbotvarkė"
847
+ },
848
+ weekLabel: "SAV",
849
+ allDayText: "Visą dieną",
850
+ eventLimitText: "daugiau",
851
+ noEventsMessage: "Nėra įvykių rodyti"
852
+ };
853
+
854
+ var _m41 = {
855
+ code: "lv",
856
+ week: {
857
+ dow: 1,
858
+ doy: 4 // The week that contains Jan 4th is the first week of the year.
859
+ },
860
+ buttonText: {
861
+ prev: "Iepr.",
862
+ next: "Nāk.",
863
+ today: "Šodien",
864
+ month: "Mēnesis",
865
+ week: "Nedēļa",
866
+ day: "Diena",
867
+ list: "Dienas kārtība"
868
+ },
869
+ weekLabel: "Ned.",
870
+ allDayText: "Visu dienu",
871
+ eventLimitText: function (n) {
872
+ return "+vēl " + n;
873
+ },
874
+ noEventsMessage: "Nav notikumu"
875
+ };
876
+
877
+ var _m42 = {
878
+ code: "mk",
879
+ buttonText: {
880
+ prev: "претходно",
881
+ next: "следно",
882
+ today: "Денес",
883
+ month: "Месец",
884
+ week: "Недела",
885
+ day: "Ден",
886
+ list: "График"
887
+ },
888
+ weekLabel: "Сед",
889
+ allDayText: "Цел ден",
890
+ eventLimitText: function (n) {
891
+ return "+повеќе " + n;
892
+ },
893
+ noEventsMessage: "Нема настани за прикажување"
894
+ };
895
+
896
+ var _m43 = {
897
+ code: "ms",
898
+ week: {
899
+ dow: 1,
900
+ doy: 7 // The week that contains Jan 1st is the first week of the year.
901
+ },
902
+ buttonText: {
903
+ prev: "Sebelum",
904
+ next: "Selepas",
905
+ today: "hari ini",
906
+ month: "Bulan",
907
+ week: "Minggu",
908
+ day: "Hari",
909
+ list: "Agenda"
910
+ },
911
+ weekLabel: "Mg",
912
+ allDayText: "Sepanjang hari",
913
+ eventLimitText: function (n) {
914
+ return "masih ada " + n + " acara";
915
+ },
916
+ noEventsMessage: "Tiada peristiwa untuk dipaparkan"
917
+ };
918
+
919
+ var _m44 = {
920
+ code: "nb",
921
+ week: {
922
+ dow: 1,
923
+ doy: 4 // The week that contains Jan 4th is the first week of the year.
924
+ },
925
+ buttonText: {
926
+ prev: "Forrige",
927
+ next: "Neste",
928
+ today: "I dag",
929
+ month: "Måned",
930
+ week: "Uke",
931
+ day: "Dag",
932
+ list: "Agenda"
933
+ },
934
+ weekLabel: "Uke",
935
+ allDayText: "Hele dagen",
936
+ eventLimitText: "til",
937
+ noEventsMessage: "Ingen hendelser å vise"
938
+ };
939
+
940
+ var _m45 = {
941
+ code: "nl",
942
+ week: {
943
+ dow: 1,
944
+ doy: 4 // The week that contains Jan 4th is the first week of the year.
945
+ },
946
+ buttonText: {
947
+ prev: "Voorgaand",
948
+ next: "Volgende",
949
+ today: "Vandaag",
950
+ year: "Jaar",
951
+ month: "Maand",
952
+ week: "Week",
953
+ day: "Dag",
954
+ list: "Agenda"
955
+ },
956
+ allDayText: "Hele dag",
957
+ eventLimitText: "extra",
958
+ noEventsMessage: "Geen evenementen om te laten zien"
959
+ };
960
+
961
+ var _m46 = {
962
+ code: "nn",
963
+ week: {
964
+ dow: 1,
965
+ doy: 4 // The week that contains Jan 4th is the first week of the year.
966
+ },
967
+ buttonText: {
968
+ prev: "Førre",
969
+ next: "Neste",
970
+ today: "I dag",
971
+ month: "Månad",
972
+ week: "Veke",
973
+ day: "Dag",
974
+ list: "Agenda"
975
+ },
976
+ weekLabel: "Veke",
977
+ allDayText: "Heile dagen",
978
+ eventLimitText: "til",
979
+ noEventsMessage: "Ingen hendelser å vise"
980
+ };
981
+
982
+ var _m47 = {
983
+ code: "pl",
984
+ week: {
985
+ dow: 1,
986
+ doy: 4 // The week that contains Jan 4th is the first week of the year.
987
+ },
988
+ buttonText: {
989
+ prev: "Poprzedni",
990
+ next: "Następny",
991
+ today: "Dziś",
992
+ month: "Miesiąc",
993
+ week: "Tydzień",
994
+ day: "Dzień",
995
+ list: "Plan dnia"
996
+ },
997
+ weekLabel: "Tydz",
998
+ allDayText: "Cały dzień",
999
+ eventLimitText: "więcej",
1000
+ noEventsMessage: "Brak wydarzeń do wyświetlenia"
1001
+ };
1002
+
1003
+ var _m48 = {
1004
+ code: "pt-br",
1005
+ buttonText: {
1006
+ prev: "Anterior",
1007
+ next: "Próximo",
1008
+ today: "Hoje",
1009
+ month: "Mês",
1010
+ week: "Semana",
1011
+ day: "Dia",
1012
+ list: "Compromissos"
1013
+ },
1014
+ weekLabel: "Sm",
1015
+ allDayText: "dia inteiro",
1016
+ eventLimitText: function (n) {
1017
+ return "mais +" + n;
1018
+ },
1019
+ noEventsMessage: "Não há eventos para mostrar"
1020
+ };
1021
+
1022
+ var _m49 = {
1023
+ code: "pt",
1024
+ week: {
1025
+ dow: 1,
1026
+ doy: 4 // The week that contains Jan 4th is the first week of the year.
1027
+ },
1028
+ buttonText: {
1029
+ prev: "Anterior",
1030
+ next: "Seguinte",
1031
+ today: "Hoje",
1032
+ month: "Mês",
1033
+ week: "Semana",
1034
+ day: "Dia",
1035
+ list: "Agenda"
1036
+ },
1037
+ weekLabel: "Sem",
1038
+ allDayText: "Todo o dia",
1039
+ eventLimitText: "mais",
1040
+ noEventsMessage: "Não há eventos para mostrar"
1041
+ };
1042
+
1043
+ var _m50 = {
1044
+ code: "ro",
1045
+ week: {
1046
+ dow: 1,
1047
+ doy: 7 // The week that contains Jan 1st is the first week of the year.
1048
+ },
1049
+ buttonText: {
1050
+ prev: "precedentă",
1051
+ next: "următoare",
1052
+ today: "Azi",
1053
+ month: "Lună",
1054
+ week: "Săptămână",
1055
+ day: "Zi",
1056
+ list: "Agendă"
1057
+ },
1058
+ weekLabel: "Săpt",
1059
+ allDayText: "Toată ziua",
1060
+ eventLimitText: function (n) {
1061
+ return "+alte " + n;
1062
+ },
1063
+ noEventsMessage: "Nu există evenimente de afișat"
1064
+ };
1065
+
1066
+ var _m51 = {
1067
+ code: "ru",
1068
+ week: {
1069
+ dow: 1,
1070
+ doy: 4 // The week that contains Jan 4th is the first week of the year.
1071
+ },
1072
+ buttonText: {
1073
+ prev: "Пред",
1074
+ next: "След",
1075
+ today: "Сегодня",
1076
+ month: "Месяц",
1077
+ week: "Неделя",
1078
+ day: "День",
1079
+ list: "Повестка дня"
1080
+ },
1081
+ weekLabel: "Нед",
1082
+ allDayText: "Весь день",
1083
+ eventLimitText: function (n) {
1084
+ return "+ ещё " + n;
1085
+ },
1086
+ noEventsMessage: "Нет событий для отображения"
1087
+ };
1088
+
1089
+ var _m52 = {
1090
+ code: "sk",
1091
+ week: {
1092
+ dow: 1,
1093
+ doy: 4 // The week that contains Jan 4th is the first week of the year.
1094
+ },
1095
+ buttonText: {
1096
+ prev: "Predchádzajúci",
1097
+ next: "Nasledujúci",
1098
+ today: "Dnes",
1099
+ month: "Mesiac",
1100
+ week: "Týždeň",
1101
+ day: "Deň",
1102
+ list: "Rozvrh"
1103
+ },
1104
+ weekLabel: "Ty",
1105
+ allDayText: "Celý deň",
1106
+ eventLimitText: function (n) {
1107
+ return "+ďalšie: " + n;
1108
+ },
1109
+ noEventsMessage: "Žiadne akcie na zobrazenie"
1110
+ };
1111
+
1112
+ var _m53 = {
1113
+ code: "sl",
1114
+ week: {
1115
+ dow: 1,
1116
+ doy: 7 // The week that contains Jan 1st is the first week of the year.
1117
+ },
1118
+ buttonText: {
1119
+ prev: "Prejšnji",
1120
+ next: "Naslednji",
1121
+ today: "Trenutni",
1122
+ month: "Mesec",
1123
+ week: "Teden",
1124
+ day: "Dan",
1125
+ list: "Dnevni red"
1126
+ },
1127
+ weekLabel: "Teden",
1128
+ allDayText: "Ves dan",
1129
+ eventLimitText: "več",
1130
+ noEventsMessage: "Ni dogodkov za prikaz"
1131
+ };
1132
+
1133
+ var _m54 = {
1134
+ code: "sq",
1135
+ week: {
1136
+ dow: 1,
1137
+ doy: 4 // The week that contains Jan 4th is the first week of the year.
1138
+ },
1139
+ buttonText: {
1140
+ prev: "mbrapa",
1141
+ next: "Përpara",
1142
+ today: "sot",
1143
+ month: "Muaj",
1144
+ week: "Javë",
1145
+ day: "Ditë",
1146
+ list: "Listë"
1147
+ },
1148
+ weekLabel: "Ja",
1149
+ allDayHtml: "Gjithë<br/>ditën",
1150
+ eventLimitText: function (n) {
1151
+ return "+më tepër " + n;
1152
+ },
1153
+ noEventsMessage: "Nuk ka evente për të shfaqur"
1154
+ };
1155
+
1156
+ var _m55 = {
1157
+ code: "sr-cyrl",
1158
+ week: {
1159
+ dow: 1,
1160
+ doy: 7 // The week that contains Jan 1st is the first week of the year.
1161
+ },
1162
+ buttonText: {
1163
+ prev: "Претходна",
1164
+ next: "следећи",
1165
+ today: "Данас",
1166
+ month: "Месец",
1167
+ week: "Недеља",
1168
+ day: "Дан",
1169
+ list: "Планер"
1170
+ },
1171
+ weekLabel: "Сед",
1172
+ allDayText: "Цео дан",
1173
+ eventLimitText: function (n) {
1174
+ return "+ још " + n;
1175
+ },
1176
+ noEventsMessage: "Нема догађаја за приказ"
1177
+ };
1178
+
1179
+ var _m56 = {
1180
+ code: "sr",
1181
+ week: {
1182
+ dow: 1,
1183
+ doy: 7 // The week that contains Jan 1st is the first week of the year.
1184
+ },
1185
+ buttonText: {
1186
+ prev: "Prethodna",
1187
+ next: "Sledeći",
1188
+ today: "Danas",
1189
+ month: "Mеsеc",
1190
+ week: "Nеdеlja",
1191
+ day: "Dan",
1192
+ list: "Planеr"
1193
+ },
1194
+ weekLabel: "Sed",
1195
+ allDayText: "Cеo dan",
1196
+ eventLimitText: function (n) {
1197
+ return "+ još " + n;
1198
+ },
1199
+ noEventsMessage: "Nеma događaja za prikaz"
1200
+ };
1201
+
1202
+ var _m57 = {
1203
+ code: "sv",
1204
+ week: {
1205
+ dow: 1,
1206
+ doy: 4 // The week that contains Jan 4th is the first week of the year.
1207
+ },
1208
+ buttonText: {
1209
+ prev: "Förra",
1210
+ next: "Nästa",
1211
+ today: "Idag",
1212
+ month: "Månad",
1213
+ week: "Vecka",
1214
+ day: "Dag",
1215
+ list: "Program"
1216
+ },
1217
+ weekLabel: "v.",
1218
+ allDayText: "Heldag",
1219
+ eventLimitText: "till",
1220
+ noEventsMessage: "Inga händelser att visa"
1221
+ };
1222
+
1223
+ var _m58 = {
1224
+ code: "th",
1225
+ buttonText: {
1226
+ prev: "ย้อน",
1227
+ next: "ถัดไป",
1228
+ today: "วันนี้",
1229
+ month: "เดือน",
1230
+ week: "สัปดาห์",
1231
+ day: "วัน",
1232
+ list: "แผนงาน"
1233
+ },
1234
+ allDayText: "ตลอดวัน",
1235
+ eventLimitText: "เพิ่มเติม",
1236
+ noEventsMessage: "ไม่มีกิจกรรมที่จะแสดง"
1237
+ };
1238
+
1239
+ var _m59 = {
1240
+ code: "tr",
1241
+ week: {
1242
+ dow: 1,
1243
+ doy: 7 // The week that contains Jan 1st is the first week of the year.
1244
+ },
1245
+ buttonText: {
1246
+ prev: "geri",
1247
+ next: "ileri",
1248
+ today: "bugün",
1249
+ month: "Ay",
1250
+ week: "Hafta",
1251
+ day: "Gün",
1252
+ list: "Ajanda"
1253
+ },
1254
+ weekLabel: "Hf",
1255
+ allDayText: "Tüm gün",
1256
+ eventLimitText: "daha fazla",
1257
+ noEventsMessage: "Gösterilecek etkinlik yok"
1258
+ };
1259
+
1260
+ var _m60 = {
1261
+ code: "uk",
1262
+ week: {
1263
+ dow: 1,
1264
+ doy: 7 // The week that contains Jan 1st is the first week of the year.
1265
+ },
1266
+ buttonText: {
1267
+ prev: "Попередній",
1268
+ next: "далі",
1269
+ today: "Сьогодні",
1270
+ month: "Місяць",
1271
+ week: "Тиждень",
1272
+ day: "День",
1273
+ list: "Порядок денний"
1274
+ },
1275
+ weekLabel: "Тиж",
1276
+ allDayText: "Увесь день",
1277
+ eventLimitText: function (n) {
1278
+ return "+ще " + n + "...";
1279
+ },
1280
+ noEventsMessage: "Немає подій для відображення"
1281
+ };
1282
+
1283
+ var _m61 = {
1284
+ code: "vi",
1285
+ week: {
1286
+ dow: 1,
1287
+ doy: 4 // The week that contains Jan 4th is the first week of the year.
1288
+ },
1289
+ buttonText: {
1290
+ prev: "Trước",
1291
+ next: "Tiếp",
1292
+ today: "Hôm nay",
1293
+ month: "Tháng",
1294
+ week: "Tuần",
1295
+ day: "Ngày",
1296
+ list: "Lịch biểu"
1297
+ },
1298
+ weekLabel: "Tu",
1299
+ allDayText: "Cả ngày",
1300
+ eventLimitText: function (n) {
1301
+ return "+ thêm " + n;
1302
+ },
1303
+ noEventsMessage: "Không có sự kiện để hiển thị"
1304
+ };
1305
+
1306
+ var _m62 = {
1307
+ code: "zh-cn",
1308
+ week: {
1309
+ // GB/T 7408-1994《数据元和交换格式·信息交换·日期和时间表示法》与ISO 8601:1988等效
1310
+ dow: 1,
1311
+ doy: 4 // The week that contains Jan 4th is the first week of the year.
1312
+ },
1313
+ buttonText: {
1314
+ prev: "上月",
1315
+ next: "下月",
1316
+ today: "今天",
1317
+ month: "月",
1318
+ week: "周",
1319
+ day: "日",
1320
+ list: "日程"
1321
+ },
1322
+ weekLabel: "周",
1323
+ allDayText: "全天",
1324
+ eventLimitText: function (n) {
1325
+ return "另外 " + n + " 个";
1326
+ },
1327
+ noEventsMessage: "没有事件显示"
1328
+ };
1329
+
1330
+ var _m63 = {
1331
+ code: "zh-tw",
1332
+ buttonText: {
1333
+ prev: "上月",
1334
+ next: "下月",
1335
+ today: "今天",
1336
+ month: "月",
1337
+ week: "週",
1338
+ day: "天",
1339
+ list: "活動列表"
1340
+ },
1341
+ weekLabel: "周",
1342
+ allDayText: "整天",
1343
+ eventLimitText: '顯示更多',
1344
+ noEventsMessage: "没有任何活動"
1345
+ };
1346
+
1347
+ var _arrayEntry = [
1348
+ _m0, _m1, _m2, _m3, _m4, _m5, _m6, _m7, _m8, _m9, _m10, _m11, _m12, _m13, _m14, _m15, _m16, _m17, _m18, _m19, _m20, _m21, _m22, _m23, _m24, _m25, _m26, _m27, _m28, _m29, _m30, _m31, _m32, _m33, _m34, _m35, _m36, _m37, _m38, _m39, _m40, _m41, _m42, _m43, _m44, _m45, _m46, _m47, _m48, _m49, _m50, _m51, _m52, _m53, _m54, _m55, _m56, _m57, _m58, _m59, _m60, _m61, _m62, _m63
1349
+ ];
1350
+
1351
+ return _arrayEntry;
1352
+
1353
+ }));