📝 Commit Details:
This commit is contained in:
22
backend/node_modules/@fullcalendar/core/LICENSE.md
generated
vendored
Normal file
22
backend/node_modules/@fullcalendar/core/LICENSE.md
generated
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2021 Adam Shaw
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of this software and associated documentation files (the
|
||||
"Software"), to deal in the Software without restriction, including
|
||||
without limitation the rights to use, copy, modify, merge, publish,
|
||||
distribute, sublicense, and/or sell copies of the Software, and to
|
||||
permit persons to whom the Software is furnished to do so, subject to
|
||||
the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be
|
||||
included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||||
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
44
backend/node_modules/@fullcalendar/core/README.md
generated
vendored
Normal file
44
backend/node_modules/@fullcalendar/core/README.md
generated
vendored
Normal file
@@ -0,0 +1,44 @@
|
||||
|
||||
# FullCalendar Core
|
||||
|
||||
FullCalendar core package for rendering a calendar
|
||||
|
||||
## Installation
|
||||
|
||||
This package is never used alone. Use it with least one plugin (like [daygrid](https://fullcalendar.io/docs/month-view)):
|
||||
|
||||
```sh
|
||||
npm install @fullcalendar/core @fullcalendar/daygrid
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
First, ensure there's a DOM element for your calendar to render into:
|
||||
|
||||
```html
|
||||
<body>
|
||||
<div id='calendar'></div>
|
||||
</body>
|
||||
```
|
||||
|
||||
Then, instantiate a Calendar object with [options](https://fullcalendar.io/docs#toc) and call its `render` method:
|
||||
|
||||
```js
|
||||
import { Calendar } from '@fullcalendar/core'
|
||||
import dayGridPlugin from '@fullcalendar/daygrid'
|
||||
|
||||
const calendarEl = document.getElementById('calendar')
|
||||
const calendar = new Calendar(calendarEl, {
|
||||
plugins: [
|
||||
dayGridPlugin
|
||||
// any other plugins
|
||||
],
|
||||
initialView: 'dayGridMonth',
|
||||
weekends: false,
|
||||
events: [
|
||||
{ title: 'Meeting', start: new Date() }
|
||||
]
|
||||
})
|
||||
|
||||
calendar.render()
|
||||
```
|
2222
backend/node_modules/@fullcalendar/core/index.cjs
generated
vendored
Normal file
2222
backend/node_modules/@fullcalendar/core/index.cjs
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
48
backend/node_modules/@fullcalendar/core/index.d.ts
generated
vendored
Normal file
48
backend/node_modules/@fullcalendar/core/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,48 @@
|
||||
import { C as CalendarImpl, a as CalendarOptions, N as NativeFormatterOptions, D as DateInput, P as PluginDefInput, b as PluginDef, L as LocaleInput } from './internal-common.js';
|
||||
export { T as AllDayContentArg, U as AllDayMountArg, A as AllowFunc, B as BusinessHoursInput, ah as ButtonHintCompoundInput, a8 as ButtonIconsInput, a9 as ButtonTextCompoundInput, c as CalendarApi, f as CalendarListeners, a as CalendarOptions, u as ClassNamesGenerator, q as ConstraintInput, o as CssDimValue, a7 as CustomButtonInput, v as CustomContentGenerator, ai as CustomRenderingHandler, aj as CustomRenderingStore, D as DateInput, al as DatePointApi, i as DateRangeInput, a3 as DateSelectArg, am as DateSelectionApi, ak as DateSpanApi, h as DateSpanInput, a4 as DateUnselectArg, ac as DatesSetArg, Z as DayCellContentArg, _ as DayCellMountArg, X as DayHeaderContentArg, Y as DayHeaderMountArg, w as DidMountHandler, an as Duration, g as DurationInput, ad as EventAddArg, d as EventApi, ae as EventChangeArg, a1 as EventClickArg, aa as EventContentArg, af as EventDropArg, a2 as EventHoveringArg, m as EventInput, n as EventInputTransformer, ab as EventMountArg, ag as EventRemoveArg, e as EventRenderRange, ao as EventSegment, E as EventSourceApi, k as EventSourceFunc, l as EventSourceFuncArg, j as EventSourceInput, F as FormatterInput, J as JsonRequestError, L as LocaleInput, p as LocaleSingularArg, ap as MoreLinkAction, ar as MoreLinkArg, M as MoreLinkContentArg, as as MoreLinkHandler, H as MoreLinkMountArg, aq as MoreLinkSimpleAction, x as NowIndicatorContentArg, y as NowIndicatorMountArg, O as OverlapFunc, b as PluginDef, P as PluginDefInput, Q as SlotLabelContentArg, R as SlotLabelMountArg, I as SlotLaneContentArg, K as SlotLaneMountArg, S as SpecificViewContentArg, t as SpecificViewMountArg, a6 as ToolbarInput, V as ViewApi, r as ViewComponentType, $ as ViewContentArg, a0 as ViewMountArg, a5 as WeekNumberCalculation, z as WeekNumberContentArg, G as WeekNumberMountArg, W as WillUnmountHandler, s as sliceEvents } from './internal-common.js';
|
||||
import 'preact';
|
||||
import './preact.js';
|
||||
import './index.js';
|
||||
|
||||
declare class Calendar extends CalendarImpl {
|
||||
el: HTMLElement;
|
||||
private currentData;
|
||||
private renderRunner;
|
||||
private isRendering;
|
||||
private isRendered;
|
||||
private currentClassNames;
|
||||
private customContentRenderId;
|
||||
constructor(el: HTMLElement, optionOverrides?: CalendarOptions);
|
||||
private handleAction;
|
||||
private handleData;
|
||||
private handleRenderRequest;
|
||||
render(): void;
|
||||
destroy(): void;
|
||||
updateSize(): void;
|
||||
batchRendering(func: any): void;
|
||||
pauseRendering(): void;
|
||||
resumeRendering(): void;
|
||||
resetOptions(optionOverrides: any, changedOptionNames?: string[]): void;
|
||||
private setClassNames;
|
||||
private setHeight;
|
||||
}
|
||||
|
||||
interface FormatDateOptions extends NativeFormatterOptions {
|
||||
locale?: string;
|
||||
}
|
||||
interface FormatRangeOptions extends FormatDateOptions {
|
||||
separator?: string;
|
||||
isEndExclusive?: boolean;
|
||||
}
|
||||
declare function formatDate(dateInput: DateInput, options?: FormatDateOptions): string;
|
||||
declare function formatRange(startInput: DateInput, endInput: DateInput, options: FormatRangeOptions): string;
|
||||
|
||||
declare function createPlugin(input: PluginDefInput): PluginDef;
|
||||
|
||||
declare const globalLocales: LocaleInput[];
|
||||
|
||||
declare const globalPlugins: PluginDef[];
|
||||
|
||||
declare const version: string;
|
||||
|
||||
export { Calendar, FormatDateOptions, FormatRangeOptions, createPlugin, formatDate, formatRange, globalLocales, globalPlugins, version };
|
9929
backend/node_modules/@fullcalendar/core/index.global.js
generated
vendored
Normal file
9929
backend/node_modules/@fullcalendar/core/index.global.js
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
6
backend/node_modules/@fullcalendar/core/index.global.min.js
generated
vendored
Normal file
6
backend/node_modules/@fullcalendar/core/index.global.min.js
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
2211
backend/node_modules/@fullcalendar/core/index.js
generated
vendored
Normal file
2211
backend/node_modules/@fullcalendar/core/index.js
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
7724
backend/node_modules/@fullcalendar/core/internal-common.cjs
generated
vendored
Normal file
7724
backend/node_modules/@fullcalendar/core/internal-common.cjs
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
2829
backend/node_modules/@fullcalendar/core/internal-common.d.ts
generated
vendored
Normal file
2829
backend/node_modules/@fullcalendar/core/internal-common.d.ts
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
7490
backend/node_modules/@fullcalendar/core/internal-common.js
generated
vendored
Normal file
7490
backend/node_modules/@fullcalendar/core/internal-common.js
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
196
backend/node_modules/@fullcalendar/core/internal.cjs
generated
vendored
Normal file
196
backend/node_modules/@fullcalendar/core/internal.cjs
generated
vendored
Normal file
@@ -0,0 +1,196 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, '__esModule', { value: true });
|
||||
|
||||
var internalCommon = require('./internal-common.cjs');
|
||||
require('preact');
|
||||
require('preact/compat');
|
||||
|
||||
|
||||
|
||||
exports.BASE_OPTION_DEFAULTS = internalCommon.BASE_OPTION_DEFAULTS;
|
||||
exports.BaseComponent = internalCommon.BaseComponent;
|
||||
exports.BgEvent = internalCommon.BgEvent;
|
||||
exports.CalendarImpl = internalCommon.CalendarImpl;
|
||||
exports.CalendarRoot = internalCommon.CalendarRoot;
|
||||
exports.ContentContainer = internalCommon.ContentContainer;
|
||||
exports.CustomRenderingStore = internalCommon.CustomRenderingStore;
|
||||
exports.DateComponent = internalCommon.DateComponent;
|
||||
exports.DateEnv = internalCommon.DateEnv;
|
||||
exports.DateProfileGenerator = internalCommon.DateProfileGenerator;
|
||||
exports.DayCellContainer = internalCommon.DayCellContainer;
|
||||
exports.DayHeader = internalCommon.DayHeader;
|
||||
exports.DaySeriesModel = internalCommon.DaySeriesModel;
|
||||
exports.DayTableModel = internalCommon.DayTableModel;
|
||||
exports.DelayedRunner = internalCommon.DelayedRunner;
|
||||
exports.ElementDragging = internalCommon.ElementDragging;
|
||||
exports.ElementScrollController = internalCommon.ElementScrollController;
|
||||
exports.Emitter = internalCommon.Emitter;
|
||||
exports.EventContainer = internalCommon.EventContainer;
|
||||
exports.EventImpl = internalCommon.EventImpl;
|
||||
exports.Interaction = internalCommon.Interaction;
|
||||
exports.MoreLinkContainer = internalCommon.MoreLinkContainer;
|
||||
exports.NamedTimeZoneImpl = internalCommon.NamedTimeZoneImpl;
|
||||
exports.NowIndicatorContainer = internalCommon.NowIndicatorContainer;
|
||||
exports.NowTimer = internalCommon.NowTimer;
|
||||
exports.PositionCache = internalCommon.PositionCache;
|
||||
exports.RefMap = internalCommon.RefMap;
|
||||
exports.ScrollController = internalCommon.ScrollController;
|
||||
exports.ScrollResponder = internalCommon.ScrollResponder;
|
||||
exports.Scroller = internalCommon.Scroller;
|
||||
exports.SegHierarchy = internalCommon.SegHierarchy;
|
||||
exports.SimpleScrollGrid = internalCommon.SimpleScrollGrid;
|
||||
exports.Slicer = internalCommon.Slicer;
|
||||
exports.Splitter = internalCommon.Splitter;
|
||||
exports.StandardEvent = internalCommon.StandardEvent;
|
||||
exports.TableDateCell = internalCommon.TableDateCell;
|
||||
exports.TableDowCell = internalCommon.TableDowCell;
|
||||
exports.Theme = internalCommon.Theme;
|
||||
exports.ViewContainer = internalCommon.ViewContainer;
|
||||
exports.ViewContextType = internalCommon.ViewContextType;
|
||||
exports.WeekNumberContainer = internalCommon.WeekNumberContainer;
|
||||
exports.WindowScrollController = internalCommon.WindowScrollController;
|
||||
exports.addDays = internalCommon.addDays;
|
||||
exports.addDurations = internalCommon.addDurations;
|
||||
exports.addMs = internalCommon.addMs;
|
||||
exports.addWeeks = internalCommon.addWeeks;
|
||||
exports.allowContextMenu = internalCommon.allowContextMenu;
|
||||
exports.allowSelection = internalCommon.allowSelection;
|
||||
exports.applyMutationToEventStore = internalCommon.applyMutationToEventStore;
|
||||
exports.applyStyle = internalCommon.applyStyle;
|
||||
exports.asCleanDays = internalCommon.asCleanDays;
|
||||
exports.asRoughMinutes = internalCommon.asRoughMinutes;
|
||||
exports.asRoughMs = internalCommon.asRoughMs;
|
||||
exports.asRoughSeconds = internalCommon.asRoughSeconds;
|
||||
exports.binarySearch = internalCommon.binarySearch;
|
||||
exports.buildElAttrs = internalCommon.buildElAttrs;
|
||||
exports.buildEntryKey = internalCommon.buildEntryKey;
|
||||
exports.buildEventApis = internalCommon.buildEventApis;
|
||||
exports.buildEventRangeKey = internalCommon.buildEventRangeKey;
|
||||
exports.buildIsoString = internalCommon.buildIsoString;
|
||||
exports.buildNavLinkAttrs = internalCommon.buildNavLinkAttrs;
|
||||
exports.buildSegTimeText = internalCommon.buildSegTimeText;
|
||||
exports.collectFromHash = internalCommon.collectFromHash;
|
||||
exports.combineEventUis = internalCommon.combineEventUis;
|
||||
exports.compareByFieldSpecs = internalCommon.compareByFieldSpecs;
|
||||
exports.compareNumbers = internalCommon.compareNumbers;
|
||||
exports.compareObjs = internalCommon.compareObjs;
|
||||
exports.computeEarliestSegStart = internalCommon.computeEarliestSegStart;
|
||||
exports.computeEdges = internalCommon.computeEdges;
|
||||
exports.computeFallbackHeaderFormat = internalCommon.computeFallbackHeaderFormat;
|
||||
exports.computeInnerRect = internalCommon.computeInnerRect;
|
||||
exports.computeRect = internalCommon.computeRect;
|
||||
exports.computeShrinkWidth = internalCommon.computeShrinkWidth;
|
||||
exports.computeVisibleDayRange = internalCommon.computeVisibleDayRange;
|
||||
exports.config = internalCommon.config;
|
||||
exports.constrainPoint = internalCommon.constrainPoint;
|
||||
exports.createDuration = internalCommon.createDuration;
|
||||
exports.createEmptyEventStore = internalCommon.createEmptyEventStore;
|
||||
exports.createEventInstance = internalCommon.createEventInstance;
|
||||
exports.createEventUi = internalCommon.createEventUi;
|
||||
exports.createFormatter = internalCommon.createFormatter;
|
||||
exports.diffDates = internalCommon.diffDates;
|
||||
exports.diffDayAndTime = internalCommon.diffDayAndTime;
|
||||
exports.diffDays = internalCommon.diffDays;
|
||||
exports.diffPoints = internalCommon.diffPoints;
|
||||
exports.diffWeeks = internalCommon.diffWeeks;
|
||||
exports.diffWholeDays = internalCommon.diffWholeDays;
|
||||
exports.diffWholeWeeks = internalCommon.diffWholeWeeks;
|
||||
exports.disableCursor = internalCommon.disableCursor;
|
||||
exports.elementClosest = internalCommon.elementClosest;
|
||||
exports.elementMatches = internalCommon.elementMatches;
|
||||
exports.enableCursor = internalCommon.enableCursor;
|
||||
exports.eventTupleToStore = internalCommon.eventTupleToStore;
|
||||
exports.filterHash = internalCommon.filterHash;
|
||||
exports.findDirectChildren = internalCommon.findDirectChildren;
|
||||
exports.findElements = internalCommon.findElements;
|
||||
exports.flexibleCompare = internalCommon.flexibleCompare;
|
||||
exports.formatDayString = internalCommon.formatDayString;
|
||||
exports.formatIsoMonthStr = internalCommon.formatIsoMonthStr;
|
||||
exports.formatIsoTimeString = internalCommon.formatIsoTimeString;
|
||||
exports.getAllowYScrolling = internalCommon.getAllowYScrolling;
|
||||
exports.getCanVGrowWithinCell = internalCommon.getCanVGrowWithinCell;
|
||||
exports.getClippingParents = internalCommon.getClippingParents;
|
||||
exports.getDateMeta = internalCommon.getDateMeta;
|
||||
exports.getDayClassNames = internalCommon.getDayClassNames;
|
||||
exports.getDefaultEventEnd = internalCommon.getDefaultEventEnd;
|
||||
exports.getElSeg = internalCommon.getElSeg;
|
||||
exports.getEntrySpanEnd = internalCommon.getEntrySpanEnd;
|
||||
exports.getEventTargetViaRoot = internalCommon.getEventTargetViaRoot;
|
||||
exports.getIsRtlScrollbarOnLeft = internalCommon.getIsRtlScrollbarOnLeft;
|
||||
exports.getRectCenter = internalCommon.getRectCenter;
|
||||
exports.getRelevantEvents = internalCommon.getRelevantEvents;
|
||||
exports.getScrollGridClassNames = internalCommon.getScrollGridClassNames;
|
||||
exports.getScrollbarWidths = internalCommon.getScrollbarWidths;
|
||||
exports.getSectionClassNames = internalCommon.getSectionClassNames;
|
||||
exports.getSectionHasLiquidHeight = internalCommon.getSectionHasLiquidHeight;
|
||||
exports.getSegAnchorAttrs = internalCommon.getSegAnchorAttrs;
|
||||
exports.getSegMeta = internalCommon.getSegMeta;
|
||||
exports.getSlotClassNames = internalCommon.getSlotClassNames;
|
||||
exports.getStickyFooterScrollbar = internalCommon.getStickyFooterScrollbar;
|
||||
exports.getStickyHeaderDates = internalCommon.getStickyHeaderDates;
|
||||
exports.getUniqueDomId = internalCommon.getUniqueDomId;
|
||||
exports.greatestDurationDenominator = internalCommon.greatestDurationDenominator;
|
||||
exports.groupIntersectingEntries = internalCommon.groupIntersectingEntries;
|
||||
exports.guid = internalCommon.guid;
|
||||
exports.hasBgRendering = internalCommon.hasBgRendering;
|
||||
exports.hasCustomDayCellContent = internalCommon.hasCustomDayCellContent;
|
||||
exports.hasShrinkWidth = internalCommon.hasShrinkWidth;
|
||||
exports.identity = internalCommon.identity;
|
||||
exports.injectStyles = internalCommon.injectStyles;
|
||||
exports.interactionSettingsStore = internalCommon.interactionSettingsStore;
|
||||
exports.interactionSettingsToStore = internalCommon.interactionSettingsToStore;
|
||||
exports.intersectRanges = internalCommon.intersectRanges;
|
||||
exports.intersectRects = internalCommon.intersectRects;
|
||||
exports.intersectSpans = internalCommon.intersectSpans;
|
||||
exports.isArraysEqual = internalCommon.isArraysEqual;
|
||||
exports.isColPropsEqual = internalCommon.isColPropsEqual;
|
||||
exports.isDateSelectionValid = internalCommon.isDateSelectionValid;
|
||||
exports.isDateSpansEqual = internalCommon.isDateSpansEqual;
|
||||
exports.isInt = internalCommon.isInt;
|
||||
exports.isInteractionValid = internalCommon.isInteractionValid;
|
||||
exports.isMultiDayRange = internalCommon.isMultiDayRange;
|
||||
exports.isPropsEqual = internalCommon.isPropsEqual;
|
||||
exports.isPropsValid = internalCommon.isPropsValid;
|
||||
exports.isValidDate = internalCommon.isValidDate;
|
||||
exports.mapHash = internalCommon.mapHash;
|
||||
exports.memoize = internalCommon.memoize;
|
||||
exports.memoizeArraylike = internalCommon.memoizeArraylike;
|
||||
exports.memoizeHashlike = internalCommon.memoizeHashlike;
|
||||
exports.memoizeObjArg = internalCommon.memoizeObjArg;
|
||||
exports.mergeEventStores = internalCommon.mergeEventStores;
|
||||
exports.multiplyDuration = internalCommon.multiplyDuration;
|
||||
exports.padStart = internalCommon.padStart;
|
||||
exports.parseBusinessHours = internalCommon.parseBusinessHours;
|
||||
exports.parseClassNames = internalCommon.parseClassNames;
|
||||
exports.parseDragMeta = internalCommon.parseDragMeta;
|
||||
exports.parseEventDef = internalCommon.parseEventDef;
|
||||
exports.parseFieldSpecs = internalCommon.parseFieldSpecs;
|
||||
exports.parseMarker = internalCommon.parse;
|
||||
exports.pointInsideRect = internalCommon.pointInsideRect;
|
||||
exports.preventContextMenu = internalCommon.preventContextMenu;
|
||||
exports.preventDefault = internalCommon.preventDefault;
|
||||
exports.preventSelection = internalCommon.preventSelection;
|
||||
exports.rangeContainsMarker = internalCommon.rangeContainsMarker;
|
||||
exports.rangeContainsRange = internalCommon.rangeContainsRange;
|
||||
exports.rangesEqual = internalCommon.rangesEqual;
|
||||
exports.rangesIntersect = internalCommon.rangesIntersect;
|
||||
exports.refineEventDef = internalCommon.refineEventDef;
|
||||
exports.refineProps = internalCommon.refineProps;
|
||||
exports.removeElement = internalCommon.removeElement;
|
||||
exports.removeExact = internalCommon.removeExact;
|
||||
exports.renderChunkContent = internalCommon.renderChunkContent;
|
||||
exports.renderFill = internalCommon.renderFill;
|
||||
exports.renderMicroColGroup = internalCommon.renderMicroColGroup;
|
||||
exports.renderScrollShim = internalCommon.renderScrollShim;
|
||||
exports.requestJson = internalCommon.requestJson;
|
||||
exports.sanitizeShrinkWidth = internalCommon.sanitizeShrinkWidth;
|
||||
exports.setRef = internalCommon.setRef;
|
||||
exports.sliceEventStore = internalCommon.sliceEventStore;
|
||||
exports.sortEventSegs = internalCommon.sortEventSegs;
|
||||
exports.startOfDay = internalCommon.startOfDay;
|
||||
exports.translateRect = internalCommon.translateRect;
|
||||
exports.triggerDateSelect = internalCommon.triggerDateSelect;
|
||||
exports.unpromisify = internalCommon.unpromisify;
|
||||
exports.whenTransitionDone = internalCommon.whenTransitionDone;
|
||||
exports.wholeDivideDurations = internalCommon.wholeDivideDurations;
|
4
backend/node_modules/@fullcalendar/core/internal.d.ts
generated
vendored
Normal file
4
backend/node_modules/@fullcalendar/core/internal.d.ts
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
3
backend/node_modules/@fullcalendar/core/internal.js
generated
vendored
Normal file
3
backend/node_modules/@fullcalendar/core/internal.js
generated
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
export { e as BASE_OPTION_DEFAULTS, B as BaseComponent, cm as BgEvent, a7 as CalendarImpl, a9 as CalendarRoot, C as ContentContainer, cv as CustomRenderingStore, bc as DateComponent, Q as DateEnv, R as DateProfileGenerator, ci as DayCellContainer, bI as DayHeader, bM as DaySeriesModel, bT as DayTableModel, D as DelayedRunner, bF as ElementDragging, ba as ElementScrollController, F as Emitter, ck as EventContainer, _ as EventImpl, X as Interaction, co as MoreLinkContainer, bw as NamedTimeZoneImpl, ch as NowIndicatorContainer, a6 as NowTimer, b8 as PositionCache, cd as RefMap, b9 as ScrollController, cf as ScrollResponder, cb as Scroller, by as SegHierarchy, bZ as SimpleScrollGrid, bU as Slicer, aW as Splitter, cg as StandardEvent, bK as TableDateCell, bL as TableDowCell, T as Theme, cq as ViewContainer, V as ViewContextType, cn as WeekNumberContainer, bb as WindowScrollController, t as addDays, bn as addDurations, be as addMs, bf as addWeeks, as as allowContextMenu, aq as allowSelection, bV as applyMutationToEventStore, aN as applyStyle, bl as asCleanDays, bo as asRoughMinutes, bq as asRoughMs, bp as asRoughSeconds, bB as binarySearch, cu as buildElAttrs, bz as buildEntryKey, w as buildEventApis, bR as buildEventRangeKey, bu as buildIsoString, a_ as buildNavLinkAttrs, bO as buildSegTimeText, aJ as collectFromHash, aV as combineEventUis, an as compareByFieldSpecs, at as compareNumbers, aI as compareObjs, cp as computeEarliestSegStart, b2 as computeEdges, bJ as computeFallbackHeaderFormat, b1 as computeInnerRect, b4 as computeRect, c5 as computeShrinkWidth, aw as computeVisibleDayRange, bG as config, aE as constrainPoint, d as createDuration, H as createEmptyEventStore, ah as createEventInstance, S as createEventUi, x as createFormatter, ay as diffDates, bi as diffDayAndTime, bj as diffDays, aG as diffPoints, bg as diffWeeks, y as diffWholeDays, bh as diffWholeWeeks, av as disableCursor, Z as elementClosest, aO as elementMatches, au as enableCursor, aU as eventTupleToStore, h as filterHash, aL as findDirectChildren, aK as findElements, ao as flexibleCompare, bt as formatDayString, bv as formatIsoMonthStr, bs as formatIsoTimeString, c3 as getAllowYScrolling, aR as getCanVGrowWithinCell, b3 as getClippingParents, aY as getDateMeta, aX as getDayClassNames, cs as getDefaultEventEnd, Y as getElSeg, bA as getEntrySpanEnd, aP as getEventTargetViaRoot, ce as getIsRtlScrollbarOnLeft, aF as getRectCenter, aT as getRelevantEvents, c0 as getScrollGridClassNames, cc as getScrollbarWidths, c1 as getSectionClassNames, c2 as getSectionHasLiquidHeight, bS as getSegAnchorAttrs, bQ as getSegMeta, aZ as getSlotClassNames, c9 as getStickyFooterScrollbar, ca as getStickyHeaderDates, a3 as getUniqueDomId, c as greatestDurationDenominator, bC as groupIntersectingEntries, g as guid, bN as hasBgRendering, cj as hasCustomDayCellContent, b_ as hasShrinkWidth, n as identity, ct as injectStyles, a5 as interactionSettingsStore, bE as interactionSettingsToStore, o as intersectRanges, aC as intersectRects, bD as intersectSpans, i as isArraysEqual, c7 as isColPropsEqual, bY as isDateSelectionValid, bd as isDateSpansEqual, al as isInt, bX as isInteractionValid, ax as isMultiDayRange, E as isPropsEqual, bW as isPropsValid, bk as isValidDate, a as mapHash, z as memoize, aA as memoizeArraylike, aB as memoizeHashlike, A as memoizeObjArg, aS as mergeEventStores, bm as multiplyDuration, ak as padStart, U as parseBusinessHours, aQ as parseClassNames, bH as parseDragMeta, ai as parseEventDef, am as parseFieldSpecs, bx as parseMarker, aD as pointInsideRect, ar as preventContextMenu, a$ as preventDefault, ap as preventSelection, G as rangeContainsMarker, b7 as rangeContainsRange, b5 as rangesEqual, b6 as rangesIntersect, aj as refineEventDef, ag as refineProps, aM as removeElement, az as removeExact, c4 as renderChunkContent, cl as renderFill, b$ as renderMicroColGroup, c8 as renderScrollShim, r as requestJson, c6 as sanitizeShrinkWidth, W as setRef, ad as sliceEventStore, bP as sortEventSegs, q as startOfDay, aH as translateRect, cr as triggerDateSelect, u as unpromisify, b0 as whenTransitionDone, br as wholeDivideDurations } from './internal-common.js';
|
||||
import 'preact';
|
||||
import 'preact/compat';
|
89
backend/node_modules/@fullcalendar/core/locales-all.cjs
generated
vendored
Normal file
89
backend/node_modules/@fullcalendar/core/locales-all.cjs
generated
vendored
Normal file
@@ -0,0 +1,89 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, '__esModule', { value: true });
|
||||
|
||||
var locales_af = require('./locales/af.cjs');
|
||||
var locales_arDz = require('./locales/ar-dz.cjs');
|
||||
var locales_arKw = require('./locales/ar-kw.cjs');
|
||||
var locales_arLy = require('./locales/ar-ly.cjs');
|
||||
var locales_arMa = require('./locales/ar-ma.cjs');
|
||||
var locales_arSa = require('./locales/ar-sa.cjs');
|
||||
var locales_arTn = require('./locales/ar-tn.cjs');
|
||||
var locales_ar = require('./locales/ar.cjs');
|
||||
var locales_az = require('./locales/az.cjs');
|
||||
var locales_bg = require('./locales/bg.cjs');
|
||||
var locales_bn = require('./locales/bn.cjs');
|
||||
var locales_bs = require('./locales/bs.cjs');
|
||||
var locales_ca = require('./locales/ca.cjs');
|
||||
var locales_cs = require('./locales/cs.cjs');
|
||||
var locales_cy = require('./locales/cy.cjs');
|
||||
var locales_da = require('./locales/da.cjs');
|
||||
var locales_deAt = require('./locales/de-at.cjs');
|
||||
var locales_de = require('./locales/de.cjs');
|
||||
var locales_el = require('./locales/el.cjs');
|
||||
var locales_enAu = require('./locales/en-au.cjs');
|
||||
var locales_enGb = require('./locales/en-gb.cjs');
|
||||
var locales_enNz = require('./locales/en-nz.cjs');
|
||||
var locales_eo = require('./locales/eo.cjs');
|
||||
var locales_esUs = require('./locales/es-us.cjs');
|
||||
var locales_es = require('./locales/es.cjs');
|
||||
var locales_et = require('./locales/et.cjs');
|
||||
var locales_eu = require('./locales/eu.cjs');
|
||||
var locales_fa = require('./locales/fa.cjs');
|
||||
var locales_fi = require('./locales/fi.cjs');
|
||||
var locales_frCa = require('./locales/fr-ca.cjs');
|
||||
var locales_frCh = require('./locales/fr-ch.cjs');
|
||||
var locales_fr = require('./locales/fr.cjs');
|
||||
var locales_gl = require('./locales/gl.cjs');
|
||||
var locales_he = require('./locales/he.cjs');
|
||||
var locales_hi = require('./locales/hi.cjs');
|
||||
var locales_hr = require('./locales/hr.cjs');
|
||||
var locales_hu = require('./locales/hu.cjs');
|
||||
var locales_hyAm = require('./locales/hy-am.cjs');
|
||||
var locales_id = require('./locales/id.cjs');
|
||||
var locales_is = require('./locales/is.cjs');
|
||||
var locales_it = require('./locales/it.cjs');
|
||||
var locales_ja = require('./locales/ja.cjs');
|
||||
var locales_ka = require('./locales/ka.cjs');
|
||||
var locales_kk = require('./locales/kk.cjs');
|
||||
var locales_km = require('./locales/km.cjs');
|
||||
var locales_ko = require('./locales/ko.cjs');
|
||||
var locales_ku = require('./locales/ku.cjs');
|
||||
var locales_lb = require('./locales/lb.cjs');
|
||||
var locales_lt = require('./locales/lt.cjs');
|
||||
var locales_lv = require('./locales/lv.cjs');
|
||||
var locales_mk = require('./locales/mk.cjs');
|
||||
var locales_ms = require('./locales/ms.cjs');
|
||||
var locales_nb = require('./locales/nb.cjs');
|
||||
var locales_ne = require('./locales/ne.cjs');
|
||||
var locales_nl = require('./locales/nl.cjs');
|
||||
var locales_nn = require('./locales/nn.cjs');
|
||||
var locales_pl = require('./locales/pl.cjs');
|
||||
var locales_ptBr = require('./locales/pt-br.cjs');
|
||||
var locales_pt = require('./locales/pt.cjs');
|
||||
var locales_ro = require('./locales/ro.cjs');
|
||||
var locales_ru = require('./locales/ru.cjs');
|
||||
var locales_siLk = require('./locales/si-lk.cjs');
|
||||
var locales_sk = require('./locales/sk.cjs');
|
||||
var locales_sl = require('./locales/sl.cjs');
|
||||
var locales_sm = require('./locales/sm.cjs');
|
||||
var locales_sq = require('./locales/sq.cjs');
|
||||
var locales_srCyrl = require('./locales/sr-cyrl.cjs');
|
||||
var locales_sr = require('./locales/sr.cjs');
|
||||
var locales_sv = require('./locales/sv.cjs');
|
||||
var locales_taIn = require('./locales/ta-in.cjs');
|
||||
var locales_th = require('./locales/th.cjs');
|
||||
var locales_tr = require('./locales/tr.cjs');
|
||||
var locales_ug = require('./locales/ug.cjs');
|
||||
var locales_uk = require('./locales/uk.cjs');
|
||||
var locales_uzCy = require('./locales/uz-cy.cjs');
|
||||
var locales_uz = require('./locales/uz.cjs');
|
||||
var locales_vi = require('./locales/vi.cjs');
|
||||
var locales_zhCn = require('./locales/zh-cn.cjs');
|
||||
var locales_zhTw = require('./locales/zh-tw.cjs');
|
||||
|
||||
var localesAll = [
|
||||
locales_af["default"], locales_arDz["default"], locales_arKw["default"], locales_arLy["default"], locales_arMa["default"], locales_arSa["default"], locales_arTn["default"], locales_ar["default"], locales_az["default"], locales_bg["default"], locales_bn["default"], locales_bs["default"], locales_ca["default"], locales_cs["default"], locales_cy["default"], locales_da["default"], locales_deAt["default"], locales_de["default"], locales_el["default"], locales_enAu["default"], locales_enGb["default"], locales_enNz["default"], locales_eo["default"], locales_esUs["default"], locales_es["default"], locales_et["default"], locales_eu["default"], locales_fa["default"], locales_fi["default"], locales_frCa["default"], locales_frCh["default"], locales_fr["default"], locales_gl["default"], locales_he["default"], locales_hi["default"], locales_hr["default"], locales_hu["default"], locales_hyAm["default"], locales_id["default"], locales_is["default"], locales_it["default"], locales_ja["default"], locales_ka["default"], locales_kk["default"], locales_km["default"], locales_ko["default"], locales_ku["default"], locales_lb["default"], locales_lt["default"], locales_lv["default"], locales_mk["default"], locales_ms["default"], locales_nb["default"], locales_ne["default"], locales_nl["default"], locales_nn["default"], locales_pl["default"], locales_ptBr["default"], locales_pt["default"], locales_ro["default"], locales_ru["default"], locales_siLk["default"], locales_sk["default"], locales_sl["default"], locales_sm["default"], locales_sq["default"], locales_srCyrl["default"], locales_sr["default"], locales_sv["default"], locales_taIn["default"], locales_th["default"], locales_tr["default"], locales_ug["default"], locales_uk["default"], locales_uzCy["default"], locales_uz["default"], locales_vi["default"], locales_zhCn["default"], locales_zhTw["default"],
|
||||
];
|
||||
|
||||
exports["default"] = localesAll;
|
6
backend/node_modules/@fullcalendar/core/locales-all.d.ts
generated
vendored
Normal file
6
backend/node_modules/@fullcalendar/core/locales-all.d.ts
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
import { LocaleInput } from './index.js';
|
||||
|
||||
declare const allLocales: LocaleInput[];
|
||||
//# sourceMappingURL=locales-all.d.ts.map
|
||||
|
||||
export { allLocales as default };
|
1933
backend/node_modules/@fullcalendar/core/locales-all.global.js
generated
vendored
Normal file
1933
backend/node_modules/@fullcalendar/core/locales-all.global.js
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
6
backend/node_modules/@fullcalendar/core/locales-all.global.min.js
generated
vendored
Normal file
6
backend/node_modules/@fullcalendar/core/locales-all.global.min.js
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
85
backend/node_modules/@fullcalendar/core/locales-all.js
generated
vendored
Normal file
85
backend/node_modules/@fullcalendar/core/locales-all.js
generated
vendored
Normal file
@@ -0,0 +1,85 @@
|
||||
import l0 from './locales/af.js';
|
||||
import l1 from './locales/ar-dz.js';
|
||||
import l2 from './locales/ar-kw.js';
|
||||
import l3 from './locales/ar-ly.js';
|
||||
import l4 from './locales/ar-ma.js';
|
||||
import l5 from './locales/ar-sa.js';
|
||||
import l6 from './locales/ar-tn.js';
|
||||
import l7 from './locales/ar.js';
|
||||
import l8 from './locales/az.js';
|
||||
import l9 from './locales/bg.js';
|
||||
import l10 from './locales/bn.js';
|
||||
import l11 from './locales/bs.js';
|
||||
import l12 from './locales/ca.js';
|
||||
import l13 from './locales/cs.js';
|
||||
import l14 from './locales/cy.js';
|
||||
import l15 from './locales/da.js';
|
||||
import l16 from './locales/de-at.js';
|
||||
import l17 from './locales/de.js';
|
||||
import l18 from './locales/el.js';
|
||||
import l19 from './locales/en-au.js';
|
||||
import l20 from './locales/en-gb.js';
|
||||
import l21 from './locales/en-nz.js';
|
||||
import l22 from './locales/eo.js';
|
||||
import l23 from './locales/es-us.js';
|
||||
import l24 from './locales/es.js';
|
||||
import l25 from './locales/et.js';
|
||||
import l26 from './locales/eu.js';
|
||||
import l27 from './locales/fa.js';
|
||||
import l28 from './locales/fi.js';
|
||||
import l29 from './locales/fr-ca.js';
|
||||
import l30 from './locales/fr-ch.js';
|
||||
import l31 from './locales/fr.js';
|
||||
import l32 from './locales/gl.js';
|
||||
import l33 from './locales/he.js';
|
||||
import l34 from './locales/hi.js';
|
||||
import l35 from './locales/hr.js';
|
||||
import l36 from './locales/hu.js';
|
||||
import l37 from './locales/hy-am.js';
|
||||
import l38 from './locales/id.js';
|
||||
import l39 from './locales/is.js';
|
||||
import l40 from './locales/it.js';
|
||||
import l41 from './locales/ja.js';
|
||||
import l42 from './locales/ka.js';
|
||||
import l43 from './locales/kk.js';
|
||||
import l44 from './locales/km.js';
|
||||
import l45 from './locales/ko.js';
|
||||
import l46 from './locales/ku.js';
|
||||
import l47 from './locales/lb.js';
|
||||
import l48 from './locales/lt.js';
|
||||
import l49 from './locales/lv.js';
|
||||
import l50 from './locales/mk.js';
|
||||
import l51 from './locales/ms.js';
|
||||
import l52 from './locales/nb.js';
|
||||
import l53 from './locales/ne.js';
|
||||
import l54 from './locales/nl.js';
|
||||
import l55 from './locales/nn.js';
|
||||
import l56 from './locales/pl.js';
|
||||
import l57 from './locales/pt-br.js';
|
||||
import l58 from './locales/pt.js';
|
||||
import l59 from './locales/ro.js';
|
||||
import l60 from './locales/ru.js';
|
||||
import l61 from './locales/si-lk.js';
|
||||
import l62 from './locales/sk.js';
|
||||
import l63 from './locales/sl.js';
|
||||
import l64 from './locales/sm.js';
|
||||
import l65 from './locales/sq.js';
|
||||
import l66 from './locales/sr-cyrl.js';
|
||||
import l67 from './locales/sr.js';
|
||||
import l68 from './locales/sv.js';
|
||||
import l69 from './locales/ta-in.js';
|
||||
import l70 from './locales/th.js';
|
||||
import l71 from './locales/tr.js';
|
||||
import l72 from './locales/ug.js';
|
||||
import l73 from './locales/uk.js';
|
||||
import l74 from './locales/uz-cy.js';
|
||||
import l75 from './locales/uz.js';
|
||||
import l76 from './locales/vi.js';
|
||||
import l77 from './locales/zh-cn.js';
|
||||
import l78 from './locales/zh-tw.js';
|
||||
|
||||
var localesAll = [
|
||||
l0, l1, l2, l3, l4, l5, l6, l7, l8, l9, l10, l11, l12, l13, l14, l15, l16, l17, l18, l19, l20, l21, l22, l23, l24, l25, l26, l27, l28, l29, l30, l31, l32, l33, l34, l35, l36, l37, l38, l39, l40, l41, l42, l43, l44, l45, l46, l47, l48, l49, l50, l51, l52, l53, l54, l55, l56, l57, l58, l59, l60, l61, l62, l63, l64, l65, l66, l67, l68, l69, l70, l71, l72, l73, l74, l75, l76, l77, l78,
|
||||
];
|
||||
|
||||
export { localesAll as default };
|
26
backend/node_modules/@fullcalendar/core/locales/af.cjs
generated
vendored
Normal file
26
backend/node_modules/@fullcalendar/core/locales/af.cjs
generated
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, '__esModule', { value: true });
|
||||
|
||||
var l0 = {
|
||||
code: 'af',
|
||||
week: {
|
||||
dow: 1,
|
||||
doy: 4, // Die week wat die 4de Januarie bevat is die eerste week van die jaar.
|
||||
},
|
||||
buttonText: {
|
||||
prev: 'Vorige',
|
||||
next: 'Volgende',
|
||||
today: 'Vandag',
|
||||
year: 'Jaar',
|
||||
month: 'Maand',
|
||||
week: 'Week',
|
||||
day: 'Dag',
|
||||
list: 'Agenda',
|
||||
},
|
||||
allDayText: 'Heeldag',
|
||||
moreLinkText: 'Addisionele',
|
||||
noEventsText: 'Daar is geen gebeurtenisse nie',
|
||||
};
|
||||
|
||||
exports["default"] = l0;
|
6
backend/node_modules/@fullcalendar/core/locales/af.d.ts
generated
vendored
Normal file
6
backend/node_modules/@fullcalendar/core/locales/af.d.ts
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
import { LocaleInput } from '../index.js';
|
||||
|
||||
declare const _default: LocaleInput;
|
||||
//# sourceMappingURL=af.d.ts.map
|
||||
|
||||
export { _default as default };
|
32
backend/node_modules/@fullcalendar/core/locales/af.global.js
generated
vendored
Normal file
32
backend/node_modules/@fullcalendar/core/locales/af.global.js
generated
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.17
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2024 Adam Shaw
|
||||
*/
|
||||
(function (index_js) {
|
||||
'use strict';
|
||||
|
||||
var locale = {
|
||||
code: 'af',
|
||||
week: {
|
||||
dow: 1,
|
||||
doy: 4, // Die week wat die 4de Januarie bevat is die eerste week van die jaar.
|
||||
},
|
||||
buttonText: {
|
||||
prev: 'Vorige',
|
||||
next: 'Volgende',
|
||||
today: 'Vandag',
|
||||
year: 'Jaar',
|
||||
month: 'Maand',
|
||||
week: 'Week',
|
||||
day: 'Dag',
|
||||
list: 'Agenda',
|
||||
},
|
||||
allDayText: 'Heeldag',
|
||||
moreLinkText: 'Addisionele',
|
||||
noEventsText: 'Daar is geen gebeurtenisse nie',
|
||||
};
|
||||
|
||||
index_js.globalLocales.push(locale);
|
||||
|
||||
})(FullCalendar);
|
6
backend/node_modules/@fullcalendar/core/locales/af.global.min.js
generated
vendored
Normal file
6
backend/node_modules/@fullcalendar/core/locales/af.global.min.js
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.17
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2024 Adam Shaw
|
||||
*/
|
||||
!function(e){"use strict";FullCalendar.globalLocales.push({code:"af",week:{dow:1,doy:4},buttonText:{prev:"Vorige",next:"Volgende",today:"Vandag",year:"Jaar",month:"Maand",week:"Week",day:"Dag",list:"Agenda"},allDayText:"Heeldag",moreLinkText:"Addisionele",noEventsText:"Daar is geen gebeurtenisse nie"})}();
|
22
backend/node_modules/@fullcalendar/core/locales/af.js
generated
vendored
Normal file
22
backend/node_modules/@fullcalendar/core/locales/af.js
generated
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
var l0 = {
|
||||
code: 'af',
|
||||
week: {
|
||||
dow: 1,
|
||||
doy: 4, // Die week wat die 4de Januarie bevat is die eerste week van die jaar.
|
||||
},
|
||||
buttonText: {
|
||||
prev: 'Vorige',
|
||||
next: 'Volgende',
|
||||
today: 'Vandag',
|
||||
year: 'Jaar',
|
||||
month: 'Maand',
|
||||
week: 'Week',
|
||||
day: 'Dag',
|
||||
list: 'Agenda',
|
||||
},
|
||||
allDayText: 'Heeldag',
|
||||
moreLinkText: 'Addisionele',
|
||||
noEventsText: 'Daar is geen gebeurtenisse nie',
|
||||
};
|
||||
|
||||
export { l0 as default };
|
28
backend/node_modules/@fullcalendar/core/locales/ar-dz.cjs
generated
vendored
Normal file
28
backend/node_modules/@fullcalendar/core/locales/ar-dz.cjs
generated
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, '__esModule', { value: true });
|
||||
|
||||
var l1 = {
|
||||
code: 'ar-dz',
|
||||
week: {
|
||||
dow: 0,
|
||||
doy: 4, // The week that contains Jan 1st is the first week of the year.
|
||||
},
|
||||
direction: 'rtl',
|
||||
buttonText: {
|
||||
prev: 'السابق',
|
||||
next: 'التالي',
|
||||
today: 'اليوم',
|
||||
year: 'سنة',
|
||||
month: 'شهر',
|
||||
week: 'أسبوع',
|
||||
day: 'يوم',
|
||||
list: 'أجندة',
|
||||
},
|
||||
weekText: 'أسبوع',
|
||||
allDayText: 'اليوم كله',
|
||||
moreLinkText: 'أخرى',
|
||||
noEventsText: 'أي أحداث لعرض',
|
||||
};
|
||||
|
||||
exports["default"] = l1;
|
6
backend/node_modules/@fullcalendar/core/locales/ar-dz.d.ts
generated
vendored
Normal file
6
backend/node_modules/@fullcalendar/core/locales/ar-dz.d.ts
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
import { LocaleInput } from '../index.js';
|
||||
|
||||
declare const _default: LocaleInput;
|
||||
//# sourceMappingURL=ar-dz.d.ts.map
|
||||
|
||||
export { _default as default };
|
34
backend/node_modules/@fullcalendar/core/locales/ar-dz.global.js
generated
vendored
Normal file
34
backend/node_modules/@fullcalendar/core/locales/ar-dz.global.js
generated
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.17
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2024 Adam Shaw
|
||||
*/
|
||||
(function (index_js) {
|
||||
'use strict';
|
||||
|
||||
var locale = {
|
||||
code: 'ar-dz',
|
||||
week: {
|
||||
dow: 0,
|
||||
doy: 4, // The week that contains Jan 1st is the first week of the year.
|
||||
},
|
||||
direction: 'rtl',
|
||||
buttonText: {
|
||||
prev: 'السابق',
|
||||
next: 'التالي',
|
||||
today: 'اليوم',
|
||||
year: 'سنة',
|
||||
month: 'شهر',
|
||||
week: 'أسبوع',
|
||||
day: 'يوم',
|
||||
list: 'أجندة',
|
||||
},
|
||||
weekText: 'أسبوع',
|
||||
allDayText: 'اليوم كله',
|
||||
moreLinkText: 'أخرى',
|
||||
noEventsText: 'أي أحداث لعرض',
|
||||
};
|
||||
|
||||
index_js.globalLocales.push(locale);
|
||||
|
||||
})(FullCalendar);
|
6
backend/node_modules/@fullcalendar/core/locales/ar-dz.global.min.js
generated
vendored
Normal file
6
backend/node_modules/@fullcalendar/core/locales/ar-dz.global.min.js
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.17
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2024 Adam Shaw
|
||||
*/
|
||||
!function(e){"use strict";FullCalendar.globalLocales.push({code:"ar-dz",week:{dow:0,doy:4},direction:"rtl",buttonText:{prev:"السابق",next:"التالي",today:"اليوم",year:"سنة",month:"شهر",week:"أسبوع",day:"يوم",list:"أجندة"},weekText:"أسبوع",allDayText:"اليوم كله",moreLinkText:"أخرى",noEventsText:"أي أحداث لعرض"})}();
|
24
backend/node_modules/@fullcalendar/core/locales/ar-dz.js
generated
vendored
Normal file
24
backend/node_modules/@fullcalendar/core/locales/ar-dz.js
generated
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
var l1 = {
|
||||
code: 'ar-dz',
|
||||
week: {
|
||||
dow: 0,
|
||||
doy: 4, // The week that contains Jan 1st is the first week of the year.
|
||||
},
|
||||
direction: 'rtl',
|
||||
buttonText: {
|
||||
prev: 'السابق',
|
||||
next: 'التالي',
|
||||
today: 'اليوم',
|
||||
year: 'سنة',
|
||||
month: 'شهر',
|
||||
week: 'أسبوع',
|
||||
day: 'يوم',
|
||||
list: 'أجندة',
|
||||
},
|
||||
weekText: 'أسبوع',
|
||||
allDayText: 'اليوم كله',
|
||||
moreLinkText: 'أخرى',
|
||||
noEventsText: 'أي أحداث لعرض',
|
||||
};
|
||||
|
||||
export { l1 as default };
|
28
backend/node_modules/@fullcalendar/core/locales/ar-kw.cjs
generated
vendored
Normal file
28
backend/node_modules/@fullcalendar/core/locales/ar-kw.cjs
generated
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, '__esModule', { value: true });
|
||||
|
||||
var l2 = {
|
||||
code: 'ar-kw',
|
||||
week: {
|
||||
dow: 0,
|
||||
doy: 12, // The week that contains Jan 1st is the first week of the year.
|
||||
},
|
||||
direction: 'rtl',
|
||||
buttonText: {
|
||||
prev: 'السابق',
|
||||
next: 'التالي',
|
||||
today: 'اليوم',
|
||||
year: 'سنة',
|
||||
month: 'شهر',
|
||||
week: 'أسبوع',
|
||||
day: 'يوم',
|
||||
list: 'أجندة',
|
||||
},
|
||||
weekText: 'أسبوع',
|
||||
allDayText: 'اليوم كله',
|
||||
moreLinkText: 'أخرى',
|
||||
noEventsText: 'أي أحداث لعرض',
|
||||
};
|
||||
|
||||
exports["default"] = l2;
|
6
backend/node_modules/@fullcalendar/core/locales/ar-kw.d.ts
generated
vendored
Normal file
6
backend/node_modules/@fullcalendar/core/locales/ar-kw.d.ts
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
import { LocaleInput } from '../index.js';
|
||||
|
||||
declare const _default: LocaleInput;
|
||||
//# sourceMappingURL=ar-kw.d.ts.map
|
||||
|
||||
export { _default as default };
|
34
backend/node_modules/@fullcalendar/core/locales/ar-kw.global.js
generated
vendored
Normal file
34
backend/node_modules/@fullcalendar/core/locales/ar-kw.global.js
generated
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.17
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2024 Adam Shaw
|
||||
*/
|
||||
(function (index_js) {
|
||||
'use strict';
|
||||
|
||||
var locale = {
|
||||
code: 'ar-kw',
|
||||
week: {
|
||||
dow: 0,
|
||||
doy: 12, // The week that contains Jan 1st is the first week of the year.
|
||||
},
|
||||
direction: 'rtl',
|
||||
buttonText: {
|
||||
prev: 'السابق',
|
||||
next: 'التالي',
|
||||
today: 'اليوم',
|
||||
year: 'سنة',
|
||||
month: 'شهر',
|
||||
week: 'أسبوع',
|
||||
day: 'يوم',
|
||||
list: 'أجندة',
|
||||
},
|
||||
weekText: 'أسبوع',
|
||||
allDayText: 'اليوم كله',
|
||||
moreLinkText: 'أخرى',
|
||||
noEventsText: 'أي أحداث لعرض',
|
||||
};
|
||||
|
||||
index_js.globalLocales.push(locale);
|
||||
|
||||
})(FullCalendar);
|
6
backend/node_modules/@fullcalendar/core/locales/ar-kw.global.min.js
generated
vendored
Normal file
6
backend/node_modules/@fullcalendar/core/locales/ar-kw.global.min.js
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.17
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2024 Adam Shaw
|
||||
*/
|
||||
!function(e){"use strict";FullCalendar.globalLocales.push({code:"ar-kw",week:{dow:0,doy:12},direction:"rtl",buttonText:{prev:"السابق",next:"التالي",today:"اليوم",year:"سنة",month:"شهر",week:"أسبوع",day:"يوم",list:"أجندة"},weekText:"أسبوع",allDayText:"اليوم كله",moreLinkText:"أخرى",noEventsText:"أي أحداث لعرض"})}();
|
24
backend/node_modules/@fullcalendar/core/locales/ar-kw.js
generated
vendored
Normal file
24
backend/node_modules/@fullcalendar/core/locales/ar-kw.js
generated
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
var l2 = {
|
||||
code: 'ar-kw',
|
||||
week: {
|
||||
dow: 0,
|
||||
doy: 12, // The week that contains Jan 1st is the first week of the year.
|
||||
},
|
||||
direction: 'rtl',
|
||||
buttonText: {
|
||||
prev: 'السابق',
|
||||
next: 'التالي',
|
||||
today: 'اليوم',
|
||||
year: 'سنة',
|
||||
month: 'شهر',
|
||||
week: 'أسبوع',
|
||||
day: 'يوم',
|
||||
list: 'أجندة',
|
||||
},
|
||||
weekText: 'أسبوع',
|
||||
allDayText: 'اليوم كله',
|
||||
moreLinkText: 'أخرى',
|
||||
noEventsText: 'أي أحداث لعرض',
|
||||
};
|
||||
|
||||
export { l2 as default };
|
28
backend/node_modules/@fullcalendar/core/locales/ar-ly.cjs
generated
vendored
Normal file
28
backend/node_modules/@fullcalendar/core/locales/ar-ly.cjs
generated
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, '__esModule', { value: true });
|
||||
|
||||
var l3 = {
|
||||
code: 'ar-ly',
|
||||
week: {
|
||||
dow: 6,
|
||||
doy: 12, // The week that contains Jan 1st is the first week of the year.
|
||||
},
|
||||
direction: 'rtl',
|
||||
buttonText: {
|
||||
prev: 'السابق',
|
||||
next: 'التالي',
|
||||
today: 'اليوم',
|
||||
year: 'سنة',
|
||||
month: 'شهر',
|
||||
week: 'أسبوع',
|
||||
day: 'يوم',
|
||||
list: 'أجندة',
|
||||
},
|
||||
weekText: 'أسبوع',
|
||||
allDayText: 'اليوم كله',
|
||||
moreLinkText: 'أخرى',
|
||||
noEventsText: 'أي أحداث لعرض',
|
||||
};
|
||||
|
||||
exports["default"] = l3;
|
6
backend/node_modules/@fullcalendar/core/locales/ar-ly.d.ts
generated
vendored
Normal file
6
backend/node_modules/@fullcalendar/core/locales/ar-ly.d.ts
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
import { LocaleInput } from '../index.js';
|
||||
|
||||
declare const _default: LocaleInput;
|
||||
//# sourceMappingURL=ar-ly.d.ts.map
|
||||
|
||||
export { _default as default };
|
34
backend/node_modules/@fullcalendar/core/locales/ar-ly.global.js
generated
vendored
Normal file
34
backend/node_modules/@fullcalendar/core/locales/ar-ly.global.js
generated
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.17
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2024 Adam Shaw
|
||||
*/
|
||||
(function (index_js) {
|
||||
'use strict';
|
||||
|
||||
var locale = {
|
||||
code: 'ar-ly',
|
||||
week: {
|
||||
dow: 6,
|
||||
doy: 12, // The week that contains Jan 1st is the first week of the year.
|
||||
},
|
||||
direction: 'rtl',
|
||||
buttonText: {
|
||||
prev: 'السابق',
|
||||
next: 'التالي',
|
||||
today: 'اليوم',
|
||||
year: 'سنة',
|
||||
month: 'شهر',
|
||||
week: 'أسبوع',
|
||||
day: 'يوم',
|
||||
list: 'أجندة',
|
||||
},
|
||||
weekText: 'أسبوع',
|
||||
allDayText: 'اليوم كله',
|
||||
moreLinkText: 'أخرى',
|
||||
noEventsText: 'أي أحداث لعرض',
|
||||
};
|
||||
|
||||
index_js.globalLocales.push(locale);
|
||||
|
||||
})(FullCalendar);
|
6
backend/node_modules/@fullcalendar/core/locales/ar-ly.global.min.js
generated
vendored
Normal file
6
backend/node_modules/@fullcalendar/core/locales/ar-ly.global.min.js
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.17
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2024 Adam Shaw
|
||||
*/
|
||||
!function(e){"use strict";FullCalendar.globalLocales.push({code:"ar-ly",week:{dow:6,doy:12},direction:"rtl",buttonText:{prev:"السابق",next:"التالي",today:"اليوم",year:"سنة",month:"شهر",week:"أسبوع",day:"يوم",list:"أجندة"},weekText:"أسبوع",allDayText:"اليوم كله",moreLinkText:"أخرى",noEventsText:"أي أحداث لعرض"})}();
|
24
backend/node_modules/@fullcalendar/core/locales/ar-ly.js
generated
vendored
Normal file
24
backend/node_modules/@fullcalendar/core/locales/ar-ly.js
generated
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
var l3 = {
|
||||
code: 'ar-ly',
|
||||
week: {
|
||||
dow: 6,
|
||||
doy: 12, // The week that contains Jan 1st is the first week of the year.
|
||||
},
|
||||
direction: 'rtl',
|
||||
buttonText: {
|
||||
prev: 'السابق',
|
||||
next: 'التالي',
|
||||
today: 'اليوم',
|
||||
year: 'سنة',
|
||||
month: 'شهر',
|
||||
week: 'أسبوع',
|
||||
day: 'يوم',
|
||||
list: 'أجندة',
|
||||
},
|
||||
weekText: 'أسبوع',
|
||||
allDayText: 'اليوم كله',
|
||||
moreLinkText: 'أخرى',
|
||||
noEventsText: 'أي أحداث لعرض',
|
||||
};
|
||||
|
||||
export { l3 as default };
|
28
backend/node_modules/@fullcalendar/core/locales/ar-ma.cjs
generated
vendored
Normal file
28
backend/node_modules/@fullcalendar/core/locales/ar-ma.cjs
generated
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, '__esModule', { value: true });
|
||||
|
||||
var l4 = {
|
||||
code: 'ar-ma',
|
||||
week: {
|
||||
dow: 6,
|
||||
doy: 12, // The week that contains Jan 1st is the first week of the year.
|
||||
},
|
||||
direction: 'rtl',
|
||||
buttonText: {
|
||||
prev: 'السابق',
|
||||
next: 'التالي',
|
||||
today: 'اليوم',
|
||||
year: 'سنة',
|
||||
month: 'شهر',
|
||||
week: 'أسبوع',
|
||||
day: 'يوم',
|
||||
list: 'أجندة',
|
||||
},
|
||||
weekText: 'أسبوع',
|
||||
allDayText: 'اليوم كله',
|
||||
moreLinkText: 'أخرى',
|
||||
noEventsText: 'أي أحداث لعرض',
|
||||
};
|
||||
|
||||
exports["default"] = l4;
|
6
backend/node_modules/@fullcalendar/core/locales/ar-ma.d.ts
generated
vendored
Normal file
6
backend/node_modules/@fullcalendar/core/locales/ar-ma.d.ts
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
import { LocaleInput } from '../index.js';
|
||||
|
||||
declare const _default: LocaleInput;
|
||||
//# sourceMappingURL=ar-ma.d.ts.map
|
||||
|
||||
export { _default as default };
|
34
backend/node_modules/@fullcalendar/core/locales/ar-ma.global.js
generated
vendored
Normal file
34
backend/node_modules/@fullcalendar/core/locales/ar-ma.global.js
generated
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.17
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2024 Adam Shaw
|
||||
*/
|
||||
(function (index_js) {
|
||||
'use strict';
|
||||
|
||||
var locale = {
|
||||
code: 'ar-ma',
|
||||
week: {
|
||||
dow: 6,
|
||||
doy: 12, // The week that contains Jan 1st is the first week of the year.
|
||||
},
|
||||
direction: 'rtl',
|
||||
buttonText: {
|
||||
prev: 'السابق',
|
||||
next: 'التالي',
|
||||
today: 'اليوم',
|
||||
year: 'سنة',
|
||||
month: 'شهر',
|
||||
week: 'أسبوع',
|
||||
day: 'يوم',
|
||||
list: 'أجندة',
|
||||
},
|
||||
weekText: 'أسبوع',
|
||||
allDayText: 'اليوم كله',
|
||||
moreLinkText: 'أخرى',
|
||||
noEventsText: 'أي أحداث لعرض',
|
||||
};
|
||||
|
||||
index_js.globalLocales.push(locale);
|
||||
|
||||
})(FullCalendar);
|
6
backend/node_modules/@fullcalendar/core/locales/ar-ma.global.min.js
generated
vendored
Normal file
6
backend/node_modules/@fullcalendar/core/locales/ar-ma.global.min.js
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.17
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2024 Adam Shaw
|
||||
*/
|
||||
!function(e){"use strict";FullCalendar.globalLocales.push({code:"ar-ma",week:{dow:6,doy:12},direction:"rtl",buttonText:{prev:"السابق",next:"التالي",today:"اليوم",year:"سنة",month:"شهر",week:"أسبوع",day:"يوم",list:"أجندة"},weekText:"أسبوع",allDayText:"اليوم كله",moreLinkText:"أخرى",noEventsText:"أي أحداث لعرض"})}();
|
24
backend/node_modules/@fullcalendar/core/locales/ar-ma.js
generated
vendored
Normal file
24
backend/node_modules/@fullcalendar/core/locales/ar-ma.js
generated
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
var l4 = {
|
||||
code: 'ar-ma',
|
||||
week: {
|
||||
dow: 6,
|
||||
doy: 12, // The week that contains Jan 1st is the first week of the year.
|
||||
},
|
||||
direction: 'rtl',
|
||||
buttonText: {
|
||||
prev: 'السابق',
|
||||
next: 'التالي',
|
||||
today: 'اليوم',
|
||||
year: 'سنة',
|
||||
month: 'شهر',
|
||||
week: 'أسبوع',
|
||||
day: 'يوم',
|
||||
list: 'أجندة',
|
||||
},
|
||||
weekText: 'أسبوع',
|
||||
allDayText: 'اليوم كله',
|
||||
moreLinkText: 'أخرى',
|
||||
noEventsText: 'أي أحداث لعرض',
|
||||
};
|
||||
|
||||
export { l4 as default };
|
28
backend/node_modules/@fullcalendar/core/locales/ar-sa.cjs
generated
vendored
Normal file
28
backend/node_modules/@fullcalendar/core/locales/ar-sa.cjs
generated
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, '__esModule', { value: true });
|
||||
|
||||
var l5 = {
|
||||
code: 'ar-sa',
|
||||
week: {
|
||||
dow: 0,
|
||||
doy: 6, // The week that contains Jan 1st is the first week of the year.
|
||||
},
|
||||
direction: 'rtl',
|
||||
buttonText: {
|
||||
prev: 'السابق',
|
||||
next: 'التالي',
|
||||
today: 'اليوم',
|
||||
year: 'سنة',
|
||||
month: 'شهر',
|
||||
week: 'أسبوع',
|
||||
day: 'يوم',
|
||||
list: 'أجندة',
|
||||
},
|
||||
weekText: 'أسبوع',
|
||||
allDayText: 'اليوم كله',
|
||||
moreLinkText: 'أخرى',
|
||||
noEventsText: 'أي أحداث لعرض',
|
||||
};
|
||||
|
||||
exports["default"] = l5;
|
6
backend/node_modules/@fullcalendar/core/locales/ar-sa.d.ts
generated
vendored
Normal file
6
backend/node_modules/@fullcalendar/core/locales/ar-sa.d.ts
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
import { LocaleInput } from '../index.js';
|
||||
|
||||
declare const _default: LocaleInput;
|
||||
//# sourceMappingURL=ar-sa.d.ts.map
|
||||
|
||||
export { _default as default };
|
34
backend/node_modules/@fullcalendar/core/locales/ar-sa.global.js
generated
vendored
Normal file
34
backend/node_modules/@fullcalendar/core/locales/ar-sa.global.js
generated
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.17
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2024 Adam Shaw
|
||||
*/
|
||||
(function (index_js) {
|
||||
'use strict';
|
||||
|
||||
var locale = {
|
||||
code: 'ar-sa',
|
||||
week: {
|
||||
dow: 0,
|
||||
doy: 6, // The week that contains Jan 1st is the first week of the year.
|
||||
},
|
||||
direction: 'rtl',
|
||||
buttonText: {
|
||||
prev: 'السابق',
|
||||
next: 'التالي',
|
||||
today: 'اليوم',
|
||||
year: 'سنة',
|
||||
month: 'شهر',
|
||||
week: 'أسبوع',
|
||||
day: 'يوم',
|
||||
list: 'أجندة',
|
||||
},
|
||||
weekText: 'أسبوع',
|
||||
allDayText: 'اليوم كله',
|
||||
moreLinkText: 'أخرى',
|
||||
noEventsText: 'أي أحداث لعرض',
|
||||
};
|
||||
|
||||
index_js.globalLocales.push(locale);
|
||||
|
||||
})(FullCalendar);
|
6
backend/node_modules/@fullcalendar/core/locales/ar-sa.global.min.js
generated
vendored
Normal file
6
backend/node_modules/@fullcalendar/core/locales/ar-sa.global.min.js
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.17
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2024 Adam Shaw
|
||||
*/
|
||||
!function(e){"use strict";FullCalendar.globalLocales.push({code:"ar-sa",week:{dow:0,doy:6},direction:"rtl",buttonText:{prev:"السابق",next:"التالي",today:"اليوم",year:"سنة",month:"شهر",week:"أسبوع",day:"يوم",list:"أجندة"},weekText:"أسبوع",allDayText:"اليوم كله",moreLinkText:"أخرى",noEventsText:"أي أحداث لعرض"})}();
|
24
backend/node_modules/@fullcalendar/core/locales/ar-sa.js
generated
vendored
Normal file
24
backend/node_modules/@fullcalendar/core/locales/ar-sa.js
generated
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
var l5 = {
|
||||
code: 'ar-sa',
|
||||
week: {
|
||||
dow: 0,
|
||||
doy: 6, // The week that contains Jan 1st is the first week of the year.
|
||||
},
|
||||
direction: 'rtl',
|
||||
buttonText: {
|
||||
prev: 'السابق',
|
||||
next: 'التالي',
|
||||
today: 'اليوم',
|
||||
year: 'سنة',
|
||||
month: 'شهر',
|
||||
week: 'أسبوع',
|
||||
day: 'يوم',
|
||||
list: 'أجندة',
|
||||
},
|
||||
weekText: 'أسبوع',
|
||||
allDayText: 'اليوم كله',
|
||||
moreLinkText: 'أخرى',
|
||||
noEventsText: 'أي أحداث لعرض',
|
||||
};
|
||||
|
||||
export { l5 as default };
|
28
backend/node_modules/@fullcalendar/core/locales/ar-tn.cjs
generated
vendored
Normal file
28
backend/node_modules/@fullcalendar/core/locales/ar-tn.cjs
generated
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, '__esModule', { value: true });
|
||||
|
||||
var l6 = {
|
||||
code: 'ar-tn',
|
||||
week: {
|
||||
dow: 1,
|
||||
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||
},
|
||||
direction: 'rtl',
|
||||
buttonText: {
|
||||
prev: 'السابق',
|
||||
next: 'التالي',
|
||||
today: 'اليوم',
|
||||
year: 'سنة',
|
||||
month: 'شهر',
|
||||
week: 'أسبوع',
|
||||
day: 'يوم',
|
||||
list: 'أجندة',
|
||||
},
|
||||
weekText: 'أسبوع',
|
||||
allDayText: 'اليوم كله',
|
||||
moreLinkText: 'أخرى',
|
||||
noEventsText: 'أي أحداث لعرض',
|
||||
};
|
||||
|
||||
exports["default"] = l6;
|
6
backend/node_modules/@fullcalendar/core/locales/ar-tn.d.ts
generated
vendored
Normal file
6
backend/node_modules/@fullcalendar/core/locales/ar-tn.d.ts
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
import { LocaleInput } from '../index.js';
|
||||
|
||||
declare const _default: LocaleInput;
|
||||
//# sourceMappingURL=ar-tn.d.ts.map
|
||||
|
||||
export { _default as default };
|
34
backend/node_modules/@fullcalendar/core/locales/ar-tn.global.js
generated
vendored
Normal file
34
backend/node_modules/@fullcalendar/core/locales/ar-tn.global.js
generated
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.17
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2024 Adam Shaw
|
||||
*/
|
||||
(function (index_js) {
|
||||
'use strict';
|
||||
|
||||
var locale = {
|
||||
code: 'ar-tn',
|
||||
week: {
|
||||
dow: 1,
|
||||
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||
},
|
||||
direction: 'rtl',
|
||||
buttonText: {
|
||||
prev: 'السابق',
|
||||
next: 'التالي',
|
||||
today: 'اليوم',
|
||||
year: 'سنة',
|
||||
month: 'شهر',
|
||||
week: 'أسبوع',
|
||||
day: 'يوم',
|
||||
list: 'أجندة',
|
||||
},
|
||||
weekText: 'أسبوع',
|
||||
allDayText: 'اليوم كله',
|
||||
moreLinkText: 'أخرى',
|
||||
noEventsText: 'أي أحداث لعرض',
|
||||
};
|
||||
|
||||
index_js.globalLocales.push(locale);
|
||||
|
||||
})(FullCalendar);
|
6
backend/node_modules/@fullcalendar/core/locales/ar-tn.global.min.js
generated
vendored
Normal file
6
backend/node_modules/@fullcalendar/core/locales/ar-tn.global.min.js
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.17
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2024 Adam Shaw
|
||||
*/
|
||||
!function(e){"use strict";FullCalendar.globalLocales.push({code:"ar-tn",week:{dow:1,doy:4},direction:"rtl",buttonText:{prev:"السابق",next:"التالي",today:"اليوم",year:"سنة",month:"شهر",week:"أسبوع",day:"يوم",list:"أجندة"},weekText:"أسبوع",allDayText:"اليوم كله",moreLinkText:"أخرى",noEventsText:"أي أحداث لعرض"})}();
|
24
backend/node_modules/@fullcalendar/core/locales/ar-tn.js
generated
vendored
Normal file
24
backend/node_modules/@fullcalendar/core/locales/ar-tn.js
generated
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
var l6 = {
|
||||
code: 'ar-tn',
|
||||
week: {
|
||||
dow: 1,
|
||||
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||
},
|
||||
direction: 'rtl',
|
||||
buttonText: {
|
||||
prev: 'السابق',
|
||||
next: 'التالي',
|
||||
today: 'اليوم',
|
||||
year: 'سنة',
|
||||
month: 'شهر',
|
||||
week: 'أسبوع',
|
||||
day: 'يوم',
|
||||
list: 'أجندة',
|
||||
},
|
||||
weekText: 'أسبوع',
|
||||
allDayText: 'اليوم كله',
|
||||
moreLinkText: 'أخرى',
|
||||
noEventsText: 'أي أحداث لعرض',
|
||||
};
|
||||
|
||||
export { l6 as default };
|
28
backend/node_modules/@fullcalendar/core/locales/ar.cjs
generated
vendored
Normal file
28
backend/node_modules/@fullcalendar/core/locales/ar.cjs
generated
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, '__esModule', { value: true });
|
||||
|
||||
var l7 = {
|
||||
code: 'ar',
|
||||
week: {
|
||||
dow: 6,
|
||||
doy: 12, // The week that contains Jan 1st is the first week of the year.
|
||||
},
|
||||
direction: 'rtl',
|
||||
buttonText: {
|
||||
prev: 'السابق',
|
||||
next: 'التالي',
|
||||
today: 'اليوم',
|
||||
year: 'سنة',
|
||||
month: 'شهر',
|
||||
week: 'أسبوع',
|
||||
day: 'يوم',
|
||||
list: 'أجندة',
|
||||
},
|
||||
weekText: 'أسبوع',
|
||||
allDayText: 'اليوم كله',
|
||||
moreLinkText: 'أخرى',
|
||||
noEventsText: 'أي أحداث لعرض',
|
||||
};
|
||||
|
||||
exports["default"] = l7;
|
6
backend/node_modules/@fullcalendar/core/locales/ar.d.ts
generated
vendored
Normal file
6
backend/node_modules/@fullcalendar/core/locales/ar.d.ts
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
import { LocaleInput } from '../index.js';
|
||||
|
||||
declare const _default: LocaleInput;
|
||||
//# sourceMappingURL=ar.d.ts.map
|
||||
|
||||
export { _default as default };
|
34
backend/node_modules/@fullcalendar/core/locales/ar.global.js
generated
vendored
Normal file
34
backend/node_modules/@fullcalendar/core/locales/ar.global.js
generated
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.17
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2024 Adam Shaw
|
||||
*/
|
||||
(function (index_js) {
|
||||
'use strict';
|
||||
|
||||
var locale = {
|
||||
code: 'ar',
|
||||
week: {
|
||||
dow: 6,
|
||||
doy: 12, // The week that contains Jan 1st is the first week of the year.
|
||||
},
|
||||
direction: 'rtl',
|
||||
buttonText: {
|
||||
prev: 'السابق',
|
||||
next: 'التالي',
|
||||
today: 'اليوم',
|
||||
year: 'سنة',
|
||||
month: 'شهر',
|
||||
week: 'أسبوع',
|
||||
day: 'يوم',
|
||||
list: 'أجندة',
|
||||
},
|
||||
weekText: 'أسبوع',
|
||||
allDayText: 'اليوم كله',
|
||||
moreLinkText: 'أخرى',
|
||||
noEventsText: 'أي أحداث لعرض',
|
||||
};
|
||||
|
||||
index_js.globalLocales.push(locale);
|
||||
|
||||
})(FullCalendar);
|
6
backend/node_modules/@fullcalendar/core/locales/ar.global.min.js
generated
vendored
Normal file
6
backend/node_modules/@fullcalendar/core/locales/ar.global.min.js
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.17
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2024 Adam Shaw
|
||||
*/
|
||||
!function(e){"use strict";FullCalendar.globalLocales.push({code:"ar",week:{dow:6,doy:12},direction:"rtl",buttonText:{prev:"السابق",next:"التالي",today:"اليوم",year:"سنة",month:"شهر",week:"أسبوع",day:"يوم",list:"أجندة"},weekText:"أسبوع",allDayText:"اليوم كله",moreLinkText:"أخرى",noEventsText:"أي أحداث لعرض"})}();
|
24
backend/node_modules/@fullcalendar/core/locales/ar.js
generated
vendored
Normal file
24
backend/node_modules/@fullcalendar/core/locales/ar.js
generated
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
var l7 = {
|
||||
code: 'ar',
|
||||
week: {
|
||||
dow: 6,
|
||||
doy: 12, // The week that contains Jan 1st is the first week of the year.
|
||||
},
|
||||
direction: 'rtl',
|
||||
buttonText: {
|
||||
prev: 'السابق',
|
||||
next: 'التالي',
|
||||
today: 'اليوم',
|
||||
year: 'سنة',
|
||||
month: 'شهر',
|
||||
week: 'أسبوع',
|
||||
day: 'يوم',
|
||||
list: 'أجندة',
|
||||
},
|
||||
weekText: 'أسبوع',
|
||||
allDayText: 'اليوم كله',
|
||||
moreLinkText: 'أخرى',
|
||||
noEventsText: 'أي أحداث لعرض',
|
||||
};
|
||||
|
||||
export { l7 as default };
|
29
backend/node_modules/@fullcalendar/core/locales/az.cjs
generated
vendored
Normal file
29
backend/node_modules/@fullcalendar/core/locales/az.cjs
generated
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, '__esModule', { value: true });
|
||||
|
||||
var l8 = {
|
||||
code: 'az',
|
||||
week: {
|
||||
dow: 1,
|
||||
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||
},
|
||||
buttonText: {
|
||||
prev: 'Əvvəl',
|
||||
next: 'Sonra',
|
||||
today: 'Bu Gün',
|
||||
year: 'Il',
|
||||
month: 'Ay',
|
||||
week: 'Həftə',
|
||||
day: 'Gün',
|
||||
list: 'Gündəm',
|
||||
},
|
||||
weekText: 'Həftə',
|
||||
allDayText: 'Bütün Gün',
|
||||
moreLinkText(n) {
|
||||
return '+ daha çox ' + n;
|
||||
},
|
||||
noEventsText: 'Göstərmək üçün hadisə yoxdur',
|
||||
};
|
||||
|
||||
exports["default"] = l8;
|
6
backend/node_modules/@fullcalendar/core/locales/az.d.ts
generated
vendored
Normal file
6
backend/node_modules/@fullcalendar/core/locales/az.d.ts
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
import { LocaleInput } from '../index.js';
|
||||
|
||||
declare const _default: LocaleInput;
|
||||
//# sourceMappingURL=az.d.ts.map
|
||||
|
||||
export { _default as default };
|
35
backend/node_modules/@fullcalendar/core/locales/az.global.js
generated
vendored
Normal file
35
backend/node_modules/@fullcalendar/core/locales/az.global.js
generated
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.17
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2024 Adam Shaw
|
||||
*/
|
||||
(function (index_js) {
|
||||
'use strict';
|
||||
|
||||
var locale = {
|
||||
code: 'az',
|
||||
week: {
|
||||
dow: 1,
|
||||
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||
},
|
||||
buttonText: {
|
||||
prev: 'Əvvəl',
|
||||
next: 'Sonra',
|
||||
today: 'Bu Gün',
|
||||
year: 'Il',
|
||||
month: 'Ay',
|
||||
week: 'Həftə',
|
||||
day: 'Gün',
|
||||
list: 'Gündəm',
|
||||
},
|
||||
weekText: 'Həftə',
|
||||
allDayText: 'Bütün Gün',
|
||||
moreLinkText(n) {
|
||||
return '+ daha çox ' + n;
|
||||
},
|
||||
noEventsText: 'Göstərmək üçün hadisə yoxdur',
|
||||
};
|
||||
|
||||
index_js.globalLocales.push(locale);
|
||||
|
||||
})(FullCalendar);
|
6
backend/node_modules/@fullcalendar/core/locales/az.global.min.js
generated
vendored
Normal file
6
backend/node_modules/@fullcalendar/core/locales/az.global.min.js
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.17
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2024 Adam Shaw
|
||||
*/
|
||||
!function(e){"use strict";var t={code:"az",week:{dow:1,doy:4},buttonText:{prev:"Əvvəl",next:"Sonra",today:"Bu Gün",year:"Il",month:"Ay",week:"Həftə",day:"Gün",list:"Gündəm"},weekText:"Həftə",allDayText:"Bütün Gün",moreLinkText:e=>"+ daha çox "+e,noEventsText:"Göstərmək üçün hadisə yoxdur"};FullCalendar.globalLocales.push(t)}();
|
25
backend/node_modules/@fullcalendar/core/locales/az.js
generated
vendored
Normal file
25
backend/node_modules/@fullcalendar/core/locales/az.js
generated
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
var l8 = {
|
||||
code: 'az',
|
||||
week: {
|
||||
dow: 1,
|
||||
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||
},
|
||||
buttonText: {
|
||||
prev: 'Əvvəl',
|
||||
next: 'Sonra',
|
||||
today: 'Bu Gün',
|
||||
year: 'Il',
|
||||
month: 'Ay',
|
||||
week: 'Həftə',
|
||||
day: 'Gün',
|
||||
list: 'Gündəm',
|
||||
},
|
||||
weekText: 'Həftə',
|
||||
allDayText: 'Bütün Gün',
|
||||
moreLinkText(n) {
|
||||
return '+ daha çox ' + n;
|
||||
},
|
||||
noEventsText: 'Göstərmək üçün hadisə yoxdur',
|
||||
};
|
||||
|
||||
export { l8 as default };
|
28
backend/node_modules/@fullcalendar/core/locales/bg.cjs
generated
vendored
Normal file
28
backend/node_modules/@fullcalendar/core/locales/bg.cjs
generated
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, '__esModule', { value: true });
|
||||
|
||||
var l9 = {
|
||||
code: 'bg',
|
||||
week: {
|
||||
dow: 1,
|
||||
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||
},
|
||||
buttonText: {
|
||||
prev: 'назад',
|
||||
next: 'напред',
|
||||
today: 'днес',
|
||||
year: 'година',
|
||||
month: 'Месец',
|
||||
week: 'Седмица',
|
||||
day: 'Ден',
|
||||
list: 'График',
|
||||
},
|
||||
allDayText: 'Цял ден',
|
||||
moreLinkText(n) {
|
||||
return '+още ' + n;
|
||||
},
|
||||
noEventsText: 'Няма събития за показване',
|
||||
};
|
||||
|
||||
exports["default"] = l9;
|
6
backend/node_modules/@fullcalendar/core/locales/bg.d.ts
generated
vendored
Normal file
6
backend/node_modules/@fullcalendar/core/locales/bg.d.ts
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
import { LocaleInput } from '../index.js';
|
||||
|
||||
declare const _default: LocaleInput;
|
||||
//# sourceMappingURL=bg.d.ts.map
|
||||
|
||||
export { _default as default };
|
34
backend/node_modules/@fullcalendar/core/locales/bg.global.js
generated
vendored
Normal file
34
backend/node_modules/@fullcalendar/core/locales/bg.global.js
generated
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.17
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2024 Adam Shaw
|
||||
*/
|
||||
(function (index_js) {
|
||||
'use strict';
|
||||
|
||||
var locale = {
|
||||
code: 'bg',
|
||||
week: {
|
||||
dow: 1,
|
||||
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||
},
|
||||
buttonText: {
|
||||
prev: 'назад',
|
||||
next: 'напред',
|
||||
today: 'днес',
|
||||
year: 'година',
|
||||
month: 'Месец',
|
||||
week: 'Седмица',
|
||||
day: 'Ден',
|
||||
list: 'График',
|
||||
},
|
||||
allDayText: 'Цял ден',
|
||||
moreLinkText(n) {
|
||||
return '+още ' + n;
|
||||
},
|
||||
noEventsText: 'Няма събития за показване',
|
||||
};
|
||||
|
||||
index_js.globalLocales.push(locale);
|
||||
|
||||
})(FullCalendar);
|
6
backend/node_modules/@fullcalendar/core/locales/bg.global.min.js
generated
vendored
Normal file
6
backend/node_modules/@fullcalendar/core/locales/bg.global.min.js
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.17
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2024 Adam Shaw
|
||||
*/
|
||||
!function(e){"use strict";var t={code:"bg",week:{dow:1,doy:4},buttonText:{prev:"назад",next:"напред",today:"днес",year:"година",month:"Месец",week:"Седмица",day:"Ден",list:"График"},allDayText:"Цял ден",moreLinkText:e=>"+още "+e,noEventsText:"Няма събития за показване"};FullCalendar.globalLocales.push(t)}();
|
24
backend/node_modules/@fullcalendar/core/locales/bg.js
generated
vendored
Normal file
24
backend/node_modules/@fullcalendar/core/locales/bg.js
generated
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
var l9 = {
|
||||
code: 'bg',
|
||||
week: {
|
||||
dow: 1,
|
||||
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||
},
|
||||
buttonText: {
|
||||
prev: 'назад',
|
||||
next: 'напред',
|
||||
today: 'днес',
|
||||
year: 'година',
|
||||
month: 'Месец',
|
||||
week: 'Седмица',
|
||||
day: 'Ден',
|
||||
list: 'График',
|
||||
},
|
||||
allDayText: 'Цял ден',
|
||||
moreLinkText(n) {
|
||||
return '+още ' + n;
|
||||
},
|
||||
noEventsText: 'Няма събития за показване',
|
||||
};
|
||||
|
||||
export { l9 as default };
|
29
backend/node_modules/@fullcalendar/core/locales/bn.cjs
generated
vendored
Normal file
29
backend/node_modules/@fullcalendar/core/locales/bn.cjs
generated
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, '__esModule', { value: true });
|
||||
|
||||
var l10 = {
|
||||
code: 'bn',
|
||||
week: {
|
||||
dow: 0,
|
||||
doy: 6, // The week that contains Jan 1st is the first week of the year.
|
||||
},
|
||||
buttonText: {
|
||||
prev: 'পেছনে',
|
||||
next: 'সামনে',
|
||||
today: 'আজ',
|
||||
year: 'বছর',
|
||||
month: 'মাস',
|
||||
week: 'সপ্তাহ',
|
||||
day: 'দিন',
|
||||
list: 'তালিকা',
|
||||
},
|
||||
weekText: 'সপ্তাহ',
|
||||
allDayText: 'সারাদিন',
|
||||
moreLinkText(n) {
|
||||
return '+অন্যান্য ' + n;
|
||||
},
|
||||
noEventsText: 'কোনো ইভেন্ট নেই',
|
||||
};
|
||||
|
||||
exports["default"] = l10;
|
6
backend/node_modules/@fullcalendar/core/locales/bn.d.ts
generated
vendored
Normal file
6
backend/node_modules/@fullcalendar/core/locales/bn.d.ts
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
import { LocaleInput } from '../index.js';
|
||||
|
||||
declare const _default: LocaleInput;
|
||||
//# sourceMappingURL=bn.d.ts.map
|
||||
|
||||
export { _default as default };
|
35
backend/node_modules/@fullcalendar/core/locales/bn.global.js
generated
vendored
Normal file
35
backend/node_modules/@fullcalendar/core/locales/bn.global.js
generated
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.17
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2024 Adam Shaw
|
||||
*/
|
||||
(function (index_js) {
|
||||
'use strict';
|
||||
|
||||
var locale = {
|
||||
code: 'bn',
|
||||
week: {
|
||||
dow: 0,
|
||||
doy: 6, // The week that contains Jan 1st is the first week of the year.
|
||||
},
|
||||
buttonText: {
|
||||
prev: 'পেছনে',
|
||||
next: 'সামনে',
|
||||
today: 'আজ',
|
||||
year: 'বছর',
|
||||
month: 'মাস',
|
||||
week: 'সপ্তাহ',
|
||||
day: 'দিন',
|
||||
list: 'তালিকা',
|
||||
},
|
||||
weekText: 'সপ্তাহ',
|
||||
allDayText: 'সারাদিন',
|
||||
moreLinkText(n) {
|
||||
return '+অন্যান্য ' + n;
|
||||
},
|
||||
noEventsText: 'কোনো ইভেন্ট নেই',
|
||||
};
|
||||
|
||||
index_js.globalLocales.push(locale);
|
||||
|
||||
})(FullCalendar);
|
6
backend/node_modules/@fullcalendar/core/locales/bn.global.min.js
generated
vendored
Normal file
6
backend/node_modules/@fullcalendar/core/locales/bn.global.min.js
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.17
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2024 Adam Shaw
|
||||
*/
|
||||
!function(e){"use strict";var t={code:"bn",week:{dow:0,doy:6},buttonText:{prev:"পেছনে",next:"সামনে",today:"আজ",year:"বছর",month:"মাস",week:"সপ্তাহ",day:"দিন",list:"তালিকা"},weekText:"সপ্তাহ",allDayText:"সারাদিন",moreLinkText:e=>"+অন্যান্য "+e,noEventsText:"কোনো ইভেন্ট নেই"};FullCalendar.globalLocales.push(t)}();
|
25
backend/node_modules/@fullcalendar/core/locales/bn.js
generated
vendored
Normal file
25
backend/node_modules/@fullcalendar/core/locales/bn.js
generated
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
var l10 = {
|
||||
code: 'bn',
|
||||
week: {
|
||||
dow: 0,
|
||||
doy: 6, // The week that contains Jan 1st is the first week of the year.
|
||||
},
|
||||
buttonText: {
|
||||
prev: 'পেছনে',
|
||||
next: 'সামনে',
|
||||
today: 'আজ',
|
||||
year: 'বছর',
|
||||
month: 'মাস',
|
||||
week: 'সপ্তাহ',
|
||||
day: 'দিন',
|
||||
list: 'তালিকা',
|
||||
},
|
||||
weekText: 'সপ্তাহ',
|
||||
allDayText: 'সারাদিন',
|
||||
moreLinkText(n) {
|
||||
return '+অন্যান্য ' + n;
|
||||
},
|
||||
noEventsText: 'কোনো ইভেন্ট নেই',
|
||||
};
|
||||
|
||||
export { l10 as default };
|
29
backend/node_modules/@fullcalendar/core/locales/bs.cjs
generated
vendored
Normal file
29
backend/node_modules/@fullcalendar/core/locales/bs.cjs
generated
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, '__esModule', { value: true });
|
||||
|
||||
var l11 = {
|
||||
code: 'bs',
|
||||
week: {
|
||||
dow: 1,
|
||||
doy: 7, // The week that contains Jan 1st is the first week of the year.
|
||||
},
|
||||
buttonText: {
|
||||
prev: 'Prošli',
|
||||
next: 'Sljedeći',
|
||||
today: 'Danas',
|
||||
year: 'Godina',
|
||||
month: 'Mjesec',
|
||||
week: 'Sedmica',
|
||||
day: 'Dan',
|
||||
list: 'Raspored',
|
||||
},
|
||||
weekText: 'Sed',
|
||||
allDayText: 'Cijeli dan',
|
||||
moreLinkText(n) {
|
||||
return '+ još ' + n;
|
||||
},
|
||||
noEventsText: 'Nema događaja za prikazivanje',
|
||||
};
|
||||
|
||||
exports["default"] = l11;
|
6
backend/node_modules/@fullcalendar/core/locales/bs.d.ts
generated
vendored
Normal file
6
backend/node_modules/@fullcalendar/core/locales/bs.d.ts
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
import { LocaleInput } from '../index.js';
|
||||
|
||||
declare const _default: LocaleInput;
|
||||
//# sourceMappingURL=bs.d.ts.map
|
||||
|
||||
export { _default as default };
|
35
backend/node_modules/@fullcalendar/core/locales/bs.global.js
generated
vendored
Normal file
35
backend/node_modules/@fullcalendar/core/locales/bs.global.js
generated
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.17
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2024 Adam Shaw
|
||||
*/
|
||||
(function (index_js) {
|
||||
'use strict';
|
||||
|
||||
var locale = {
|
||||
code: 'bs',
|
||||
week: {
|
||||
dow: 1,
|
||||
doy: 7, // The week that contains Jan 1st is the first week of the year.
|
||||
},
|
||||
buttonText: {
|
||||
prev: 'Prošli',
|
||||
next: 'Sljedeći',
|
||||
today: 'Danas',
|
||||
year: 'Godina',
|
||||
month: 'Mjesec',
|
||||
week: 'Sedmica',
|
||||
day: 'Dan',
|
||||
list: 'Raspored',
|
||||
},
|
||||
weekText: 'Sed',
|
||||
allDayText: 'Cijeli dan',
|
||||
moreLinkText(n) {
|
||||
return '+ još ' + n;
|
||||
},
|
||||
noEventsText: 'Nema događaja za prikazivanje',
|
||||
};
|
||||
|
||||
index_js.globalLocales.push(locale);
|
||||
|
||||
})(FullCalendar);
|
6
backend/node_modules/@fullcalendar/core/locales/bs.global.min.js
generated
vendored
Normal file
6
backend/node_modules/@fullcalendar/core/locales/bs.global.min.js
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.17
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2024 Adam Shaw
|
||||
*/
|
||||
!function(e){"use strict";var a={code:"bs",week:{dow:1,doy:7},buttonText:{prev:"Prošli",next:"Sljedeći",today:"Danas",year:"Godina",month:"Mjesec",week:"Sedmica",day:"Dan",list:"Raspored"},weekText:"Sed",allDayText:"Cijeli dan",moreLinkText:e=>"+ još "+e,noEventsText:"Nema događaja za prikazivanje"};FullCalendar.globalLocales.push(a)}();
|
25
backend/node_modules/@fullcalendar/core/locales/bs.js
generated
vendored
Normal file
25
backend/node_modules/@fullcalendar/core/locales/bs.js
generated
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
var l11 = {
|
||||
code: 'bs',
|
||||
week: {
|
||||
dow: 1,
|
||||
doy: 7, // The week that contains Jan 1st is the first week of the year.
|
||||
},
|
||||
buttonText: {
|
||||
prev: 'Prošli',
|
||||
next: 'Sljedeći',
|
||||
today: 'Danas',
|
||||
year: 'Godina',
|
||||
month: 'Mjesec',
|
||||
week: 'Sedmica',
|
||||
day: 'Dan',
|
||||
list: 'Raspored',
|
||||
},
|
||||
weekText: 'Sed',
|
||||
allDayText: 'Cijeli dan',
|
||||
moreLinkText(n) {
|
||||
return '+ još ' + n;
|
||||
},
|
||||
noEventsText: 'Nema događaja za prikazivanje',
|
||||
};
|
||||
|
||||
export { l11 as default };
|
27
backend/node_modules/@fullcalendar/core/locales/ca.cjs
generated
vendored
Normal file
27
backend/node_modules/@fullcalendar/core/locales/ca.cjs
generated
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, '__esModule', { value: true });
|
||||
|
||||
var l12 = {
|
||||
code: 'ca',
|
||||
week: {
|
||||
dow: 1,
|
||||
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||
},
|
||||
buttonText: {
|
||||
prev: 'Anterior',
|
||||
next: 'Següent',
|
||||
today: 'Avui',
|
||||
year: 'Any',
|
||||
month: 'Mes',
|
||||
week: 'Setmana',
|
||||
day: 'Dia',
|
||||
list: 'Agenda',
|
||||
},
|
||||
weekText: 'Set',
|
||||
allDayText: 'Tot el dia',
|
||||
moreLinkText: 'més',
|
||||
noEventsText: 'No hi ha esdeveniments per mostrar',
|
||||
};
|
||||
|
||||
exports["default"] = l12;
|
6
backend/node_modules/@fullcalendar/core/locales/ca.d.ts
generated
vendored
Normal file
6
backend/node_modules/@fullcalendar/core/locales/ca.d.ts
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
import { LocaleInput } from '../index.js';
|
||||
|
||||
declare const _default: LocaleInput;
|
||||
//# sourceMappingURL=ca.d.ts.map
|
||||
|
||||
export { _default as default };
|
33
backend/node_modules/@fullcalendar/core/locales/ca.global.js
generated
vendored
Normal file
33
backend/node_modules/@fullcalendar/core/locales/ca.global.js
generated
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.17
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2024 Adam Shaw
|
||||
*/
|
||||
(function (index_js) {
|
||||
'use strict';
|
||||
|
||||
var locale = {
|
||||
code: 'ca',
|
||||
week: {
|
||||
dow: 1,
|
||||
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||
},
|
||||
buttonText: {
|
||||
prev: 'Anterior',
|
||||
next: 'Següent',
|
||||
today: 'Avui',
|
||||
year: 'Any',
|
||||
month: 'Mes',
|
||||
week: 'Setmana',
|
||||
day: 'Dia',
|
||||
list: 'Agenda',
|
||||
},
|
||||
weekText: 'Set',
|
||||
allDayText: 'Tot el dia',
|
||||
moreLinkText: 'més',
|
||||
noEventsText: 'No hi ha esdeveniments per mostrar',
|
||||
};
|
||||
|
||||
index_js.globalLocales.push(locale);
|
||||
|
||||
})(FullCalendar);
|
6
backend/node_modules/@fullcalendar/core/locales/ca.global.min.js
generated
vendored
Normal file
6
backend/node_modules/@fullcalendar/core/locales/ca.global.min.js
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.17
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2024 Adam Shaw
|
||||
*/
|
||||
!function(e){"use strict";FullCalendar.globalLocales.push({code:"ca",week:{dow:1,doy:4},buttonText:{prev:"Anterior",next:"Següent",today:"Avui",year:"Any",month:"Mes",week:"Setmana",day:"Dia",list:"Agenda"},weekText:"Set",allDayText:"Tot el dia",moreLinkText:"més",noEventsText:"No hi ha esdeveniments per mostrar"})}();
|
23
backend/node_modules/@fullcalendar/core/locales/ca.js
generated
vendored
Normal file
23
backend/node_modules/@fullcalendar/core/locales/ca.js
generated
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
var l12 = {
|
||||
code: 'ca',
|
||||
week: {
|
||||
dow: 1,
|
||||
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||
},
|
||||
buttonText: {
|
||||
prev: 'Anterior',
|
||||
next: 'Següent',
|
||||
today: 'Avui',
|
||||
year: 'Any',
|
||||
month: 'Mes',
|
||||
week: 'Setmana',
|
||||
day: 'Dia',
|
||||
list: 'Agenda',
|
||||
},
|
||||
weekText: 'Set',
|
||||
allDayText: 'Tot el dia',
|
||||
moreLinkText: 'més',
|
||||
noEventsText: 'No hi ha esdeveniments per mostrar',
|
||||
};
|
||||
|
||||
export { l12 as default };
|
29
backend/node_modules/@fullcalendar/core/locales/cs.cjs
generated
vendored
Normal file
29
backend/node_modules/@fullcalendar/core/locales/cs.cjs
generated
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, '__esModule', { value: true });
|
||||
|
||||
var l13 = {
|
||||
code: 'cs',
|
||||
week: {
|
||||
dow: 1,
|
||||
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||
},
|
||||
buttonText: {
|
||||
prev: 'Dříve',
|
||||
next: 'Později',
|
||||
today: 'Nyní',
|
||||
year: 'Rok',
|
||||
month: 'Měsíc',
|
||||
week: 'Týden',
|
||||
day: 'Den',
|
||||
list: 'Agenda',
|
||||
},
|
||||
weekText: 'Týd',
|
||||
allDayText: 'Celý den',
|
||||
moreLinkText(n) {
|
||||
return '+další: ' + n;
|
||||
},
|
||||
noEventsText: 'Žádné akce k zobrazení',
|
||||
};
|
||||
|
||||
exports["default"] = l13;
|
6
backend/node_modules/@fullcalendar/core/locales/cs.d.ts
generated
vendored
Normal file
6
backend/node_modules/@fullcalendar/core/locales/cs.d.ts
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
import { LocaleInput } from '../index.js';
|
||||
|
||||
declare const _default: LocaleInput;
|
||||
//# sourceMappingURL=cs.d.ts.map
|
||||
|
||||
export { _default as default };
|
35
backend/node_modules/@fullcalendar/core/locales/cs.global.js
generated
vendored
Normal file
35
backend/node_modules/@fullcalendar/core/locales/cs.global.js
generated
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.17
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2024 Adam Shaw
|
||||
*/
|
||||
(function (index_js) {
|
||||
'use strict';
|
||||
|
||||
var locale = {
|
||||
code: 'cs',
|
||||
week: {
|
||||
dow: 1,
|
||||
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||
},
|
||||
buttonText: {
|
||||
prev: 'Dříve',
|
||||
next: 'Později',
|
||||
today: 'Nyní',
|
||||
year: 'Rok',
|
||||
month: 'Měsíc',
|
||||
week: 'Týden',
|
||||
day: 'Den',
|
||||
list: 'Agenda',
|
||||
},
|
||||
weekText: 'Týd',
|
||||
allDayText: 'Celý den',
|
||||
moreLinkText(n) {
|
||||
return '+další: ' + n;
|
||||
},
|
||||
noEventsText: 'Žádné akce k zobrazení',
|
||||
};
|
||||
|
||||
index_js.globalLocales.push(locale);
|
||||
|
||||
})(FullCalendar);
|
6
backend/node_modules/@fullcalendar/core/locales/cs.global.min.js
generated
vendored
Normal file
6
backend/node_modules/@fullcalendar/core/locales/cs.global.min.js
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.17
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2024 Adam Shaw
|
||||
*/
|
||||
!function(e){"use strict";var n={code:"cs",week:{dow:1,doy:4},buttonText:{prev:"Dříve",next:"Později",today:"Nyní",year:"Rok",month:"Měsíc",week:"Týden",day:"Den",list:"Agenda"},weekText:"Týd",allDayText:"Celý den",moreLinkText:e=>"+další: "+e,noEventsText:"Žádné akce k zobrazení"};FullCalendar.globalLocales.push(n)}();
|
25
backend/node_modules/@fullcalendar/core/locales/cs.js
generated
vendored
Normal file
25
backend/node_modules/@fullcalendar/core/locales/cs.js
generated
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
var l13 = {
|
||||
code: 'cs',
|
||||
week: {
|
||||
dow: 1,
|
||||
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||
},
|
||||
buttonText: {
|
||||
prev: 'Dříve',
|
||||
next: 'Později',
|
||||
today: 'Nyní',
|
||||
year: 'Rok',
|
||||
month: 'Měsíc',
|
||||
week: 'Týden',
|
||||
day: 'Den',
|
||||
list: 'Agenda',
|
||||
},
|
||||
weekText: 'Týd',
|
||||
allDayText: 'Celý den',
|
||||
moreLinkText(n) {
|
||||
return '+další: ' + n;
|
||||
},
|
||||
noEventsText: 'Žádné akce k zobrazení',
|
||||
};
|
||||
|
||||
export { l13 as default };
|
27
backend/node_modules/@fullcalendar/core/locales/cy.cjs
generated
vendored
Normal file
27
backend/node_modules/@fullcalendar/core/locales/cy.cjs
generated
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, '__esModule', { value: true });
|
||||
|
||||
var l14 = {
|
||||
code: 'cy',
|
||||
week: {
|
||||
dow: 1,
|
||||
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||
},
|
||||
buttonText: {
|
||||
prev: 'Blaenorol',
|
||||
next: 'Nesaf',
|
||||
today: 'Heddiw',
|
||||
year: 'Blwyddyn',
|
||||
month: 'Mis',
|
||||
week: 'Wythnos',
|
||||
day: 'Dydd',
|
||||
list: 'Rhestr',
|
||||
},
|
||||
weekText: 'Wythnos',
|
||||
allDayText: 'Trwy\'r dydd',
|
||||
moreLinkText: 'Mwy',
|
||||
noEventsText: 'Dim digwyddiadau',
|
||||
};
|
||||
|
||||
exports["default"] = l14;
|
6
backend/node_modules/@fullcalendar/core/locales/cy.d.ts
generated
vendored
Normal file
6
backend/node_modules/@fullcalendar/core/locales/cy.d.ts
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
import { LocaleInput } from '../index.js';
|
||||
|
||||
declare const _default: LocaleInput;
|
||||
//# sourceMappingURL=cy.d.ts.map
|
||||
|
||||
export { _default as default };
|
33
backend/node_modules/@fullcalendar/core/locales/cy.global.js
generated
vendored
Normal file
33
backend/node_modules/@fullcalendar/core/locales/cy.global.js
generated
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.17
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2024 Adam Shaw
|
||||
*/
|
||||
(function (index_js) {
|
||||
'use strict';
|
||||
|
||||
var locale = {
|
||||
code: 'cy',
|
||||
week: {
|
||||
dow: 1,
|
||||
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||
},
|
||||
buttonText: {
|
||||
prev: 'Blaenorol',
|
||||
next: 'Nesaf',
|
||||
today: 'Heddiw',
|
||||
year: 'Blwyddyn',
|
||||
month: 'Mis',
|
||||
week: 'Wythnos',
|
||||
day: 'Dydd',
|
||||
list: 'Rhestr',
|
||||
},
|
||||
weekText: 'Wythnos',
|
||||
allDayText: 'Trwy\'r dydd',
|
||||
moreLinkText: 'Mwy',
|
||||
noEventsText: 'Dim digwyddiadau',
|
||||
};
|
||||
|
||||
index_js.globalLocales.push(locale);
|
||||
|
||||
})(FullCalendar);
|
6
backend/node_modules/@fullcalendar/core/locales/cy.global.min.js
generated
vendored
Normal file
6
backend/node_modules/@fullcalendar/core/locales/cy.global.min.js
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.17
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2024 Adam Shaw
|
||||
*/
|
||||
!function(e){"use strict";FullCalendar.globalLocales.push({code:"cy",week:{dow:1,doy:4},buttonText:{prev:"Blaenorol",next:"Nesaf",today:"Heddiw",year:"Blwyddyn",month:"Mis",week:"Wythnos",day:"Dydd",list:"Rhestr"},weekText:"Wythnos",allDayText:"Trwy'r dydd",moreLinkText:"Mwy",noEventsText:"Dim digwyddiadau"})}();
|
23
backend/node_modules/@fullcalendar/core/locales/cy.js
generated
vendored
Normal file
23
backend/node_modules/@fullcalendar/core/locales/cy.js
generated
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
var l14 = {
|
||||
code: 'cy',
|
||||
week: {
|
||||
dow: 1,
|
||||
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||
},
|
||||
buttonText: {
|
||||
prev: 'Blaenorol',
|
||||
next: 'Nesaf',
|
||||
today: 'Heddiw',
|
||||
year: 'Blwyddyn',
|
||||
month: 'Mis',
|
||||
week: 'Wythnos',
|
||||
day: 'Dydd',
|
||||
list: 'Rhestr',
|
||||
},
|
||||
weekText: 'Wythnos',
|
||||
allDayText: 'Trwy\'r dydd',
|
||||
moreLinkText: 'Mwy',
|
||||
noEventsText: 'Dim digwyddiadau',
|
||||
};
|
||||
|
||||
export { l14 as default };
|
27
backend/node_modules/@fullcalendar/core/locales/da.cjs
generated
vendored
Normal file
27
backend/node_modules/@fullcalendar/core/locales/da.cjs
generated
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, '__esModule', { value: true });
|
||||
|
||||
var l15 = {
|
||||
code: 'da',
|
||||
week: {
|
||||
dow: 1,
|
||||
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||
},
|
||||
buttonText: {
|
||||
prev: 'Forrige',
|
||||
next: 'Næste',
|
||||
today: 'I dag',
|
||||
year: 'År',
|
||||
month: 'Måned',
|
||||
week: 'Uge',
|
||||
day: 'Dag',
|
||||
list: 'Agenda',
|
||||
},
|
||||
weekText: 'Uge',
|
||||
allDayText: 'Hele dagen',
|
||||
moreLinkText: 'flere',
|
||||
noEventsText: 'Ingen arrangementer at vise',
|
||||
};
|
||||
|
||||
exports["default"] = l15;
|
6
backend/node_modules/@fullcalendar/core/locales/da.d.ts
generated
vendored
Normal file
6
backend/node_modules/@fullcalendar/core/locales/da.d.ts
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
import { LocaleInput } from '../index.js';
|
||||
|
||||
declare const _default: LocaleInput;
|
||||
//# sourceMappingURL=da.d.ts.map
|
||||
|
||||
export { _default as default };
|
33
backend/node_modules/@fullcalendar/core/locales/da.global.js
generated
vendored
Normal file
33
backend/node_modules/@fullcalendar/core/locales/da.global.js
generated
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.17
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2024 Adam Shaw
|
||||
*/
|
||||
(function (index_js) {
|
||||
'use strict';
|
||||
|
||||
var locale = {
|
||||
code: 'da',
|
||||
week: {
|
||||
dow: 1,
|
||||
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||
},
|
||||
buttonText: {
|
||||
prev: 'Forrige',
|
||||
next: 'Næste',
|
||||
today: 'I dag',
|
||||
year: 'År',
|
||||
month: 'Måned',
|
||||
week: 'Uge',
|
||||
day: 'Dag',
|
||||
list: 'Agenda',
|
||||
},
|
||||
weekText: 'Uge',
|
||||
allDayText: 'Hele dagen',
|
||||
moreLinkText: 'flere',
|
||||
noEventsText: 'Ingen arrangementer at vise',
|
||||
};
|
||||
|
||||
index_js.globalLocales.push(locale);
|
||||
|
||||
})(FullCalendar);
|
6
backend/node_modules/@fullcalendar/core/locales/da.global.min.js
generated
vendored
Normal file
6
backend/node_modules/@fullcalendar/core/locales/da.global.min.js
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.17
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2024 Adam Shaw
|
||||
*/
|
||||
!function(e){"use strict";FullCalendar.globalLocales.push({code:"da",week:{dow:1,doy:4},buttonText:{prev:"Forrige",next:"Næste",today:"I dag",year:"År",month:"Måned",week:"Uge",day:"Dag",list:"Agenda"},weekText:"Uge",allDayText:"Hele dagen",moreLinkText:"flere",noEventsText:"Ingen arrangementer at vise"})}();
|
23
backend/node_modules/@fullcalendar/core/locales/da.js
generated
vendored
Normal file
23
backend/node_modules/@fullcalendar/core/locales/da.js
generated
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
var l15 = {
|
||||
code: 'da',
|
||||
week: {
|
||||
dow: 1,
|
||||
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||
},
|
||||
buttonText: {
|
||||
prev: 'Forrige',
|
||||
next: 'Næste',
|
||||
today: 'I dag',
|
||||
year: 'År',
|
||||
month: 'Måned',
|
||||
week: 'Uge',
|
||||
day: 'Dag',
|
||||
list: 'Agenda',
|
||||
},
|
||||
weekText: 'Uge',
|
||||
allDayText: 'Hele dagen',
|
||||
moreLinkText: 'flere',
|
||||
noEventsText: 'Ingen arrangementer at vise',
|
||||
};
|
||||
|
||||
export { l15 as default };
|
63
backend/node_modules/@fullcalendar/core/locales/de-at.cjs
generated
vendored
Normal file
63
backend/node_modules/@fullcalendar/core/locales/de-at.cjs
generated
vendored
Normal file
@@ -0,0 +1,63 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, '__esModule', { value: true });
|
||||
|
||||
function affix(buttonText) {
|
||||
return (buttonText === 'Tag' || buttonText === 'Monat') ? 'r' :
|
||||
buttonText === 'Jahr' ? 's' : '';
|
||||
}
|
||||
var l16 = {
|
||||
code: 'de-at',
|
||||
week: {
|
||||
dow: 1,
|
||||
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||
},
|
||||
buttonText: {
|
||||
prev: 'Zurück',
|
||||
next: 'Vor',
|
||||
today: 'Heute',
|
||||
year: 'Jahr',
|
||||
month: 'Monat',
|
||||
week: 'Woche',
|
||||
day: 'Tag',
|
||||
list: 'Terminübersicht',
|
||||
},
|
||||
weekText: 'KW',
|
||||
weekTextLong: 'Woche',
|
||||
allDayText: 'Ganztägig',
|
||||
moreLinkText(n) {
|
||||
return '+ weitere ' + n;
|
||||
},
|
||||
noEventsText: 'Keine Ereignisse anzuzeigen',
|
||||
buttonHints: {
|
||||
prev(buttonText) {
|
||||
return `Vorherige${affix(buttonText)} ${buttonText}`;
|
||||
},
|
||||
next(buttonText) {
|
||||
return `Nächste${affix(buttonText)} ${buttonText}`;
|
||||
},
|
||||
today(buttonText) {
|
||||
// → Heute, Diese Woche, Dieser Monat, Dieses Jahr
|
||||
if (buttonText === 'Tag') {
|
||||
return 'Heute';
|
||||
}
|
||||
return `Diese${affix(buttonText)} ${buttonText}`;
|
||||
},
|
||||
},
|
||||
viewHint(buttonText) {
|
||||
// → Tagesansicht, Wochenansicht, Monatsansicht, Jahresansicht
|
||||
const glue = buttonText === 'Woche' ? 'n' : buttonText === 'Monat' ? 's' : 'es';
|
||||
return buttonText + glue + 'ansicht';
|
||||
},
|
||||
navLinkHint: 'Gehe zu $0',
|
||||
moreLinkHint(eventCnt) {
|
||||
return 'Zeige ' + (eventCnt === 1 ?
|
||||
'ein weiteres Ereignis' :
|
||||
eventCnt + ' weitere Ereignisse');
|
||||
},
|
||||
closeHint: 'Schließen',
|
||||
timeHint: 'Uhrzeit',
|
||||
eventHint: 'Ereignis',
|
||||
};
|
||||
|
||||
exports["default"] = l16;
|
6
backend/node_modules/@fullcalendar/core/locales/de-at.d.ts
generated
vendored
Normal file
6
backend/node_modules/@fullcalendar/core/locales/de-at.d.ts
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
import { LocaleInput } from '../index.js';
|
||||
|
||||
declare const _default: LocaleInput;
|
||||
//# sourceMappingURL=de-at.d.ts.map
|
||||
|
||||
export { _default as default };
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user