first comit
This commit is contained in:
22
static/fullcalendar/LICENSE.md
Normal file
22
static/fullcalendar/LICENSE.md
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.
|
||||
73
static/fullcalendar/README.md
Normal file
73
static/fullcalendar/README.md
Normal file
@@ -0,0 +1,73 @@
|
||||
# FullCalendar
|
||||
|
||||
Full-sized drag & drop calendar in JavaScript
|
||||
|
||||
- [Project Website](https://fullcalendar.io/)
|
||||
- [Documentation](https://fullcalendar.io/docs)
|
||||
- [Changelog](CHANGELOG.md)
|
||||
- [Support](https://fullcalendar.io/support)
|
||||
- [License](LICENSE.md)
|
||||
- [Roadmap](https://fullcalendar.io/roadmap)
|
||||
|
||||
Connectors:
|
||||
|
||||
- [React](https://github.com/fullcalendar/fullcalendar-react)
|
||||
- [Angular](https://github.com/fullcalendar/fullcalendar-angular)
|
||||
- [Vue 3](https://github.com/fullcalendar/fullcalendar-vue) |
|
||||
[2](https://github.com/fullcalendar/fullcalendar-vue2)
|
||||
|
||||
## Bundle
|
||||
|
||||
The [FullCalendar Standard Bundle](bundle) is easier to install than individual plugins, though filesize will be larger. It works well with a CDN.
|
||||
|
||||
## Installation
|
||||
|
||||
Install the FullCalendar core package and any plugins you plan to use:
|
||||
|
||||
```sh
|
||||
npm install @fullcalendar/core @fullcalendar/interaction @fullcalendar/daygrid
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
Instantiate a Calendar with plugins and options:
|
||||
|
||||
```js
|
||||
import { Calendar } from '@fullcalendar/core'
|
||||
import interactionPlugin from '@fullcalendar/interaction'
|
||||
import dayGridPlugin from '@fullcalendar/daygrid'
|
||||
|
||||
const calendarEl = document.getElementById('calendar')
|
||||
const calendar = new Calendar(calendarEl, {
|
||||
plugins: [
|
||||
interactionPlugin,
|
||||
dayGridPlugin
|
||||
],
|
||||
initialView: 'timeGridWeek',
|
||||
editable: true,
|
||||
events: [
|
||||
{ title: 'Meeting', start: new Date() }
|
||||
]
|
||||
})
|
||||
|
||||
calendar.render()
|
||||
```
|
||||
|
||||
## Development
|
||||
|
||||
You must install this repo with [PNPM](https://pnpm.io/):
|
||||
|
||||
```
|
||||
pnpm install
|
||||
```
|
||||
|
||||
Available scripts (via `pnpm run <script>`):
|
||||
|
||||
- `build` - build production-ready dist files
|
||||
- `dev` - build & watch development dist files
|
||||
- `test` - test headlessly
|
||||
- `test:dev` - test interactively
|
||||
- `lint`
|
||||
- `clean`
|
||||
|
||||
[Info about contributing code »](CONTRIBUTING.md)
|
||||
14673
static/fullcalendar/dist/index.global.js
vendored
Normal file
14673
static/fullcalendar/dist/index.global.js
vendored
Normal file
File diff suppressed because one or more lines are too long
6
static/fullcalendar/dist/index.global.min.js
vendored
Normal file
6
static/fullcalendar/dist/index.global.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
64
static/fullcalendar/packages/bootstrap4/index.global.js
Normal file
64
static/fullcalendar/packages/bootstrap4/index.global.js
Normal file
@@ -0,0 +1,64 @@
|
||||
/*!
|
||||
FullCalendar Bootstrap 4 Plugin v6.1.11
|
||||
Docs & License: https://fullcalendar.io/docs/bootstrap4
|
||||
(c) 2023 Adam Shaw
|
||||
*/
|
||||
FullCalendar.Bootstrap = (function (exports, core, internal$1) {
|
||||
'use strict';
|
||||
|
||||
class BootstrapTheme extends internal$1.Theme {
|
||||
}
|
||||
BootstrapTheme.prototype.classes = {
|
||||
root: 'fc-theme-bootstrap',
|
||||
table: 'table-bordered',
|
||||
tableCellShaded: 'table-active',
|
||||
buttonGroup: 'btn-group',
|
||||
button: 'btn btn-primary',
|
||||
buttonActive: 'active',
|
||||
popover: 'popover',
|
||||
popoverHeader: 'popover-header',
|
||||
popoverContent: 'popover-body',
|
||||
};
|
||||
BootstrapTheme.prototype.baseIconClass = 'fa';
|
||||
BootstrapTheme.prototype.iconClasses = {
|
||||
close: 'fa-times',
|
||||
prev: 'fa-chevron-left',
|
||||
next: 'fa-chevron-right',
|
||||
prevYear: 'fa-angle-double-left',
|
||||
nextYear: 'fa-angle-double-right',
|
||||
};
|
||||
BootstrapTheme.prototype.rtlIconClasses = {
|
||||
prev: 'fa-chevron-right',
|
||||
next: 'fa-chevron-left',
|
||||
prevYear: 'fa-angle-double-right',
|
||||
nextYear: 'fa-angle-double-left',
|
||||
};
|
||||
BootstrapTheme.prototype.iconOverrideOption = 'bootstrapFontAwesome'; // TODO: make TS-friendly. move the option-processing into this plugin
|
||||
BootstrapTheme.prototype.iconOverrideCustomButtonOption = 'bootstrapFontAwesome';
|
||||
BootstrapTheme.prototype.iconOverridePrefix = 'fa-';
|
||||
|
||||
var css_248z = ".fc-theme-bootstrap a:not([href]){color:inherit}.fc-theme-bootstrap .fc-more-link:hover{text-decoration:none}";
|
||||
internal$1.injectStyles(css_248z);
|
||||
|
||||
var plugin = core.createPlugin({
|
||||
name: '@fullcalendar/bootstrap',
|
||||
themeClasses: {
|
||||
bootstrap: BootstrapTheme,
|
||||
},
|
||||
});
|
||||
|
||||
var internal = {
|
||||
__proto__: null,
|
||||
BootstrapTheme: BootstrapTheme
|
||||
};
|
||||
|
||||
core.globalPlugins.push(plugin);
|
||||
|
||||
exports.Internal = internal;
|
||||
exports["default"] = plugin;
|
||||
|
||||
Object.defineProperty(exports, '__esModule', { value: true });
|
||||
|
||||
return exports;
|
||||
|
||||
})({}, FullCalendar, FullCalendar.Internal);
|
||||
6
static/fullcalendar/packages/bootstrap4/index.global.min.js
vendored
Normal file
6
static/fullcalendar/packages/bootstrap4/index.global.min.js
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
/*!
|
||||
FullCalendar Bootstrap 4 Plugin v6.1.11
|
||||
Docs & License: https://fullcalendar.io/docs/bootstrap4
|
||||
(c) 2023 Adam Shaw
|
||||
*/
|
||||
FullCalendar.Bootstrap=function(e,t,o){"use strict";class r extends o.Theme{}r.prototype.classes={root:"fc-theme-bootstrap",table:"table-bordered",tableCellShaded:"table-active",buttonGroup:"btn-group",button:"btn btn-primary",buttonActive:"active",popover:"popover",popoverHeader:"popover-header",popoverContent:"popover-body"},r.prototype.baseIconClass="fa",r.prototype.iconClasses={close:"fa-times",prev:"fa-chevron-left",next:"fa-chevron-right",prevYear:"fa-angle-double-left",nextYear:"fa-angle-double-right"},r.prototype.rtlIconClasses={prev:"fa-chevron-right",next:"fa-chevron-left",prevYear:"fa-angle-double-right",nextYear:"fa-angle-double-left"},r.prototype.iconOverrideOption="bootstrapFontAwesome",r.prototype.iconOverrideCustomButtonOption="bootstrapFontAwesome",r.prototype.iconOverridePrefix="fa-";o.injectStyles(".fc-theme-bootstrap a:not([href]){color:inherit}.fc-theme-bootstrap .fc-more-link:hover{text-decoration:none}");var a=t.createPlugin({name:"@fullcalendar/bootstrap",themeClasses:{bootstrap:r}}),n={__proto__:null,BootstrapTheme:r};return t.globalPlugins.push(a),e.Internal=n,e.default=a,Object.defineProperty(e,"__esModule",{value:!0}),e}({},FullCalendar,FullCalendar.Internal);
|
||||
64
static/fullcalendar/packages/bootstrap5/index.global.js
Normal file
64
static/fullcalendar/packages/bootstrap5/index.global.js
Normal file
@@ -0,0 +1,64 @@
|
||||
/*!
|
||||
FullCalendar Bootstrap 5 Plugin v6.1.11
|
||||
Docs & License: https://fullcalendar.io/docs/bootstrap5
|
||||
(c) 2023 Adam Shaw
|
||||
*/
|
||||
FullCalendar.Bootstrap5 = (function (exports, core, internal$1) {
|
||||
'use strict';
|
||||
|
||||
class BootstrapTheme extends internal$1.Theme {
|
||||
}
|
||||
BootstrapTheme.prototype.classes = {
|
||||
root: 'fc-theme-bootstrap5',
|
||||
tableCellShaded: 'fc-theme-bootstrap5-shaded',
|
||||
buttonGroup: 'btn-group',
|
||||
button: 'btn btn-primary',
|
||||
buttonActive: 'active',
|
||||
popover: 'popover',
|
||||
popoverHeader: 'popover-header',
|
||||
popoverContent: 'popover-body',
|
||||
};
|
||||
BootstrapTheme.prototype.baseIconClass = 'bi';
|
||||
BootstrapTheme.prototype.iconClasses = {
|
||||
close: 'bi-x-lg',
|
||||
prev: 'bi-chevron-left',
|
||||
next: 'bi-chevron-right',
|
||||
prevYear: 'bi-chevron-double-left',
|
||||
nextYear: 'bi-chevron-double-right',
|
||||
};
|
||||
BootstrapTheme.prototype.rtlIconClasses = {
|
||||
prev: 'bi-chevron-right',
|
||||
next: 'bi-chevron-left',
|
||||
prevYear: 'bi-chevron-double-right',
|
||||
nextYear: 'bi-chevron-double-left',
|
||||
};
|
||||
// wtf
|
||||
BootstrapTheme.prototype.iconOverrideOption = 'buttonIcons'; // TODO: make TS-friendly
|
||||
BootstrapTheme.prototype.iconOverrideCustomButtonOption = 'icon';
|
||||
BootstrapTheme.prototype.iconOverridePrefix = 'bi-';
|
||||
|
||||
var css_248z = ".fc-theme-bootstrap5 a:not([href]){color:inherit;text-decoration:inherit}.fc-theme-bootstrap5 .fc-list,.fc-theme-bootstrap5 .fc-scrollgrid,.fc-theme-bootstrap5 td,.fc-theme-bootstrap5 th{border:1px solid var(--bs-gray-400)}.fc-theme-bootstrap5 .fc-scrollgrid{border-bottom-width:0;border-right-width:0}.fc-theme-bootstrap5-shaded{background-color:var(--bs-gray-200)}";
|
||||
internal$1.injectStyles(css_248z);
|
||||
|
||||
var plugin = core.createPlugin({
|
||||
name: '@fullcalendar/bootstrap5',
|
||||
themeClasses: {
|
||||
bootstrap5: BootstrapTheme,
|
||||
},
|
||||
});
|
||||
|
||||
var internal = {
|
||||
__proto__: null,
|
||||
BootstrapTheme: BootstrapTheme
|
||||
};
|
||||
|
||||
core.globalPlugins.push(plugin);
|
||||
|
||||
exports.Internal = internal;
|
||||
exports["default"] = plugin;
|
||||
|
||||
Object.defineProperty(exports, '__esModule', { value: true });
|
||||
|
||||
return exports;
|
||||
|
||||
})({}, FullCalendar, FullCalendar.Internal);
|
||||
6
static/fullcalendar/packages/bootstrap5/index.global.min.js
vendored
Normal file
6
static/fullcalendar/packages/bootstrap5/index.global.min.js
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
/*!
|
||||
FullCalendar Bootstrap 5 Plugin v6.1.11
|
||||
Docs & License: https://fullcalendar.io/docs/bootstrap5
|
||||
(c) 2023 Adam Shaw
|
||||
*/
|
||||
FullCalendar.Bootstrap5=function(e,t,o){"use strict";class r extends o.Theme{}r.prototype.classes={root:"fc-theme-bootstrap5",tableCellShaded:"fc-theme-bootstrap5-shaded",buttonGroup:"btn-group",button:"btn btn-primary",buttonActive:"active",popover:"popover",popoverHeader:"popover-header",popoverContent:"popover-body"},r.prototype.baseIconClass="bi",r.prototype.iconClasses={close:"bi-x-lg",prev:"bi-chevron-left",next:"bi-chevron-right",prevYear:"bi-chevron-double-left",nextYear:"bi-chevron-double-right"},r.prototype.rtlIconClasses={prev:"bi-chevron-right",next:"bi-chevron-left",prevYear:"bi-chevron-double-right",nextYear:"bi-chevron-double-left"},r.prototype.iconOverrideOption="buttonIcons",r.prototype.iconOverrideCustomButtonOption="icon",r.prototype.iconOverridePrefix="bi-";o.injectStyles(".fc-theme-bootstrap5 a:not([href]){color:inherit;text-decoration:inherit}.fc-theme-bootstrap5 .fc-list,.fc-theme-bootstrap5 .fc-scrollgrid,.fc-theme-bootstrap5 td,.fc-theme-bootstrap5 th{border:1px solid var(--bs-gray-400)}.fc-theme-bootstrap5 .fc-scrollgrid{border-bottom-width:0;border-right-width:0}.fc-theme-bootstrap5-shaded{background-color:var(--bs-gray-200)}");var a=t.createPlugin({name:"@fullcalendar/bootstrap5",themeClasses:{bootstrap5:r}}),n={__proto__:null,BootstrapTheme:r};return t.globalPlugins.push(a),e.Internal=n,e.default=a,Object.defineProperty(e,"__esModule",{value:!0}),e}({},FullCalendar,FullCalendar.Internal);
|
||||
9856
static/fullcalendar/packages/core/index.global.js
Normal file
9856
static/fullcalendar/packages/core/index.global.js
Normal file
File diff suppressed because one or more lines are too long
6
static/fullcalendar/packages/core/index.global.min.js
vendored
Normal file
6
static/fullcalendar/packages/core/index.global.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1933
static/fullcalendar/packages/core/locales-all.global.js
Normal file
1933
static/fullcalendar/packages/core/locales-all.global.js
Normal file
File diff suppressed because it is too large
Load Diff
6
static/fullcalendar/packages/core/locales-all.global.min.js
vendored
Normal file
6
static/fullcalendar/packages/core/locales-all.global.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
32
static/fullcalendar/packages/core/locales/af.global.js
Normal file
32
static/fullcalendar/packages/core/locales/af.global.js
Normal file
@@ -0,0 +1,32 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 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
static/fullcalendar/packages/core/locales/af.global.min.js
vendored
Normal file
6
static/fullcalendar/packages/core/locales/af.global.min.js
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 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"})}();
|
||||
34
static/fullcalendar/packages/core/locales/ar-dz.global.js
Normal file
34
static/fullcalendar/packages/core/locales/ar-dz.global.js
Normal file
@@ -0,0 +1,34 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 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
static/fullcalendar/packages/core/locales/ar-dz.global.min.js
vendored
Normal file
6
static/fullcalendar/packages/core/locales/ar-dz.global.min.js
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 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:"أي أحداث لعرض"})}();
|
||||
34
static/fullcalendar/packages/core/locales/ar-kw.global.js
Normal file
34
static/fullcalendar/packages/core/locales/ar-kw.global.js
Normal file
@@ -0,0 +1,34 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 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
static/fullcalendar/packages/core/locales/ar-kw.global.min.js
vendored
Normal file
6
static/fullcalendar/packages/core/locales/ar-kw.global.min.js
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 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:"أي أحداث لعرض"})}();
|
||||
34
static/fullcalendar/packages/core/locales/ar-ly.global.js
Normal file
34
static/fullcalendar/packages/core/locales/ar-ly.global.js
Normal file
@@ -0,0 +1,34 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 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
static/fullcalendar/packages/core/locales/ar-ly.global.min.js
vendored
Normal file
6
static/fullcalendar/packages/core/locales/ar-ly.global.min.js
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 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:"أي أحداث لعرض"})}();
|
||||
34
static/fullcalendar/packages/core/locales/ar-ma.global.js
Normal file
34
static/fullcalendar/packages/core/locales/ar-ma.global.js
Normal file
@@ -0,0 +1,34 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 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
static/fullcalendar/packages/core/locales/ar-ma.global.min.js
vendored
Normal file
6
static/fullcalendar/packages/core/locales/ar-ma.global.min.js
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 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:"أي أحداث لعرض"})}();
|
||||
34
static/fullcalendar/packages/core/locales/ar-sa.global.js
Normal file
34
static/fullcalendar/packages/core/locales/ar-sa.global.js
Normal file
@@ -0,0 +1,34 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 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
static/fullcalendar/packages/core/locales/ar-sa.global.min.js
vendored
Normal file
6
static/fullcalendar/packages/core/locales/ar-sa.global.min.js
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 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:"أي أحداث لعرض"})}();
|
||||
34
static/fullcalendar/packages/core/locales/ar-tn.global.js
Normal file
34
static/fullcalendar/packages/core/locales/ar-tn.global.js
Normal file
@@ -0,0 +1,34 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 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
static/fullcalendar/packages/core/locales/ar-tn.global.min.js
vendored
Normal file
6
static/fullcalendar/packages/core/locales/ar-tn.global.min.js
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 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:"أي أحداث لعرض"})}();
|
||||
34
static/fullcalendar/packages/core/locales/ar.global.js
Normal file
34
static/fullcalendar/packages/core/locales/ar.global.js
Normal file
@@ -0,0 +1,34 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 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
static/fullcalendar/packages/core/locales/ar.global.min.js
vendored
Normal file
6
static/fullcalendar/packages/core/locales/ar.global.min.js
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 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:"أي أحداث لعرض"})}();
|
||||
35
static/fullcalendar/packages/core/locales/az.global.js
Normal file
35
static/fullcalendar/packages/core/locales/az.global.js
Normal file
@@ -0,0 +1,35 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 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
static/fullcalendar/packages/core/locales/az.global.min.js
vendored
Normal file
6
static/fullcalendar/packages/core/locales/az.global.min.js
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 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)}();
|
||||
34
static/fullcalendar/packages/core/locales/bg.global.js
Normal file
34
static/fullcalendar/packages/core/locales/bg.global.js
Normal file
@@ -0,0 +1,34 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 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
static/fullcalendar/packages/core/locales/bg.global.min.js
vendored
Normal file
6
static/fullcalendar/packages/core/locales/bg.global.min.js
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 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)}();
|
||||
35
static/fullcalendar/packages/core/locales/bn.global.js
Normal file
35
static/fullcalendar/packages/core/locales/bn.global.js
Normal file
@@ -0,0 +1,35 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 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
static/fullcalendar/packages/core/locales/bn.global.min.js
vendored
Normal file
6
static/fullcalendar/packages/core/locales/bn.global.min.js
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 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)}();
|
||||
35
static/fullcalendar/packages/core/locales/bs.global.js
Normal file
35
static/fullcalendar/packages/core/locales/bs.global.js
Normal file
@@ -0,0 +1,35 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 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
static/fullcalendar/packages/core/locales/bs.global.min.js
vendored
Normal file
6
static/fullcalendar/packages/core/locales/bs.global.min.js
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 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)}();
|
||||
33
static/fullcalendar/packages/core/locales/ca.global.js
Normal file
33
static/fullcalendar/packages/core/locales/ca.global.js
Normal file
@@ -0,0 +1,33 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 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
static/fullcalendar/packages/core/locales/ca.global.min.js
vendored
Normal file
6
static/fullcalendar/packages/core/locales/ca.global.min.js
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 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"})}();
|
||||
35
static/fullcalendar/packages/core/locales/cs.global.js
Normal file
35
static/fullcalendar/packages/core/locales/cs.global.js
Normal file
@@ -0,0 +1,35 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 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
static/fullcalendar/packages/core/locales/cs.global.min.js
vendored
Normal file
6
static/fullcalendar/packages/core/locales/cs.global.min.js
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 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)}();
|
||||
33
static/fullcalendar/packages/core/locales/cy.global.js
Normal file
33
static/fullcalendar/packages/core/locales/cy.global.js
Normal file
@@ -0,0 +1,33 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 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
static/fullcalendar/packages/core/locales/cy.global.min.js
vendored
Normal file
6
static/fullcalendar/packages/core/locales/cy.global.min.js
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 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"})}();
|
||||
33
static/fullcalendar/packages/core/locales/da.global.js
Normal file
33
static/fullcalendar/packages/core/locales/da.global.js
Normal file
@@ -0,0 +1,33 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 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
static/fullcalendar/packages/core/locales/da.global.min.js
vendored
Normal file
6
static/fullcalendar/packages/core/locales/da.global.min.js
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 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"})}();
|
||||
69
static/fullcalendar/packages/core/locales/de-at.global.js
Normal file
69
static/fullcalendar/packages/core/locales/de-at.global.js
Normal file
@@ -0,0 +1,69 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 Adam Shaw
|
||||
*/
|
||||
(function (index_js) {
|
||||
'use strict';
|
||||
|
||||
function affix(buttonText) {
|
||||
return (buttonText === 'Tag' || buttonText === 'Monat') ? 'r' :
|
||||
buttonText === 'Jahr' ? 's' : '';
|
||||
}
|
||||
var locale = {
|
||||
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',
|
||||
};
|
||||
|
||||
index_js.globalLocales.push(locale);
|
||||
|
||||
})(FullCalendar);
|
||||
6
static/fullcalendar/packages/core/locales/de-at.global.min.js
vendored
Normal file
6
static/fullcalendar/packages/core/locales/de-at.global.min.js
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 Adam Shaw
|
||||
*/
|
||||
!function(e){"use strict";function t(e){return"Tag"===e||"Monat"===e?"r":"Jahr"===e?"s":""}var n={code:"de-at",week:{dow:1,doy:4},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:e=>"+ weitere "+e,noEventsText:"Keine Ereignisse anzuzeigen",buttonHints:{prev:e=>`Vorherige${t(e)} ${e}`,next:e=>`Nächste${t(e)} ${e}`,today:e=>"Tag"===e?"Heute":`Diese${t(e)} ${e}`},viewHint:e=>e+("Woche"===e?"n":"Monat"===e?"s":"es")+"ansicht",navLinkHint:"Gehe zu $0",moreLinkHint:e=>"Zeige "+(1===e?"ein weiteres Ereignis":e+" weitere Ereignisse"),closeHint:"Schließen",timeHint:"Uhrzeit",eventHint:"Ereignis"};FullCalendar.globalLocales.push(n)}();
|
||||
69
static/fullcalendar/packages/core/locales/de.global.js
Normal file
69
static/fullcalendar/packages/core/locales/de.global.js
Normal file
@@ -0,0 +1,69 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 Adam Shaw
|
||||
*/
|
||||
(function (index_js) {
|
||||
'use strict';
|
||||
|
||||
function affix(buttonText) {
|
||||
return (buttonText === 'Tag' || buttonText === 'Monat') ? 'r' :
|
||||
buttonText === 'Jahr' ? 's' : '';
|
||||
}
|
||||
var locale = {
|
||||
code: 'de',
|
||||
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',
|
||||
};
|
||||
|
||||
index_js.globalLocales.push(locale);
|
||||
|
||||
})(FullCalendar);
|
||||
6
static/fullcalendar/packages/core/locales/de.global.min.js
vendored
Normal file
6
static/fullcalendar/packages/core/locales/de.global.min.js
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 Adam Shaw
|
||||
*/
|
||||
!function(e){"use strict";function t(e){return"Tag"===e||"Monat"===e?"r":"Jahr"===e?"s":""}var n={code:"de",week:{dow:1,doy:4},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:e=>"+ weitere "+e,noEventsText:"Keine Ereignisse anzuzeigen",buttonHints:{prev:e=>`Vorherige${t(e)} ${e}`,next:e=>`Nächste${t(e)} ${e}`,today:e=>"Tag"===e?"Heute":`Diese${t(e)} ${e}`},viewHint:e=>e+("Woche"===e?"n":"Monat"===e?"s":"es")+"ansicht",navLinkHint:"Gehe zu $0",moreLinkHint:e=>"Zeige "+(1===e?"ein weiteres Ereignis":e+" weitere Ereignisse"),closeHint:"Schließen",timeHint:"Uhrzeit",eventHint:"Ereignis"};FullCalendar.globalLocales.push(n)}();
|
||||
33
static/fullcalendar/packages/core/locales/el.global.js
Normal file
33
static/fullcalendar/packages/core/locales/el.global.js
Normal file
@@ -0,0 +1,33 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 Adam Shaw
|
||||
*/
|
||||
(function (index_js) {
|
||||
'use strict';
|
||||
|
||||
var locale = {
|
||||
code: 'el',
|
||||
week: {
|
||||
dow: 1,
|
||||
doy: 4, // The week that contains Jan 4st is the first week of the year.
|
||||
},
|
||||
buttonText: {
|
||||
prev: 'Προηγούμενος',
|
||||
next: 'Επόμενος',
|
||||
today: 'Σήμερα',
|
||||
year: 'Ετος',
|
||||
month: 'Μήνας',
|
||||
week: 'Εβδομάδα',
|
||||
day: 'Ημέρα',
|
||||
list: 'Ατζέντα',
|
||||
},
|
||||
weekText: 'Εβδ',
|
||||
allDayText: 'Ολοήμερο',
|
||||
moreLinkText: 'περισσότερα',
|
||||
noEventsText: 'Δεν υπάρχουν γεγονότα προς εμφάνιση',
|
||||
};
|
||||
|
||||
index_js.globalLocales.push(locale);
|
||||
|
||||
})(FullCalendar);
|
||||
6
static/fullcalendar/packages/core/locales/el.global.min.js
vendored
Normal file
6
static/fullcalendar/packages/core/locales/el.global.min.js
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 Adam Shaw
|
||||
*/
|
||||
!function(e){"use strict";FullCalendar.globalLocales.push({code:"el",week:{dow:1,doy:4},buttonText:{prev:"Προηγούμενος",next:"Επόμενος",today:"Σήμερα",year:"Ετος",month:"Μήνας",week:"Εβδομάδα",day:"Ημέρα",list:"Ατζέντα"},weekText:"Εβδ",allDayText:"Ολοήμερο",moreLinkText:"περισσότερα",noEventsText:"Δεν υπάρχουν γεγονότα προς εμφάνιση"})}();
|
||||
29
static/fullcalendar/packages/core/locales/en-au.global.js
Normal file
29
static/fullcalendar/packages/core/locales/en-au.global.js
Normal file
@@ -0,0 +1,29 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 Adam Shaw
|
||||
*/
|
||||
(function (index_js) {
|
||||
'use strict';
|
||||
|
||||
var locale = {
|
||||
code: 'en-au',
|
||||
week: {
|
||||
dow: 1,
|
||||
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||
},
|
||||
buttonHints: {
|
||||
prev: 'Previous $0',
|
||||
next: 'Next $0',
|
||||
today: 'This $0',
|
||||
},
|
||||
viewHint: '$0 view',
|
||||
navLinkHint: 'Go to $0',
|
||||
moreLinkHint(eventCnt) {
|
||||
return `Show ${eventCnt} more event${eventCnt === 1 ? '' : 's'}`;
|
||||
},
|
||||
};
|
||||
|
||||
index_js.globalLocales.push(locale);
|
||||
|
||||
})(FullCalendar);
|
||||
6
static/fullcalendar/packages/core/locales/en-au.global.min.js
vendored
Normal file
6
static/fullcalendar/packages/core/locales/en-au.global.min.js
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 Adam Shaw
|
||||
*/
|
||||
!function(e){"use strict";var n={code:"en-au",week:{dow:1,doy:4},buttonHints:{prev:"Previous $0",next:"Next $0",today:"This $0"},viewHint:"$0 view",navLinkHint:"Go to $0",moreLinkHint:e=>`Show ${e} more event${1===e?"":"s"}`};FullCalendar.globalLocales.push(n)}();
|
||||
29
static/fullcalendar/packages/core/locales/en-gb.global.js
Normal file
29
static/fullcalendar/packages/core/locales/en-gb.global.js
Normal file
@@ -0,0 +1,29 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 Adam Shaw
|
||||
*/
|
||||
(function (index_js) {
|
||||
'use strict';
|
||||
|
||||
var locale = {
|
||||
code: 'en-gb',
|
||||
week: {
|
||||
dow: 1,
|
||||
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||
},
|
||||
buttonHints: {
|
||||
prev: 'Previous $0',
|
||||
next: 'Next $0',
|
||||
today: 'This $0',
|
||||
},
|
||||
viewHint: '$0 view',
|
||||
navLinkHint: 'Go to $0',
|
||||
moreLinkHint(eventCnt) {
|
||||
return `Show ${eventCnt} more event${eventCnt === 1 ? '' : 's'}`;
|
||||
},
|
||||
};
|
||||
|
||||
index_js.globalLocales.push(locale);
|
||||
|
||||
})(FullCalendar);
|
||||
6
static/fullcalendar/packages/core/locales/en-gb.global.min.js
vendored
Normal file
6
static/fullcalendar/packages/core/locales/en-gb.global.min.js
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 Adam Shaw
|
||||
*/
|
||||
!function(e){"use strict";var n={code:"en-gb",week:{dow:1,doy:4},buttonHints:{prev:"Previous $0",next:"Next $0",today:"This $0"},viewHint:"$0 view",navLinkHint:"Go to $0",moreLinkHint:e=>`Show ${e} more event${1===e?"":"s"}`};FullCalendar.globalLocales.push(n)}();
|
||||
29
static/fullcalendar/packages/core/locales/en-nz.global.js
Normal file
29
static/fullcalendar/packages/core/locales/en-nz.global.js
Normal file
@@ -0,0 +1,29 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 Adam Shaw
|
||||
*/
|
||||
(function (index_js) {
|
||||
'use strict';
|
||||
|
||||
var locale = {
|
||||
code: 'en-nz',
|
||||
week: {
|
||||
dow: 1,
|
||||
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||
},
|
||||
buttonHints: {
|
||||
prev: 'Previous $0',
|
||||
next: 'Next $0',
|
||||
today: 'This $0',
|
||||
},
|
||||
viewHint: '$0 view',
|
||||
navLinkHint: 'Go to $0',
|
||||
moreLinkHint(eventCnt) {
|
||||
return `Show ${eventCnt} more event${eventCnt === 1 ? '' : 's'}`;
|
||||
},
|
||||
};
|
||||
|
||||
index_js.globalLocales.push(locale);
|
||||
|
||||
})(FullCalendar);
|
||||
6
static/fullcalendar/packages/core/locales/en-nz.global.min.js
vendored
Normal file
6
static/fullcalendar/packages/core/locales/en-nz.global.min.js
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 Adam Shaw
|
||||
*/
|
||||
!function(e){"use strict";var n={code:"en-nz",week:{dow:1,doy:4},buttonHints:{prev:"Previous $0",next:"Next $0",today:"This $0"},viewHint:"$0 view",navLinkHint:"Go to $0",moreLinkHint:e=>`Show ${e} more event${1===e?"":"s"}`};FullCalendar.globalLocales.push(n)}();
|
||||
33
static/fullcalendar/packages/core/locales/eo.global.js
Normal file
33
static/fullcalendar/packages/core/locales/eo.global.js
Normal file
@@ -0,0 +1,33 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 Adam Shaw
|
||||
*/
|
||||
(function (index_js) {
|
||||
'use strict';
|
||||
|
||||
var locale = {
|
||||
code: 'eo',
|
||||
week: {
|
||||
dow: 1,
|
||||
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||
},
|
||||
buttonText: {
|
||||
prev: 'Antaŭa',
|
||||
next: 'Sekva',
|
||||
today: 'Hodiaŭ',
|
||||
year: 'Jaro',
|
||||
month: 'Monato',
|
||||
week: 'Semajno',
|
||||
day: 'Tago',
|
||||
list: 'Tagordo',
|
||||
},
|
||||
weekText: 'Sm',
|
||||
allDayText: 'Tuta tago',
|
||||
moreLinkText: 'pli',
|
||||
noEventsText: 'Neniuj eventoj por montri',
|
||||
};
|
||||
|
||||
index_js.globalLocales.push(locale);
|
||||
|
||||
})(FullCalendar);
|
||||
6
static/fullcalendar/packages/core/locales/eo.global.min.js
vendored
Normal file
6
static/fullcalendar/packages/core/locales/eo.global.min.js
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 Adam Shaw
|
||||
*/
|
||||
!function(e){"use strict";FullCalendar.globalLocales.push({code:"eo",week:{dow:1,doy:4},buttonText:{prev:"Antaŭa",next:"Sekva",today:"Hodiaŭ",year:"Jaro",month:"Monato",week:"Semajno",day:"Tago",list:"Tagordo"},weekText:"Sm",allDayText:"Tuta tago",moreLinkText:"pli",noEventsText:"Neniuj eventoj por montri"})}();
|
||||
33
static/fullcalendar/packages/core/locales/es-us.global.js
Normal file
33
static/fullcalendar/packages/core/locales/es-us.global.js
Normal file
@@ -0,0 +1,33 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 Adam Shaw
|
||||
*/
|
||||
(function (index_js) {
|
||||
'use strict';
|
||||
|
||||
var locale = {
|
||||
code: 'es',
|
||||
week: {
|
||||
dow: 0,
|
||||
doy: 6, // The week that contains Jan 1st is the first week of the year.
|
||||
},
|
||||
buttonText: {
|
||||
prev: 'Ant',
|
||||
next: 'Sig',
|
||||
today: 'Hoy',
|
||||
year: 'Año',
|
||||
month: 'Mes',
|
||||
week: 'Semana',
|
||||
day: 'Día',
|
||||
list: 'Agenda',
|
||||
},
|
||||
weekText: 'Sm',
|
||||
allDayText: 'Todo el día',
|
||||
moreLinkText: 'más',
|
||||
noEventsText: 'No hay eventos para mostrar',
|
||||
};
|
||||
|
||||
index_js.globalLocales.push(locale);
|
||||
|
||||
})(FullCalendar);
|
||||
6
static/fullcalendar/packages/core/locales/es-us.global.min.js
vendored
Normal file
6
static/fullcalendar/packages/core/locales/es-us.global.min.js
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 Adam Shaw
|
||||
*/
|
||||
!function(e){"use strict";FullCalendar.globalLocales.push({code:"es",week:{dow:0,doy:6},buttonText:{prev:"Ant",next:"Sig",today:"Hoy",year:"Año",month:"Mes",week:"Semana",day:"Día",list:"Agenda"},weekText:"Sm",allDayText:"Todo el día",moreLinkText:"más",noEventsText:"No hay eventos para mostrar"})}();
|
||||
52
static/fullcalendar/packages/core/locales/es.global.js
Normal file
52
static/fullcalendar/packages/core/locales/es.global.js
Normal file
@@ -0,0 +1,52 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 Adam Shaw
|
||||
*/
|
||||
(function (index_js) {
|
||||
'use strict';
|
||||
|
||||
var locale = {
|
||||
code: 'es',
|
||||
week: {
|
||||
dow: 1,
|
||||
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||
},
|
||||
buttonText: {
|
||||
prev: 'Ant',
|
||||
next: 'Sig',
|
||||
today: 'Hoy',
|
||||
year: 'Año',
|
||||
month: 'Mes',
|
||||
week: 'Semana',
|
||||
day: 'Día',
|
||||
list: 'Agenda',
|
||||
},
|
||||
buttonHints: {
|
||||
prev: '$0 antes',
|
||||
next: '$0 siguiente',
|
||||
today(buttonText) {
|
||||
return (buttonText === 'Día') ? 'Hoy' :
|
||||
((buttonText === 'Semana') ? 'Esta' : 'Este') + ' ' + buttonText.toLocaleLowerCase();
|
||||
},
|
||||
},
|
||||
viewHint(buttonText) {
|
||||
return 'Vista ' + (buttonText === 'Semana' ? 'de la' : 'del') + ' ' + buttonText.toLocaleLowerCase();
|
||||
},
|
||||
weekText: 'Sm',
|
||||
weekTextLong: 'Semana',
|
||||
allDayText: 'Todo el día',
|
||||
moreLinkText: 'más',
|
||||
moreLinkHint(eventCnt) {
|
||||
return `Mostrar ${eventCnt} eventos más`;
|
||||
},
|
||||
noEventsText: 'No hay eventos para mostrar',
|
||||
navLinkHint: 'Ir al $0',
|
||||
closeHint: 'Cerrar',
|
||||
timeHint: 'La hora',
|
||||
eventHint: 'Evento',
|
||||
};
|
||||
|
||||
index_js.globalLocales.push(locale);
|
||||
|
||||
})(FullCalendar);
|
||||
6
static/fullcalendar/packages/core/locales/es.global.min.js
vendored
Normal file
6
static/fullcalendar/packages/core/locales/es.global.min.js
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 Adam Shaw
|
||||
*/
|
||||
!function(e){"use strict";var t={code:"es",week:{dow:1,doy:4},buttonText:{prev:"Ant",next:"Sig",today:"Hoy",year:"Año",month:"Mes",week:"Semana",day:"Día",list:"Agenda"},buttonHints:{prev:"$0 antes",next:"$0 siguiente",today:e=>"Día"===e?"Hoy":("Semana"===e?"Esta":"Este")+" "+e.toLocaleLowerCase()},viewHint:e=>"Vista "+("Semana"===e?"de la":"del")+" "+e.toLocaleLowerCase(),weekText:"Sm",weekTextLong:"Semana",allDayText:"Todo el día",moreLinkText:"más",moreLinkHint:e=>`Mostrar ${e} eventos más`,noEventsText:"No hay eventos para mostrar",navLinkHint:"Ir al $0",closeHint:"Cerrar",timeHint:"La hora",eventHint:"Evento"};FullCalendar.globalLocales.push(t)}();
|
||||
35
static/fullcalendar/packages/core/locales/et.global.js
Normal file
35
static/fullcalendar/packages/core/locales/et.global.js
Normal file
@@ -0,0 +1,35 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 Adam Shaw
|
||||
*/
|
||||
(function (index_js) {
|
||||
'use strict';
|
||||
|
||||
var locale = {
|
||||
code: 'et',
|
||||
week: {
|
||||
dow: 1,
|
||||
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||
},
|
||||
buttonText: {
|
||||
prev: 'Eelnev',
|
||||
next: 'Järgnev',
|
||||
today: 'Täna',
|
||||
year: 'Aasta',
|
||||
month: 'Kuu',
|
||||
week: 'Nädal',
|
||||
day: 'Päev',
|
||||
list: 'Päevakord',
|
||||
},
|
||||
weekText: 'näd',
|
||||
allDayText: 'Kogu päev',
|
||||
moreLinkText(n) {
|
||||
return '+ veel ' + n;
|
||||
},
|
||||
noEventsText: 'Kuvamiseks puuduvad sündmused',
|
||||
};
|
||||
|
||||
index_js.globalLocales.push(locale);
|
||||
|
||||
})(FullCalendar);
|
||||
6
static/fullcalendar/packages/core/locales/et.global.min.js
vendored
Normal file
6
static/fullcalendar/packages/core/locales/et.global.min.js
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 Adam Shaw
|
||||
*/
|
||||
!function(e){"use strict";var a={code:"et",week:{dow:1,doy:4},buttonText:{prev:"Eelnev",next:"Järgnev",today:"Täna",year:"Aasta",month:"Kuu",week:"Nädal",day:"Päev",list:"Päevakord"},weekText:"näd",allDayText:"Kogu päev",moreLinkText:e=>"+ veel "+e,noEventsText:"Kuvamiseks puuduvad sündmused"};FullCalendar.globalLocales.push(a)}();
|
||||
33
static/fullcalendar/packages/core/locales/eu.global.js
Normal file
33
static/fullcalendar/packages/core/locales/eu.global.js
Normal file
@@ -0,0 +1,33 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 Adam Shaw
|
||||
*/
|
||||
(function (index_js) {
|
||||
'use strict';
|
||||
|
||||
var locale = {
|
||||
code: 'eu',
|
||||
week: {
|
||||
dow: 1,
|
||||
doy: 7, // The week that contains Jan 1st is the first week of the year.
|
||||
},
|
||||
buttonText: {
|
||||
prev: 'Aur',
|
||||
next: 'Hur',
|
||||
today: 'Gaur',
|
||||
year: 'Urtea',
|
||||
month: 'Hilabetea',
|
||||
week: 'Astea',
|
||||
day: 'Eguna',
|
||||
list: 'Agenda',
|
||||
},
|
||||
weekText: 'As',
|
||||
allDayText: 'Egun osoa',
|
||||
moreLinkText: 'gehiago',
|
||||
noEventsText: 'Ez dago ekitaldirik erakusteko',
|
||||
};
|
||||
|
||||
index_js.globalLocales.push(locale);
|
||||
|
||||
})(FullCalendar);
|
||||
6
static/fullcalendar/packages/core/locales/eu.global.min.js
vendored
Normal file
6
static/fullcalendar/packages/core/locales/eu.global.min.js
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 Adam Shaw
|
||||
*/
|
||||
!function(e){"use strict";FullCalendar.globalLocales.push({code:"eu",week:{dow:1,doy:7},buttonText:{prev:"Aur",next:"Hur",today:"Gaur",year:"Urtea",month:"Hilabetea",week:"Astea",day:"Eguna",list:"Agenda"},weekText:"As",allDayText:"Egun osoa",moreLinkText:"gehiago",noEventsText:"Ez dago ekitaldirik erakusteko"})}();
|
||||
36
static/fullcalendar/packages/core/locales/fa.global.js
Normal file
36
static/fullcalendar/packages/core/locales/fa.global.js
Normal file
@@ -0,0 +1,36 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 Adam Shaw
|
||||
*/
|
||||
(function (index_js) {
|
||||
'use strict';
|
||||
|
||||
var locale = {
|
||||
code: 'fa',
|
||||
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(n) {
|
||||
return 'بیش از ' + n;
|
||||
},
|
||||
noEventsText: 'هیچ رویدادی به نمایش',
|
||||
};
|
||||
|
||||
index_js.globalLocales.push(locale);
|
||||
|
||||
})(FullCalendar);
|
||||
6
static/fullcalendar/packages/core/locales/fa.global.min.js
vendored
Normal file
6
static/fullcalendar/packages/core/locales/fa.global.min.js
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 Adam Shaw
|
||||
*/
|
||||
!function(e){"use strict";var t={code:"fa",week:{dow:6,doy:12},direction:"rtl",buttonText:{prev:"قبلی",next:"بعدی",today:"امروز",year:"سال",month:"ماه",week:"هفته",day:"روز",list:"برنامه"},weekText:"هف",allDayText:"تمام روز",moreLinkText:e=>"بیش از "+e,noEventsText:"هیچ رویدادی به نمایش"};FullCalendar.globalLocales.push(t)}();
|
||||
33
static/fullcalendar/packages/core/locales/fi.global.js
Normal file
33
static/fullcalendar/packages/core/locales/fi.global.js
Normal file
@@ -0,0 +1,33 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 Adam Shaw
|
||||
*/
|
||||
(function (index_js) {
|
||||
'use strict';
|
||||
|
||||
var locale = {
|
||||
code: 'fi',
|
||||
week: {
|
||||
dow: 1,
|
||||
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||
},
|
||||
buttonText: {
|
||||
prev: 'Edellinen',
|
||||
next: 'Seuraava',
|
||||
today: 'Tänään',
|
||||
year: 'Vuosi',
|
||||
month: 'Kuukausi',
|
||||
week: 'Viikko',
|
||||
day: 'Päivä',
|
||||
list: 'Tapahtumat',
|
||||
},
|
||||
weekText: 'Vk',
|
||||
allDayText: 'Koko päivä',
|
||||
moreLinkText: 'lisää',
|
||||
noEventsText: 'Ei näytettäviä tapahtumia',
|
||||
};
|
||||
|
||||
index_js.globalLocales.push(locale);
|
||||
|
||||
})(FullCalendar);
|
||||
6
static/fullcalendar/packages/core/locales/fi.global.min.js
vendored
Normal file
6
static/fullcalendar/packages/core/locales/fi.global.min.js
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 Adam Shaw
|
||||
*/
|
||||
!function(e){"use strict";FullCalendar.globalLocales.push({code:"fi",week:{dow:1,doy:4},buttonText:{prev:"Edellinen",next:"Seuraava",today:"Tänään",year:"Vuosi",month:"Kuukausi",week:"Viikko",day:"Päivä",list:"Tapahtumat"},weekText:"Vk",allDayText:"Koko päivä",moreLinkText:"lisää",noEventsText:"Ei näytettäviä tapahtumia"})}();
|
||||
29
static/fullcalendar/packages/core/locales/fr-ca.global.js
Normal file
29
static/fullcalendar/packages/core/locales/fr-ca.global.js
Normal file
@@ -0,0 +1,29 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 Adam Shaw
|
||||
*/
|
||||
(function (index_js) {
|
||||
'use strict';
|
||||
|
||||
var locale = {
|
||||
code: 'fr',
|
||||
buttonText: {
|
||||
prev: 'Précédent',
|
||||
next: 'Suivant',
|
||||
today: 'Aujourd\'hui',
|
||||
year: 'Année',
|
||||
month: 'Mois',
|
||||
week: 'Semaine',
|
||||
day: 'Jour',
|
||||
list: 'Mon planning',
|
||||
},
|
||||
weekText: 'Sem.',
|
||||
allDayText: 'Toute la journée',
|
||||
moreLinkText: 'en plus',
|
||||
noEventsText: 'Aucun évènement à afficher',
|
||||
};
|
||||
|
||||
index_js.globalLocales.push(locale);
|
||||
|
||||
})(FullCalendar);
|
||||
6
static/fullcalendar/packages/core/locales/fr-ca.global.min.js
vendored
Normal file
6
static/fullcalendar/packages/core/locales/fr-ca.global.min.js
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 Adam Shaw
|
||||
*/
|
||||
!function(e){"use strict";FullCalendar.globalLocales.push({code:"fr",buttonText:{prev:"Précédent",next:"Suivant",today:"Aujourd'hui",year:"Année",month:"Mois",week:"Semaine",day:"Jour",list:"Mon planning"},weekText:"Sem.",allDayText:"Toute la journée",moreLinkText:"en plus",noEventsText:"Aucun évènement à afficher"})}();
|
||||
33
static/fullcalendar/packages/core/locales/fr-ch.global.js
Normal file
33
static/fullcalendar/packages/core/locales/fr-ch.global.js
Normal file
@@ -0,0 +1,33 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 Adam Shaw
|
||||
*/
|
||||
(function (index_js) {
|
||||
'use strict';
|
||||
|
||||
var locale = {
|
||||
code: 'fr-ch',
|
||||
week: {
|
||||
dow: 1,
|
||||
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||
},
|
||||
buttonText: {
|
||||
prev: 'Précédent',
|
||||
next: 'Suivant',
|
||||
today: 'Courant',
|
||||
year: 'Année',
|
||||
month: 'Mois',
|
||||
week: 'Semaine',
|
||||
day: 'Jour',
|
||||
list: 'Mon planning',
|
||||
},
|
||||
weekText: 'Sm',
|
||||
allDayText: 'Toute la journée',
|
||||
moreLinkText: 'en plus',
|
||||
noEventsText: 'Aucun évènement à afficher',
|
||||
};
|
||||
|
||||
index_js.globalLocales.push(locale);
|
||||
|
||||
})(FullCalendar);
|
||||
6
static/fullcalendar/packages/core/locales/fr-ch.global.min.js
vendored
Normal file
6
static/fullcalendar/packages/core/locales/fr-ch.global.min.js
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 Adam Shaw
|
||||
*/
|
||||
!function(e){"use strict";FullCalendar.globalLocales.push({code:"fr-ch",week:{dow:1,doy:4},buttonText:{prev:"Précédent",next:"Suivant",today:"Courant",year:"Année",month:"Mois",week:"Semaine",day:"Jour",list:"Mon planning"},weekText:"Sm",allDayText:"Toute la journée",moreLinkText:"en plus",noEventsText:"Aucun évènement à afficher"})}();
|
||||
34
static/fullcalendar/packages/core/locales/fr.global.js
Normal file
34
static/fullcalendar/packages/core/locales/fr.global.js
Normal file
@@ -0,0 +1,34 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 Adam Shaw
|
||||
*/
|
||||
(function (index_js) {
|
||||
'use strict';
|
||||
|
||||
var locale = {
|
||||
code: 'fr',
|
||||
week: {
|
||||
dow: 1,
|
||||
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||
},
|
||||
buttonText: {
|
||||
prev: 'Précédent',
|
||||
next: 'Suivant',
|
||||
today: 'Aujourd\'hui',
|
||||
year: 'Année',
|
||||
month: 'Mois',
|
||||
week: 'Semaine',
|
||||
day: 'Jour',
|
||||
list: 'Planning',
|
||||
},
|
||||
weekText: 'Sem.',
|
||||
weekTextLong: 'Semaine',
|
||||
allDayText: 'Toute la journée',
|
||||
moreLinkText: 'en plus',
|
||||
noEventsText: 'Aucun évènement à afficher',
|
||||
};
|
||||
|
||||
index_js.globalLocales.push(locale);
|
||||
|
||||
})(FullCalendar);
|
||||
6
static/fullcalendar/packages/core/locales/fr.global.min.js
vendored
Normal file
6
static/fullcalendar/packages/core/locales/fr.global.min.js
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 Adam Shaw
|
||||
*/
|
||||
!function(e){"use strict";FullCalendar.globalLocales.push({code:"fr",week:{dow:1,doy:4},buttonText:{prev:"Précédent",next:"Suivant",today:"Aujourd'hui",year:"Année",month:"Mois",week:"Semaine",day:"Jour",list:"Planning"},weekText:"Sem.",weekTextLong:"Semaine",allDayText:"Toute la journée",moreLinkText:"en plus",noEventsText:"Aucun évènement à afficher"})}();
|
||||
52
static/fullcalendar/packages/core/locales/gl.global.js
Normal file
52
static/fullcalendar/packages/core/locales/gl.global.js
Normal file
@@ -0,0 +1,52 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 Adam Shaw
|
||||
*/
|
||||
(function (index_js) {
|
||||
'use strict';
|
||||
|
||||
var locale = {
|
||||
code: 'gl',
|
||||
week: {
|
||||
dow: 1,
|
||||
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||
},
|
||||
buttonText: {
|
||||
prev: 'Ant',
|
||||
next: 'Seg',
|
||||
today: 'Hoxe',
|
||||
year: 'Ano',
|
||||
month: 'Mes',
|
||||
week: 'Semana',
|
||||
day: 'Día',
|
||||
list: 'Axenda',
|
||||
},
|
||||
buttonHints: {
|
||||
prev: '$0 antes',
|
||||
next: '$0 seguinte',
|
||||
today(buttonText) {
|
||||
return (buttonText === 'Día') ? 'Hoxe' :
|
||||
((buttonText === 'Semana') ? 'Esta' : 'Este') + ' ' + buttonText.toLocaleLowerCase();
|
||||
},
|
||||
},
|
||||
viewHint(buttonText) {
|
||||
return 'Vista ' + (buttonText === 'Semana' ? 'da' : 'do') + ' ' + buttonText.toLocaleLowerCase();
|
||||
},
|
||||
weekText: 'Sm',
|
||||
weekTextLong: 'Semana',
|
||||
allDayText: 'Todo o día',
|
||||
moreLinkText: 'máis',
|
||||
moreLinkHint(eventCnt) {
|
||||
return `Amosar ${eventCnt} eventos máis`;
|
||||
},
|
||||
noEventsText: 'Non hai eventos para amosar',
|
||||
navLinkHint: 'Ir ao $0',
|
||||
closeHint: 'Pechar',
|
||||
timeHint: 'A hora',
|
||||
eventHint: 'Evento',
|
||||
};
|
||||
|
||||
index_js.globalLocales.push(locale);
|
||||
|
||||
})(FullCalendar);
|
||||
6
static/fullcalendar/packages/core/locales/gl.global.min.js
vendored
Normal file
6
static/fullcalendar/packages/core/locales/gl.global.min.js
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 Adam Shaw
|
||||
*/
|
||||
!function(e){"use strict";var a={code:"gl",week:{dow:1,doy:4},buttonText:{prev:"Ant",next:"Seg",today:"Hoxe",year:"Ano",month:"Mes",week:"Semana",day:"Día",list:"Axenda"},buttonHints:{prev:"$0 antes",next:"$0 seguinte",today:e=>"Día"===e?"Hoxe":("Semana"===e?"Esta":"Este")+" "+e.toLocaleLowerCase()},viewHint:e=>"Vista "+("Semana"===e?"da":"do")+" "+e.toLocaleLowerCase(),weekText:"Sm",weekTextLong:"Semana",allDayText:"Todo o día",moreLinkText:"máis",moreLinkHint:e=>`Amosar ${e} eventos máis`,noEventsText:"Non hai eventos para amosar",navLinkHint:"Ir ao $0",closeHint:"Pechar",timeHint:"A hora",eventHint:"Evento"};FullCalendar.globalLocales.push(a)}();
|
||||
30
static/fullcalendar/packages/core/locales/he.global.js
Normal file
30
static/fullcalendar/packages/core/locales/he.global.js
Normal file
@@ -0,0 +1,30 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 Adam Shaw
|
||||
*/
|
||||
(function (index_js) {
|
||||
'use strict';
|
||||
|
||||
var locale = {
|
||||
code: 'he',
|
||||
direction: 'rtl',
|
||||
buttonText: {
|
||||
prev: 'הקודם',
|
||||
next: 'הבא',
|
||||
today: 'היום',
|
||||
year: 'שנה',
|
||||
month: 'חודש',
|
||||
week: 'שבוע',
|
||||
day: 'יום',
|
||||
list: 'סדר יום',
|
||||
},
|
||||
allDayText: 'כל היום',
|
||||
moreLinkText: 'נוספים',
|
||||
noEventsText: 'אין אירועים להצגה',
|
||||
weekText: 'שבוע',
|
||||
};
|
||||
|
||||
index_js.globalLocales.push(locale);
|
||||
|
||||
})(FullCalendar);
|
||||
6
static/fullcalendar/packages/core/locales/he.global.min.js
vendored
Normal file
6
static/fullcalendar/packages/core/locales/he.global.min.js
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 Adam Shaw
|
||||
*/
|
||||
!function(e){"use strict";FullCalendar.globalLocales.push({code:"he",direction:"rtl",buttonText:{prev:"הקודם",next:"הבא",today:"היום",year:"שנה",month:"חודש",week:"שבוע",day:"יום",list:"סדר יום"},allDayText:"כל היום",moreLinkText:"נוספים",noEventsText:"אין אירועים להצגה",weekText:"שבוע"})}();
|
||||
35
static/fullcalendar/packages/core/locales/hi.global.js
Normal file
35
static/fullcalendar/packages/core/locales/hi.global.js
Normal file
@@ -0,0 +1,35 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 Adam Shaw
|
||||
*/
|
||||
(function (index_js) {
|
||||
'use strict';
|
||||
|
||||
var locale = {
|
||||
code: 'hi',
|
||||
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
static/fullcalendar/packages/core/locales/hi.global.min.js
vendored
Normal file
6
static/fullcalendar/packages/core/locales/hi.global.min.js
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 Adam Shaw
|
||||
*/
|
||||
!function(e){"use strict";var t={code:"hi",week:{dow:0,doy:6},buttonText:{prev:"पिछला",next:"अगला",today:"आज",year:"वर्ष",month:"महीना",week:"सप्ताह",day:"दिन",list:"कार्यसूची"},weekText:"हफ्ता",allDayText:"सभी दिन",moreLinkText:e=>"+अधिक "+e,noEventsText:"कोई घटनाओं को प्रदर्शित करने के लिए"};FullCalendar.globalLocales.push(t)}();
|
||||
35
static/fullcalendar/packages/core/locales/hr.global.js
Normal file
35
static/fullcalendar/packages/core/locales/hr.global.js
Normal file
@@ -0,0 +1,35 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 Adam Shaw
|
||||
*/
|
||||
(function (index_js) {
|
||||
'use strict';
|
||||
|
||||
var locale = {
|
||||
code: 'hr',
|
||||
week: {
|
||||
dow: 1,
|
||||
doy: 7, // The week that contains Jan 1st is the first week of the year.
|
||||
},
|
||||
buttonText: {
|
||||
prev: 'Prijašnji',
|
||||
next: 'Sljedeći',
|
||||
today: 'Danas',
|
||||
year: 'Godina',
|
||||
month: 'Mjesec',
|
||||
week: 'Tjedan',
|
||||
day: 'Dan',
|
||||
list: 'Raspored',
|
||||
},
|
||||
weekText: 'Tje',
|
||||
allDayText: 'Cijeli dan',
|
||||
moreLinkText(n) {
|
||||
return '+ još ' + n;
|
||||
},
|
||||
noEventsText: 'Nema događaja za prikaz',
|
||||
};
|
||||
|
||||
index_js.globalLocales.push(locale);
|
||||
|
||||
})(FullCalendar);
|
||||
6
static/fullcalendar/packages/core/locales/hr.global.min.js
vendored
Normal file
6
static/fullcalendar/packages/core/locales/hr.global.min.js
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 Adam Shaw
|
||||
*/
|
||||
!function(e){"use strict";var a={code:"hr",week:{dow:1,doy:7},buttonText:{prev:"Prijašnji",next:"Sljedeći",today:"Danas",year:"Godina",month:"Mjesec",week:"Tjedan",day:"Dan",list:"Raspored"},weekText:"Tje",allDayText:"Cijeli dan",moreLinkText:e=>"+ još "+e,noEventsText:"Nema događaja za prikaz"};FullCalendar.globalLocales.push(a)}();
|
||||
33
static/fullcalendar/packages/core/locales/hu.global.js
Normal file
33
static/fullcalendar/packages/core/locales/hu.global.js
Normal file
@@ -0,0 +1,33 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 Adam Shaw
|
||||
*/
|
||||
(function (index_js) {
|
||||
'use strict';
|
||||
|
||||
var locale = {
|
||||
code: 'hu',
|
||||
week: {
|
||||
dow: 1,
|
||||
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||
},
|
||||
buttonText: {
|
||||
prev: 'vissza',
|
||||
next: 'előre',
|
||||
today: 'ma',
|
||||
year: 'Év',
|
||||
month: 'Hónap',
|
||||
week: 'Hét',
|
||||
day: 'Nap',
|
||||
list: 'Lista',
|
||||
},
|
||||
weekText: 'Hét',
|
||||
allDayText: 'Egész nap',
|
||||
moreLinkText: 'további',
|
||||
noEventsText: 'Nincs megjeleníthető esemény',
|
||||
};
|
||||
|
||||
index_js.globalLocales.push(locale);
|
||||
|
||||
})(FullCalendar);
|
||||
6
static/fullcalendar/packages/core/locales/hu.global.min.js
vendored
Normal file
6
static/fullcalendar/packages/core/locales/hu.global.min.js
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 Adam Shaw
|
||||
*/
|
||||
!function(e){"use strict";FullCalendar.globalLocales.push({code:"hu",week:{dow:1,doy:4},buttonText:{prev:"vissza",next:"előre",today:"ma",year:"Év",month:"Hónap",week:"Hét",day:"Nap",list:"Lista"},weekText:"Hét",allDayText:"Egész nap",moreLinkText:"további",noEventsText:"Nincs megjeleníthető esemény"})}();
|
||||
35
static/fullcalendar/packages/core/locales/hy-am.global.js
Normal file
35
static/fullcalendar/packages/core/locales/hy-am.global.js
Normal file
@@ -0,0 +1,35 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 Adam Shaw
|
||||
*/
|
||||
(function (index_js) {
|
||||
'use strict';
|
||||
|
||||
var locale = {
|
||||
code: 'hy-am',
|
||||
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: 'Օրվա ցուցակ',
|
||||
},
|
||||
weekText: 'Շաբ',
|
||||
allDayText: 'Ամբողջ օր',
|
||||
moreLinkText(n) {
|
||||
return '+ ևս ' + n;
|
||||
},
|
||||
noEventsText: 'Բացակայում է իրադարձությունը ցուցադրելու',
|
||||
};
|
||||
|
||||
index_js.globalLocales.push(locale);
|
||||
|
||||
})(FullCalendar);
|
||||
6
static/fullcalendar/packages/core/locales/hy-am.global.min.js
vendored
Normal file
6
static/fullcalendar/packages/core/locales/hy-am.global.min.js
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 Adam Shaw
|
||||
*/
|
||||
!function(e){"use strict";var t={code:"hy-am",week:{dow:1,doy:4},buttonText:{prev:"Նախորդ",next:"Հաջորդ",today:"Այսօր",year:"Տարի",month:"Ամիս",week:"Շաբաթ",day:"Օր",list:"Օրվա ցուցակ"},weekText:"Շաբ",allDayText:"Ամբողջ օր",moreLinkText:e=>"+ ևս "+e,noEventsText:"Բացակայում է իրադարձությունը ցուցադրելու"};FullCalendar.globalLocales.push(t)}();
|
||||
33
static/fullcalendar/packages/core/locales/id.global.js
Normal file
33
static/fullcalendar/packages/core/locales/id.global.js
Normal file
@@ -0,0 +1,33 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 Adam Shaw
|
||||
*/
|
||||
(function (index_js) {
|
||||
'use strict';
|
||||
|
||||
var locale = {
|
||||
code: 'id',
|
||||
week: {
|
||||
dow: 1,
|
||||
doy: 7, // The week that contains Jan 1st is the first week of the year.
|
||||
},
|
||||
buttonText: {
|
||||
prev: 'mundur',
|
||||
next: 'maju',
|
||||
today: 'hari ini',
|
||||
year: 'Tahun',
|
||||
month: 'Bulan',
|
||||
week: 'Minggu',
|
||||
day: 'Hari',
|
||||
list: 'Agenda',
|
||||
},
|
||||
weekText: 'Mg',
|
||||
allDayText: 'Sehari penuh',
|
||||
moreLinkText: 'lebih',
|
||||
noEventsText: 'Tidak ada acara untuk ditampilkan',
|
||||
};
|
||||
|
||||
index_js.globalLocales.push(locale);
|
||||
|
||||
})(FullCalendar);
|
||||
6
static/fullcalendar/packages/core/locales/id.global.min.js
vendored
Normal file
6
static/fullcalendar/packages/core/locales/id.global.min.js
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 Adam Shaw
|
||||
*/
|
||||
!function(a){"use strict";FullCalendar.globalLocales.push({code:"id",week:{dow:1,doy:7},buttonText:{prev:"mundur",next:"maju",today:"hari ini",year:"Tahun",month:"Bulan",week:"Minggu",day:"Hari",list:"Agenda"},weekText:"Mg",allDayText:"Sehari penuh",moreLinkText:"lebih",noEventsText:"Tidak ada acara untuk ditampilkan"})}();
|
||||
33
static/fullcalendar/packages/core/locales/is.global.js
Normal file
33
static/fullcalendar/packages/core/locales/is.global.js
Normal file
@@ -0,0 +1,33 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 Adam Shaw
|
||||
*/
|
||||
(function (index_js) {
|
||||
'use strict';
|
||||
|
||||
var locale = {
|
||||
code: 'is',
|
||||
week: {
|
||||
dow: 1,
|
||||
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||
},
|
||||
buttonText: {
|
||||
prev: 'Fyrri',
|
||||
next: 'Næsti',
|
||||
today: 'Í dag',
|
||||
year: 'Ár',
|
||||
month: 'Mánuður',
|
||||
week: 'Vika',
|
||||
day: 'Dagur',
|
||||
list: 'Dagskrá',
|
||||
},
|
||||
weekText: 'Vika',
|
||||
allDayText: 'Allan daginn',
|
||||
moreLinkText: 'meira',
|
||||
noEventsText: 'Engir viðburðir til að sýna',
|
||||
};
|
||||
|
||||
index_js.globalLocales.push(locale);
|
||||
|
||||
})(FullCalendar);
|
||||
6
static/fullcalendar/packages/core/locales/is.global.min.js
vendored
Normal file
6
static/fullcalendar/packages/core/locales/is.global.min.js
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 Adam Shaw
|
||||
*/
|
||||
!function(e){"use strict";FullCalendar.globalLocales.push({code:"is",week:{dow:1,doy:4},buttonText:{prev:"Fyrri",next:"Næsti",today:"Í dag",year:"Ár",month:"Mánuður",week:"Vika",day:"Dagur",list:"Dagskrá"},weekText:"Vika",allDayText:"Allan daginn",moreLinkText:"meira",noEventsText:"Engir viðburðir til að sýna"})}();
|
||||
35
static/fullcalendar/packages/core/locales/it.global.js
Normal file
35
static/fullcalendar/packages/core/locales/it.global.js
Normal file
@@ -0,0 +1,35 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 Adam Shaw
|
||||
*/
|
||||
(function (index_js) {
|
||||
'use strict';
|
||||
|
||||
var locale = {
|
||||
code: 'it',
|
||||
week: {
|
||||
dow: 1,
|
||||
doy: 4, // The week that contains Jan 4th is the first week of the year.
|
||||
},
|
||||
buttonText: {
|
||||
prev: 'Prec',
|
||||
next: 'Succ',
|
||||
today: 'Oggi',
|
||||
year: 'Anno',
|
||||
month: 'Mese',
|
||||
week: 'Settimana',
|
||||
day: 'Giorno',
|
||||
list: 'Agenda',
|
||||
},
|
||||
weekText: 'Sm',
|
||||
allDayText: 'Tutto il giorno',
|
||||
moreLinkText(n) {
|
||||
return '+altri ' + n;
|
||||
},
|
||||
noEventsText: 'Non ci sono eventi da visualizzare',
|
||||
};
|
||||
|
||||
index_js.globalLocales.push(locale);
|
||||
|
||||
})(FullCalendar);
|
||||
6
static/fullcalendar/packages/core/locales/it.global.min.js
vendored
Normal file
6
static/fullcalendar/packages/core/locales/it.global.min.js
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 Adam Shaw
|
||||
*/
|
||||
!function(e){"use strict";var t={code:"it",week:{dow:1,doy:4},buttonText:{prev:"Prec",next:"Succ",today:"Oggi",year:"Anno",month:"Mese",week:"Settimana",day:"Giorno",list:"Agenda"},weekText:"Sm",allDayText:"Tutto il giorno",moreLinkText:e=>"+altri "+e,noEventsText:"Non ci sono eventi da visualizzare"};FullCalendar.globalLocales.push(t)}();
|
||||
31
static/fullcalendar/packages/core/locales/ja.global.js
Normal file
31
static/fullcalendar/packages/core/locales/ja.global.js
Normal file
@@ -0,0 +1,31 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 Adam Shaw
|
||||
*/
|
||||
(function (index_js) {
|
||||
'use strict';
|
||||
|
||||
var locale = {
|
||||
code: 'ja',
|
||||
buttonText: {
|
||||
prev: '前',
|
||||
next: '次',
|
||||
today: '今日',
|
||||
year: '年',
|
||||
month: '月',
|
||||
week: '週',
|
||||
day: '日',
|
||||
list: '予定リスト',
|
||||
},
|
||||
weekText: '週',
|
||||
allDayText: '終日',
|
||||
moreLinkText(n) {
|
||||
return '他 ' + n + ' 件';
|
||||
},
|
||||
noEventsText: '表示する予定はありません',
|
||||
};
|
||||
|
||||
index_js.globalLocales.push(locale);
|
||||
|
||||
})(FullCalendar);
|
||||
6
static/fullcalendar/packages/core/locales/ja.global.min.js
vendored
Normal file
6
static/fullcalendar/packages/core/locales/ja.global.min.js
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 Adam Shaw
|
||||
*/
|
||||
!function(e){"use strict";var t={code:"ja",buttonText:{prev:"前",next:"次",today:"今日",year:"年",month:"月",week:"週",day:"日",list:"予定リスト"},weekText:"週",allDayText:"終日",moreLinkText:e=>"他 "+e+" 件",noEventsText:"表示する予定はありません"};FullCalendar.globalLocales.push(t)}();
|
||||
35
static/fullcalendar/packages/core/locales/ka.global.js
Normal file
35
static/fullcalendar/packages/core/locales/ka.global.js
Normal file
@@ -0,0 +1,35 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 Adam Shaw
|
||||
*/
|
||||
(function (index_js) {
|
||||
'use strict';
|
||||
|
||||
var locale = {
|
||||
code: 'ka',
|
||||
week: {
|
||||
dow: 1,
|
||||
doy: 7,
|
||||
},
|
||||
buttonText: {
|
||||
prev: 'წინა',
|
||||
next: 'შემდეგი',
|
||||
today: 'დღეს',
|
||||
year: 'წელიწადი',
|
||||
month: 'თვე',
|
||||
week: 'კვირა',
|
||||
day: 'დღე',
|
||||
list: 'დღის წესრიგი',
|
||||
},
|
||||
weekText: 'კვ',
|
||||
allDayText: 'მთელი დღე',
|
||||
moreLinkText(n) {
|
||||
return '+ კიდევ ' + n;
|
||||
},
|
||||
noEventsText: 'ღონისძიებები არ არის',
|
||||
};
|
||||
|
||||
index_js.globalLocales.push(locale);
|
||||
|
||||
})(FullCalendar);
|
||||
6
static/fullcalendar/packages/core/locales/ka.global.min.js
vendored
Normal file
6
static/fullcalendar/packages/core/locales/ka.global.min.js
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 Adam Shaw
|
||||
*/
|
||||
!function(e){"use strict";var t={code:"ka",week:{dow:1,doy:7},buttonText:{prev:"წინა",next:"შემდეგი",today:"დღეს",year:"წელიწადი",month:"თვე",week:"კვირა",day:"დღე",list:"დღის წესრიგი"},weekText:"კვ",allDayText:"მთელი დღე",moreLinkText:e=>"+ კიდევ "+e,noEventsText:"ღონისძიებები არ არის"};FullCalendar.globalLocales.push(t)}();
|
||||
35
static/fullcalendar/packages/core/locales/kk.global.js
Normal file
35
static/fullcalendar/packages/core/locales/kk.global.js
Normal file
@@ -0,0 +1,35 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 Adam Shaw
|
||||
*/
|
||||
(function (index_js) {
|
||||
'use strict';
|
||||
|
||||
var locale = {
|
||||
code: 'kk',
|
||||
week: {
|
||||
dow: 1,
|
||||
doy: 7, // 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
static/fullcalendar/packages/core/locales/kk.global.min.js
vendored
Normal file
6
static/fullcalendar/packages/core/locales/kk.global.min.js
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
/*!
|
||||
FullCalendar Core v6.1.11
|
||||
Docs & License: https://fullcalendar.io
|
||||
(c) 2023 Adam Shaw
|
||||
*/
|
||||
!function(e){"use strict";var t={code:"kk",week:{dow:1,doy:7},buttonText:{prev:"Алдыңғы",next:"Келесі",today:"Бүгін",year:"Жыл",month:"Ай",week:"Апта",day:"Күн",list:"Күн тәртібі"},weekText:"Не",allDayText:"Күні бойы",moreLinkText:e=>"+ тағы "+e,noEventsText:"Көрсету үшін оқиғалар жоқ"};FullCalendar.globalLocales.push(t)}();
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user