├── composer.json ├── lib ├── forcal │ └── Utils │ │ ├── forcalLink.php │ │ └── forcalTableKey.php ├── watson │ └── de_de.lang └── Definition │ └── DefinitionMergeInterface.php ├── data └── definitions │ ├── categories.yml │ ├── venues.yml │ └── entries.yml ├── assets └── vendor │ └── fullcalendar-6.x │ ├── core │ ├── preact.js │ ├── locales │ │ ├── af.d.ts │ │ ├── ar.d.ts │ │ ├── az.d.ts │ │ ├── bg.d.ts │ │ ├── bn.d.ts │ │ ├── bs.d.ts │ │ ├── ca.d.ts │ │ ├── cs.d.ts │ │ ├── cy.d.ts │ │ ├── da.d.ts │ │ ├── de.d.ts │ │ ├── el.d.ts │ │ ├── eo.d.ts │ │ ├── es.d.ts │ │ ├── et.d.ts │ │ ├── eu.d.ts │ │ ├── fa.d.ts │ │ ├── fi.d.ts │ │ ├── fr.d.ts │ │ ├── gl.d.ts │ │ ├── he.d.ts │ │ ├── hi.d.ts │ │ ├── hr.d.ts │ │ ├── hu.d.ts │ │ ├── id.d.ts │ │ ├── is.d.ts │ │ ├── it.d.ts │ │ ├── ja.d.ts │ │ ├── ka.d.ts │ │ ├── kk.d.ts │ │ ├── km.d.ts │ │ ├── ko.d.ts │ │ ├── ku.d.ts │ │ ├── lb.d.ts │ │ ├── lt.d.ts │ │ ├── lv.d.ts │ │ ├── mk.d.ts │ │ ├── ms.d.ts │ │ ├── nb.d.ts │ │ ├── ne.d.ts │ │ ├── nl.d.ts │ │ ├── nn.d.ts │ │ ├── pl.d.ts │ │ ├── pt.d.ts │ │ ├── ro.d.ts │ │ ├── ru.d.ts │ │ ├── sk.d.ts │ │ ├── sl.d.ts │ │ ├── sm.d.ts │ │ ├── sq.d.ts │ │ ├── sr.d.ts │ │ ├── sv.d.ts │ │ ├── th.d.ts │ │ ├── tr.d.ts │ │ ├── ug.d.ts │ │ ├── uk.d.ts │ │ ├── uz.d.ts │ │ ├── vi.d.ts │ │ ├── ar-dz.d.ts │ │ ├── ar-kw.d.ts │ │ ├── ar-ly.d.ts │ │ ├── ar-ma.d.ts │ │ ├── ar-sa.d.ts │ │ ├── ar-tn.d.ts │ │ ├── de-at.d.ts │ │ ├── en-au.d.ts │ │ ├── en-gb.d.ts │ │ ├── en-nz.d.ts │ │ ├── es-us.d.ts │ │ ├── fr-ca.d.ts │ │ ├── fr-ch.d.ts │ │ ├── hy-am.d.ts │ │ ├── pt-br.d.ts │ │ ├── si-lk.d.ts │ │ ├── ta-in.d.ts │ │ ├── uz-cy.d.ts │ │ ├── zh-cn.d.ts │ │ ├── zh-tw.d.ts │ │ ├── sr-cyrl.d.ts │ │ ├── ug.global.min.js │ │ ├── ko.global.min.js │ │ ├── zh-tw.global.min.js │ │ ├── ja.global.min.js │ │ ├── ug.js │ │ ├── en-au.global.min.js │ │ ├── en-gb.global.min.js │ │ ├── en-nz.global.min.js │ │ ├── zh-cn.global.min.js │ │ ├── he.global.min.js │ │ ├── si-lk.global.min.js │ │ ├── es-us.global.min.js │ │ ├── nl.global.min.js │ │ ├── nn.global.min.js │ │ ├── tr.global.min.js │ │ ├── af.global.min.js │ │ ├── bg.global.min.js │ │ ├── da.global.min.js │ │ ├── hu.global.min.js │ │ ├── sm.global.min.js │ │ ├── ar.global.min.js │ │ ├── bn.global.min.js │ │ ├── cy.global.min.js │ │ ├── eo.global.min.js │ │ ├── ko.js │ │ ├── mk.global.min.js │ │ ├── ne.global.min.js │ │ ├── pt.global.min.js │ │ ├── ar-dz.global.min.js │ │ ├── ar-kw.global.min.js │ │ ├── ar-ly.global.min.js │ │ ├── ar-ma.global.min.js │ │ ├── ar-sa.global.min.js │ │ ├── ar-tn.global.min.js │ │ ├── ca.global.min.js │ │ ├── cs.global.min.js │ │ ├── eu.global.min.js │ │ ├── is.global.min.js │ │ ├── ku.global.min.js │ │ ├── lt.global.min.js │ │ ├── sl.global.min.js │ │ ├── uz.global.min.js │ │ ├── zh-tw.js │ │ ├── fr-ca.global.min.js │ │ ├── id.global.min.js │ │ ├── kk.global.min.js │ │ ├── km.global.min.js │ │ ├── lb.global.min.js │ │ ├── lv.global.min.js │ │ ├── uz-cy.global.min.js │ │ ├── az.global.min.js │ │ ├── fa.global.min.js │ │ ├── fi.global.min.js │ │ ├── ka.global.min.js │ │ ├── pl.global.min.js │ │ ├── sq.global.min.js │ │ ├── sr.global.min.js │ │ ├── vi.global.min.js │ │ ├── et.global.min.js │ │ ├── hi.global.min.js │ │ ├── hr.global.min.js │ │ ├── ru.global.min.js │ │ ├── bs.global.min.js │ │ ├── el.global.min.js │ │ ├── fr-ch.global.min.js │ │ ├── it.global.min.js │ │ ├── ro.global.min.js │ │ ├── sk.global.min.js │ │ ├── sr-cyrl.global.min.js │ │ ├── hy-am.global.min.js │ │ ├── uk.global.min.js │ │ ├── ta-in.global.min.js │ │ ├── fr.global.min.js │ │ ├── ja.js │ │ ├── ms.global.min.js │ │ ├── th.global.min.js │ │ ├── ug.cjs │ │ ├── he.js │ │ ├── sm.js │ │ ├── fr-ca.js │ │ ├── ko.cjs │ │ ├── mk.js │ │ ├── zh-tw.cjs │ │ ├── en-au.js │ │ ├── en-gb.js │ │ ├── en-nz.js │ │ ├── ja.cjs │ │ ├── he.cjs │ │ ├── ka.js │ │ ├── nl.js │ │ ├── si-lk.js │ │ ├── sm.cjs │ │ ├── af.js │ │ ├── es-us.js │ │ ├── nn.js │ │ ├── da.js │ │ ├── fr-ca.cjs │ │ ├── hu.js │ │ ├── tr.js │ │ ├── cy.js │ │ ├── eo.js │ │ ├── nb.global.min.js │ │ ├── ne.js │ │ ├── pt.js │ │ ├── ca.js │ │ ├── eu.js │ │ ├── is.js │ │ ├── lt.js │ │ ├── sl.js │ │ ├── ar.js │ │ ├── bg.js │ │ ├── id.js │ │ ├── km.js │ │ ├── lb.js │ │ ├── mk.cjs │ │ ├── ar-dz.js │ │ ├── ar-kw.js │ │ ├── ar-ly.js │ │ ├── ar-ma.js │ │ ├── ar-sa.js │ │ ├── ar-tn.js │ │ ├── fi.js │ │ ├── pl.js │ │ ├── en-au.cjs │ │ ├── en-gb.cjs │ │ ├── en-nz.cjs │ │ ├── ku.js │ │ ├── uz-cy.js │ │ ├── bn.js │ │ ├── uz.js │ │ ├── el.js │ │ ├── fr-ch.js │ │ ├── cs.js │ │ ├── az.js │ │ ├── kk.js │ │ ├── lv.js │ │ ├── ug.global.js │ │ ├── vi.js │ │ ├── et.js │ │ ├── hi.js │ │ ├── ru.js │ │ ├── sq.js │ │ ├── sr.js │ │ ├── hr.js │ │ ├── ro.js │ │ ├── sr-cyrl.js │ │ ├── bs.js │ │ ├── fa.js │ │ ├── it.js │ │ ├── sk.js │ │ ├── fr.js │ │ ├── hy-am.js │ │ ├── uk.js │ │ ├── zh-cn.js │ │ ├── ta-in.js │ │ ├── ka.cjs │ │ ├── ms.js │ │ ├── th.js │ │ ├── nl.cjs │ │ ├── si-lk.cjs │ │ ├── af.cjs │ │ ├── es-us.cjs │ │ ├── nn.cjs │ │ ├── tr.cjs │ │ ├── da.cjs │ │ ├── hu.cjs │ │ ├── cy.cjs │ │ ├── eo.cjs │ │ ├── ne.cjs │ │ ├── pt.cjs │ │ ├── ca.cjs │ │ ├── eu.cjs │ │ ├── is.cjs │ │ ├── ko.global.js │ │ ├── lt.cjs │ │ ├── sl.cjs │ │ ├── ar.cjs │ │ ├── bg.cjs │ │ ├── id.cjs │ │ ├── km.cjs │ │ ├── lb.cjs │ │ ├── zh-tw.global.js │ │ ├── ar-dz.cjs │ │ ├── ar-kw.cjs │ │ ├── ar-ly.cjs │ │ ├── ar-ma.cjs │ │ ├── ar-sa.cjs │ │ ├── ar-tn.cjs │ │ ├── fi.cjs │ │ ├── pl.cjs │ │ ├── ku.cjs │ │ ├── uz-cy.cjs │ │ ├── bn.cjs │ │ ├── el.cjs │ │ ├── fr-ch.cjs │ │ ├── uz.cjs │ │ ├── cs.cjs │ │ ├── lv.cjs │ │ ├── az.cjs │ │ ├── kk.cjs │ │ ├── vi.cjs │ │ ├── et.cjs │ │ ├── hi.cjs │ │ ├── ru.cjs │ │ ├── sq.cjs │ │ ├── sr.cjs │ │ ├── bs.cjs │ │ ├── fa.cjs │ │ ├── hr.cjs │ │ ├── ro.cjs │ │ ├── sr-cyrl.cjs │ │ ├── es.global.min.js │ │ ├── gl.global.min.js │ │ ├── it.cjs │ │ ├── sk.cjs │ │ ├── sv.global.min.js │ │ ├── fr.cjs │ │ ├── hy-am.cjs │ │ ├── ja.global.js │ │ ├── uk.cjs │ │ ├── zh-cn.cjs │ │ ├── ms.cjs │ │ ├── ta-in.cjs │ │ ├── he.global.js │ │ ├── sm.global.js │ │ ├── th.cjs │ │ ├── fr-ca.global.js │ │ ├── pt-br.global.min.js │ │ ├── en-au.global.js │ │ ├── en-gb.global.js │ │ ├── en-nz.global.js │ │ ├── mk.global.js │ │ ├── de.global.min.js │ │ ├── de-at.global.min.js │ │ ├── nl.global.js │ │ ├── si-lk.global.js │ │ └── af.global.js │ ├── locales-all.d.ts │ ├── preact.d.ts │ └── preact.cjs │ ├── list │ ├── internal.d.ts │ └── README.md │ ├── daygrid │ ├── index.d.ts │ └── README.md │ └── timegrid │ ├── index.d.ts │ └── README.md ├── vendor ├── composer │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ └── autoload_classmap.php ├── spatie │ └── calendar-links │ │ ├── src │ │ ├── Generator.php │ │ └── Generators │ │ │ ├── WebOffice.php │ │ │ └── WebOutlook.php │ │ └── psalm.xml └── autoload.php ├── pages └── index.php ├── uninstall.php ├── .gitignore └── package.json /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "require": { 3 | "spatie/calendar-links":"^1.11.1" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /lib/forcal/Utils/forcalLink.php: -------------------------------------------------------------------------------- 1 | array($vendorDir . '/spatie/calendar-links/src'), 10 | ); 11 | -------------------------------------------------------------------------------- /vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- 1 | $vendorDir . '/composer/InstalledVersions.php', 10 | ); 11 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/preact.d.ts: -------------------------------------------------------------------------------- 1 | import * as preact from 'preact'; 2 | export * from 'preact'; 3 | export { createPortal } from 'preact/compat'; 4 | 5 | declare function flushSync(runBeforeFlush: any): void; 6 | declare function createContext(defaultValue: T): preact.Context; 7 | 8 | export { createContext, flushSync }; 9 | -------------------------------------------------------------------------------- /vendor/spatie/calendar-links/src/Generator.php: -------------------------------------------------------------------------------- 1 | drop(); 13 | } 14 | ?> 15 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/ko.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !function(e){"use strict";FullCalendar.globalLocales.push({code:"ko",buttonText:{prev:"이전달",next:"다음달",today:"오늘",year:"년도",month:"월",week:"주",day:"일",list:"일정목록"},weekText:"주",allDayText:"종일",moreLinkText:"개",noEventsText:"일정이 없습니다"})}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/zh-tw.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !function(e){"use strict";FullCalendar.globalLocales.push({code:"zh-tw",buttonText:{prev:"上個",next:"下個",today:"今天",year:"年",month:"月",week:"週",day:"天",list:"活動列表"},weekText:"週",allDayText:"整天",moreLinkText:"顯示更多",noEventsText:"沒有任何活動"})}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/ja.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !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)}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/ug.js: -------------------------------------------------------------------------------- 1 | var l72 = { 2 | code: 'ug', 3 | buttonText: { 4 | prev: 'ئالدىنقى', 5 | next: 'كېيىنكى', 6 | today: 'بۈگۈن', 7 | year: 'يىل', 8 | month: 'ئاي', 9 | week: 'ھەپتە', 10 | day: 'كۈن', 11 | list: 'كۈنتەرتىپ', 12 | }, 13 | allDayText: 'پۈتۈن كۈن', 14 | }; 15 | 16 | export { l72 as default }; 17 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/en-au.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !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)}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/en-gb.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !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)}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/en-nz.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !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)}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/zh-cn.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !function(e){"use strict";var t={code:"zh-cn",week:{dow:1,doy:4},buttonText:{prev:"上月",next:"下月",today:"今天",year:"年",month:"月",week:"周",day:"日",list:"日程"},weekText:"周",allDayText:"全天",moreLinkText:e=>"另外 "+e+" 个",noEventsText:"没有事件显示"};FullCalendar.globalLocales.push(t)}(); -------------------------------------------------------------------------------- /lib/Definition/DefinitionMergeInterface.php: -------------------------------------------------------------------------------- 1 | "+още "+e,noEventsText:"Няма събития за показване"};FullCalendar.globalLocales.push(t)}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/da.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !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"})}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/hu.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !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"})}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/sm.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !function(a){"use strict";FullCalendar.globalLocales.push({code:"sm",buttonText:{prev:"Talu ai",next:"Mulimuli atu",today:"Aso nei",year:"Tausaga",month:"Masina",week:"Vaiaso",day:"Aso",list:"Faasologa"},weekText:"Vaiaso",allDayText:"Aso atoa",moreLinkText:"sili atu",noEventsText:"Leai ni mea na tutupu"})}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/ar.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !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:"أي أحداث لعرض"})}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/bn.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !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)}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/cy.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !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"})}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/eo.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !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"})}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/ko.js: -------------------------------------------------------------------------------- 1 | var l45 = { 2 | code: 'ko', 3 | buttonText: { 4 | prev: '이전달', 5 | next: '다음달', 6 | today: '오늘', 7 | year: '년도', 8 | month: '월', 9 | week: '주', 10 | day: '일', 11 | list: '일정목록', 12 | }, 13 | weekText: '주', 14 | allDayText: '종일', 15 | moreLinkText: '개', 16 | noEventsText: '일정이 없습니다', 17 | }; 18 | 19 | export { l45 as default }; 20 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/mk.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !function(e){"use strict";var t={code:"mk",buttonText:{prev:"претходно",next:"следно",today:"Денес",year:"година",month:"Месец",week:"Недела",day:"Ден",list:"График"},weekText:"Сед",allDayText:"Цел ден",moreLinkText:e=>"+повеќе "+e,noEventsText:"Нема настани за прикажување"};FullCalendar.globalLocales.push(t)}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/ne.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !function(e){"use strict";FullCalendar.globalLocales.push({code:"ne",week:{dow:7,doy:1},buttonText:{prev:"अघिल्लो",next:"अर्को",today:"आज",year:"वर्ष",month:"महिना",week:"हप्ता",day:"दिन",list:"सूची"},weekText:"हप्ता",allDayText:"दिनभरि",moreLinkText:"थप लिंक",noEventsText:"देखाउनको लागि कुनै घटनाहरू छैनन्"})}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/pt.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !function(e){"use strict";FullCalendar.globalLocales.push({code:"pt",week:{dow:1,doy:4},buttonText:{prev:"Anterior",next:"Seguinte",today:"Hoje",year:"Ano",month:"Mês",week:"Semana",day:"Dia",list:"Agenda"},weekText:"Sem",allDayText:"Todo o dia",moreLinkText:"mais",noEventsText:"Não há eventos para mostrar"})}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/ar-dz.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !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:"أي أحداث لعرض"})}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/ar-kw.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !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:"أي أحداث لعرض"})}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/ar-ly.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !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:"أي أحداث لعرض"})}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/ar-ma.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !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:"أي أحداث لعرض"})}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/ar-sa.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !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:"أي أحداث لعرض"})}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/ar-tn.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !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:"أي أحداث لعرض"})}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/ca.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !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"})}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/cs.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !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)}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/eu.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !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"})}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/is.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !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"})}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/ku.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !function(e){"use strict";FullCalendar.globalLocales.push({code:"ku",week:{dow:6,doy:12},direction:"rtl",buttonText:{prev:"پێشتر",next:"دواتر",today:"ئەمڕو",year:"ساڵ",month:"مانگ",week:"هەفتە",day:"ڕۆژ",list:"بەرنامە"},weekText:"هەفتە",allDayText:"هەموو ڕۆژەکە",moreLinkText:"زیاتر",noEventsText:"هیچ ڕووداوێك نیە"})}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/lt.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !function(e){"use strict";FullCalendar.globalLocales.push({code:"lt",week:{dow:1,doy:4},buttonText:{prev:"Atgal",next:"Pirmyn",today:"Šiandien",year:"Metai",month:"Mėnuo",week:"Savaitė",day:"Diena",list:"Darbotvarkė"},weekText:"SAV",allDayText:"Visą dieną",moreLinkText:"daugiau",noEventsText:"Nėra įvykių rodyti"})}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/sl.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !function(e){"use strict";FullCalendar.globalLocales.push({code:"sl",week:{dow:1,doy:7},buttonText:{prev:"Prejšnji",next:"Naslednji",today:"Trenutni",year:"Leto",month:"Mesec",week:"Teden",day:"Dan",list:"Dnevni red"},weekText:"Teden",allDayText:"Ves dan",moreLinkText:"več",noEventsText:"Ni dogodkov za prikaz"})}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/uz.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !function(e){"use strict";var a={code:"uz",week:{dow:1,doy:4},buttonText:{prev:"Oldingi",next:"Keyingi",today:"Bugun",year:"Yil",month:"Oy",week:"Xafta",day:"Kun",list:"Kun tartibi"},allDayText:"Kun bo'yi",moreLinkText:e=>"+ yana "+e,noEventsText:"Ko'rsatish uchun voqealar yo'q"};FullCalendar.globalLocales.push(a)}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/zh-tw.js: -------------------------------------------------------------------------------- 1 | var l78 = { 2 | code: 'zh-tw', 3 | buttonText: { 4 | prev: '上個', 5 | next: '下個', 6 | today: '今天', 7 | year: '年', 8 | month: '月', 9 | week: '週', 10 | day: '天', 11 | list: '活動列表', 12 | }, 13 | weekText: '週', 14 | allDayText: '整天', 15 | moreLinkText: '顯示更多', 16 | noEventsText: '沒有任何活動', 17 | }; 18 | 19 | export { l78 as default }; 20 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/fr-ca.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !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"})}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/id.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !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"})}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/kk.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !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)}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/km.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !function(e){"use strict";FullCalendar.globalLocales.push({code:"km",week:{dow:1,doy:4},buttonText:{prev:"មុន",next:"បន្ទាប់",today:"ថ្ងៃនេះ",year:"ឆ្នាំ",month:"ខែ",week:"សប្តាហ៍",day:"ថ្ងៃ",list:"បញ្ជី"},weekText:"សប្តាហ៍",allDayText:"ពេញមួយថ្ងៃ",moreLinkText:"ច្រើនទៀត",noEventsText:"គ្មានព្រឹត្តិការណ៍ត្រូវបង្ហាញ"})}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/lb.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !function(e){"use strict";FullCalendar.globalLocales.push({code:"lb",week:{dow:1,doy:4},buttonText:{prev:"Zréck",next:"Weider",today:"Haut",year:"Joer",month:"Mount",week:"Woch",day:"Dag",list:"Terminiwwersiicht"},weekText:"W",allDayText:"Ganzen Dag",moreLinkText:"méi",noEventsText:"Nee Evenementer ze affichéieren"})}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/lv.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !function(e){"use strict";var t={code:"lv",week:{dow:1,doy:4},buttonText:{prev:"Iepr.",next:"Nāk.",today:"Šodien",year:"Gads",month:"Mēnesis",week:"Nedēļa",day:"Diena",list:"Dienas kārtība"},weekText:"Ned.",allDayText:"Visu dienu",moreLinkText:e=>"+vēl "+e,noEventsText:"Nav notikumu"};FullCalendar.globalLocales.push(t)}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/uz-cy.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !function(e){"use strict";var t={code:"uz-cy",week:{dow:1,doy:4},buttonText:{prev:"Олин",next:"Кейин",today:"Бугун",month:"Ой",week:"Ҳафта",day:"Кун",list:"Кун тартиби"},weekText:"Ҳафта",allDayText:"Кун бўйича",moreLinkText:e=>"+ яна "+e,noEventsText:"Кўрсатиш учун воқеалар йўқ"};FullCalendar.globalLocales.push(t)}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/az.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !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)}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/fa.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !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)}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/fi.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !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"})}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/ka.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !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)}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/pl.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !function(e){"use strict";FullCalendar.globalLocales.push({code:"pl",week:{dow:1,doy:4},buttonText:{prev:"Poprzedni",next:"Następny",today:"Dziś",year:"Rok",month:"Miesiąc",week:"Tydzień",day:"Dzień",list:"Plan dnia"},weekText:"Tydz",allDayText:"Cały dzień",moreLinkText:"więcej",noEventsText:"Brak wydarzeń do wyświetlenia"})}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/sq.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !function(e){"use strict";var t={code:"sq",week:{dow:1,doy:4},buttonText:{prev:"mbrapa",next:"Përpara",today:"Sot",year:"Viti",month:"Muaj",week:"Javë",day:"Ditë",list:"Listë"},weekText:"Ja",allDayText:"Gjithë ditën",moreLinkText:e=>"+më tepër "+e,noEventsText:"Nuk ka evente për të shfaqur"};FullCalendar.globalLocales.push(t)}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/sr.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !function(a){"use strict";var e={code:"sr",week:{dow:1,doy:7},buttonText:{prev:"Prethodna",next:"Sledeći",today:"Danas",year:"Godina",month:"Mеsеc",week:"Nеdеlja",day:"Dan",list:"Planеr"},weekText:"Sed",allDayText:"Cеo dan",moreLinkText:a=>"+ još "+a,noEventsText:"Nеma događaja za prikaz"};FullCalendar.globalLocales.push(e)}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/vi.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !function(e){"use strict";var t={code:"vi",week:{dow:1,doy:4},buttonText:{prev:"Trước",next:"Tiếp",today:"Hôm nay",year:"Năm",month:"Tháng",week:"Tuần",day:"Ngày",list:"Lịch biểu"},weekText:"Tu",allDayText:"Cả ngày",moreLinkText:e=>"+ thêm "+e,noEventsText:"Không có sự kiện để hiển thị"};FullCalendar.globalLocales.push(t)}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/et.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !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)}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/hi.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !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)}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/hr.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !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)}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/ru.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !function(e){"use strict";var t={code:"ru",week:{dow:1,doy:4},buttonText:{prev:"Пред",next:"След",today:"Сегодня",year:"Год",month:"Месяц",week:"Неделя",day:"День",list:"Повестка дня"},weekText:"Нед",allDayText:"Весь день",moreLinkText:e=>"+ ещё "+e,noEventsText:"Нет событий для отображения"};FullCalendar.globalLocales.push(t)}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/bs.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !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)}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/el.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !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:"Δεν υπάρχουν γεγονότα προς εμφάνιση"})}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/fr-ch.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !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"})}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/it.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !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)}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/ro.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !function(e){"use strict";var t={code:"ro",week:{dow:1,doy:7},buttonText:{prev:"precedentă",next:"următoare",today:"Azi",year:"An",month:"Lună",week:"Săptămână",day:"Zi",list:"Agendă"},weekText:"Săpt",allDayText:"Toată ziua",moreLinkText:e=>"+alte "+e,noEventsText:"Nu există evenimente de afișat"};FullCalendar.globalLocales.push(t)}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/sk.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !function(e){"use strict";var a={code:"sk",week:{dow:1,doy:4},buttonText:{prev:"Predchádzajúci",next:"Nasledujúci",today:"Dnes",year:"Rok",month:"Mesiac",week:"Týždeň",day:"Deň",list:"Rozvrh"},weekText:"Ty",allDayText:"Celý deň",moreLinkText:e=>"+ďalšie: "+e,noEventsText:"Žiadne akcie na zobrazenie"};FullCalendar.globalLocales.push(a)}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/sr-cyrl.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !function(e){"use strict";var t={code:"sr-cyrl",week:{dow:1,doy:7},buttonText:{prev:"Претходна",next:"следећи",today:"Данас",year:"Година",month:"Месец",week:"Недеља",day:"Дан",list:"Планер"},weekText:"Сед",allDayText:"Цео дан",moreLinkText:e=>"+ још "+e,noEventsText:"Нема догађаја за приказ"};FullCalendar.globalLocales.push(t)}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/hy-am.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !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)}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/uk.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !function(e){"use strict";var t={code:"uk",week:{dow:1,doy:7},buttonText:{prev:"Попередній",next:"далі",today:"Сьогодні",year:"рік",month:"Місяць",week:"Тиждень",day:"День",list:"Порядок денний"},weekText:"Тиж",allDayText:"Увесь день",moreLinkText:e=>"+ще "+e+"...",noEventsText:"Немає подій для відображення"};FullCalendar.globalLocales.push(t)}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/ta-in.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !function(e){"use strict";var t={code:"ta-in",week:{dow:1,doy:4},buttonText:{prev:"முந்தைய",next:"அடுத்தது",today:"இன்று",year:"ஆண்டு",month:"மாதம்",week:"வாரம்",day:"நாள்",list:"தினசரி அட்டவணை"},weekText:"வாரம்",allDayText:"நாள் முழுவதும்",moreLinkText:e=>"+ மேலும் "+e,noEventsText:"காண்பிக்க நிகழ்வுகள் இல்லை"};FullCalendar.globalLocales.push(t)}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/fr.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !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"})}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/ja.js: -------------------------------------------------------------------------------- 1 | var l41 = { 2 | code: 'ja', 3 | buttonText: { 4 | prev: '前', 5 | next: '次', 6 | today: '今日', 7 | year: '年', 8 | month: '月', 9 | week: '週', 10 | day: '日', 11 | list: '予定リスト', 12 | }, 13 | weekText: '週', 14 | allDayText: '終日', 15 | moreLinkText(n) { 16 | return '他 ' + n + ' 件'; 17 | }, 18 | noEventsText: '表示する予定はありません', 19 | }; 20 | 21 | export { l41 as default }; 22 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/ms.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !function(a){"use strict";var e={code:"ms",week:{dow:1,doy:7},buttonText:{prev:"Sebelum",next:"Selepas",today:"hari ini",year:"Tahun",month:"Bulan",week:"Minggu",day:"Hari",list:"Agenda"},weekText:"Mg",allDayText:"Sepanjang hari",moreLinkText:a=>"masih ada "+a+" acara",noEventsText:"Tiada peristiwa untuk dipaparkan"};FullCalendar.globalLocales.push(e)}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/th.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !function(e){"use strict";FullCalendar.globalLocales.push({code:"th",week:{dow:1,doy:4},buttonText:{prev:"ก่อนหน้า",next:"ถัดไป",prevYear:"ปีก่อนหน้า",nextYear:"ปีถัดไป",year:"ปี",today:"วันนี้",month:"เดือน",week:"สัปดาห์",day:"วัน",list:"กำหนดการ"},weekText:"สัปดาห์",allDayText:"ตลอดวัน",moreLinkText:"เพิ่มเติม",noEventsText:"ไม่มีกิจกรรมที่จะแสดง"})}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/ug.cjs: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | Object.defineProperty(exports, '__esModule', { value: true }); 4 | 5 | var l72 = { 6 | code: 'ug', 7 | buttonText: { 8 | prev: 'ئالدىنقى', 9 | next: 'كېيىنكى', 10 | today: 'بۈگۈن', 11 | year: 'يىل', 12 | month: 'ئاي', 13 | week: 'ھەپتە', 14 | day: 'كۈن', 15 | list: 'كۈنتەرتىپ', 16 | }, 17 | allDayText: 'پۈتۈن كۈن', 18 | }; 19 | 20 | exports["default"] = l72; 21 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/he.js: -------------------------------------------------------------------------------- 1 | var l33 = { 2 | code: 'he', 3 | direction: 'rtl', 4 | buttonText: { 5 | prev: 'הקודם', 6 | next: 'הבא', 7 | today: 'היום', 8 | year: 'שנה', 9 | month: 'חודש', 10 | week: 'שבוע', 11 | day: 'יום', 12 | list: 'סדר יום', 13 | }, 14 | allDayText: 'כל היום', 15 | moreLinkText: 'נוספים', 16 | noEventsText: 'אין אירועים להצגה', 17 | weekText: 'שבוע', 18 | }; 19 | 20 | export { l33 as default }; 21 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/sm.js: -------------------------------------------------------------------------------- 1 | var l64 = { 2 | code: 'sm', 3 | buttonText: { 4 | prev: 'Talu ai', 5 | next: 'Mulimuli atu', 6 | today: 'Aso nei', 7 | year: 'Tausaga', 8 | month: 'Masina', 9 | week: 'Vaiaso', 10 | day: 'Aso', 11 | list: 'Faasologa', 12 | }, 13 | weekText: 'Vaiaso', 14 | allDayText: 'Aso atoa', 15 | moreLinkText: 'sili atu', 16 | noEventsText: 'Leai ni mea na tutupu', 17 | }; 18 | 19 | export { l64 as default }; 20 | -------------------------------------------------------------------------------- /data/definitions/venues.yml: -------------------------------------------------------------------------------- 1 | fields: 2 | - name: 'city' 3 | type: 'text' 4 | label_de: 'Stadt' 5 | label_en: 'City' 6 | - name: 'zip' 7 | type: 'text' 8 | label_de: 'Postleitzahl' 9 | label_en: 'Zip-Code' 10 | - name: 'street' 11 | type: 'text' 12 | label_de: 'Straße' 13 | label_en: 'Street' 14 | - name: 'housenumber' 15 | type: 'text' 16 | label_de: 'Hausnummer' 17 | label_en: 'Housenumber' 18 | - name: 'country' 19 | type: 'text' 20 | label_de: 'Land' 21 | label_en: 'Country' 22 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/fr-ca.js: -------------------------------------------------------------------------------- 1 | var l29 = { 2 | code: 'fr', 3 | buttonText: { 4 | prev: 'Précédent', 5 | next: 'Suivant', 6 | today: 'Aujourd\'hui', 7 | year: 'Année', 8 | month: 'Mois', 9 | week: 'Semaine', 10 | day: 'Jour', 11 | list: 'Mon planning', 12 | }, 13 | weekText: 'Sem.', 14 | allDayText: 'Toute la journée', 15 | moreLinkText: 'en plus', 16 | noEventsText: 'Aucun évènement à afficher', 17 | }; 18 | 19 | export { l29 as default }; 20 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/ko.cjs: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | Object.defineProperty(exports, '__esModule', { value: true }); 4 | 5 | var l45 = { 6 | code: 'ko', 7 | buttonText: { 8 | prev: '이전달', 9 | next: '다음달', 10 | today: '오늘', 11 | year: '년도', 12 | month: '월', 13 | week: '주', 14 | day: '일', 15 | list: '일정목록', 16 | }, 17 | weekText: '주', 18 | allDayText: '종일', 19 | moreLinkText: '개', 20 | noEventsText: '일정이 없습니다', 21 | }; 22 | 23 | exports["default"] = l45; 24 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/mk.js: -------------------------------------------------------------------------------- 1 | var l50 = { 2 | code: 'mk', 3 | buttonText: { 4 | prev: 'претходно', 5 | next: 'следно', 6 | today: 'Денес', 7 | year: 'година', 8 | month: 'Месец', 9 | week: 'Недела', 10 | day: 'Ден', 11 | list: 'График', 12 | }, 13 | weekText: 'Сед', 14 | allDayText: 'Цел ден', 15 | moreLinkText(n) { 16 | return '+повеќе ' + n; 17 | }, 18 | noEventsText: 'Нема настани за прикажување', 19 | }; 20 | 21 | export { l50 as default }; 22 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/zh-tw.cjs: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | Object.defineProperty(exports, '__esModule', { value: true }); 4 | 5 | var l78 = { 6 | code: 'zh-tw', 7 | buttonText: { 8 | prev: '上個', 9 | next: '下個', 10 | today: '今天', 11 | year: '年', 12 | month: '月', 13 | week: '週', 14 | day: '天', 15 | list: '活動列表', 16 | }, 17 | weekText: '週', 18 | allDayText: '整天', 19 | moreLinkText: '顯示更多', 20 | noEventsText: '沒有任何活動', 21 | }; 22 | 23 | exports["default"] = l78; 24 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/en-au.js: -------------------------------------------------------------------------------- 1 | var l19 = { 2 | code: 'en-au', 3 | week: { 4 | dow: 1, 5 | doy: 4, // The week that contains Jan 4th is the first week of the year. 6 | }, 7 | buttonHints: { 8 | prev: 'Previous $0', 9 | next: 'Next $0', 10 | today: 'This $0', 11 | }, 12 | viewHint: '$0 view', 13 | navLinkHint: 'Go to $0', 14 | moreLinkHint(eventCnt) { 15 | return `Show ${eventCnt} more event${eventCnt === 1 ? '' : 's'}`; 16 | }, 17 | }; 18 | 19 | export { l19 as default }; 20 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/en-gb.js: -------------------------------------------------------------------------------- 1 | var l20 = { 2 | code: 'en-gb', 3 | week: { 4 | dow: 1, 5 | doy: 4, // The week that contains Jan 4th is the first week of the year. 6 | }, 7 | buttonHints: { 8 | prev: 'Previous $0', 9 | next: 'Next $0', 10 | today: 'This $0', 11 | }, 12 | viewHint: '$0 view', 13 | navLinkHint: 'Go to $0', 14 | moreLinkHint(eventCnt) { 15 | return `Show ${eventCnt} more event${eventCnt === 1 ? '' : 's'}`; 16 | }, 17 | }; 18 | 19 | export { l20 as default }; 20 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/en-nz.js: -------------------------------------------------------------------------------- 1 | var l21 = { 2 | code: 'en-nz', 3 | week: { 4 | dow: 1, 5 | doy: 4, // The week that contains Jan 4th is the first week of the year. 6 | }, 7 | buttonHints: { 8 | prev: 'Previous $0', 9 | next: 'Next $0', 10 | today: 'This $0', 11 | }, 12 | viewHint: '$0 view', 13 | navLinkHint: 'Go to $0', 14 | moreLinkHint(eventCnt) { 15 | return `Show ${eventCnt} more event${eventCnt === 1 ? '' : 's'}`; 16 | }, 17 | }; 18 | 19 | export { l21 as default }; 20 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/timegrid/index.d.ts: -------------------------------------------------------------------------------- 1 | import { PluginDef } from '@fullcalendar/core'; 2 | import '@fullcalendar/daygrid'; 3 | 4 | declare const OPTION_REFINERS: { 5 | allDaySlot: BooleanConstructor; 6 | }; 7 | 8 | type ExtraOptionRefiners = typeof OPTION_REFINERS; 9 | declare module '@fullcalendar/core/internal' { 10 | interface BaseOptionRefiners extends ExtraOptionRefiners { 11 | } 12 | } 13 | //# sourceMappingURL=ambient.d.ts.map 14 | 15 | declare const _default: PluginDef; 16 | //# sourceMappingURL=index.d.ts.map 17 | 18 | export { _default as default }; 19 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/ja.cjs: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | Object.defineProperty(exports, '__esModule', { value: true }); 4 | 5 | var l41 = { 6 | code: 'ja', 7 | buttonText: { 8 | prev: '前', 9 | next: '次', 10 | today: '今日', 11 | year: '年', 12 | month: '月', 13 | week: '週', 14 | day: '日', 15 | list: '予定リスト', 16 | }, 17 | weekText: '週', 18 | allDayText: '終日', 19 | moreLinkText(n) { 20 | return '他 ' + n + ' 件'; 21 | }, 22 | noEventsText: '表示する予定はありません', 23 | }; 24 | 25 | exports["default"] = l41; 26 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/he.cjs: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | Object.defineProperty(exports, '__esModule', { value: true }); 4 | 5 | var l33 = { 6 | code: 'he', 7 | direction: 'rtl', 8 | buttonText: { 9 | prev: 'הקודם', 10 | next: 'הבא', 11 | today: 'היום', 12 | year: 'שנה', 13 | month: 'חודש', 14 | week: 'שבוע', 15 | day: 'יום', 16 | list: 'סדר יום', 17 | }, 18 | allDayText: 'כל היום', 19 | moreLinkText: 'נוספים', 20 | noEventsText: 'אין אירועים להצגה', 21 | weekText: 'שבוע', 22 | }; 23 | 24 | exports["default"] = l33; 25 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/ka.js: -------------------------------------------------------------------------------- 1 | var l42 = { 2 | code: 'ka', 3 | week: { 4 | dow: 1, 5 | doy: 7, 6 | }, 7 | buttonText: { 8 | prev: 'წინა', 9 | next: 'შემდეგი', 10 | today: 'დღეს', 11 | year: 'წელიწადი', 12 | month: 'თვე', 13 | week: 'კვირა', 14 | day: 'დღე', 15 | list: 'დღის წესრიგი', 16 | }, 17 | weekText: 'კვ', 18 | allDayText: 'მთელი დღე', 19 | moreLinkText(n) { 20 | return '+ კიდევ ' + n; 21 | }, 22 | noEventsText: 'ღონისძიებები არ არის', 23 | }; 24 | 25 | export { l42 as default }; 26 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/nl.js: -------------------------------------------------------------------------------- 1 | var l54 = { 2 | code: 'nl', 3 | week: { 4 | dow: 1, 5 | doy: 4, // The week that contains Jan 4th is the first week of the year. 6 | }, 7 | buttonText: { 8 | prev: 'Vorige', 9 | next: 'Volgende', 10 | today: 'Vandaag', 11 | year: 'Jaar', 12 | month: 'Maand', 13 | week: 'Week', 14 | day: 'Dag', 15 | list: 'Lijst', 16 | }, 17 | allDayText: 'Hele dag', 18 | moreLinkText: 'extra', 19 | noEventsText: 'Geen evenementen om te laten zien', 20 | }; 21 | 22 | export { l54 as default }; 23 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/si-lk.js: -------------------------------------------------------------------------------- 1 | var l61 = { 2 | code: 'si-lk', 3 | week: { 4 | dow: 1, 5 | doy: 4, // The week that contains Jan 4th is the first week of the year. 6 | }, 7 | buttonText: { 8 | prev: 'පෙර', 9 | next: 'පසු', 10 | today: 'අද', 11 | year: 'අවුරුදු', 12 | month: 'මාසය', 13 | week: 'සතිය', 14 | day: 'දවස', 15 | list: 'ලැයිස්තුව', 16 | }, 17 | weekText: 'සති', 18 | allDayText: 'සියලු', 19 | moreLinkText: 'තවත්', 20 | noEventsText: 'මුකුත් නැත', 21 | }; 22 | 23 | export { l61 as default }; 24 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/sm.cjs: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | Object.defineProperty(exports, '__esModule', { value: true }); 4 | 5 | var l64 = { 6 | code: 'sm', 7 | buttonText: { 8 | prev: 'Talu ai', 9 | next: 'Mulimuli atu', 10 | today: 'Aso nei', 11 | year: 'Tausaga', 12 | month: 'Masina', 13 | week: 'Vaiaso', 14 | day: 'Aso', 15 | list: 'Faasologa', 16 | }, 17 | weekText: 'Vaiaso', 18 | allDayText: 'Aso atoa', 19 | moreLinkText: 'sili atu', 20 | noEventsText: 'Leai ni mea na tutupu', 21 | }; 22 | 23 | exports["default"] = l64; 24 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Node.js 2 | node_modules/ 3 | npm-debug.log 4 | yarn-debug.log 5 | yarn-error.log 6 | 7 | # Development files 8 | .sass-cache/ 9 | *.map 10 | *.log 11 | 12 | # IDE and editor folders 13 | .idea/ 14 | .vscode/ 15 | *.sublime-project 16 | *.sublime-workspace 17 | 18 | # OS generated files 19 | .DS_Store 20 | .DS_Store? 21 | ._* 22 | .Spotlight-V100 23 | .Trashes 24 | ehthumbs.db 25 | Thumbs.db 26 | 27 | # Composer 28 | /vendor/* 29 | !/vendor/.htaccess 30 | !/vendor/autoload.php 31 | composer.lock 32 | 33 | # Optional: exclude source scss if you don't want to commit it 34 | # assets/vendor/palettecolorpicker/*.scss 35 | RELEASE.md 36 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/af.js: -------------------------------------------------------------------------------- 1 | var l0 = { 2 | code: 'af', 3 | week: { 4 | dow: 1, 5 | doy: 4, // Die week wat die 4de Januarie bevat is die eerste week van die jaar. 6 | }, 7 | buttonText: { 8 | prev: 'Vorige', 9 | next: 'Volgende', 10 | today: 'Vandag', 11 | year: 'Jaar', 12 | month: 'Maand', 13 | week: 'Week', 14 | day: 'Dag', 15 | list: 'Agenda', 16 | }, 17 | allDayText: 'Heeldag', 18 | moreLinkText: 'Addisionele', 19 | noEventsText: 'Daar is geen gebeurtenisse nie', 20 | }; 21 | 22 | export { l0 as default }; 23 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/es-us.js: -------------------------------------------------------------------------------- 1 | var l23 = { 2 | code: 'es', 3 | week: { 4 | dow: 0, 5 | doy: 6, // The week that contains Jan 1st is the first week of the year. 6 | }, 7 | buttonText: { 8 | prev: 'Ant', 9 | next: 'Sig', 10 | today: 'Hoy', 11 | year: 'Año', 12 | month: 'Mes', 13 | week: 'Semana', 14 | day: 'Día', 15 | list: 'Agenda', 16 | }, 17 | weekText: 'Sm', 18 | allDayText: 'Todo el día', 19 | moreLinkText: 'más', 20 | noEventsText: 'No hay eventos para mostrar', 21 | }; 22 | 23 | export { l23 as default }; 24 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/nn.js: -------------------------------------------------------------------------------- 1 | var l55 = { 2 | code: 'nn', 3 | week: { 4 | dow: 1, 5 | doy: 4, // The week that contains Jan 4th is the first week of the year. 6 | }, 7 | buttonText: { 8 | prev: 'Førre', 9 | next: 'Neste', 10 | today: 'I dag', 11 | year: 'År', 12 | month: 'Månad', 13 | week: 'Veke', 14 | day: 'Dag', 15 | list: 'Agenda', 16 | }, 17 | weekText: 'Veke', 18 | allDayText: 'Heile dagen', 19 | moreLinkText: 'til', 20 | noEventsText: 'Ingen hendelser å vise', 21 | }; 22 | 23 | export { l55 as default }; 24 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "forcal", 3 | "version": "1.0.0", 4 | "description": "ForCal - Calendar AddOn for REDAXO CMS", 5 | "main": "index.js", 6 | "scripts": { 7 | "build": "npm run clean && npm run copy-fullcalendar && npm run scss-compile", 8 | "clean": "rm -rf assets/vendor/fullcalendar-6.x", 9 | "copy-fullcalendar": "mkdir -p assets/vendor/fullcalendar-6.x && cp -r node_modules/fullcalendar/dist/* assets/vendor/fullcalendar-6.x/", 10 | "prod": "npm run build" 11 | }, 12 | "dependencies": { 13 | "fullcalendar": "^6.1.10" 14 | }, 15 | "devDependencies": { 16 | "node-sass": "^9.0.0" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/da.js: -------------------------------------------------------------------------------- 1 | var l15 = { 2 | code: 'da', 3 | week: { 4 | dow: 1, 5 | doy: 4, // The week that contains Jan 4th is the first week of the year. 6 | }, 7 | buttonText: { 8 | prev: 'Forrige', 9 | next: 'Næste', 10 | today: 'I dag', 11 | year: 'År', 12 | month: 'Måned', 13 | week: 'Uge', 14 | day: 'Dag', 15 | list: 'Agenda', 16 | }, 17 | weekText: 'Uge', 18 | allDayText: 'Hele dagen', 19 | moreLinkText: 'flere', 20 | noEventsText: 'Ingen arrangementer at vise', 21 | }; 22 | 23 | export { l15 as default }; 24 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/fr-ca.cjs: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | Object.defineProperty(exports, '__esModule', { value: true }); 4 | 5 | var l29 = { 6 | code: 'fr', 7 | buttonText: { 8 | prev: 'Précédent', 9 | next: 'Suivant', 10 | today: 'Aujourd\'hui', 11 | year: 'Année', 12 | month: 'Mois', 13 | week: 'Semaine', 14 | day: 'Jour', 15 | list: 'Mon planning', 16 | }, 17 | weekText: 'Sem.', 18 | allDayText: 'Toute la journée', 19 | moreLinkText: 'en plus', 20 | noEventsText: 'Aucun évènement à afficher', 21 | }; 22 | 23 | exports["default"] = l29; 24 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/hu.js: -------------------------------------------------------------------------------- 1 | var l36 = { 2 | code: 'hu', 3 | week: { 4 | dow: 1, 5 | doy: 4, // The week that contains Jan 4th is the first week of the year. 6 | }, 7 | buttonText: { 8 | prev: 'vissza', 9 | next: 'előre', 10 | today: 'ma', 11 | year: 'Év', 12 | month: 'Hónap', 13 | week: 'Hét', 14 | day: 'Nap', 15 | list: 'Lista', 16 | }, 17 | weekText: 'Hét', 18 | allDayText: 'Egész nap', 19 | moreLinkText: 'további', 20 | noEventsText: 'Nincs megjeleníthető esemény', 21 | }; 22 | 23 | export { l36 as default }; 24 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/tr.js: -------------------------------------------------------------------------------- 1 | var l71 = { 2 | code: 'tr', 3 | week: { 4 | dow: 1, 5 | doy: 7, // The week that contains Jan 1st is the first week of the year. 6 | }, 7 | buttonText: { 8 | prev: 'geri', 9 | next: 'ileri', 10 | today: 'bugün', 11 | year: 'Yıl', 12 | month: 'Ay', 13 | week: 'Hafta', 14 | day: 'Gün', 15 | list: 'Ajanda', 16 | }, 17 | weekText: 'Hf', 18 | allDayText: 'Tüm gün', 19 | moreLinkText: 'daha fazla', 20 | noEventsText: 'Gösterilecek etkinlik yok', 21 | }; 22 | 23 | export { l71 as default }; 24 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/cy.js: -------------------------------------------------------------------------------- 1 | var l14 = { 2 | code: 'cy', 3 | week: { 4 | dow: 1, 5 | doy: 4, // The week that contains Jan 4th is the first week of the year. 6 | }, 7 | buttonText: { 8 | prev: 'Blaenorol', 9 | next: 'Nesaf', 10 | today: 'Heddiw', 11 | year: 'Blwyddyn', 12 | month: 'Mis', 13 | week: 'Wythnos', 14 | day: 'Dydd', 15 | list: 'Rhestr', 16 | }, 17 | weekText: 'Wythnos', 18 | allDayText: 'Trwy\'r dydd', 19 | moreLinkText: 'Mwy', 20 | noEventsText: 'Dim digwyddiadau', 21 | }; 22 | 23 | export { l14 as default }; 24 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/eo.js: -------------------------------------------------------------------------------- 1 | var l22 = { 2 | code: 'eo', 3 | week: { 4 | dow: 1, 5 | doy: 4, // The week that contains Jan 4th is the first week of the year. 6 | }, 7 | buttonText: { 8 | prev: 'Antaŭa', 9 | next: 'Sekva', 10 | today: 'Hodiaŭ', 11 | year: 'Jaro', 12 | month: 'Monato', 13 | week: 'Semajno', 14 | day: 'Tago', 15 | list: 'Tagordo', 16 | }, 17 | weekText: 'Sm', 18 | allDayText: 'Tuta tago', 19 | moreLinkText: 'pli', 20 | noEventsText: 'Neniuj eventoj por montri', 21 | }; 22 | 23 | export { l22 as default }; 24 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/nb.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !function(e){"use strict";var n={code:"nb",week:{dow:1,doy:4},buttonText:{prev:"Forrige",next:"Neste",today:"I dag",year:"År",month:"Måned",week:"Uke",day:"Dag",list:"Agenda"},weekText:"Uke",weekTextLong:"Uke",allDayText:"Hele dagen",moreLinkText:"til",noEventsText:"Ingen hendelser å vise",buttonHints:{prev:"Forrige $0",next:"Neste $0",today:"Nåværende $0"},viewHint:"$0 visning",navLinkHint:"Gå til $0",moreLinkHint:e=>`Vis ${e} flere hendelse${1===e?"":"r"}`};FullCalendar.globalLocales.push(n)}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/ne.js: -------------------------------------------------------------------------------- 1 | var l53 = { 2 | code: 'ne', 3 | week: { 4 | dow: 7, 5 | doy: 1, // The week that contains Jan 1st is the first week of the year. 6 | }, 7 | buttonText: { 8 | prev: 'अघिल्लो', 9 | next: 'अर्को', 10 | today: 'आज', 11 | year: 'वर्ष', 12 | month: 'महिना', 13 | week: 'हप्ता', 14 | day: 'दिन', 15 | list: 'सूची', 16 | }, 17 | weekText: 'हप्ता', 18 | allDayText: 'दिनभरि', 19 | moreLinkText: 'थप लिंक', 20 | noEventsText: 'देखाउनको लागि कुनै घटनाहरू छैनन्', 21 | }; 22 | 23 | export { l53 as default }; 24 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/pt.js: -------------------------------------------------------------------------------- 1 | var l58 = { 2 | code: 'pt', 3 | week: { 4 | dow: 1, 5 | doy: 4, // The week that contains Jan 4th is the first week of the year. 6 | }, 7 | buttonText: { 8 | prev: 'Anterior', 9 | next: 'Seguinte', 10 | today: 'Hoje', 11 | year: 'Ano', 12 | month: 'Mês', 13 | week: 'Semana', 14 | day: 'Dia', 15 | list: 'Agenda', 16 | }, 17 | weekText: 'Sem', 18 | allDayText: 'Todo o dia', 19 | moreLinkText: 'mais', 20 | noEventsText: 'Não há eventos para mostrar', 21 | }; 22 | 23 | export { l58 as default }; 24 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/ca.js: -------------------------------------------------------------------------------- 1 | var l12 = { 2 | code: 'ca', 3 | week: { 4 | dow: 1, 5 | doy: 4, // The week that contains Jan 4th is the first week of the year. 6 | }, 7 | buttonText: { 8 | prev: 'Anterior', 9 | next: 'Següent', 10 | today: 'Avui', 11 | year: 'Any', 12 | month: 'Mes', 13 | week: 'Setmana', 14 | day: 'Dia', 15 | list: 'Agenda', 16 | }, 17 | weekText: 'Set', 18 | allDayText: 'Tot el dia', 19 | moreLinkText: 'més', 20 | noEventsText: 'No hi ha esdeveniments per mostrar', 21 | }; 22 | 23 | export { l12 as default }; 24 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/eu.js: -------------------------------------------------------------------------------- 1 | var l26 = { 2 | code: 'eu', 3 | week: { 4 | dow: 1, 5 | doy: 7, // The week that contains Jan 1st is the first week of the year. 6 | }, 7 | buttonText: { 8 | prev: 'Aur', 9 | next: 'Hur', 10 | today: 'Gaur', 11 | year: 'Urtea', 12 | month: 'Hilabetea', 13 | week: 'Astea', 14 | day: 'Eguna', 15 | list: 'Agenda', 16 | }, 17 | weekText: 'As', 18 | allDayText: 'Egun osoa', 19 | moreLinkText: 'gehiago', 20 | noEventsText: 'Ez dago ekitaldirik erakusteko', 21 | }; 22 | 23 | export { l26 as default }; 24 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/is.js: -------------------------------------------------------------------------------- 1 | var l39 = { 2 | code: 'is', 3 | week: { 4 | dow: 1, 5 | doy: 4, // The week that contains Jan 4th is the first week of the year. 6 | }, 7 | buttonText: { 8 | prev: 'Fyrri', 9 | next: 'Næsti', 10 | today: 'Í dag', 11 | year: 'Ár', 12 | month: 'Mánuður', 13 | week: 'Vika', 14 | day: 'Dagur', 15 | list: 'Dagskrá', 16 | }, 17 | weekText: 'Vika', 18 | allDayText: 'Allan daginn', 19 | moreLinkText: 'meira', 20 | noEventsText: 'Engir viðburðir til að sýna', 21 | }; 22 | 23 | export { l39 as default }; 24 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/lt.js: -------------------------------------------------------------------------------- 1 | var l48 = { 2 | code: 'lt', 3 | week: { 4 | dow: 1, 5 | doy: 4, // The week that contains Jan 4th is the first week of the year. 6 | }, 7 | buttonText: { 8 | prev: 'Atgal', 9 | next: 'Pirmyn', 10 | today: 'Šiandien', 11 | year: 'Metai', 12 | month: 'Mėnuo', 13 | week: 'Savaitė', 14 | day: 'Diena', 15 | list: 'Darbotvarkė', 16 | }, 17 | weekText: 'SAV', 18 | allDayText: 'Visą dieną', 19 | moreLinkText: 'daugiau', 20 | noEventsText: 'Nėra įvykių rodyti', 21 | }; 22 | 23 | export { l48 as default }; 24 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/sl.js: -------------------------------------------------------------------------------- 1 | var l63 = { 2 | code: 'sl', 3 | week: { 4 | dow: 1, 5 | doy: 7, // The week that contains Jan 1st is the first week of the year. 6 | }, 7 | buttonText: { 8 | prev: 'Prejšnji', 9 | next: 'Naslednji', 10 | today: 'Trenutni', 11 | year: 'Leto', 12 | month: 'Mesec', 13 | week: 'Teden', 14 | day: 'Dan', 15 | list: 'Dnevni red', 16 | }, 17 | weekText: 'Teden', 18 | allDayText: 'Ves dan', 19 | moreLinkText: 'več', 20 | noEventsText: 'Ni dogodkov za prikaz', 21 | }; 22 | 23 | export { l63 as default }; 24 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/ar.js: -------------------------------------------------------------------------------- 1 | var l7 = { 2 | code: 'ar', 3 | week: { 4 | dow: 6, 5 | doy: 12, // The week that contains Jan 1st is the first week of the year. 6 | }, 7 | direction: 'rtl', 8 | buttonText: { 9 | prev: 'السابق', 10 | next: 'التالي', 11 | today: 'اليوم', 12 | year: 'سنة', 13 | month: 'شهر', 14 | week: 'أسبوع', 15 | day: 'يوم', 16 | list: 'أجندة', 17 | }, 18 | weekText: 'أسبوع', 19 | allDayText: 'اليوم كله', 20 | moreLinkText: 'أخرى', 21 | noEventsText: 'أي أحداث لعرض', 22 | }; 23 | 24 | export { l7 as default }; 25 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/bg.js: -------------------------------------------------------------------------------- 1 | var l9 = { 2 | code: 'bg', 3 | week: { 4 | dow: 1, 5 | doy: 4, // The week that contains Jan 4th is the first week of the year. 6 | }, 7 | buttonText: { 8 | prev: 'назад', 9 | next: 'напред', 10 | today: 'днес', 11 | year: 'година', 12 | month: 'Месец', 13 | week: 'Седмица', 14 | day: 'Ден', 15 | list: 'График', 16 | }, 17 | allDayText: 'Цял ден', 18 | moreLinkText(n) { 19 | return '+още ' + n; 20 | }, 21 | noEventsText: 'Няма събития за показване', 22 | }; 23 | 24 | export { l9 as default }; 25 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/id.js: -------------------------------------------------------------------------------- 1 | var l38 = { 2 | code: 'id', 3 | week: { 4 | dow: 1, 5 | doy: 7, // The week that contains Jan 1st is the first week of the year. 6 | }, 7 | buttonText: { 8 | prev: 'mundur', 9 | next: 'maju', 10 | today: 'hari ini', 11 | year: 'Tahun', 12 | month: 'Bulan', 13 | week: 'Minggu', 14 | day: 'Hari', 15 | list: 'Agenda', 16 | }, 17 | weekText: 'Mg', 18 | allDayText: 'Sehari penuh', 19 | moreLinkText: 'lebih', 20 | noEventsText: 'Tidak ada acara untuk ditampilkan', 21 | }; 22 | 23 | export { l38 as default }; 24 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/km.js: -------------------------------------------------------------------------------- 1 | var l44 = { 2 | code: 'km', 3 | week: { 4 | dow: 1, 5 | doy: 4, // The week that contains Jan 4th is the first week of the year. 6 | }, 7 | buttonText: { 8 | prev: 'មុន', 9 | next: 'បន្ទាប់', 10 | today: 'ថ្ងៃនេះ', 11 | year: 'ឆ្នាំ', 12 | month: 'ខែ', 13 | week: 'សប្តាហ៍', 14 | day: 'ថ្ងៃ', 15 | list: 'បញ្ជី', 16 | }, 17 | weekText: 'សប្តាហ៍', 18 | allDayText: 'ពេញមួយថ្ងៃ', 19 | moreLinkText: 'ច្រើនទៀត', 20 | noEventsText: 'គ្មានព្រឹត្តិការណ៍ត្រូវបង្ហាញ', 21 | }; 22 | 23 | export { l44 as default }; 24 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/lb.js: -------------------------------------------------------------------------------- 1 | var l47 = { 2 | code: 'lb', 3 | week: { 4 | dow: 1, 5 | doy: 4, // The week that contains Jan 4th is the first week of the year. 6 | }, 7 | buttonText: { 8 | prev: 'Zréck', 9 | next: 'Weider', 10 | today: 'Haut', 11 | year: 'Joer', 12 | month: 'Mount', 13 | week: 'Woch', 14 | day: 'Dag', 15 | list: 'Terminiwwersiicht', 16 | }, 17 | weekText: 'W', 18 | allDayText: 'Ganzen Dag', 19 | moreLinkText: 'méi', 20 | noEventsText: 'Nee Evenementer ze affichéieren', 21 | }; 22 | 23 | export { l47 as default }; 24 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/mk.cjs: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | Object.defineProperty(exports, '__esModule', { value: true }); 4 | 5 | var l50 = { 6 | code: 'mk', 7 | buttonText: { 8 | prev: 'претходно', 9 | next: 'следно', 10 | today: 'Денес', 11 | year: 'година', 12 | month: 'Месец', 13 | week: 'Недела', 14 | day: 'Ден', 15 | list: 'График', 16 | }, 17 | weekText: 'Сед', 18 | allDayText: 'Цел ден', 19 | moreLinkText(n) { 20 | return '+повеќе ' + n; 21 | }, 22 | noEventsText: 'Нема настани за прикажување', 23 | }; 24 | 25 | exports["default"] = l50; 26 | -------------------------------------------------------------------------------- /data/definitions/entries.yml: -------------------------------------------------------------------------------- 1 | langfields: 2 | - panel: 'images' 3 | label_de: 'Sprachbezogene Bildelemente' 4 | label_en: 'Language-related images elements' 5 | fields: 6 | - name: 'lang_image' 7 | type: 'media' 8 | label_de: 'Bild' 9 | label_en: 'Image' 10 | - name: 'lang_images' 11 | type: 'medialist' 12 | label_de: 'Bilder' 13 | label_en: 'Images' 14 | 15 | fields: 16 | - name: 'image' 17 | type: 'media' 18 | label_de: 'Bildelement' 19 | label_en: 'Image element' 20 | - name: 'file' 21 | type: 'media' 22 | label_de: 'Datei Anhang' 23 | label_en: 'File attachment' 24 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/ar-dz.js: -------------------------------------------------------------------------------- 1 | var l1 = { 2 | code: 'ar-dz', 3 | week: { 4 | dow: 0, 5 | doy: 4, // The week that contains Jan 1st is the first week of the year. 6 | }, 7 | direction: 'rtl', 8 | buttonText: { 9 | prev: 'السابق', 10 | next: 'التالي', 11 | today: 'اليوم', 12 | year: 'سنة', 13 | month: 'شهر', 14 | week: 'أسبوع', 15 | day: 'يوم', 16 | list: 'أجندة', 17 | }, 18 | weekText: 'أسبوع', 19 | allDayText: 'اليوم كله', 20 | moreLinkText: 'أخرى', 21 | noEventsText: 'أي أحداث لعرض', 22 | }; 23 | 24 | export { l1 as default }; 25 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/ar-kw.js: -------------------------------------------------------------------------------- 1 | var l2 = { 2 | code: 'ar-kw', 3 | week: { 4 | dow: 0, 5 | doy: 12, // The week that contains Jan 1st is the first week of the year. 6 | }, 7 | direction: 'rtl', 8 | buttonText: { 9 | prev: 'السابق', 10 | next: 'التالي', 11 | today: 'اليوم', 12 | year: 'سنة', 13 | month: 'شهر', 14 | week: 'أسبوع', 15 | day: 'يوم', 16 | list: 'أجندة', 17 | }, 18 | weekText: 'أسبوع', 19 | allDayText: 'اليوم كله', 20 | moreLinkText: 'أخرى', 21 | noEventsText: 'أي أحداث لعرض', 22 | }; 23 | 24 | export { l2 as default }; 25 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/ar-ly.js: -------------------------------------------------------------------------------- 1 | var l3 = { 2 | code: 'ar-ly', 3 | week: { 4 | dow: 6, 5 | doy: 12, // The week that contains Jan 1st is the first week of the year. 6 | }, 7 | direction: 'rtl', 8 | buttonText: { 9 | prev: 'السابق', 10 | next: 'التالي', 11 | today: 'اليوم', 12 | year: 'سنة', 13 | month: 'شهر', 14 | week: 'أسبوع', 15 | day: 'يوم', 16 | list: 'أجندة', 17 | }, 18 | weekText: 'أسبوع', 19 | allDayText: 'اليوم كله', 20 | moreLinkText: 'أخرى', 21 | noEventsText: 'أي أحداث لعرض', 22 | }; 23 | 24 | export { l3 as default }; 25 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/ar-ma.js: -------------------------------------------------------------------------------- 1 | var l4 = { 2 | code: 'ar-ma', 3 | week: { 4 | dow: 6, 5 | doy: 12, // The week that contains Jan 1st is the first week of the year. 6 | }, 7 | direction: 'rtl', 8 | buttonText: { 9 | prev: 'السابق', 10 | next: 'التالي', 11 | today: 'اليوم', 12 | year: 'سنة', 13 | month: 'شهر', 14 | week: 'أسبوع', 15 | day: 'يوم', 16 | list: 'أجندة', 17 | }, 18 | weekText: 'أسبوع', 19 | allDayText: 'اليوم كله', 20 | moreLinkText: 'أخرى', 21 | noEventsText: 'أي أحداث لعرض', 22 | }; 23 | 24 | export { l4 as default }; 25 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/ar-sa.js: -------------------------------------------------------------------------------- 1 | var l5 = { 2 | code: 'ar-sa', 3 | week: { 4 | dow: 0, 5 | doy: 6, // The week that contains Jan 1st is the first week of the year. 6 | }, 7 | direction: 'rtl', 8 | buttonText: { 9 | prev: 'السابق', 10 | next: 'التالي', 11 | today: 'اليوم', 12 | year: 'سنة', 13 | month: 'شهر', 14 | week: 'أسبوع', 15 | day: 'يوم', 16 | list: 'أجندة', 17 | }, 18 | weekText: 'أسبوع', 19 | allDayText: 'اليوم كله', 20 | moreLinkText: 'أخرى', 21 | noEventsText: 'أي أحداث لعرض', 22 | }; 23 | 24 | export { l5 as default }; 25 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/ar-tn.js: -------------------------------------------------------------------------------- 1 | var l6 = { 2 | code: 'ar-tn', 3 | week: { 4 | dow: 1, 5 | doy: 4, // The week that contains Jan 4th is the first week of the year. 6 | }, 7 | direction: 'rtl', 8 | buttonText: { 9 | prev: 'السابق', 10 | next: 'التالي', 11 | today: 'اليوم', 12 | year: 'سنة', 13 | month: 'شهر', 14 | week: 'أسبوع', 15 | day: 'يوم', 16 | list: 'أجندة', 17 | }, 18 | weekText: 'أسبوع', 19 | allDayText: 'اليوم كله', 20 | moreLinkText: 'أخرى', 21 | noEventsText: 'أي أحداث لعرض', 22 | }; 23 | 24 | export { l6 as default }; 25 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/fi.js: -------------------------------------------------------------------------------- 1 | var l28 = { 2 | code: 'fi', 3 | week: { 4 | dow: 1, 5 | doy: 4, // The week that contains Jan 4th is the first week of the year. 6 | }, 7 | buttonText: { 8 | prev: 'Edellinen', 9 | next: 'Seuraava', 10 | today: 'Tänään', 11 | year: 'Vuosi', 12 | month: 'Kuukausi', 13 | week: 'Viikko', 14 | day: 'Päivä', 15 | list: 'Tapahtumat', 16 | }, 17 | weekText: 'Vk', 18 | allDayText: 'Koko päivä', 19 | moreLinkText: 'lisää', 20 | noEventsText: 'Ei näytettäviä tapahtumia', 21 | }; 22 | 23 | export { l28 as default }; 24 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/pl.js: -------------------------------------------------------------------------------- 1 | var l56 = { 2 | code: 'pl', 3 | week: { 4 | dow: 1, 5 | doy: 4, // The week that contains Jan 4th is the first week of the year. 6 | }, 7 | buttonText: { 8 | prev: 'Poprzedni', 9 | next: 'Następny', 10 | today: 'Dziś', 11 | year: 'Rok', 12 | month: 'Miesiąc', 13 | week: 'Tydzień', 14 | day: 'Dzień', 15 | list: 'Plan dnia', 16 | }, 17 | weekText: 'Tydz', 18 | allDayText: 'Cały dzień', 19 | moreLinkText: 'więcej', 20 | noEventsText: 'Brak wydarzeń do wyświetlenia', 21 | }; 22 | 23 | export { l56 as default }; 24 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/en-au.cjs: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | Object.defineProperty(exports, '__esModule', { value: true }); 4 | 5 | var l19 = { 6 | code: 'en-au', 7 | week: { 8 | dow: 1, 9 | doy: 4, // The week that contains Jan 4th is the first week of the year. 10 | }, 11 | buttonHints: { 12 | prev: 'Previous $0', 13 | next: 'Next $0', 14 | today: 'This $0', 15 | }, 16 | viewHint: '$0 view', 17 | navLinkHint: 'Go to $0', 18 | moreLinkHint(eventCnt) { 19 | return `Show ${eventCnt} more event${eventCnt === 1 ? '' : 's'}`; 20 | }, 21 | }; 22 | 23 | exports["default"] = l19; 24 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/en-gb.cjs: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | Object.defineProperty(exports, '__esModule', { value: true }); 4 | 5 | var l20 = { 6 | code: 'en-gb', 7 | week: { 8 | dow: 1, 9 | doy: 4, // The week that contains Jan 4th is the first week of the year. 10 | }, 11 | buttonHints: { 12 | prev: 'Previous $0', 13 | next: 'Next $0', 14 | today: 'This $0', 15 | }, 16 | viewHint: '$0 view', 17 | navLinkHint: 'Go to $0', 18 | moreLinkHint(eventCnt) { 19 | return `Show ${eventCnt} more event${eventCnt === 1 ? '' : 's'}`; 20 | }, 21 | }; 22 | 23 | exports["default"] = l20; 24 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/en-nz.cjs: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | Object.defineProperty(exports, '__esModule', { value: true }); 4 | 5 | var l21 = { 6 | code: 'en-nz', 7 | week: { 8 | dow: 1, 9 | doy: 4, // The week that contains Jan 4th is the first week of the year. 10 | }, 11 | buttonHints: { 12 | prev: 'Previous $0', 13 | next: 'Next $0', 14 | today: 'This $0', 15 | }, 16 | viewHint: '$0 view', 17 | navLinkHint: 'Go to $0', 18 | moreLinkHint(eventCnt) { 19 | return `Show ${eventCnt} more event${eventCnt === 1 ? '' : 's'}`; 20 | }, 21 | }; 22 | 23 | exports["default"] = l21; 24 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/ku.js: -------------------------------------------------------------------------------- 1 | var l46 = { 2 | code: 'ku', 3 | week: { 4 | dow: 6, 5 | doy: 12, // The week that contains Jan 1st is the first week of the year. 6 | }, 7 | direction: 'rtl', 8 | buttonText: { 9 | prev: 'پێشتر', 10 | next: 'دواتر', 11 | today: 'ئەمڕو', 12 | year: 'ساڵ', 13 | month: 'مانگ', 14 | week: 'هەفتە', 15 | day: 'ڕۆژ', 16 | list: 'بەرنامە', 17 | }, 18 | weekText: 'هەفتە', 19 | allDayText: 'هەموو ڕۆژەکە', 20 | moreLinkText: 'زیاتر', 21 | noEventsText: 'هیچ ڕووداوێك نیە', 22 | }; 23 | 24 | export { l46 as default }; 25 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/uz-cy.js: -------------------------------------------------------------------------------- 1 | var l74 = { 2 | code: 'uz-cy', 3 | week: { 4 | dow: 1, 5 | doy: 4, // The week that contains Jan 4th is the first week of the year. 6 | }, 7 | buttonText: { 8 | prev: 'Олин', 9 | next: 'Кейин', 10 | today: 'Бугун', 11 | month: 'Ой', 12 | week: 'Ҳафта', 13 | day: 'Кун', 14 | list: 'Кун тартиби', 15 | }, 16 | weekText: 'Ҳафта', 17 | allDayText: 'Кун бўйича', 18 | moreLinkText(n) { 19 | return '+ яна ' + n; 20 | }, 21 | noEventsText: 'Кўрсатиш учун воқеалар йўқ', 22 | }; 23 | 24 | export { l74 as default }; 25 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/bn.js: -------------------------------------------------------------------------------- 1 | var l10 = { 2 | code: 'bn', 3 | week: { 4 | dow: 0, 5 | doy: 6, // The week that contains Jan 1st is the first week of the year. 6 | }, 7 | buttonText: { 8 | prev: 'পেছনে', 9 | next: 'সামনে', 10 | today: 'আজ', 11 | year: 'বছর', 12 | month: 'মাস', 13 | week: 'সপ্তাহ', 14 | day: 'দিন', 15 | list: 'তালিকা', 16 | }, 17 | weekText: 'সপ্তাহ', 18 | allDayText: 'সারাদিন', 19 | moreLinkText(n) { 20 | return '+অন্যান্য ' + n; 21 | }, 22 | noEventsText: 'কোনো ইভেন্ট নেই', 23 | }; 24 | 25 | export { l10 as default }; 26 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/uz.js: -------------------------------------------------------------------------------- 1 | var l75 = { 2 | code: 'uz', 3 | week: { 4 | dow: 1, 5 | doy: 4, // The week that contains Jan 4th is the first week of the year. 6 | }, 7 | buttonText: { 8 | prev: 'Oldingi', 9 | next: 'Keyingi', 10 | today: 'Bugun', 11 | year: 'Yil', 12 | month: 'Oy', 13 | week: 'Xafta', 14 | day: 'Kun', 15 | list: 'Kun tartibi', 16 | }, 17 | allDayText: 'Kun bo\'yi', 18 | moreLinkText(n) { 19 | return '+ yana ' + n; 20 | }, 21 | noEventsText: 'Ko\'rsatish uchun voqealar yo\'q', 22 | }; 23 | 24 | export { l75 as default }; 25 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/el.js: -------------------------------------------------------------------------------- 1 | var l18 = { 2 | code: 'el', 3 | week: { 4 | dow: 1, 5 | doy: 4, // The week that contains Jan 4st is the first week of the year. 6 | }, 7 | buttonText: { 8 | prev: 'Προηγούμενος', 9 | next: 'Επόμενος', 10 | today: 'Σήμερα', 11 | year: 'Ετος', 12 | month: 'Μήνας', 13 | week: 'Εβδομάδα', 14 | day: 'Ημέρα', 15 | list: 'Ατζέντα', 16 | }, 17 | weekText: 'Εβδ', 18 | allDayText: 'Ολοήμερο', 19 | moreLinkText: 'περισσότερα', 20 | noEventsText: 'Δεν υπάρχουν γεγονότα προς εμφάνιση', 21 | }; 22 | 23 | export { l18 as default }; 24 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/fr-ch.js: -------------------------------------------------------------------------------- 1 | var l30 = { 2 | code: 'fr-ch', 3 | week: { 4 | dow: 1, 5 | doy: 4, // The week that contains Jan 4th is the first week of the year. 6 | }, 7 | buttonText: { 8 | prev: 'Précédent', 9 | next: 'Suivant', 10 | today: 'Courant', 11 | year: 'Année', 12 | month: 'Mois', 13 | week: 'Semaine', 14 | day: 'Jour', 15 | list: 'Mon planning', 16 | }, 17 | weekText: 'Sm', 18 | allDayText: 'Toute la journée', 19 | moreLinkText: 'en plus', 20 | noEventsText: 'Aucun évènement à afficher', 21 | }; 22 | 23 | export { l30 as default }; 24 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/cs.js: -------------------------------------------------------------------------------- 1 | var l13 = { 2 | code: 'cs', 3 | week: { 4 | dow: 1, 5 | doy: 4, // The week that contains Jan 4th is the first week of the year. 6 | }, 7 | buttonText: { 8 | prev: 'Dříve', 9 | next: 'Později', 10 | today: 'Nyní', 11 | year: 'Rok', 12 | month: 'Měsíc', 13 | week: 'Týden', 14 | day: 'Den', 15 | list: 'Agenda', 16 | }, 17 | weekText: 'Týd', 18 | allDayText: 'Celý den', 19 | moreLinkText(n) { 20 | return '+další: ' + n; 21 | }, 22 | noEventsText: 'Žádné akce k zobrazení', 23 | }; 24 | 25 | export { l13 as default }; 26 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/az.js: -------------------------------------------------------------------------------- 1 | var l8 = { 2 | code: 'az', 3 | week: { 4 | dow: 1, 5 | doy: 4, // The week that contains Jan 4th is the first week of the year. 6 | }, 7 | buttonText: { 8 | prev: 'Əvvəl', 9 | next: 'Sonra', 10 | today: 'Bu Gün', 11 | year: 'Il', 12 | month: 'Ay', 13 | week: 'Həftə', 14 | day: 'Gün', 15 | list: 'Gündəm', 16 | }, 17 | weekText: 'Həftə', 18 | allDayText: 'Bütün Gün', 19 | moreLinkText(n) { 20 | return '+ daha çox ' + n; 21 | }, 22 | noEventsText: 'Göstərmək üçün hadisə yoxdur', 23 | }; 24 | 25 | export { l8 as default }; 26 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/kk.js: -------------------------------------------------------------------------------- 1 | var l43 = { 2 | code: 'kk', 3 | week: { 4 | dow: 1, 5 | doy: 7, // The week that contains Jan 1st is the first week of the year. 6 | }, 7 | buttonText: { 8 | prev: 'Алдыңғы', 9 | next: 'Келесі', 10 | today: 'Бүгін', 11 | year: 'Жыл', 12 | month: 'Ай', 13 | week: 'Апта', 14 | day: 'Күн', 15 | list: 'Күн тәртібі', 16 | }, 17 | weekText: 'Не', 18 | allDayText: 'Күні бойы', 19 | moreLinkText(n) { 20 | return '+ тағы ' + n; 21 | }, 22 | noEventsText: 'Көрсету үшін оқиғалар жоқ', 23 | }; 24 | 25 | export { l43 as default }; 26 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/lv.js: -------------------------------------------------------------------------------- 1 | var l49 = { 2 | code: 'lv', 3 | week: { 4 | dow: 1, 5 | doy: 4, // The week that contains Jan 4th is the first week of the year. 6 | }, 7 | buttonText: { 8 | prev: 'Iepr.', 9 | next: 'Nāk.', 10 | today: 'Šodien', 11 | year: 'Gads', 12 | month: 'Mēnesis', 13 | week: 'Nedēļa', 14 | day: 'Diena', 15 | list: 'Dienas kārtība', 16 | }, 17 | weekText: 'Ned.', 18 | allDayText: 'Visu dienu', 19 | moreLinkText(n) { 20 | return '+vēl ' + n; 21 | }, 22 | noEventsText: 'Nav notikumu', 23 | }; 24 | 25 | export { l49 as default }; 26 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/ug.global.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | (function (index_js) { 7 | 'use strict'; 8 | 9 | var locale = { 10 | code: 'ug', 11 | buttonText: { 12 | prev: 'ئالدىنقى', 13 | next: 'كېيىنكى', 14 | today: 'بۈگۈن', 15 | year: 'يىل', 16 | month: 'ئاي', 17 | week: 'ھەپتە', 18 | day: 'كۈن', 19 | list: 'كۈنتەرتىپ', 20 | }, 21 | allDayText: 'پۈتۈن كۈن', 22 | }; 23 | 24 | index_js.globalLocales.push(locale); 25 | 26 | })(FullCalendar); 27 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/vi.js: -------------------------------------------------------------------------------- 1 | var l76 = { 2 | code: 'vi', 3 | week: { 4 | dow: 1, 5 | doy: 4, // The week that contains Jan 4th is the first week of the year. 6 | }, 7 | buttonText: { 8 | prev: 'Trước', 9 | next: 'Tiếp', 10 | today: 'Hôm nay', 11 | year: 'Năm', 12 | month: 'Tháng', 13 | week: 'Tuần', 14 | day: 'Ngày', 15 | list: 'Lịch biểu', 16 | }, 17 | weekText: 'Tu', 18 | allDayText: 'Cả ngày', 19 | moreLinkText(n) { 20 | return '+ thêm ' + n; 21 | }, 22 | noEventsText: 'Không có sự kiện để hiển thị', 23 | }; 24 | 25 | export { l76 as default }; 26 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/et.js: -------------------------------------------------------------------------------- 1 | var l25 = { 2 | code: 'et', 3 | week: { 4 | dow: 1, 5 | doy: 4, // The week that contains Jan 4th is the first week of the year. 6 | }, 7 | buttonText: { 8 | prev: 'Eelnev', 9 | next: 'Järgnev', 10 | today: 'Täna', 11 | year: 'Aasta', 12 | month: 'Kuu', 13 | week: 'Nädal', 14 | day: 'Päev', 15 | list: 'Päevakord', 16 | }, 17 | weekText: 'näd', 18 | allDayText: 'Kogu päev', 19 | moreLinkText(n) { 20 | return '+ veel ' + n; 21 | }, 22 | noEventsText: 'Kuvamiseks puuduvad sündmused', 23 | }; 24 | 25 | export { l25 as default }; 26 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/hi.js: -------------------------------------------------------------------------------- 1 | var l34 = { 2 | code: 'hi', 3 | week: { 4 | dow: 0, 5 | doy: 6, // The week that contains Jan 1st is the first week of the year. 6 | }, 7 | buttonText: { 8 | prev: 'पिछला', 9 | next: 'अगला', 10 | today: 'आज', 11 | year: 'वर्ष', 12 | month: 'महीना', 13 | week: 'सप्ताह', 14 | day: 'दिन', 15 | list: 'कार्यसूची', 16 | }, 17 | weekText: 'हफ्ता', 18 | allDayText: 'सभी दिन', 19 | moreLinkText(n) { 20 | return '+अधिक ' + n; 21 | }, 22 | noEventsText: 'कोई घटनाओं को प्रदर्शित करने के लिए', 23 | }; 24 | 25 | export { l34 as default }; 26 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/ru.js: -------------------------------------------------------------------------------- 1 | var l60 = { 2 | code: 'ru', 3 | week: { 4 | dow: 1, 5 | doy: 4, // The week that contains Jan 4th is the first week of the year. 6 | }, 7 | buttonText: { 8 | prev: 'Пред', 9 | next: 'След', 10 | today: 'Сегодня', 11 | year: 'Год', 12 | month: 'Месяц', 13 | week: 'Неделя', 14 | day: 'День', 15 | list: 'Повестка дня', 16 | }, 17 | weekText: 'Нед', 18 | allDayText: 'Весь день', 19 | moreLinkText(n) { 20 | return '+ ещё ' + n; 21 | }, 22 | noEventsText: 'Нет событий для отображения', 23 | }; 24 | 25 | export { l60 as default }; 26 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/sq.js: -------------------------------------------------------------------------------- 1 | var l65 = { 2 | code: 'sq', 3 | week: { 4 | dow: 1, 5 | doy: 4, // The week that contains Jan 4th is the first week of the year. 6 | }, 7 | buttonText: { 8 | prev: 'mbrapa', 9 | next: 'Përpara', 10 | today: 'Sot', 11 | year: 'Viti', 12 | month: 'Muaj', 13 | week: 'Javë', 14 | day: 'Ditë', 15 | list: 'Listë', 16 | }, 17 | weekText: 'Ja', 18 | allDayText: 'Gjithë ditën', 19 | moreLinkText(n) { 20 | return '+më tepër ' + n; 21 | }, 22 | noEventsText: 'Nuk ka evente për të shfaqur', 23 | }; 24 | 25 | export { l65 as default }; 26 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/sr.js: -------------------------------------------------------------------------------- 1 | var l67 = { 2 | code: 'sr', 3 | week: { 4 | dow: 1, 5 | doy: 7, // The week that contains Jan 1st is the first week of the year. 6 | }, 7 | buttonText: { 8 | prev: 'Prethodna', 9 | next: 'Sledeći', 10 | today: 'Danas', 11 | year: 'Godina', 12 | month: 'Mеsеc', 13 | week: 'Nеdеlja', 14 | day: 'Dan', 15 | list: 'Planеr', 16 | }, 17 | weekText: 'Sed', 18 | allDayText: 'Cеo dan', 19 | moreLinkText(n) { 20 | return '+ još ' + n; 21 | }, 22 | noEventsText: 'Nеma događaja za prikaz', 23 | }; 24 | 25 | export { l67 as default }; 26 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/hr.js: -------------------------------------------------------------------------------- 1 | var l35 = { 2 | code: 'hr', 3 | week: { 4 | dow: 1, 5 | doy: 7, // The week that contains Jan 1st is the first week of the year. 6 | }, 7 | buttonText: { 8 | prev: 'Prijašnji', 9 | next: 'Sljedeći', 10 | today: 'Danas', 11 | year: 'Godina', 12 | month: 'Mjesec', 13 | week: 'Tjedan', 14 | day: 'Dan', 15 | list: 'Raspored', 16 | }, 17 | weekText: 'Tje', 18 | allDayText: 'Cijeli dan', 19 | moreLinkText(n) { 20 | return '+ još ' + n; 21 | }, 22 | noEventsText: 'Nema događaja za prikaz', 23 | }; 24 | 25 | export { l35 as default }; 26 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/ro.js: -------------------------------------------------------------------------------- 1 | var l59 = { 2 | code: 'ro', 3 | week: { 4 | dow: 1, 5 | doy: 7, // The week that contains Jan 1st is the first week of the year. 6 | }, 7 | buttonText: { 8 | prev: 'precedentă', 9 | next: 'următoare', 10 | today: 'Azi', 11 | year: 'An', 12 | month: 'Lună', 13 | week: 'Săptămână', 14 | day: 'Zi', 15 | list: 'Agendă', 16 | }, 17 | weekText: 'Săpt', 18 | allDayText: 'Toată ziua', 19 | moreLinkText(n) { 20 | return '+alte ' + n; 21 | }, 22 | noEventsText: 'Nu există evenimente de afișat', 23 | }; 24 | 25 | export { l59 as default }; 26 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/sr-cyrl.js: -------------------------------------------------------------------------------- 1 | var l66 = { 2 | code: 'sr-cyrl', 3 | week: { 4 | dow: 1, 5 | doy: 7, // The week that contains Jan 1st is the first week of the year. 6 | }, 7 | buttonText: { 8 | prev: 'Претходна', 9 | next: 'следећи', 10 | today: 'Данас', 11 | year: 'Година', 12 | month: 'Месец', 13 | week: 'Недеља', 14 | day: 'Дан', 15 | list: 'Планер', 16 | }, 17 | weekText: 'Сед', 18 | allDayText: 'Цео дан', 19 | moreLinkText(n) { 20 | return '+ још ' + n; 21 | }, 22 | noEventsText: 'Нема догађаја за приказ', 23 | }; 24 | 25 | export { l66 as default }; 26 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/bs.js: -------------------------------------------------------------------------------- 1 | var l11 = { 2 | code: 'bs', 3 | week: { 4 | dow: 1, 5 | doy: 7, // The week that contains Jan 1st is the first week of the year. 6 | }, 7 | buttonText: { 8 | prev: 'Prošli', 9 | next: 'Sljedeći', 10 | today: 'Danas', 11 | year: 'Godina', 12 | month: 'Mjesec', 13 | week: 'Sedmica', 14 | day: 'Dan', 15 | list: 'Raspored', 16 | }, 17 | weekText: 'Sed', 18 | allDayText: 'Cijeli dan', 19 | moreLinkText(n) { 20 | return '+ još ' + n; 21 | }, 22 | noEventsText: 'Nema događaja za prikazivanje', 23 | }; 24 | 25 | export { l11 as default }; 26 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/fa.js: -------------------------------------------------------------------------------- 1 | var l27 = { 2 | code: 'fa', 3 | week: { 4 | dow: 6, 5 | doy: 12, // The week that contains Jan 1st is the first week of the year. 6 | }, 7 | direction: 'rtl', 8 | buttonText: { 9 | prev: 'قبلی', 10 | next: 'بعدی', 11 | today: 'امروز', 12 | year: 'سال', 13 | month: 'ماه', 14 | week: 'هفته', 15 | day: 'روز', 16 | list: 'برنامه', 17 | }, 18 | weekText: 'هف', 19 | allDayText: 'تمام روز', 20 | moreLinkText(n) { 21 | return 'بیش از ' + n; 22 | }, 23 | noEventsText: 'هیچ رویدادی به نمایش', 24 | }; 25 | 26 | export { l27 as default }; 27 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/it.js: -------------------------------------------------------------------------------- 1 | var l40 = { 2 | code: 'it', 3 | week: { 4 | dow: 1, 5 | doy: 4, // The week that contains Jan 4th is the first week of the year. 6 | }, 7 | buttonText: { 8 | prev: 'Prec', 9 | next: 'Succ', 10 | today: 'Oggi', 11 | year: 'Anno', 12 | month: 'Mese', 13 | week: 'Settimana', 14 | day: 'Giorno', 15 | list: 'Agenda', 16 | }, 17 | weekText: 'Sm', 18 | allDayText: 'Tutto il giorno', 19 | moreLinkText(n) { 20 | return '+altri ' + n; 21 | }, 22 | noEventsText: 'Non ci sono eventi da visualizzare', 23 | }; 24 | 25 | export { l40 as default }; 26 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/sk.js: -------------------------------------------------------------------------------- 1 | var l62 = { 2 | code: 'sk', 3 | week: { 4 | dow: 1, 5 | doy: 4, // The week that contains Jan 4th is the first week of the year. 6 | }, 7 | buttonText: { 8 | prev: 'Predchádzajúci', 9 | next: 'Nasledujúci', 10 | today: 'Dnes', 11 | year: 'Rok', 12 | month: 'Mesiac', 13 | week: 'Týždeň', 14 | day: 'Deň', 15 | list: 'Rozvrh', 16 | }, 17 | weekText: 'Ty', 18 | allDayText: 'Celý deň', 19 | moreLinkText(n) { 20 | return '+ďalšie: ' + n; 21 | }, 22 | noEventsText: 'Žiadne akcie na zobrazenie', 23 | }; 24 | 25 | export { l62 as default }; 26 | -------------------------------------------------------------------------------- /lib/forcal/Utils/forcalTableKey.php: -------------------------------------------------------------------------------- 1 | "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)}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/gl.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !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)}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/it.cjs: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | Object.defineProperty(exports, '__esModule', { value: true }); 4 | 5 | var l40 = { 6 | code: 'it', 7 | week: { 8 | dow: 1, 9 | doy: 4, // The week that contains Jan 4th is the first week of the year. 10 | }, 11 | buttonText: { 12 | prev: 'Prec', 13 | next: 'Succ', 14 | today: 'Oggi', 15 | year: 'Anno', 16 | month: 'Mese', 17 | week: 'Settimana', 18 | day: 'Giorno', 19 | list: 'Agenda', 20 | }, 21 | weekText: 'Sm', 22 | allDayText: 'Tutto il giorno', 23 | moreLinkText(n) { 24 | return '+altri ' + n; 25 | }, 26 | noEventsText: 'Non ci sono eventi da visualizzare', 27 | }; 28 | 29 | exports["default"] = l40; 30 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/sk.cjs: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | Object.defineProperty(exports, '__esModule', { value: true }); 4 | 5 | var l62 = { 6 | code: 'sk', 7 | week: { 8 | dow: 1, 9 | doy: 4, // The week that contains Jan 4th is the first week of the year. 10 | }, 11 | buttonText: { 12 | prev: 'Predchádzajúci', 13 | next: 'Nasledujúci', 14 | today: 'Dnes', 15 | year: 'Rok', 16 | month: 'Mesiac', 17 | week: 'Týždeň', 18 | day: 'Deň', 19 | list: 'Rozvrh', 20 | }, 21 | weekText: 'Ty', 22 | allDayText: 'Celý deň', 23 | moreLinkText(n) { 24 | return '+ďalšie: ' + n; 25 | }, 26 | noEventsText: 'Žiadne akcie na zobrazenie', 27 | }; 28 | 29 | exports["default"] = l62; 30 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/sv.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !function(e){"use strict";var t={code:"sv",week:{dow:1,doy:4},buttonText:{prev:"Förra",next:"Nästa",today:"Idag",year:"År",month:"Månad",week:"Vecka",day:"Dag",list:"Program"},buttonHints:{prev:e=>"Föregående "+e.toLocaleLowerCase(),next:e=>"Nästa "+e.toLocaleLowerCase(),today:e=>("Program"===e?"Detta":"Denna")+" "+e.toLocaleLowerCase()},viewHint:"$0 vy",navLinkHint:"Gå till $0",moreLinkHint:e=>`Visa ytterligare ${e} händelse${1===e?"":"r"}`,weekText:"v.",weekTextLong:"Vecka",allDayText:"Heldag",moreLinkText:"till",noEventsText:"Inga händelser att visa",closeHint:"Stäng",timeHint:"Klockan",eventHint:"Händelse"};FullCalendar.globalLocales.push(t)}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/fr.cjs: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | Object.defineProperty(exports, '__esModule', { value: true }); 4 | 5 | var l31 = { 6 | code: 'fr', 7 | week: { 8 | dow: 1, 9 | doy: 4, // The week that contains Jan 4th is the first week of the year. 10 | }, 11 | buttonText: { 12 | prev: 'Précédent', 13 | next: 'Suivant', 14 | today: 'Aujourd\'hui', 15 | year: 'Année', 16 | month: 'Mois', 17 | week: 'Semaine', 18 | day: 'Jour', 19 | list: 'Planning', 20 | }, 21 | weekText: 'Sem.', 22 | weekTextLong: 'Semaine', 23 | allDayText: 'Toute la journée', 24 | moreLinkText: 'en plus', 25 | noEventsText: 'Aucun évènement à afficher', 26 | }; 27 | 28 | exports["default"] = l31; 29 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/hy-am.cjs: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | Object.defineProperty(exports, '__esModule', { value: true }); 4 | 5 | var l37 = { 6 | code: 'hy-am', 7 | week: { 8 | dow: 1, 9 | doy: 4, // The week that contains Jan 4th is the first week of the year. 10 | }, 11 | buttonText: { 12 | prev: 'Նախորդ', 13 | next: 'Հաջորդ', 14 | today: 'Այսօր', 15 | year: 'Տարի', 16 | month: 'Ամիս', 17 | week: 'Շաբաթ', 18 | day: 'Օր', 19 | list: 'Օրվա ցուցակ', 20 | }, 21 | weekText: 'Շաբ', 22 | allDayText: 'Ամբողջ օր', 23 | moreLinkText(n) { 24 | return '+ ևս ' + n; 25 | }, 26 | noEventsText: 'Բացակայում է իրադարձությունը ցուցադրելու', 27 | }; 28 | 29 | exports["default"] = l37; 30 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/ja.global.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | (function (index_js) { 7 | 'use strict'; 8 | 9 | var locale = { 10 | code: 'ja', 11 | buttonText: { 12 | prev: '前', 13 | next: '次', 14 | today: '今日', 15 | year: '年', 16 | month: '月', 17 | week: '週', 18 | day: '日', 19 | list: '予定リスト', 20 | }, 21 | weekText: '週', 22 | allDayText: '終日', 23 | moreLinkText(n) { 24 | return '他 ' + n + ' 件'; 25 | }, 26 | noEventsText: '表示する予定はありません', 27 | }; 28 | 29 | index_js.globalLocales.push(locale); 30 | 31 | })(FullCalendar); 32 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/uk.cjs: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | Object.defineProperty(exports, '__esModule', { value: true }); 4 | 5 | var l73 = { 6 | code: 'uk', 7 | week: { 8 | dow: 1, 9 | doy: 7, // The week that contains Jan 1st is the first week of the year. 10 | }, 11 | buttonText: { 12 | prev: 'Попередній', 13 | next: 'далі', 14 | today: 'Сьогодні', 15 | year: 'рік', 16 | month: 'Місяць', 17 | week: 'Тиждень', 18 | day: 'День', 19 | list: 'Порядок денний', 20 | }, 21 | weekText: 'Тиж', 22 | allDayText: 'Увесь день', 23 | moreLinkText(n) { 24 | return '+ще ' + n + '...'; 25 | }, 26 | noEventsText: 'Немає подій для відображення', 27 | }; 28 | 29 | exports["default"] = l73; 30 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/zh-cn.cjs: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | Object.defineProperty(exports, '__esModule', { value: true }); 4 | 5 | var l77 = { 6 | code: 'zh-cn', 7 | week: { 8 | // GB/T 7408-1994《数据元和交换格式·信息交换·日期和时间表示法》与ISO 8601:1988等效 9 | dow: 1, 10 | doy: 4, // The week that contains Jan 4th is the first week of the year. 11 | }, 12 | buttonText: { 13 | prev: '上月', 14 | next: '下月', 15 | today: '今天', 16 | year: '年', 17 | month: '月', 18 | week: '周', 19 | day: '日', 20 | list: '日程', 21 | }, 22 | weekText: '周', 23 | allDayText: '全天', 24 | moreLinkText(n) { 25 | return '另外 ' + n + ' 个'; 26 | }, 27 | noEventsText: '没有事件显示', 28 | }; 29 | 30 | exports["default"] = l77; 31 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/ms.cjs: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | Object.defineProperty(exports, '__esModule', { value: true }); 4 | 5 | var l51 = { 6 | code: 'ms', 7 | week: { 8 | dow: 1, 9 | doy: 7, // The week that contains Jan 1st is the first week of the year. 10 | }, 11 | buttonText: { 12 | prev: 'Sebelum', 13 | next: 'Selepas', 14 | today: 'hari ini', 15 | year: 'Tahun', 16 | month: 'Bulan', 17 | week: 'Minggu', 18 | day: 'Hari', 19 | list: 'Agenda', 20 | }, 21 | weekText: 'Mg', 22 | allDayText: 'Sepanjang hari', 23 | moreLinkText(n) { 24 | return 'masih ada ' + n + ' acara'; 25 | }, 26 | noEventsText: 'Tiada peristiwa untuk dipaparkan', 27 | }; 28 | 29 | exports["default"] = l51; 30 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/ta-in.cjs: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | Object.defineProperty(exports, '__esModule', { value: true }); 4 | 5 | var l69 = { 6 | code: 'ta-in', 7 | week: { 8 | dow: 1, 9 | doy: 4, // The week that contains Jan 4th is the first week of the year. 10 | }, 11 | buttonText: { 12 | prev: 'முந்தைய', 13 | next: 'அடுத்தது', 14 | today: 'இன்று', 15 | year: 'ஆண்டு', 16 | month: 'மாதம்', 17 | week: 'வாரம்', 18 | day: 'நாள்', 19 | list: 'தினசரி அட்டவணை', 20 | }, 21 | weekText: 'வாரம்', 22 | allDayText: 'நாள் முழுவதும்', 23 | moreLinkText(n) { 24 | return '+ மேலும் ' + n; 25 | }, 26 | noEventsText: 'காண்பிக்க நிகழ்வுகள் இல்லை', 27 | }; 28 | 29 | exports["default"] = l69; 30 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/he.global.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | (function (index_js) { 7 | 'use strict'; 8 | 9 | var locale = { 10 | code: 'he', 11 | direction: 'rtl', 12 | buttonText: { 13 | prev: 'הקודם', 14 | next: 'הבא', 15 | today: 'היום', 16 | year: 'שנה', 17 | month: 'חודש', 18 | week: 'שבוע', 19 | day: 'יום', 20 | list: 'סדר יום', 21 | }, 22 | allDayText: 'כל היום', 23 | moreLinkText: 'נוספים', 24 | noEventsText: 'אין אירועים להצגה', 25 | weekText: 'שבוע', 26 | }; 27 | 28 | index_js.globalLocales.push(locale); 29 | 30 | })(FullCalendar); 31 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/sm.global.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | (function (index_js) { 7 | 'use strict'; 8 | 9 | var locale = { 10 | code: 'sm', 11 | buttonText: { 12 | prev: 'Talu ai', 13 | next: 'Mulimuli atu', 14 | today: 'Aso nei', 15 | year: 'Tausaga', 16 | month: 'Masina', 17 | week: 'Vaiaso', 18 | day: 'Aso', 19 | list: 'Faasologa', 20 | }, 21 | weekText: 'Vaiaso', 22 | allDayText: 'Aso atoa', 23 | moreLinkText: 'sili atu', 24 | noEventsText: 'Leai ni mea na tutupu', 25 | }; 26 | 27 | index_js.globalLocales.push(locale); 28 | 29 | })(FullCalendar); 30 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/th.cjs: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | Object.defineProperty(exports, '__esModule', { value: true }); 4 | 5 | var l70 = { 6 | code: 'th', 7 | week: { 8 | dow: 1, 9 | doy: 4, // The week that contains Jan 4th is the first week of the year. 10 | }, 11 | buttonText: { 12 | prev: 'ก่อนหน้า', 13 | next: 'ถัดไป', 14 | prevYear: 'ปีก่อนหน้า', 15 | nextYear: 'ปีถัดไป', 16 | year: 'ปี', 17 | today: 'วันนี้', 18 | month: 'เดือน', 19 | week: 'สัปดาห์', 20 | day: 'วัน', 21 | list: 'กำหนดการ', 22 | }, 23 | weekText: 'สัปดาห์', 24 | allDayText: 'ตลอดวัน', 25 | moreLinkText: 'เพิ่มเติม', 26 | noEventsText: 'ไม่มีกิจกรรมที่จะแสดง', 27 | }; 28 | 29 | exports["default"] = l70; 30 | -------------------------------------------------------------------------------- /vendor/spatie/calendar-links/psalm.xml: -------------------------------------------------------------------------------- 1 | 2 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/fr-ca.global.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | (function (index_js) { 7 | 'use strict'; 8 | 9 | var locale = { 10 | code: 'fr', 11 | buttonText: { 12 | prev: 'Précédent', 13 | next: 'Suivant', 14 | today: 'Aujourd\'hui', 15 | year: 'Année', 16 | month: 'Mois', 17 | week: 'Semaine', 18 | day: 'Jour', 19 | list: 'Mon planning', 20 | }, 21 | weekText: 'Sem.', 22 | allDayText: 'Toute la journée', 23 | moreLinkText: 'en plus', 24 | noEventsText: 'Aucun évènement à afficher', 25 | }; 26 | 27 | index_js.globalLocales.push(locale); 28 | 29 | })(FullCalendar); 30 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/pt-br.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !function(e){"use strict";var a={code:"pt-br",buttonText:{prev:"Anterior",next:"Próximo",prevYear:"Ano anterior",nextYear:"Próximo ano",year:"Ano",today:"Hoje",month:"Mês",week:"Semana",day:"Dia",list:"Lista"},buttonHints:{prev:"$0 Anterior",next:"Próximo $0",today:e=>"Dia"===e?"Hoje":("Semana"===e?"Esta":"Este")+" "+e.toLocaleLowerCase()},viewHint:e=>"Visualizar "+("Semana"===e?"a":"o")+" "+e.toLocaleLowerCase(),weekText:"Sm",weekTextLong:"Semana",allDayText:"dia inteiro",moreLinkText:e=>"mais +"+e,moreLinkHint:e=>`Mostrar mais ${e} eventos`,noEventsText:"Não há eventos para mostrar",navLinkHint:"Ir para $0",closeHint:"Fechar",timeHint:"A hora",eventHint:"Evento"};FullCalendar.globalLocales.push(a)}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/en-au.global.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | (function (index_js) { 7 | 'use strict'; 8 | 9 | var locale = { 10 | code: 'en-au', 11 | week: { 12 | dow: 1, 13 | doy: 4, // The week that contains Jan 4th is the first week of the year. 14 | }, 15 | buttonHints: { 16 | prev: 'Previous $0', 17 | next: 'Next $0', 18 | today: 'This $0', 19 | }, 20 | viewHint: '$0 view', 21 | navLinkHint: 'Go to $0', 22 | moreLinkHint(eventCnt) { 23 | return `Show ${eventCnt} more event${eventCnt === 1 ? '' : 's'}`; 24 | }, 25 | }; 26 | 27 | index_js.globalLocales.push(locale); 28 | 29 | })(FullCalendar); 30 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/en-gb.global.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | (function (index_js) { 7 | 'use strict'; 8 | 9 | var locale = { 10 | code: 'en-gb', 11 | week: { 12 | dow: 1, 13 | doy: 4, // The week that contains Jan 4th is the first week of the year. 14 | }, 15 | buttonHints: { 16 | prev: 'Previous $0', 17 | next: 'Next $0', 18 | today: 'This $0', 19 | }, 20 | viewHint: '$0 view', 21 | navLinkHint: 'Go to $0', 22 | moreLinkHint(eventCnt) { 23 | return `Show ${eventCnt} more event${eventCnt === 1 ? '' : 's'}`; 24 | }, 25 | }; 26 | 27 | index_js.globalLocales.push(locale); 28 | 29 | })(FullCalendar); 30 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/en-nz.global.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | (function (index_js) { 7 | 'use strict'; 8 | 9 | var locale = { 10 | code: 'en-nz', 11 | week: { 12 | dow: 1, 13 | doy: 4, // The week that contains Jan 4th is the first week of the year. 14 | }, 15 | buttonHints: { 16 | prev: 'Previous $0', 17 | next: 'Next $0', 18 | today: 'This $0', 19 | }, 20 | viewHint: '$0 view', 21 | navLinkHint: 'Go to $0', 22 | moreLinkHint(eventCnt) { 23 | return `Show ${eventCnt} more event${eventCnt === 1 ? '' : 's'}`; 24 | }, 25 | }; 26 | 27 | index_js.globalLocales.push(locale); 28 | 29 | })(FullCalendar); 30 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/mk.global.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | (function (index_js) { 7 | 'use strict'; 8 | 9 | var locale = { 10 | code: 'mk', 11 | buttonText: { 12 | prev: 'претходно', 13 | next: 'следно', 14 | today: 'Денес', 15 | year: 'година', 16 | month: 'Месец', 17 | week: 'Недела', 18 | day: 'Ден', 19 | list: 'График', 20 | }, 21 | weekText: 'Сед', 22 | allDayText: 'Цел ден', 23 | moreLinkText(n) { 24 | return '+повеќе ' + n; 25 | }, 26 | noEventsText: 'Нема настани за прикажување', 27 | }; 28 | 29 | index_js.globalLocales.push(locale); 30 | 31 | })(FullCalendar); 32 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/daygrid/README.md: -------------------------------------------------------------------------------- 1 | 2 | # FullCalendar Day Grid Plugin 3 | 4 | Display events on a [month view](https://fullcalendar.io/docs/month-view) or ["day grid" view](https://fullcalendar.io/docs/daygrid-view) 5 | 6 | ## Installation 7 | 8 | Install the necessary packages: 9 | 10 | ```sh 11 | npm install @fullcalendar/core @fullcalendar/daygrid 12 | ``` 13 | 14 | ## Usage 15 | 16 | Instantiate a Calendar with the necessary plugin: 17 | 18 | ```js 19 | import { Calendar } from '@fullcalendar/core' 20 | import dayGridPlugin from '@fullcalendar/daygrid' 21 | 22 | const calendarEl = document.getElementById('calendar') 23 | const calendar = new Calendar(calendarEl, { 24 | plugins: [dayGridPlugin], 25 | initialView: 'dayGridMonth', 26 | events: [ 27 | { title: 'Meeting', start: new Date() } 28 | ] 29 | }) 30 | 31 | calendar.render() 32 | ``` 33 | -------------------------------------------------------------------------------- /vendor/autoload.php: -------------------------------------------------------------------------------- 1 | "+ 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)}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/de-at.global.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | !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)}(); -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/nl.global.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | (function (index_js) { 7 | 'use strict'; 8 | 9 | var locale = { 10 | code: 'nl', 11 | week: { 12 | dow: 1, 13 | doy: 4, // The week that contains Jan 4th is the first week of the year. 14 | }, 15 | buttonText: { 16 | prev: 'Vorige', 17 | next: 'Volgende', 18 | today: 'Vandaag', 19 | year: 'Jaar', 20 | month: 'Maand', 21 | week: 'Week', 22 | day: 'Dag', 23 | list: 'Lijst', 24 | }, 25 | allDayText: 'Hele dag', 26 | moreLinkText: 'extra', 27 | noEventsText: 'Geen evenementen om te laten zien', 28 | }; 29 | 30 | index_js.globalLocales.push(locale); 31 | 32 | })(FullCalendar); 33 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/si-lk.global.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | (function (index_js) { 7 | 'use strict'; 8 | 9 | var locale = { 10 | code: 'si-lk', 11 | week: { 12 | dow: 1, 13 | doy: 4, // The week that contains Jan 4th is the first week of the year. 14 | }, 15 | buttonText: { 16 | prev: 'පෙර', 17 | next: 'පසු', 18 | today: 'අද', 19 | year: 'අවුරුදු', 20 | month: 'මාසය', 21 | week: 'සතිය', 22 | day: 'දවස', 23 | list: 'ලැයිස්තුව', 24 | }, 25 | weekText: 'සති', 26 | allDayText: 'සියලු', 27 | moreLinkText: 'තවත්', 28 | noEventsText: 'මුකුත් නැත', 29 | }; 30 | 31 | index_js.globalLocales.push(locale); 32 | 33 | })(FullCalendar); 34 | -------------------------------------------------------------------------------- /assets/vendor/fullcalendar-6.x/core/locales/af.global.js: -------------------------------------------------------------------------------- 1 | /*! 2 | FullCalendar Core v6.1.17 3 | Docs & License: https://fullcalendar.io 4 | (c) 2024 Adam Shaw 5 | */ 6 | (function (index_js) { 7 | 'use strict'; 8 | 9 | var locale = { 10 | code: 'af', 11 | week: { 12 | dow: 1, 13 | doy: 4, // Die week wat die 4de Januarie bevat is die eerste week van die jaar. 14 | }, 15 | buttonText: { 16 | prev: 'Vorige', 17 | next: 'Volgende', 18 | today: 'Vandag', 19 | year: 'Jaar', 20 | month: 'Maand', 21 | week: 'Week', 22 | day: 'Dag', 23 | list: 'Agenda', 24 | }, 25 | allDayText: 'Heeldag', 26 | moreLinkText: 'Addisionele', 27 | noEventsText: 'Daar is geen gebeurtenisse nie', 28 | }; 29 | 30 | index_js.globalLocales.push(locale); 31 | 32 | })(FullCalendar); 33 | --------------------------------------------------------------------------------