From 0e405d232758bf726b6684c969d5877e7c5041d9 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Thu, 24 Sep 2020 10:57:13 +0200 Subject: [PATCH] Widget: Align wording with standalone calendar --- src/pretix/presale/views/widget.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pretix/presale/views/widget.py b/src/pretix/presale/views/widget.py index 48ae51b78..ccd200260 100644 --- a/src/pretix/presale/views/widget.py +++ b/src/pretix/presale/views/widget.py @@ -332,7 +332,7 @@ class WidgetAPIProductList(EventListMixin, View): availability['text'] = gettext('from %(start_date)s') % {'start_date': date_format(ev.presale_start, "SHORT_DATE_FORMAT")} else: availability['color'] = 'orange' - availability['text'] = gettext('Sale soon') + availability['text'] = gettext('Soon') return availability def _serialize_events(self, ebd):