From a1ec45daf6f5a330090cf0e73cba14e8f00dc355 Mon Sep 17 00:00:00 2001 From: Richard Schreiber Date: Tue, 20 Dec 2022 09:15:38 +0100 Subject: [PATCH] Fix addon typo (#2987) --- src/pretix/base/services/cart.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pretix/base/services/cart.py b/src/pretix/base/services/cart.py index 0d2ce77ac..3f7cb2c49 100644 --- a/src/pretix/base/services/cart.py +++ b/src/pretix/base/services/cart.py @@ -140,7 +140,7 @@ error_messages = { 'addon_min_count': _('You need to select at least %(min)s add-ons from the category %(cat)s for the ' 'product %(base)s.'), 'addon_no_multi': _('You can select every add-ons from the category %(cat)s for the product %(base)s at most once.'), - 'addon_only': _('One of the products you selected can only be bought as an add-on to another project.'), + 'addon_only': _('One of the products you selected can only be bought as an add-on to another product.'), 'bundled_only': _('One of the products you selected can only be bought part of a bundle.'), 'seat_required': _('You need to select a specific seat.'), 'seat_invalid': _('Please select a valid seat.'),