From 643b6178a49177ba1a24e5a19d622cd45f09f3b9 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Sat, 1 Feb 2025 09:35:38 +0100 Subject: [PATCH] Change wording for "show_dates_on_frontpage" setting --- src/pretix/base/settings.py | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/src/pretix/base/settings.py b/src/pretix/base/settings.py index 5b48b75de..29154dfe7 100644 --- a/src/pretix/base/settings.py +++ b/src/pretix/base/settings.py @@ -1308,10 +1308,13 @@ DEFAULTS = { 'serializer_class': serializers.BooleanField, 'form_class': forms.BooleanField, 'form_kwargs': dict( - label=_("Show event times and dates on the ticket shop"), - help_text=_("If disabled, no date or time will be shown on the ticket shop's front page. This settings " - "also affects a few other locations, however it should not be expected that the date of the " - "event is shown nowhere to users."), + label=_("This shop represents an event"), + help_text=_( + "Uncheck this box if you are only selling something that has no specific date, such as gift cards or a " + "ticket that can be used any time. The system will then stop showing the event date in some places like " + "the event start page. Note that pretix still is a system built around events and the date may still " + "show up in other places." + ), ) }, 'show_date_to': {