Fix typo in error message

This commit is contained in:
Raphael Michel
2023-10-18 10:57:31 +02:00
parent 759aa5a8ea
commit 158d480bb3

View File

@@ -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
)