From 69f91e54e6a25ee9dbec6e418e21042872135f16 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Wed, 6 Apr 2022 16:43:52 +0200 Subject: [PATCH] Make error message about tax rules and gift cards easier to understand --- src/pretix/control/forms/item.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pretix/control/forms/item.py b/src/pretix/control/forms/item.py index b3f0ac5f5..b39f8b68e 100644 --- a/src/pretix/control/forms/item.py +++ b/src/pretix/control/forms/item.py @@ -566,7 +566,7 @@ class ItemUpdateForm(I18nModelForm): if d['tax_rule'] and d['tax_rule'].rate > 0: self.add_error( 'tax_rule', - _("Gift card products should not be associated with non-zero tax rates since sales tax will be applied when the gift card is redeemed.") + _("Gift card products should use a tax rule with a rate of 0% since sales tax will be applied when the gift card is redeemed.") ) if d['admission']: self.add_error(