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.el = factory()));
5
+ }(this, function () { 'use strict';
6
+
7
+ var el = {
8
+ code: "el",
9
+ week: {
10
+ dow: 1,
11
+ doy: 4 // The week that contains Jan 4st 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: "περισσότερα",
25
+ noEventsMessage: "Δεν υπάρχουν γεγονότα για να εμφανιστεί"
26
+ };
27
+
28
+ return el;
29
+
30
+ }));
@@ -0,0 +1,17 @@
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['en-au'] = factory()));
5
+ }(this, function () { 'use strict';
6
+
7
+ var enAu = {
8
+ code: "en-au",
9
+ week: {
10
+ dow: 1,
11
+ doy: 4 // The week that contains Jan 4th is the first week of the year.
12
+ }
13
+ };
14
+
15
+ return enAu;
16
+
17
+ }));
@@ -0,0 +1,17 @@
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['en-gb'] = factory()));
5
+ }(this, function () { 'use strict';
6
+
7
+ var enGb = {
8
+ code: "en-gb",
9
+ week: {
10
+ dow: 1,
11
+ doy: 4 // The week that contains Jan 4th is the first week of the year.
12
+ }
13
+ };
14
+
15
+ return enGb;
16
+
17
+ }));
@@ -0,0 +1,17 @@
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['en-nz'] = factory()));
5
+ }(this, function () { 'use strict';
6
+
7
+ var enNz = {
8
+ code: "en-nz",
9
+ week: {
10
+ dow: 1,
11
+ doy: 4 // The week that contains Jan 4th is the first week of the year.
12
+ }
13
+ };
14
+
15
+ return enNz;
16
+
17
+ }));
@@ -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['es-us'] = factory()));
5
+ }(this, function () { 'use strict';
6
+
7
+ var esUs = {
8
+ code: "es",
9
+ week: {
10
+ dow: 0,
11
+ doy: 6 // The week that contains Jan 1st is the first week of the year.
12
+ },
13
+ buttonText: {
14
+ prev: "Ant",
15
+ next: "Sig",
16
+ today: "Hoy",
17
+ month: "Mes",
18
+ week: "Semana",
19
+ day: "Día",
20
+ list: "Agenda"
21
+ },
22
+ weekLabel: "Sm",
23
+ allDayHtml: "Todo<br/>el día",
24
+ eventLimitText: "más",
25
+ noEventsMessage: "No hay eventos para mostrar"
26
+ };
27
+
28
+ return esUs;
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.es = factory()));
5
+ }(this, function () { 'use strict';
6
+
7
+ var es = {
8
+ code: "es",
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: "Ant",
15
+ next: "Sig",
16
+ today: "Hoy",
17
+ month: "Mes",
18
+ week: "Semana",
19
+ day: "Día",
20
+ list: "Agenda"
21
+ },
22
+ weekLabel: "Sm",
23
+ allDayHtml: "Todo<br/>el día",
24
+ eventLimitText: "más",
25
+ noEventsMessage: "No hay eventos para mostrar"
26
+ };
27
+
28
+ return es;
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.et = factory()));
5
+ }(this, function () { 'use strict';
6
+
7
+ var et = {
8
+ code: "et",
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: "Eelnev",
15
+ next: "Järgnev",
16
+ today: "Täna",
17
+ month: "Kuu",
18
+ week: "Nädal",
19
+ day: "Päev",
20
+ list: "Päevakord"
21
+ },
22
+ weekLabel: "näd",
23
+ allDayText: "Kogu päev",
24
+ eventLimitText: function (n) {
25
+ return "+ veel " + n;
26
+ },
27
+ noEventsMessage: "Kuvamiseks puuduvad sündmused"
28
+ };
29
+
30
+ return et;
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.eu = factory()));
5
+ }(this, function () { 'use strict';
6
+
7
+ var eu = {
8
+ code: "eu",
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: "Aur",
15
+ next: "Hur",
16
+ today: "Gaur",
17
+ month: "Hilabetea",
18
+ week: "Astea",
19
+ day: "Eguna",
20
+ list: "Agenda"
21
+ },
22
+ weekLabel: "As",
23
+ allDayHtml: "Egun<br/>osoa",
24
+ eventLimitText: "gehiago",
25
+ noEventsMessage: "Ez dago ekitaldirik erakusteko"
26
+ };
27
+
28
+ return eu;
29
+
30
+ }));
@@ -0,0 +1,33 @@
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.fa = factory()));
5
+ }(this, function () { 'use strict';
6
+
7
+ var fa = {
8
+ code: "fa",
9
+ week: {
10
+ dow: 6,
11
+ doy: 12 // The week that contains Jan 1st is the first week of the year.
12
+ },
13
+ dir: 'rtl',
14
+ buttonText: {
15
+ prev: "قبلی",
16
+ next: "بعدی",
17
+ today: "امروز",
18
+ month: "ماه",
19
+ week: "هفته",
20
+ day: "روز",
21
+ list: "برنامه"
22
+ },
23
+ weekLabel: "هف",
24
+ allDayText: "تمام روز",
25
+ eventLimitText: function (n) {
26
+ return "بیش از " + n;
27
+ },
28
+ noEventsMessage: "هیچ رویدادی به نمایش"
29
+ };
30
+
31
+ return fa;
32
+
33
+ }));
@@ -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.fi = factory()));
5
+ }(this, function () { 'use strict';
6
+
7
+ var fi = {
8
+ code: "fi",
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: "Edellinen",
15
+ next: "Seuraava",
16
+ today: "Tänään",
17
+ month: "Kuukausi",
18
+ week: "Viikko",
19
+ day: "Päivä",
20
+ list: "Tapahtumat"
21
+ },
22
+ weekLabel: "Vk",
23
+ allDayText: "Koko päivä",
24
+ eventLimitText: "lisää",
25
+ noEventsMessage: "Ei näytettäviä tapahtumia"
26
+ };
27
+
28
+ return fi;
29
+
30
+ }));
@@ -0,0 +1,27 @@
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['fr-ca'] = factory()));
5
+ }(this, function () { 'use strict';
6
+
7
+ var frCa = {
8
+ code: "fr",
9
+ buttonText: {
10
+ prev: "Précédent",
11
+ next: "Suivant",
12
+ today: "Aujourd'hui",
13
+ year: "Année",
14
+ month: "Mois",
15
+ week: "Semaine",
16
+ day: "Jour",
17
+ list: "Mon planning"
18
+ },
19
+ weekLabel: "Sem.",
20
+ allDayHtml: "Toute la<br/>journée",
21
+ eventLimitText: "en plus",
22
+ noEventsMessage: "Aucun événement à afficher"
23
+ };
24
+
25
+ return frCa;
26
+
27
+ }));
@@ -0,0 +1,31 @@
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['fr-ch'] = factory()));
5
+ }(this, function () { 'use strict';
6
+
7
+ var frCh = {
8
+ code: "fr-ch",
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: "Précédent",
15
+ next: "Suivant",
16
+ today: "Courant",
17
+ year: "Année",
18
+ month: "Mois",
19
+ week: "Semaine",
20
+ day: "Jour",
21
+ list: "Mon planning"
22
+ },
23
+ weekLabel: "Sm",
24
+ allDayHtml: "Toute la<br/>journée",
25
+ eventLimitText: "en plus",
26
+ noEventsMessage: "Aucun événement à afficher"
27
+ };
28
+
29
+ return frCh;
30
+
31
+ }));
@@ -0,0 +1,31 @@
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.fr = factory()));
5
+ }(this, function () { 'use strict';
6
+
7
+ var fr = {
8
+ code: "fr",
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: "Précédent",
15
+ next: "Suivant",
16
+ today: "Aujourd'hui",
17
+ year: "Année",
18
+ month: "Mois",
19
+ week: "Semaine",
20
+ day: "Jour",
21
+ list: "Mon planning"
22
+ },
23
+ weekLabel: "Sem.",
24
+ allDayHtml: "Toute la<br/>journée",
25
+ eventLimitText: "en plus",
26
+ noEventsMessage: "Aucun événement à afficher"
27
+ };
28
+
29
+ return fr;
30
+
31
+ }));
@@ -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.gl = factory()));
5
+ }(this, function () { 'use strict';
6
+
7
+ var gl = {
8
+ code: "gl",
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: "Ant",
15
+ next: "Seg",
16
+ today: "Hoxe",
17
+ month: "Mes",
18
+ week: "Semana",
19
+ day: "Día",
20
+ list: "Axenda"
21
+ },
22
+ weekLabel: "Sm",
23
+ allDayHtml: "Todo<br/>o día",
24
+ eventLimitText: "máis",
25
+ noEventsMessage: "Non hai eventos para amosar"
26
+ };
27
+
28
+ return gl;
29
+
30
+ }));
@@ -0,0 +1,27 @@
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.he = factory()));
5
+ }(this, function () { 'use strict';
6
+
7
+ var he = {
8
+ code: "he",
9
+ dir: 'rtl',
10
+ buttonText: {
11
+ prev: "הקודם",
12
+ next: "הבא",
13
+ today: "היום",
14
+ month: "חודש",
15
+ week: "שבוע",
16
+ day: "יום",
17
+ list: "סדר יום"
18
+ },
19
+ allDayText: "כל היום",
20
+ eventLimitText: "אחר",
21
+ noEventsMessage: "אין אירועים להצגה",
22
+ weekLabel: "שבוע"
23
+ };
24
+
25
+ return he;
26
+
27
+ }));
@@ -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.hi = factory()));
5
+ }(this, function () { 'use strict';
6
+
7
+ var hi = {
8
+ code: "hi",
9
+ week: {
10
+ dow: 0,
11
+ doy: 6 // 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 hi;
31
+
32
+ }));