From 166cc3efd5528f257fad172a2cf277ca27f799ee Mon Sep 17 00:00:00 2001 From: Commander1024 Date: Thu, 16 Jul 2026 17:02:29 +0200 Subject: [PATCH] =?UTF-8?q?Abbreviated=20ganzt=C3=A4gig.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- python_scripts/epaper_calendar_data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python_scripts/epaper_calendar_data.py b/python_scripts/epaper_calendar_data.py index 28f5aea..1adedb7 100644 --- a/python_scripts/epaper_calendar_data.py +++ b/python_scripts/epaper_calendar_data.py @@ -20,7 +20,7 @@ def compact_event(event, calendar_name): start = event.get("start", "") all_day = "T" not in start end = event.get("end", "") - time = "ganztägig" if all_day else start[11:16] + time = "ganzt." if all_day else start[11:16] end_time = "" if all_day or "T" not in end else end[11:16] location = (event.get("location") or "").split("\n")[0].strip()