From 0657ef2e0c72815012879d68e0e874a26ff09677 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Fri, 31 May 2019 10:50:10 +0200 Subject: [PATCH] Add missing log descriptions --- src/pretix/control/logdisplay.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/pretix/control/logdisplay.py b/src/pretix/control/logdisplay.py index 6a94ef479..727e5f98a 100644 --- a/src/pretix/control/logdisplay.py +++ b/src/pretix/control/logdisplay.py @@ -251,6 +251,9 @@ def pretixcontrol_logentry_display(sender: Event, logentry: LogEntry, **kwargs): 'pretix.event.item.addons.added': _('An add-on has been added to this product.'), 'pretix.event.item.addons.removed': _('An add-on has been removed from this product.'), 'pretix.event.item.addons.changed': _('An add-on has been changed on this product.'), + 'pretix.event.item.bundles.added': _('A bundled item has been added to this product.'), + 'pretix.event.item.bundles.removed': _('A bundled item has been removed from this product.'), + 'pretix.event.item.bundles.changed': _('A bundled item has been changed on this product.'), 'pretix.event.quota.added': _('The quota has been added.'), 'pretix.event.quota.deleted': _('The quota has been deleted.'), 'pretix.event.quota.changed': _('The quota has been changed.'),