fullcalendar 6.0.0-beta.1 → 6.0.0-beta.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (89) hide show
  1. package/{LICENSE.txt → LICENSE.md} +0 -0
  2. package/index.cjs +32 -0
  3. package/index.d.ts +2 -0
  4. package/{main.js → index.global.js} +7297 -7662
  5. package/index.global.js.map +1 -0
  6. package/index.global.min.js +6 -0
  7. package/index.js +9 -0
  8. package/package.json +35 -18
  9. package/locales/af.js +0 -27
  10. package/locales/ar-dz.js +0 -28
  11. package/locales/ar-kw.js +0 -28
  12. package/locales/ar-ly.js +0 -28
  13. package/locales/ar-ma.js +0 -28
  14. package/locales/ar-sa.js +0 -28
  15. package/locales/ar-tn.js +0 -28
  16. package/locales/ar.js +0 -28
  17. package/locales/az.js +0 -29
  18. package/locales/bg.js +0 -28
  19. package/locales/bn.js +0 -29
  20. package/locales/bs.js +0 -29
  21. package/locales/ca.js +0 -27
  22. package/locales/cs.js +0 -29
  23. package/locales/cy.js +0 -28
  24. package/locales/da.js +0 -27
  25. package/locales/de-at.js +0 -65
  26. package/locales/de.js +0 -65
  27. package/locales/el.js +0 -27
  28. package/locales/en-au.js +0 -24
  29. package/locales/en-gb.js +0 -24
  30. package/locales/en-nz.js +0 -24
  31. package/locales/eo.js +0 -27
  32. package/locales/es-us.js +0 -27
  33. package/locales/es.js +0 -46
  34. package/locales/et.js +0 -29
  35. package/locales/eu.js +0 -27
  36. package/locales/fa.js +0 -30
  37. package/locales/fi.js +0 -27
  38. package/locales/fr-ca.js +0 -24
  39. package/locales/fr-ch.js +0 -28
  40. package/locales/fr.js +0 -28
  41. package/locales/gl.js +0 -27
  42. package/locales/he.js +0 -24
  43. package/locales/hi.js +0 -29
  44. package/locales/hr.js +0 -29
  45. package/locales/hu.js +0 -27
  46. package/locales/hy-am.js +0 -29
  47. package/locales/id.js +0 -27
  48. package/locales/is.js +0 -27
  49. package/locales/it.js +0 -29
  50. package/locales/ja.js +0 -25
  51. package/locales/ka.js +0 -29
  52. package/locales/kk.js +0 -29
  53. package/locales/km.js +0 -28
  54. package/locales/ko.js +0 -23
  55. package/locales/ku.js +0 -28
  56. package/locales/lb.js +0 -27
  57. package/locales/lt.js +0 -27
  58. package/locales/lv.js +0 -29
  59. package/locales/mk.js +0 -25
  60. package/locales/ms.js +0 -29
  61. package/locales/nb.js +0 -38
  62. package/locales/ne.js +0 -27
  63. package/locales/nl.js +0 -27
  64. package/locales/nn.js +0 -27
  65. package/locales/pl.js +0 -27
  66. package/locales/pt-br.js +0 -25
  67. package/locales/pt.js +0 -27
  68. package/locales/ro.js +0 -29
  69. package/locales/ru.js +0 -29
  70. package/locales/si-lk.js +0 -27
  71. package/locales/sk.js +0 -29
  72. package/locales/sl.js +0 -27
  73. package/locales/sm.js +0 -23
  74. package/locales/sq.js +0 -29
  75. package/locales/sr-cyrl.js +0 -29
  76. package/locales/sr.js +0 -29
  77. package/locales/sv.js +0 -47
  78. package/locales/ta-in.js +0 -29
  79. package/locales/th.js +0 -30
  80. package/locales/tr.js +0 -27
  81. package/locales/ug.js +0 -17
  82. package/locales/uk.js +0 -29
  83. package/locales/uz.js +0 -21
  84. package/locales/vi.js +0 -29
  85. package/locales/zh-cn.js +0 -30
  86. package/locales/zh-tw.js +0 -23
  87. package/locales-all.js +0 -1793
  88. package/locales-all.min.js +0 -1
  89. package/main.min.js +0 -6
package/index.js ADDED
@@ -0,0 +1,9 @@
1
+ import { globalPlugins } from '@fullcalendar/core/internal.js';
2
+ import interactionPlugin__default from '@fullcalendar/interaction/index.js';
3
+ export * from '@fullcalendar/interaction/index.js';
4
+ import dayGridPlugin from '@fullcalendar/daygrid/index.js';
5
+ import timeGridPlugin from '@fullcalendar/timegrid/index.js';
6
+ import listPlugin from '@fullcalendar/list/index.js';
7
+ export * from '@fullcalendar/core/index.js';
8
+
9
+ globalPlugins.push(interactionPlugin__default, dayGridPlugin, timeGridPlugin, listPlugin);
package/package.json CHANGED
@@ -1,33 +1,50 @@
1
1
  {
2
2
  "name": "fullcalendar",
3
- "version": "6.0.0-beta.1",
4
- "title": "FullCalendar Standard Bundle",
5
- "description": "An easily consumable combination of standard plugins",
6
- "docs": "https://fullcalendar.io/docs/initialize-globals",
7
- "devDependencies": {
8
- "@fullcalendar/bootstrap": "6.0.0-beta.1",
9
- "@fullcalendar/bootstrap5": "6.0.0-beta.1",
10
- "@fullcalendar/core": "6.0.0-beta.1",
11
- "@fullcalendar/daygrid": "6.0.0-beta.1",
12
- "@fullcalendar/google-calendar": "6.0.0-beta.1",
13
- "@fullcalendar/interaction": "6.0.0-beta.1",
14
- "@fullcalendar/list": "6.0.0-beta.1",
15
- "@fullcalendar/timegrid": "6.0.0-beta.1"
16
- },
17
- "main": "main.js",
18
- "jsdelivr": "main.min.js",
19
- "browserGlobal": "FullCalendar",
3
+ "version": "6.0.0-beta.3",
4
+ "keywords": [
5
+ "calendar",
6
+ "event",
7
+ "full-sized"
8
+ ],
20
9
  "homepage": "https://fullcalendar.io/",
10
+ "docs": "https://fullcalendar.io/docs/initialize-globals",
21
11
  "bugs": "https://fullcalendar.io/reporting-bugs",
22
12
  "repository": {
23
13
  "type": "git",
24
14
  "url": "https://github.com/fullcalendar/fullcalendar.git",
25
- "homepage": "https://github.com/fullcalendar/fullcalendar"
15
+ "homepage": "https://github.com/fullcalendar/fullcalendar",
16
+ "directory": "bundle"
26
17
  },
27
18
  "license": "MIT",
28
19
  "author": {
29
20
  "name": "Adam Shaw",
30
21
  "email": "arshaw@arshaw.com",
31
22
  "url": "http://arshaw.com/"
23
+ },
24
+ "copyright": "2022 Adam Shaw",
25
+ "type": "module",
26
+ "title": "FullCalendar Standard Bundle",
27
+ "description": "An easily consumable combination of standard plugins",
28
+ "dependencies": {
29
+ "@fullcalendar/core": "6.0.0-beta.3",
30
+ "@fullcalendar/daygrid": "6.0.0-beta.3",
31
+ "@fullcalendar/interaction": "6.0.0-beta.3",
32
+ "@fullcalendar/list": "6.0.0-beta.3",
33
+ "@fullcalendar/timegrid": "6.0.0-beta.3"
34
+ },
35
+ "main": "./index.cjs",
36
+ "module": "./index.js",
37
+ "types": "./index.d.ts",
38
+ "unpkg": "./index.global.min.js",
39
+ "jsdelvr": "./index.global.min.js",
40
+ "exports": {
41
+ "./package.json": "./package.json",
42
+ "./index.cjs": "./index.cjs",
43
+ "./index.js": "./index.js",
44
+ ".": {
45
+ "types": "./index.d.ts",
46
+ "require": "./index.cjs",
47
+ "import": "./index.js"
48
+ }
32
49
  }
33
50
  }
package/locales/af.js DELETED
@@ -1,27 +0,0 @@
1
- FullCalendar.globalLocales.push(function () {
2
- 'use strict';
3
-
4
- var af = {
5
- code: 'af',
6
- week: {
7
- dow: 1, // Maandag is die eerste dag van die week.
8
- doy: 4, // Die week wat die 4de Januarie bevat is die eerste week van die jaar.
9
- },
10
- buttonText: {
11
- prev: 'Vorige',
12
- next: 'Volgende',
13
- today: 'Vandag',
14
- year: 'Jaar',
15
- month: 'Maand',
16
- week: 'Week',
17
- day: 'Dag',
18
- list: 'Agenda',
19
- },
20
- allDayText: 'Heeldag',
21
- moreLinkText: 'Addisionele',
22
- noEventsText: 'Daar is geen gebeurtenisse nie',
23
- };
24
-
25
- return af;
26
-
27
- }());
package/locales/ar-dz.js DELETED
@@ -1,28 +0,0 @@
1
- FullCalendar.globalLocales.push(function () {
2
- 'use strict';
3
-
4
- var arDz = {
5
- code: 'ar-dz',
6
- week: {
7
- dow: 0, // Sunday is the first day of the week.
8
- doy: 4, // The week that contains Jan 1st is the first week of the year.
9
- },
10
- direction: 'rtl',
11
- buttonText: {
12
- prev: 'السابق',
13
- next: 'التالي',
14
- today: 'اليوم',
15
- month: 'شهر',
16
- week: 'أسبوع',
17
- day: 'يوم',
18
- list: 'أجندة',
19
- },
20
- weekText: 'أسبوع',
21
- allDayText: 'اليوم كله',
22
- moreLinkText: 'أخرى',
23
- noEventsText: 'أي أحداث لعرض',
24
- };
25
-
26
- return arDz;
27
-
28
- }());
package/locales/ar-kw.js DELETED
@@ -1,28 +0,0 @@
1
- FullCalendar.globalLocales.push(function () {
2
- 'use strict';
3
-
4
- var arKw = {
5
- code: 'ar-kw',
6
- week: {
7
- dow: 0, // Sunday is the first day of the week.
8
- doy: 12, // The week that contains Jan 1st is the first week of the year.
9
- },
10
- direction: 'rtl',
11
- buttonText: {
12
- prev: 'السابق',
13
- next: 'التالي',
14
- today: 'اليوم',
15
- month: 'شهر',
16
- week: 'أسبوع',
17
- day: 'يوم',
18
- list: 'أجندة',
19
- },
20
- weekText: 'أسبوع',
21
- allDayText: 'اليوم كله',
22
- moreLinkText: 'أخرى',
23
- noEventsText: 'أي أحداث لعرض',
24
- };
25
-
26
- return arKw;
27
-
28
- }());
package/locales/ar-ly.js DELETED
@@ -1,28 +0,0 @@
1
- FullCalendar.globalLocales.push(function () {
2
- 'use strict';
3
-
4
- var arLy = {
5
- code: 'ar-ly',
6
- week: {
7
- dow: 6, // Saturday is the first day of the week.
8
- doy: 12, // The week that contains Jan 1st is the first week of the year.
9
- },
10
- direction: 'rtl',
11
- buttonText: {
12
- prev: 'السابق',
13
- next: 'التالي',
14
- today: 'اليوم',
15
- month: 'شهر',
16
- week: 'أسبوع',
17
- day: 'يوم',
18
- list: 'أجندة',
19
- },
20
- weekText: 'أسبوع',
21
- allDayText: 'اليوم كله',
22
- moreLinkText: 'أخرى',
23
- noEventsText: 'أي أحداث لعرض',
24
- };
25
-
26
- return arLy;
27
-
28
- }());
package/locales/ar-ma.js DELETED
@@ -1,28 +0,0 @@
1
- FullCalendar.globalLocales.push(function () {
2
- 'use strict';
3
-
4
- var arMa = {
5
- code: 'ar-ma',
6
- week: {
7
- dow: 6, // Saturday is the first day of the week.
8
- doy: 12, // The week that contains Jan 1st is the first week of the year.
9
- },
10
- direction: 'rtl',
11
- buttonText: {
12
- prev: 'السابق',
13
- next: 'التالي',
14
- today: 'اليوم',
15
- month: 'شهر',
16
- week: 'أسبوع',
17
- day: 'يوم',
18
- list: 'أجندة',
19
- },
20
- weekText: 'أسبوع',
21
- allDayText: 'اليوم كله',
22
- moreLinkText: 'أخرى',
23
- noEventsText: 'أي أحداث لعرض',
24
- };
25
-
26
- return arMa;
27
-
28
- }());
package/locales/ar-sa.js DELETED
@@ -1,28 +0,0 @@
1
- FullCalendar.globalLocales.push(function () {
2
- 'use strict';
3
-
4
- var arSa = {
5
- code: 'ar-sa',
6
- week: {
7
- dow: 0, // Sunday is the first day of the week.
8
- doy: 6, // The week that contains Jan 1st is the first week of the year.
9
- },
10
- direction: 'rtl',
11
- buttonText: {
12
- prev: 'السابق',
13
- next: 'التالي',
14
- today: 'اليوم',
15
- month: 'شهر',
16
- week: 'أسبوع',
17
- day: 'يوم',
18
- list: 'أجندة',
19
- },
20
- weekText: 'أسبوع',
21
- allDayText: 'اليوم كله',
22
- moreLinkText: 'أخرى',
23
- noEventsText: 'أي أحداث لعرض',
24
- };
25
-
26
- return arSa;
27
-
28
- }());
package/locales/ar-tn.js DELETED
@@ -1,28 +0,0 @@
1
- FullCalendar.globalLocales.push(function () {
2
- 'use strict';
3
-
4
- var arTn = {
5
- code: 'ar-tn',
6
- week: {
7
- dow: 1, // Monday is the first day of the week.
8
- doy: 4, // The week that contains Jan 4th is the first week of the year.
9
- },
10
- direction: 'rtl',
11
- buttonText: {
12
- prev: 'السابق',
13
- next: 'التالي',
14
- today: 'اليوم',
15
- month: 'شهر',
16
- week: 'أسبوع',
17
- day: 'يوم',
18
- list: 'أجندة',
19
- },
20
- weekText: 'أسبوع',
21
- allDayText: 'اليوم كله',
22
- moreLinkText: 'أخرى',
23
- noEventsText: 'أي أحداث لعرض',
24
- };
25
-
26
- return arTn;
27
-
28
- }());
package/locales/ar.js DELETED
@@ -1,28 +0,0 @@
1
- FullCalendar.globalLocales.push(function () {
2
- 'use strict';
3
-
4
- var ar = {
5
- code: 'ar',
6
- week: {
7
- dow: 6, // Saturday is the first day of the week.
8
- doy: 12, // The week that contains Jan 1st is the first week of the year.
9
- },
10
- direction: 'rtl',
11
- buttonText: {
12
- prev: 'السابق',
13
- next: 'التالي',
14
- today: 'اليوم',
15
- month: 'شهر',
16
- week: 'أسبوع',
17
- day: 'يوم',
18
- list: 'أجندة',
19
- },
20
- weekText: 'أسبوع',
21
- allDayText: 'اليوم كله',
22
- moreLinkText: 'أخرى',
23
- noEventsText: 'أي أحداث لعرض',
24
- };
25
-
26
- return ar;
27
-
28
- }());
package/locales/az.js DELETED
@@ -1,29 +0,0 @@
1
- FullCalendar.globalLocales.push(function () {
2
- 'use strict';
3
-
4
- var az = {
5
- code: 'az',
6
- week: {
7
- dow: 1, // Monday is the first day of the week.
8
- doy: 4, // The week that contains Jan 4th is the first week of the year.
9
- },
10
- buttonText: {
11
- prev: 'Əvvəl',
12
- next: 'Sonra',
13
- today: 'Bu Gün',
14
- month: 'Ay',
15
- week: 'Həftə',
16
- day: 'Gün',
17
- list: 'Gündəm',
18
- },
19
- weekText: 'Həftə',
20
- allDayText: 'Bütün Gün',
21
- moreLinkText: function(n) {
22
- return '+ daha çox ' + n
23
- },
24
- noEventsText: 'Göstərmək üçün hadisə yoxdur',
25
- };
26
-
27
- return az;
28
-
29
- }());
package/locales/bg.js DELETED
@@ -1,28 +0,0 @@
1
- FullCalendar.globalLocales.push(function () {
2
- 'use strict';
3
-
4
- var bg = {
5
- code: 'bg',
6
- week: {
7
- dow: 1, // Monday is the first day of the week.
8
- doy: 7, // The week that contains Jan 1st is the first week of the year.
9
- },
10
- buttonText: {
11
- prev: 'назад',
12
- next: 'напред',
13
- today: 'днес',
14
- month: 'Месец',
15
- week: 'Седмица',
16
- day: 'Ден',
17
- list: 'График',
18
- },
19
- allDayText: 'Цял ден',
20
- moreLinkText: function(n) {
21
- return '+още ' + n
22
- },
23
- noEventsText: 'Няма събития за показване',
24
- };
25
-
26
- return bg;
27
-
28
- }());
package/locales/bn.js DELETED
@@ -1,29 +0,0 @@
1
- FullCalendar.globalLocales.push(function () {
2
- 'use strict';
3
-
4
- var bn = {
5
- code: 'bn',
6
- week: {
7
- dow: 0, // Sunday is the first day of the week.
8
- doy: 6, // The week that contains Jan 1st is the first week of the year.
9
- },
10
- buttonText: {
11
- prev: 'পেছনে',
12
- next: 'সামনে',
13
- today: 'আজ',
14
- month: 'মাস',
15
- week: 'সপ্তাহ',
16
- day: 'দিন',
17
- list: 'তালিকা',
18
- },
19
- weekText: 'সপ্তাহ',
20
- allDayText: 'সারাদিন',
21
- moreLinkText: function(n) {
22
- return '+অন্যান্য ' + n
23
- },
24
- noEventsText: 'কোনো ইভেন্ট নেই',
25
- };
26
-
27
- return bn;
28
-
29
- }());
package/locales/bs.js DELETED
@@ -1,29 +0,0 @@
1
- FullCalendar.globalLocales.push(function () {
2
- 'use strict';
3
-
4
- var bs = {
5
- code: 'bs',
6
- week: {
7
- dow: 1, // Monday is the first day of the week.
8
- doy: 7, // The week that contains Jan 1st is the first week of the year.
9
- },
10
- buttonText: {
11
- prev: 'Prošli',
12
- next: 'Sljedeći',
13
- today: 'Danas',
14
- month: 'Mjesec',
15
- week: 'Sedmica',
16
- day: 'Dan',
17
- list: 'Raspored',
18
- },
19
- weekText: 'Sed',
20
- allDayText: 'Cijeli dan',
21
- moreLinkText: function(n) {
22
- return '+ još ' + n
23
- },
24
- noEventsText: 'Nema događaja za prikazivanje',
25
- };
26
-
27
- return bs;
28
-
29
- }());
package/locales/ca.js DELETED
@@ -1,27 +0,0 @@
1
- FullCalendar.globalLocales.push(function () {
2
- 'use strict';
3
-
4
- var ca = {
5
- code: 'ca',
6
- week: {
7
- dow: 1, // Monday is the first day of the week.
8
- doy: 4, // The week that contains Jan 4th is the first week of the year.
9
- },
10
- buttonText: {
11
- prev: 'Anterior',
12
- next: 'Següent',
13
- today: 'Avui',
14
- month: 'Mes',
15
- week: 'Setmana',
16
- day: 'Dia',
17
- list: 'Agenda',
18
- },
19
- weekText: 'Set',
20
- allDayText: 'Tot el dia',
21
- moreLinkText: 'més',
22
- noEventsText: 'No hi ha esdeveniments per mostrar',
23
- };
24
-
25
- return ca;
26
-
27
- }());
package/locales/cs.js DELETED
@@ -1,29 +0,0 @@
1
- FullCalendar.globalLocales.push(function () {
2
- 'use strict';
3
-
4
- var cs = {
5
- code: 'cs',
6
- week: {
7
- dow: 1, // Monday is the first day of the week.
8
- doy: 4, // The week that contains Jan 4th is the first week of the year.
9
- },
10
- buttonText: {
11
- prev: 'Dříve',
12
- next: 'Později',
13
- today: 'Nyní',
14
- month: 'Měsíc',
15
- week: 'Týden',
16
- day: 'Den',
17
- list: 'Agenda',
18
- },
19
- weekText: 'Týd',
20
- allDayText: 'Celý den',
21
- moreLinkText: function(n) {
22
- return '+další: ' + n
23
- },
24
- noEventsText: 'Žádné akce k zobrazení',
25
- };
26
-
27
- return cs;
28
-
29
- }());
package/locales/cy.js DELETED
@@ -1,28 +0,0 @@
1
- FullCalendar.globalLocales.push(function () {
2
- 'use strict';
3
-
4
- var cy = {
5
- code: 'cy',
6
- week: {
7
- dow: 1, // Monday is the first day of the week.
8
- doy: 4, // The week that contains Jan 4th is the first week of the year.
9
- },
10
- buttonText: {
11
- prev: 'Blaenorol',
12
- next: 'Nesaf',
13
- today: 'Heddiw',
14
- year: 'Blwyddyn',
15
- month: 'Mis',
16
- week: 'Wythnos',
17
- day: 'Dydd',
18
- list: 'Rhestr',
19
- },
20
- weekText: 'Wythnos',
21
- allDayText: 'Trwy\'r dydd',
22
- moreLinkText: 'Mwy',
23
- noEventsText: 'Dim digwyddiadau',
24
- };
25
-
26
- return cy;
27
-
28
- }());
package/locales/da.js DELETED
@@ -1,27 +0,0 @@
1
- FullCalendar.globalLocales.push(function () {
2
- 'use strict';
3
-
4
- var da = {
5
- code: 'da',
6
- week: {
7
- dow: 1, // Monday is the first day of the week.
8
- doy: 4, // The week that contains Jan 4th is the first week of the year.
9
- },
10
- buttonText: {
11
- prev: 'Forrige',
12
- next: 'Næste',
13
- today: 'I dag',
14
- month: 'Måned',
15
- week: 'Uge',
16
- day: 'Dag',
17
- list: 'Agenda',
18
- },
19
- weekText: 'Uge',
20
- allDayText: 'Hele dagen',
21
- moreLinkText: 'flere',
22
- noEventsText: 'Ingen arrangementer at vise',
23
- };
24
-
25
- return da;
26
-
27
- }());
package/locales/de-at.js DELETED
@@ -1,65 +0,0 @@
1
- FullCalendar.globalLocales.push(function () {
2
- 'use strict';
3
-
4
- function affix(buttonText) {
5
- return (buttonText === 'Tag' || buttonText === 'Monat') ? 'r' :
6
- buttonText === 'Jahr' ? 's' : ''
7
- }
8
-
9
- var deAt = {
10
- code: 'de-at',
11
- week: {
12
- dow: 1, // Monday is the first day of the week.
13
- doy: 4, // The week that contains Jan 4th is the first week of the year.
14
- },
15
- buttonText: {
16
- prev: 'Zurück',
17
- next: 'Vor',
18
- today: 'Heute',
19
- year: 'Jahr',
20
- month: 'Monat',
21
- week: 'Woche',
22
- day: 'Tag',
23
- list: 'Terminübersicht',
24
- },
25
- weekText: 'KW',
26
- weekTextLong: 'Woche',
27
- allDayText: 'Ganztägig',
28
- moreLinkText: function(n) {
29
- return '+ weitere ' + n
30
- },
31
- noEventsText: 'Keine Ereignisse anzuzeigen',
32
- buttonHints: {
33
- prev(buttonText) {
34
- return `Vorherige${affix(buttonText)} ${buttonText}`
35
- },
36
- next(buttonText) {
37
- return `Nächste${affix(buttonText)} ${buttonText}`
38
- },
39
- today(buttonText) {
40
- // → Heute, Diese Woche, Dieser Monat, Dieses Jahr
41
- if (buttonText === 'Tag') {
42
- return 'Heute'
43
- }
44
- return `Diese${affix(buttonText)} ${buttonText}`
45
- },
46
- },
47
- viewHint(buttonText) {
48
- // → Tagesansicht, Wochenansicht, Monatsansicht, Jahresansicht
49
- const glue = buttonText === 'Woche' ? 'n' : buttonText === 'Monat' ? 's' : 'es';
50
- return buttonText + glue + 'ansicht'
51
- },
52
- navLinkHint: 'Gehe zu $0',
53
- moreLinkHint(eventCnt) {
54
- return 'Zeige ' + (eventCnt === 1 ?
55
- 'ein weiteres Ereignis' :
56
- eventCnt + ' weitere Ereignisse')
57
- },
58
- closeHint: 'Schließen',
59
- timeHint: 'Uhrzeit',
60
- eventHint: 'Ereignis',
61
- };
62
-
63
- return deAt;
64
-
65
- }());
package/locales/de.js DELETED
@@ -1,65 +0,0 @@
1
- FullCalendar.globalLocales.push(function () {
2
- 'use strict';
3
-
4
- function affix(buttonText) {
5
- return (buttonText === 'Tag' || buttonText === 'Monat') ? 'r' :
6
- buttonText === 'Jahr' ? 's' : ''
7
- }
8
-
9
- var de = {
10
- code: 'de',
11
- week: {
12
- dow: 1, // Monday is the first day of the week.
13
- doy: 4, // The week that contains Jan 4th is the first week of the year.
14
- },
15
- buttonText: {
16
- prev: 'Zurück',
17
- next: 'Vor',
18
- today: 'Heute',
19
- year: 'Jahr',
20
- month: 'Monat',
21
- week: 'Woche',
22
- day: 'Tag',
23
- list: 'Terminübersicht',
24
- },
25
- weekText: 'KW',
26
- weekTextLong: 'Woche',
27
- allDayText: 'Ganztägig',
28
- moreLinkText: function(n) {
29
- return '+ weitere ' + n
30
- },
31
- noEventsText: 'Keine Ereignisse anzuzeigen',
32
- buttonHints: {
33
- prev(buttonText) {
34
- return `Vorherige${affix(buttonText)} ${buttonText}`
35
- },
36
- next(buttonText) {
37
- return `Nächste${affix(buttonText)} ${buttonText}`
38
- },
39
- today(buttonText) {
40
- // → Heute, Diese Woche, Dieser Monat, Dieses Jahr
41
- if (buttonText === 'Tag') {
42
- return 'Heute'
43
- }
44
- return `Diese${affix(buttonText)} ${buttonText}`
45
- },
46
- },
47
- viewHint(buttonText) {
48
- // → Tagesansicht, Wochenansicht, Monatsansicht, Jahresansicht
49
- const glue = buttonText === 'Woche' ? 'n' : buttonText === 'Monat' ? 's' : 'es';
50
- return buttonText + glue + 'ansicht'
51
- },
52
- navLinkHint: 'Gehe zu $0',
53
- moreLinkHint(eventCnt) {
54
- return 'Zeige ' + (eventCnt === 1 ?
55
- 'ein weiteres Ereignis' :
56
- eventCnt + ' weitere Ereignisse')
57
- },
58
- closeHint: 'Schließen',
59
- timeHint: 'Uhrzeit',
60
- eventHint: 'Ereignis',
61
- };
62
-
63
- return de;
64
-
65
- }());