From 158d480bb3fa8aa502528218ebcb9b252af3380a Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Wed, 18 Oct 2023 10:57:31 +0200 Subject: [PATCH] Fix typo in error message --- src/pretix/control/forms/vouchers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pretix/control/forms/vouchers.py b/src/pretix/control/forms/vouchers.py index 95cdefd399..0baeab2ce6 100644 --- a/src/pretix/control/forms/vouchers.py +++ b/src/pretix/control/forms/vouchers.py @@ -398,7 +398,7 @@ class VoucherBulkForm(VoucherForm): if len(c) < 5: raise ValidationError({ 'codes': [ - _('The voucher code {code} ist too short. Make sure all voucher codes are at least {min_length} characters long.').format( + _('The voucher code {code} is too short. Make sure all voucher codes are at least {min_length} characters long.').format( code=c, min_length=5 )