Skip to content

Commit

Permalink
fix fullcalendar examples
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnRDOrazio committed Jan 3, 2025
1 parent 8f80ba2 commit a18d7e4
Show file tree
Hide file tree
Showing 16 changed files with 217 additions and 2,102 deletions.
5 changes: 3 additions & 2 deletions fullcalendar/examples/LitGrade.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,7 @@ class LitGrade {
return LitGrade.values.includes( value );
};
static strWTags = ( value ) => {
let grade,
tags;
let tags;
switch( value ) {
case LitGrade.WEEKDAY:
tags = ['<i>','</i>'];
Expand Down Expand Up @@ -55,3 +54,5 @@ class LitGrade {
return { "strVal": LitGrade.valueToString[value], "tags": tags };
}
}

export default LitGrade;
54 changes: 24 additions & 30 deletions fullcalendar/examples/la.js
Original file line number Diff line number Diff line change
@@ -1,30 +1,24 @@
FullCalendar.globalLocales.push(function () {
'use strict';

var la = {
code: "la",
week: {
dow: 1, // Monday is the first day of the week.
doy: 4 // The week that contains Jan 4th is the first week of the year.
},
buttonText: {
prev: "Prior",
next: "Prox",
today: "Hodie",
month: "Mensis",
week: "Hebdomada",
day: "Dies",
list: "Agenda"
},
weekText: "Hb",
allDayText: "Tota die",
moreLinkText: function(n) {
return "+alii " + n;
},
noEventsText: "Rei gestae non sunt"
};

return la;

}());

var la = {
code: "la",
week: {
dow: 1, // Monday is the first day of the week.
doy: 4 // The week that contains Jan 4th is the first week of the year.
},
buttonText: {
prev: "Prior",
next: "Prox",
today: "Hodie",
year: "Annum",
month: "Mensis",
week: "Hebdomada",
day: "Dies",
list: "Agenda"
},
weekText: "Hb",
allDayText: "Tota die",
moreLinkText(n) {
return "+alii " + n;
},
noEventsText: "Rei gestae non sunt"
};
export default la;
79 changes: 0 additions & 79 deletions fullcalendar/examples/locales/de.json

This file was deleted.

79 changes: 0 additions & 79 deletions fullcalendar/examples/locales/en.json

This file was deleted.

79 changes: 0 additions & 79 deletions fullcalendar/examples/locales/es.json

This file was deleted.

79 changes: 0 additions & 79 deletions fullcalendar/examples/locales/fr.json

This file was deleted.

Loading

0 comments on commit a18d7e4

Please sign in to comment.