From 5764a055815f27a378527afeb4f2529acdfd00b9 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Thu, 13 May 2021 10:17:24 +0200 Subject: [PATCH] =?UTF-8?q?Clarify=20"Business=20customer"=20=E2=86=92=20"?= =?UTF-8?q?Business=20or=20institutional=20customer"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pretix/base/forms/widgets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pretix/base/forms/widgets.py b/src/pretix/base/forms/widgets.py index bcb552bb09..aeccc0aabf 100644 --- a/src/pretix/base/forms/widgets.py +++ b/src/pretix/base/forms/widgets.py @@ -189,7 +189,7 @@ class BusinessBooleanRadio(forms.RadioSelect): else: choices = ( ('individual', _('Individual customer')), - ('business', _('Business customer')), + ('business', _('Business or institutional customer')), ) super().__init__(attrs, choices)