Replace phrase "presale period" with "booking period"

This commit is contained in:
Raphael Michel
2022-10-11 11:33:45 +02:00
parent f7a4b66da1
commit 9da68645da
77 changed files with 23134 additions and 22070 deletions

View File

@@ -95,11 +95,11 @@ class WaitingView(EventViewMixin, FormView):
return redirect(self.get_index_url())
if self.request.event.presale_has_ended:
messages.error(request, _("The presale period for this event is over."))
messages.error(request, _("The booking period for this event is over."))
return redirect(self.get_index_url())
if not self.request.event.presale_is_running:
messages.error(request, _("The presale for this event has not yet started."))
messages.error(request, _("The booking period for this event has not yet started."))
return redirect(self.get_index_url())
self.subevent = None