fullcalendar 5.7.2 → 5.10.1

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.
package/locales/de-at.js CHANGED
@@ -1,6 +1,11 @@
1
1
  FullCalendar.globalLocales.push(function () {
2
2
  'use strict';
3
3
 
4
+ function affix(buttonText) {
5
+ return (buttonText === 'Tag' || buttonText === 'Monat') ? 'r' :
6
+ buttonText === 'Jahr' ? 's' : ''
7
+ }
8
+
4
9
  var deAt = {
5
10
  code: 'de-at',
6
11
  week: {
@@ -18,11 +23,41 @@ FullCalendar.globalLocales.push(function () {
18
23
  list: 'Terminübersicht',
19
24
  },
20
25
  weekText: 'KW',
26
+ weekTextLong: 'Woche',
21
27
  allDayText: 'Ganztägig',
22
28
  moreLinkText: function(n) {
23
29
  return '+ weitere ' + n
24
30
  },
25
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',
26
61
  };
27
62
 
28
63
  return deAt;
package/locales/de.js CHANGED
@@ -1,6 +1,11 @@
1
1
  FullCalendar.globalLocales.push(function () {
2
2
  'use strict';
3
3
 
4
+ function affix(buttonText) {
5
+ return (buttonText === 'Tag' || buttonText === 'Monat') ? 'r' :
6
+ buttonText === 'Jahr' ? 's' : ''
7
+ }
8
+
4
9
  var de = {
5
10
  code: 'de',
6
11
  week: {
@@ -18,11 +23,41 @@ FullCalendar.globalLocales.push(function () {
18
23
  list: 'Terminübersicht',
19
24
  },
20
25
  weekText: 'KW',
26
+ weekTextLong: 'Woche',
21
27
  allDayText: 'Ganztägig',
22
28
  moreLinkText: function(n) {
23
29
  return '+ weitere ' + n
24
30
  },
25
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',
26
61
  };
27
62
 
28
63
  return de;
package/locales/en-au.js CHANGED
@@ -7,6 +7,16 @@ FullCalendar.globalLocales.push(function () {
7
7
  dow: 1, // Monday is the first day of the week.
8
8
  doy: 4, // The week that contains Jan 4th is the first week of the year.
9
9
  },
10
+ buttonHints: {
11
+ prev: 'Previous $0',
12
+ next: 'Next $0',
13
+ today: 'This $0',
14
+ },
15
+ viewHint: '$0 view',
16
+ navLinkHint: 'Go to $0',
17
+ moreLinkHint(eventCnt) {
18
+ return `Show ${eventCnt} more event${eventCnt === 1 ? '' : 's'}`
19
+ },
10
20
  };
11
21
 
12
22
  return enAu;
package/locales/en-gb.js CHANGED
@@ -7,6 +7,16 @@ FullCalendar.globalLocales.push(function () {
7
7
  dow: 1, // Monday is the first day of the week.
8
8
  doy: 4, // The week that contains Jan 4th is the first week of the year.
9
9
  },
10
+ buttonHints: {
11
+ prev: 'Previous $0',
12
+ next: 'Next $0',
13
+ today: 'This $0',
14
+ },
15
+ viewHint: '$0 view',
16
+ navLinkHint: 'Go to $0',
17
+ moreLinkHint(eventCnt) {
18
+ return `Show ${eventCnt} more event${eventCnt === 1 ? '' : 's'}`
19
+ },
10
20
  };
11
21
 
12
22
  return enGb;
package/locales/en-nz.js CHANGED
@@ -7,6 +7,16 @@ FullCalendar.globalLocales.push(function () {
7
7
  dow: 1, // Monday is the first day of the week.
8
8
  doy: 4, // The week that contains Jan 4th is the first week of the year.
9
9
  },
10
+ buttonHints: {
11
+ prev: 'Previous $0',
12
+ next: 'Next $0',
13
+ today: 'This $0',
14
+ },
15
+ viewHint: '$0 view',
16
+ navLinkHint: 'Go to $0',
17
+ moreLinkHint(eventCnt) {
18
+ return `Show ${eventCnt} more event${eventCnt === 1 ? '' : 's'}`
19
+ },
10
20
  };
11
21
 
12
22
  return enNz;
package/locales/es.js CHANGED
@@ -16,10 +16,29 @@ FullCalendar.globalLocales.push(function () {
16
16
  day: 'Día',
17
17
  list: 'Agenda',
18
18
  },
19
+ buttonHints: {
20
+ prev: '$0 antes',
21
+ next: '$0 siguiente',
22
+ today(buttonText) {
23
+ return (buttonText === 'Día') ? 'Hoy' :
24
+ ((buttonText === 'Semana') ? 'Esta' : 'Este') + ' ' + buttonText.toLocaleLowerCase()
25
+ },
26
+ },
27
+ viewHint(buttonText) {
28
+ return 'Vista ' + (buttonText === 'Semana' ? 'de la' : 'del') + ' ' + buttonText.toLocaleLowerCase()
29
+ },
19
30
  weekText: 'Sm',
31
+ weekTextLong: 'Semana',
20
32
  allDayText: 'Todo el día',
21
33
  moreLinkText: 'más',
34
+ moreLinkHint(eventCnt) {
35
+ return `Mostrar ${eventCnt} eventos más`
36
+ },
22
37
  noEventsText: 'No hay eventos para mostrar',
38
+ navLinkHint: 'Ir al $0',
39
+ closeHint: 'Cerrar',
40
+ timeHint: 'La hora',
41
+ eventHint: 'Evento',
23
42
  };
24
43
 
25
44
  return es;
package/locales/hu.js CHANGED
@@ -14,7 +14,7 @@ FullCalendar.globalLocales.push(function () {
14
14
  month: 'Hónap',
15
15
  week: 'Hét',
16
16
  day: 'Nap',
17
- list: 'Napló',
17
+ list: 'Lista',
18
18
  },
19
19
  weekText: 'Hét',
20
20
  allDayText: 'Egész nap',
package/locales/km.js ADDED
@@ -0,0 +1,28 @@
1
+ FullCalendar.globalLocales.push(function () {
2
+ 'use strict';
3
+
4
+ var km = {
5
+ code: 'km',
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: 'មុន',
12
+ next: 'បន្ទាប់',
13
+ today: 'ថ្ងៃនេះ',
14
+ year: 'ឆ្នាំ',
15
+ month: 'ខែ',
16
+ week: 'សប្តាហ៍',
17
+ day: 'ថ្ងៃ',
18
+ list: 'បញ្ជី',
19
+ },
20
+ weekText: 'សប្តាហ៍',
21
+ allDayText: 'ពេញមួយថ្ងៃ',
22
+ moreLinkText: 'ច្រើនទៀត',
23
+ noEventsText: 'គ្មានព្រឹត្តិការណ៍ត្រូវបង្ហាញ',
24
+ };
25
+
26
+ return km;
27
+
28
+ }());
package/locales/ku.js ADDED
@@ -0,0 +1,28 @@
1
+ FullCalendar.globalLocales.push(function () {
2
+ 'use strict';
3
+
4
+ var ku = {
5
+ code: 'ku',
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 ku;
27
+
28
+ }());
package/locales/nb.js CHANGED
@@ -17,9 +17,20 @@ FullCalendar.globalLocales.push(function () {
17
17
  list: 'Agenda',
18
18
  },
19
19
  weekText: 'Uke',
20
+ weekTextLong: 'Uke',
20
21
  allDayText: 'Hele dagen',
21
22
  moreLinkText: 'til',
22
23
  noEventsText: 'Ingen hendelser å vise',
24
+ buttonHints: {
25
+ prev: 'Forrige $0',
26
+ next: 'Neste $0',
27
+ today: 'Nåværende $0',
28
+ },
29
+ viewHint: '$0 visning',
30
+ navLinkHint: 'Gå til $0',
31
+ moreLinkHint(eventCnt) {
32
+ return `Vis ${eventCnt} flere hendelse${eventCnt === 1 ? '' : 'r'}`
33
+ },
23
34
  };
24
35
 
25
36
  return nb;
@@ -0,0 +1,27 @@
1
+ FullCalendar.globalLocales.push(function () {
2
+ 'use strict';
3
+
4
+ var siLk = {
5
+ code: 'si-lk',
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: 'පෙර',
12
+ next: 'පසු',
13
+ today: 'අද',
14
+ month: 'මාසය',
15
+ week: 'සතිය',
16
+ day: 'දවස',
17
+ list: 'ලැයිස්තුව',
18
+ },
19
+ weekText: 'සති',
20
+ allDayText: 'සියලු',
21
+ moreLinkText: 'තවත්',
22
+ noEventsText: 'මුකුත් නැත',
23
+ };
24
+
25
+ return siLk;
26
+
27
+ }());
package/locales/sm.js ADDED
@@ -0,0 +1,23 @@
1
+ FullCalendar.globalLocales.push(function () {
2
+ 'use strict';
3
+
4
+ var sm = {
5
+ code: 'sm',
6
+ buttonText: {
7
+ prev: 'Talu ai',
8
+ next: 'Mulimuli atu',
9
+ today: 'Aso nei',
10
+ month: 'Masina',
11
+ week: 'Vaiaso',
12
+ day: 'Aso',
13
+ list: 'Faasologa',
14
+ },
15
+ weekText: 'Vaiaso',
16
+ allDayText: 'Aso atoa',
17
+ moreLinkText: 'sili atu',
18
+ noEventsText: 'Leai ni mea na tutupu',
19
+ };
20
+
21
+ return sm;
22
+
23
+ }());
package/locales/sv.js CHANGED
@@ -16,10 +16,30 @@ FullCalendar.globalLocales.push(function () {
16
16
  day: 'Dag',
17
17
  list: 'Program',
18
18
  },
19
+ buttonHints: {
20
+ prev(buttonText) {
21
+ return `Föregående ${buttonText.toLocaleLowerCase()}`
22
+ },
23
+ next(buttonText) {
24
+ return `Nästa ${buttonText.toLocaleLowerCase()}`
25
+ },
26
+ today(buttonText) {
27
+ return (buttonText === 'Program' ? 'Detta' : 'Denna') + ' ' + buttonText.toLocaleLowerCase()
28
+ },
29
+ },
30
+ viewHint: '$0 vy',
31
+ navLinkHint: 'Gå till $0',
32
+ moreLinkHint(eventCnt) {
33
+ return `Visa ytterligare ${eventCnt} händelse${eventCnt === 1 ? '' : 'r'}`
34
+ },
19
35
  weekText: 'v.',
36
+ weekTextLong: 'Vecka',
20
37
  allDayText: 'Heldag',
21
38
  moreLinkText: 'till',
22
39
  noEventsText: 'Inga händelser att visa',
40
+ closeHint: 'Stäng',
41
+ timeHint: 'Klockan',
42
+ eventHint: 'Händelse',
23
43
  };
24
44
 
25
45
  return sv;