Compare commits
No commits in common. "34ec6125c54c57253acf9a961b0b95941964037b" and "93d35f5cc01a076df3a89f26f5414ad01f906d2a" have entirely different histories.
34ec6125c5
...
93d35f5cc0
9 changed files with 7 additions and 88 deletions
|
@ -6,13 +6,6 @@
|
||||||
"common.timezone_shift": "Zeitzonen-Verschiebung",
|
"common.timezone_shift": "Zeitzonen-Verschiebung",
|
||||||
"common.date": "Datum",
|
"common.date": "Datum",
|
||||||
"common.time": "Uhrzeit",
|
"common.time": "Uhrzeit",
|
||||||
"common.weekday.monday": "Mo",
|
|
||||||
"common.weekday.tuesday": "Di",
|
|
||||||
"common.weekday.wednesday": "Mi",
|
|
||||||
"common.weekday.thursday": "Do",
|
|
||||||
"common.weekday.friday": "Fr",
|
|
||||||
"common.weekday.saturday": "Sa",
|
|
||||||
"common.weekday.sunday": "So",
|
|
||||||
"access_level.none": "nichts",
|
"access_level.none": "nichts",
|
||||||
"access_level.view": "nur lesen",
|
"access_level.view": "nur lesen",
|
||||||
"access_level.edit": "lesen und bearbeiten",
|
"access_level.edit": "lesen und bearbeiten",
|
||||||
|
@ -22,7 +15,6 @@
|
||||||
"event.begin": "Anfang",
|
"event.begin": "Anfang",
|
||||||
"event.end": "Ende",
|
"event.end": "Ende",
|
||||||
"event.location": "Ort",
|
"event.location": "Ort",
|
||||||
"event.link": "Netz-Verweis",
|
|
||||||
"event.description": "Beschreibung",
|
"event.description": "Beschreibung",
|
||||||
"resource.kind": "Art",
|
"resource.kind": "Art",
|
||||||
"resource.kinds.local.title": "lokal",
|
"resource.kinds.local.title": "lokal",
|
||||||
|
|
|
@ -6,13 +6,6 @@
|
||||||
"common.timezone_shift": "Timezone shift",
|
"common.timezone_shift": "Timezone shift",
|
||||||
"common.date": "date",
|
"common.date": "date",
|
||||||
"common.time": "time",
|
"common.time": "time",
|
||||||
"common.weekday.monday": "Mon",
|
|
||||||
"common.weekday.tuesday": "Tue",
|
|
||||||
"common.weekday.wednesday": "Wed",
|
|
||||||
"common.weekday.thursday": "Thu",
|
|
||||||
"common.weekday.friday": "Fri",
|
|
||||||
"common.weekday.saturday": "Sat",
|
|
||||||
"common.weekday.sunday": "Sun",
|
|
||||||
"access_level.none": "none",
|
"access_level.none": "none",
|
||||||
"access_level.view": "read only",
|
"access_level.view": "read only",
|
||||||
"access_level.edit": "read and write",
|
"access_level.edit": "read and write",
|
||||||
|
@ -22,7 +15,6 @@
|
||||||
"event.begin": "begin",
|
"event.begin": "begin",
|
||||||
"event.end": "end",
|
"event.end": "end",
|
||||||
"event.location": "location",
|
"event.location": "location",
|
||||||
"event.link": "link",
|
|
||||||
"event.description": "description",
|
"event.description": "description",
|
||||||
"resource.kind": "kind",
|
"resource.kind": "kind",
|
||||||
"resource.kinds.local.title": "local",
|
"resource.kinds.local.title": "local",
|
||||||
|
|
|
@ -46,11 +46,6 @@ namespace _zeitbild.frontend_web.type
|
||||||
|
|
|
|
||||||
string
|
string
|
||||||
);
|
);
|
||||||
link : (
|
|
||||||
null
|
|
||||||
|
|
|
||||||
string
|
|
||||||
);
|
|
||||||
description : (
|
description : (
|
||||||
null
|
null
|
||||||
|
|
|
|
||||||
|
|
|
@ -70,7 +70,6 @@ namespace _zeitbild.frontend_web.pages
|
||||||
begin : lib_plankton.pit.type_datetime;
|
begin : lib_plankton.pit.type_datetime;
|
||||||
end : (null | lib_plankton.pit.type_datetime);
|
end : (null | lib_plankton.pit.type_datetime);
|
||||||
location : (null | string);
|
location : (null | string);
|
||||||
link : (null | string);
|
|
||||||
description : (null | string);
|
description : (null | string);
|
||||||
}
|
}
|
||||||
> = new lib_plankton.zoo_form.class_form<
|
> = new lib_plankton.zoo_form.class_form<
|
||||||
|
@ -84,7 +83,6 @@ namespace _zeitbild.frontend_web.pages
|
||||||
begin : lib_plankton.pit.type_datetime;
|
begin : lib_plankton.pit.type_datetime;
|
||||||
end : (null | lib_plankton.pit.type_datetime);
|
end : (null | lib_plankton.pit.type_datetime);
|
||||||
location : (null | string);
|
location : (null | string);
|
||||||
link : (null | string);
|
|
||||||
description : (null | string);
|
description : (null | string);
|
||||||
}
|
}
|
||||||
>(
|
>(
|
||||||
|
@ -94,7 +92,6 @@ namespace _zeitbild.frontend_web.pages
|
||||||
"begin": value.event_object.begin,
|
"begin": value.event_object.begin,
|
||||||
"end": value.event_object.end,
|
"end": value.event_object.end,
|
||||||
"location": value.event_object.location,
|
"location": value.event_object.location,
|
||||||
"link": value.event_object.link,
|
|
||||||
"description": value.event_object.description,
|
"description": value.event_object.description,
|
||||||
}),
|
}),
|
||||||
(representation) => ({
|
(representation) => ({
|
||||||
|
@ -104,7 +101,6 @@ namespace _zeitbild.frontend_web.pages
|
||||||
"begin": representation.begin,
|
"begin": representation.begin,
|
||||||
"end": representation.end,
|
"end": representation.end,
|
||||||
"location": representation.location,
|
"location": representation.location,
|
||||||
"link": representation.link,
|
|
||||||
"description": representation.description,
|
"description": representation.description,
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
|
@ -170,14 +166,6 @@ namespace _zeitbild.frontend_web.pages
|
||||||
),
|
),
|
||||||
"label": lib_plankton.translate.get("event.location")
|
"label": lib_plankton.translate.get("event.location")
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "link",
|
|
||||||
"input": new lib_plankton.zoo_input.class_input_soft<string>(
|
|
||||||
new lib_plankton.zoo_input.class_input_text(
|
|
||||||
)
|
|
||||||
),
|
|
||||||
"label": lib_plankton.translate.get("event.link")
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "description",
|
"name": "description",
|
||||||
"input": new lib_plankton.zoo_input.class_input_soft<string>(
|
"input": new lib_plankton.zoo_input.class_input_soft<string>(
|
||||||
|
@ -235,7 +223,6 @@ namespace _zeitbild.frontend_web.pages
|
||||||
},
|
},
|
||||||
"end": null,
|
"end": null,
|
||||||
"location": null,
|
"location": null,
|
||||||
"link": null,
|
|
||||||
"description": null,
|
"description": null,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -30,7 +30,6 @@ namespace _zeitbild.frontend_web.pages
|
||||||
begin : lib_plankton.pit.type_datetime;
|
begin : lib_plankton.pit.type_datetime;
|
||||||
end : (null | lib_plankton.pit.type_datetime);
|
end : (null | lib_plankton.pit.type_datetime);
|
||||||
location : (null | string);
|
location : (null | string);
|
||||||
link : (null | string);
|
|
||||||
description : (null | string);
|
description : (null | string);
|
||||||
}
|
}
|
||||||
> = new lib_plankton.zoo_form.class_form<
|
> = new lib_plankton.zoo_form.class_form<
|
||||||
|
@ -40,7 +39,6 @@ namespace _zeitbild.frontend_web.pages
|
||||||
begin : lib_plankton.pit.type_datetime;
|
begin : lib_plankton.pit.type_datetime;
|
||||||
end : (null | lib_plankton.pit.type_datetime);
|
end : (null | lib_plankton.pit.type_datetime);
|
||||||
location : (null | string);
|
location : (null | string);
|
||||||
link : (null | string);
|
|
||||||
description : (null | string);
|
description : (null | string);
|
||||||
}
|
}
|
||||||
>(
|
>(
|
||||||
|
@ -49,7 +47,6 @@ namespace _zeitbild.frontend_web.pages
|
||||||
"begin": value.begin,
|
"begin": value.begin,
|
||||||
"end": value.end,
|
"end": value.end,
|
||||||
"location": value.location,
|
"location": value.location,
|
||||||
"link": value.link,
|
|
||||||
"description": value.description,
|
"description": value.description,
|
||||||
}),
|
}),
|
||||||
(representation) => ({
|
(representation) => ({
|
||||||
|
@ -57,7 +54,6 @@ namespace _zeitbild.frontend_web.pages
|
||||||
"begin": representation.begin,
|
"begin": representation.begin,
|
||||||
"end": representation.end,
|
"end": representation.end,
|
||||||
"location": representation.location,
|
"location": representation.location,
|
||||||
"link": representation.link,
|
|
||||||
"description": representation.description,
|
"description": representation.description,
|
||||||
}),
|
}),
|
||||||
new lib_plankton.zoo_input.class_input_group<any>(
|
new lib_plankton.zoo_input.class_input_group<any>(
|
||||||
|
@ -100,14 +96,6 @@ namespace _zeitbild.frontend_web.pages
|
||||||
),
|
),
|
||||||
"label": lib_plankton.translate.get("event.location")
|
"label": lib_plankton.translate.get("event.location")
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "link",
|
|
||||||
"input": new lib_plankton.zoo_input.class_input_soft<string>(
|
|
||||||
new lib_plankton.zoo_input.class_input_text(
|
|
||||||
)
|
|
||||||
),
|
|
||||||
"label": lib_plankton.translate.get("event.link")
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "description",
|
"name": "description",
|
||||||
"input": new lib_plankton.zoo_input.class_input_soft<string>(
|
"input": new lib_plankton.zoo_input.class_input_soft<string>(
|
||||||
|
|
|
@ -144,14 +144,6 @@ namespace _zeitbild.frontend_web.widgets.listview
|
||||||
:
|
:
|
||||||
entry.event_object.location
|
entry.event_object.location
|
||||||
),
|
),
|
||||||
"label_link": lib_plankton.translate.get("event.link"),
|
|
||||||
"link": (
|
|
||||||
(entry.event_object.link === null)
|
|
||||||
?
|
|
||||||
"?"
|
|
||||||
:
|
|
||||||
entry.event_object.link
|
|
||||||
),
|
|
||||||
"label_description": lib_plankton.translate.get("event.description"),
|
"label_description": lib_plankton.translate.get("event.description"),
|
||||||
"description": (
|
"description": (
|
||||||
(entry.event_object.description === null)
|
(entry.event_object.description === null)
|
||||||
|
|
|
@ -7,10 +7,6 @@
|
||||||
<span class="listview-entry-label">{{label_location}}</span>
|
<span class="listview-entry-label">{{label_location}}</span>
|
||||||
<span class="listview-entry-value">{{location}}</span>
|
<span class="listview-entry-value">{{location}}</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="listview-entry-field listview-entry-link">
|
|
||||||
<span class="listview-entry-label">{{label_link}}</span>
|
|
||||||
<a class="listview-entry-value" href="{{link}}" target="_blank">{{link}}</a>
|
|
||||||
</div>
|
|
||||||
<!--
|
<!--
|
||||||
<div class="listview-entry-field listview-entry-description">
|
<div class="listview-entry-field listview-entry-description">
|
||||||
<span class="listview-entry-label">{{label_description}}</span>
|
<span class="listview-entry-label">{{label_description}}</span>
|
||||||
|
|
|
@ -208,22 +208,6 @@ namespace _zeitbild.frontend_web.widgets.weekview
|
||||||
:
|
:
|
||||||
""
|
""
|
||||||
)
|
)
|
||||||
+
|
|
||||||
(
|
|
||||||
(event_object.link !== null)
|
|
||||||
?
|
|
||||||
(
|
|
||||||
lib_plankton.string.coin(
|
|
||||||
"{{label}}: {{value}}\n",
|
|
||||||
{
|
|
||||||
"label": lib_plankton.translate.get("event.link"),
|
|
||||||
"value": event_object.link,
|
|
||||||
}
|
|
||||||
)
|
|
||||||
)
|
|
||||||
:
|
|
||||||
""
|
|
||||||
)
|
|
||||||
/*
|
/*
|
||||||
+
|
+
|
||||||
(
|
(
|
||||||
|
@ -876,13 +860,6 @@ namespace _zeitbild.frontend_web.widgets.weekview
|
||||||
"label_control_week": lib_plankton.translate.get("widget.weekview.controls.week"),
|
"label_control_week": lib_plankton.translate.get("widget.weekview.controls.week"),
|
||||||
"label_control_count": lib_plankton.translate.get("widget.weekview.controls.count"),
|
"label_control_count": lib_plankton.translate.get("widget.weekview.controls.count"),
|
||||||
"label_control_apply": lib_plankton.translate.get("widget.weekview.controls.apply"),
|
"label_control_apply": lib_plankton.translate.get("widget.weekview.controls.apply"),
|
||||||
"label_weekday_monday": lib_plankton.translate.get("common.weekday.monday"),
|
|
||||||
"label_weekday_tuesday": lib_plankton.translate.get("common.weekday.tuesday"),
|
|
||||||
"label_weekday_wednesday": lib_plankton.translate.get("common.weekday.wednesday"),
|
|
||||||
"label_weekday_thursday": lib_plankton.translate.get("common.weekday.thursday"),
|
|
||||||
"label_weekday_friday": lib_plankton.translate.get("common.weekday.friday"),
|
|
||||||
"label_weekday_saturday": lib_plankton.translate.get("common.weekday.saturday"),
|
|
||||||
"label_weekday_sunday": lib_plankton.translate.get("common.weekday.sunday"),
|
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
this.container = target_element.querySelector(".weekview");
|
this.container = target_element.querySelector(".weekview");
|
||||||
|
|
|
@ -19,13 +19,13 @@
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="calendar-cell"></th>
|
<th class="calendar-cell"></th>
|
||||||
<th class="calendar-cell calendar-cell-day">{{label_weekday_monday}}</th>
|
<th class="calendar-cell calendar-cell-day">Mo</th>
|
||||||
<th class="calendar-cell calendar-cell-day">{{label_weekday_tuesday}}</th>
|
<th class="calendar-cell calendar-cell-day">Di</th>
|
||||||
<th class="calendar-cell calendar-cell-day">{{label_weekday_wednesday}}</th>
|
<th class="calendar-cell calendar-cell-day">Mi</th>
|
||||||
<th class="calendar-cell calendar-cell-day">{{label_weekday_thursday}}</th>
|
<th class="calendar-cell calendar-cell-day">Do</th>
|
||||||
<th class="calendar-cell calendar-cell-day">{{label_weekday_friday}}</th>
|
<th class="calendar-cell calendar-cell-day">Fr</th>
|
||||||
<th class="calendar-cell calendar-cell-day">{{label_weekday_saturday}}</th>
|
<th class="calendar-cell calendar-cell-day">Sa</th>
|
||||||
<th class="calendar-cell calendar-cell-day">{{label_weekday_sunday}}</th>
|
<th class="calendar-cell calendar-cell-day">So</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
|
|
Loading…
Add table
Reference in a new issue