-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.php
37 lines (35 loc) · 1.19 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?php
load([
'Mzur\\KirbyCalendar\\Calendar' => 'Calendar.php',
'Mzur\\KirbyCalendar\\Event' => 'Event.php',
], __DIR__);
Kirby::plugin('mzur/kirby-calendar', [
'snippets' => [
'calendar-div' => __DIR__.'/snippets/calendar-div.php',
'calendar-ical' => __DIR__.'/snippets/calendar-ical.php',
'calendar-table' => __DIR__.'/snippets/calendar-table.php',
'calendar-teaser' => __DIR__.'/snippets/calendar-teaser.php',
],
'translations' => [
'de' => [
'calendar-full-time-format' => 'dd.MM.yyyy HH:mm',
'calendar-month-format' => 'MMMM yyyy',
'calendar-no-entry' => 'Zur Zeit gibt es keine Events.',
'calendar-time-format' => 'HH:mm',
'date' => 'Datum',
'description' => 'Beschreibung',
'title' => 'Titel',
'to' => 'bis',
],
'en' => [
'calendar-full-time-format' => 'MM/dd/yyyy hh:mma',
'calendar-month-format' => 'MMMM yyyy',
'calendar-no-entry' => 'There currently are no events.',
'calendar-time-format' => 'hh:mma',
'date' => 'Date',
'description' => 'Description',
'title' => 'Title',
'to' => 'to',
],
],
]);