From d42c6f9b72adc06e8b084167b38fecbbb9ff4584 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Tue, 18 Nov 2025 14:42:29 +0100 Subject: [PATCH] Open Fix a missing log entry type (fixes #5570) --- src/pretix/control/logdisplay.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pretix/control/logdisplay.py b/src/pretix/control/logdisplay.py index 6c4a561175..28484710a7 100644 --- a/src/pretix/control/logdisplay.py +++ b/src/pretix/control/logdisplay.py @@ -582,6 +582,7 @@ class CoreOrderLogEntryType(OrderLogEntryType): 'The voucher has been set to expire because the recipient removed themselves from the waiting list.'), 'pretix.voucher.changed': _('The voucher has been changed.'), 'pretix.voucher.deleted': _('The voucher has been deleted.'), + 'pretix.voucher.carts.deleted': _('Cart positions including the voucher have been deleted.'), 'pretix.voucher.added.waitinglist': _('The voucher has been assigned to {email} through the waiting list.'), }) class CoreVoucherLogEntryType(VoucherLogEntryType):