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,30 @@
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.nb = factory()));
5
+ }(this, function () { 'use strict';
6
+
7
+ var nb = {
8
+ code: "nb",
9
+ week: {
10
+ dow: 1,
11
+ doy: 4 // The week that contains Jan 4th is the first week of the year.
12
+ },
13
+ buttonText: {
14
+ prev: "Forrige",
15
+ next: "Neste",
16
+ today: "I dag",
17
+ month: "Måned",
18
+ week: "Uke",
19
+ day: "Dag",
20
+ list: "Agenda"
21
+ },
22
+ weekLabel: "Uke",
23
+ allDayText: "Hele dagen",
24
+ eventLimitText: "til",
25
+ noEventsMessage: "Ingen hendelser å vise"
26
+ };
27
+
28
+ return nb;
29
+
30
+ }));
@@ -0,0 +1,30 @@
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.nl = factory()));
5
+ }(this, function () { 'use strict';
6
+
7
+ var nl = {
8
+ code: "nl",
9
+ week: {
10
+ dow: 1,
11
+ doy: 4 // The week that contains Jan 4th is the first week of the year.
12
+ },
13
+ buttonText: {
14
+ prev: "Voorgaand",
15
+ next: "Volgende",
16
+ today: "Vandaag",
17
+ year: "Jaar",
18
+ month: "Maand",
19
+ week: "Week",
20
+ day: "Dag",
21
+ list: "Agenda"
22
+ },
23
+ allDayText: "Hele dag",
24
+ eventLimitText: "extra",
25
+ noEventsMessage: "Geen evenementen om te laten zien"
26
+ };
27
+
28
+ return nl;
29
+
30
+ }));
@@ -0,0 +1,30 @@
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.nn = factory()));
5
+ }(this, function () { 'use strict';
6
+
7
+ var nn = {
8
+ code: "nn",
9
+ week: {
10
+ dow: 1,
11
+ doy: 4 // The week that contains Jan 4th is the first week of the year.
12
+ },
13
+ buttonText: {
14
+ prev: "Førre",
15
+ next: "Neste",
16
+ today: "I dag",
17
+ month: "Månad",
18
+ week: "Veke",
19
+ day: "Dag",
20
+ list: "Agenda"
21
+ },
22
+ weekLabel: "Veke",
23
+ allDayText: "Heile dagen",
24
+ eventLimitText: "til",
25
+ noEventsMessage: "Ingen hendelser å vise"
26
+ };
27
+
28
+ return nn;
29
+
30
+ }));
@@ -0,0 +1,30 @@
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.pl = factory()));
5
+ }(this, function () { 'use strict';
6
+
7
+ var pl = {
8
+ code: "pl",
9
+ week: {
10
+ dow: 1,
11
+ doy: 4 // The week that contains Jan 4th is the first week of the year.
12
+ },
13
+ buttonText: {
14
+ prev: "Poprzedni",
15
+ next: "Następny",
16
+ today: "Dziś",
17
+ month: "Miesiąc",
18
+ week: "Tydzień",
19
+ day: "Dzień",
20
+ list: "Plan dnia"
21
+ },
22
+ weekLabel: "Tydz",
23
+ allDayText: "Cały dzień",
24
+ eventLimitText: "więcej",
25
+ noEventsMessage: "Brak wydarzeń do wyświetlenia"
26
+ };
27
+
28
+ return pl;
29
+
30
+ }));
@@ -0,0 +1,28 @@
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['pt-br'] = factory()));
5
+ }(this, function () { 'use strict';
6
+
7
+ var ptBr = {
8
+ code: "pt-br",
9
+ buttonText: {
10
+ prev: "Anterior",
11
+ next: "Próximo",
12
+ today: "Hoje",
13
+ month: "Mês",
14
+ week: "Semana",
15
+ day: "Dia",
16
+ list: "Compromissos"
17
+ },
18
+ weekLabel: "Sm",
19
+ allDayText: "dia inteiro",
20
+ eventLimitText: function (n) {
21
+ return "mais +" + n;
22
+ },
23
+ noEventsMessage: "Não há eventos para mostrar"
24
+ };
25
+
26
+ return ptBr;
27
+
28
+ }));
@@ -0,0 +1,30 @@
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.pt = factory()));
5
+ }(this, function () { 'use strict';
6
+
7
+ var pt = {
8
+ code: "pt",
9
+ week: {
10
+ dow: 1,
11
+ doy: 4 // The week that contains Jan 4th is the first week of the year.
12
+ },
13
+ buttonText: {
14
+ prev: "Anterior",
15
+ next: "Seguinte",
16
+ today: "Hoje",
17
+ month: "Mês",
18
+ week: "Semana",
19
+ day: "Dia",
20
+ list: "Agenda"
21
+ },
22
+ weekLabel: "Sem",
23
+ allDayText: "Todo o dia",
24
+ eventLimitText: "mais",
25
+ noEventsMessage: "Não há eventos para mostrar"
26
+ };
27
+
28
+ return pt;
29
+
30
+ }));
@@ -0,0 +1,32 @@
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.ro = factory()));
5
+ }(this, function () { 'use strict';
6
+
7
+ var ro = {
8
+ code: "ro",
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: "precedentă",
15
+ next: "următoare",
16
+ today: "Azi",
17
+ month: "Lună",
18
+ week: "Săptămână",
19
+ day: "Zi",
20
+ list: "Agendă"
21
+ },
22
+ weekLabel: "Săpt",
23
+ allDayText: "Toată ziua",
24
+ eventLimitText: function (n) {
25
+ return "+alte " + n;
26
+ },
27
+ noEventsMessage: "Nu există evenimente de afișat"
28
+ };
29
+
30
+ return ro;
31
+
32
+ }));
@@ -0,0 +1,32 @@
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.ru = factory()));
5
+ }(this, function () { 'use strict';
6
+
7
+ var ru = {
8
+ code: "ru",
9
+ week: {
10
+ dow: 1,
11
+ doy: 4 // The week that contains Jan 4th 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
+ weekLabel: "Нед",
23
+ allDayText: "Весь день",
24
+ eventLimitText: function (n) {
25
+ return "+ ещё " + n;
26
+ },
27
+ noEventsMessage: "Нет событий для отображения"
28
+ };
29
+
30
+ return ru;
31
+
32
+ }));
@@ -0,0 +1,32 @@
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.sk = factory()));
5
+ }(this, function () { 'use strict';
6
+
7
+ var sk = {
8
+ code: "sk",
9
+ week: {
10
+ dow: 1,
11
+ doy: 4 // The week that contains Jan 4th is the first week of the year.
12
+ },
13
+ buttonText: {
14
+ prev: "Predchádzajúci",
15
+ next: "Nasledujúci",
16
+ today: "Dnes",
17
+ month: "Mesiac",
18
+ week: "Týždeň",
19
+ day: "Deň",
20
+ list: "Rozvrh"
21
+ },
22
+ weekLabel: "Ty",
23
+ allDayText: "Celý deň",
24
+ eventLimitText: function (n) {
25
+ return "+ďalšie: " + n;
26
+ },
27
+ noEventsMessage: "Žiadne akcie na zobrazenie"
28
+ };
29
+
30
+ return sk;
31
+
32
+ }));
@@ -0,0 +1,30 @@
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.sl = factory()));
5
+ }(this, function () { 'use strict';
6
+
7
+ var sl = {
8
+ code: "sl",
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: "Prejšnji",
15
+ next: "Naslednji",
16
+ today: "Trenutni",
17
+ month: "Mesec",
18
+ week: "Teden",
19
+ day: "Dan",
20
+ list: "Dnevni red"
21
+ },
22
+ weekLabel: "Teden",
23
+ allDayText: "Ves dan",
24
+ eventLimitText: "več",
25
+ noEventsMessage: "Ni dogodkov za prikaz"
26
+ };
27
+
28
+ return sl;
29
+
30
+ }));
@@ -0,0 +1,32 @@
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.sq = factory()));
5
+ }(this, function () { 'use strict';
6
+
7
+ var sq = {
8
+ code: "sq",
9
+ week: {
10
+ dow: 1,
11
+ doy: 4 // The week that contains Jan 4th is the first week of the year.
12
+ },
13
+ buttonText: {
14
+ prev: "mbrapa",
15
+ next: "Përpara",
16
+ today: "sot",
17
+ month: "Muaj",
18
+ week: "Javë",
19
+ day: "Ditë",
20
+ list: "Listë"
21
+ },
22
+ weekLabel: "Ja",
23
+ allDayHtml: "Gjithë<br/>ditën",
24
+ eventLimitText: function (n) {
25
+ return "+më tepër " + n;
26
+ },
27
+ noEventsMessage: "Nuk ka evente për të shfaqur"
28
+ };
29
+
30
+ return sq;
31
+
32
+ }));
@@ -0,0 +1,32 @@
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['sr-cyrl'] = factory()));
5
+ }(this, function () { 'use strict';
6
+
7
+ var srCyrl = {
8
+ code: "sr-cyrl",
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
+ weekLabel: "Сед",
23
+ allDayText: "Цео дан",
24
+ eventLimitText: function (n) {
25
+ return "+ још " + n;
26
+ },
27
+ noEventsMessage: "Нема догађаја за приказ"
28
+ };
29
+
30
+ return srCyrl;
31
+
32
+ }));
@@ -0,0 +1,32 @@
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.sr = factory()));
5
+ }(this, function () { 'use strict';
6
+
7
+ var sr = {
8
+ code: "sr",
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: "Prethodna",
15
+ next: "Sledeći",
16
+ today: "Danas",
17
+ month: "Mеsеc",
18
+ week: "Nеdеlja",
19
+ day: "Dan",
20
+ list: "Planеr"
21
+ },
22
+ weekLabel: "Sed",
23
+ allDayText: "Cеo dan",
24
+ eventLimitText: function (n) {
25
+ return "+ još " + n;
26
+ },
27
+ noEventsMessage: "Nеma događaja za prikaz"
28
+ };
29
+
30
+ return sr;
31
+
32
+ }));
@@ -0,0 +1,30 @@
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.sv = factory()));
5
+ }(this, function () { 'use strict';
6
+
7
+ var sv = {
8
+ code: "sv",
9
+ week: {
10
+ dow: 1,
11
+ doy: 4 // The week that contains Jan 4th is the first week of the year.
12
+ },
13
+ buttonText: {
14
+ prev: "Förra",
15
+ next: "Nästa",
16
+ today: "Idag",
17
+ month: "Månad",
18
+ week: "Vecka",
19
+ day: "Dag",
20
+ list: "Program"
21
+ },
22
+ weekLabel: "v.",
23
+ allDayText: "Heldag",
24
+ eventLimitText: "till",
25
+ noEventsMessage: "Inga händelser att visa"
26
+ };
27
+
28
+ return sv;
29
+
30
+ }));