From e9e743f3120dba375d03543adecc533be8728dc4 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Thu, 5 Jan 2017 12:20:18 +0100 Subject: [PATCH] Add more log texts --- src/pretix/control/logdisplay.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/pretix/control/logdisplay.py b/src/pretix/control/logdisplay.py index df303c59f4..7ad27cb93c 100644 --- a/src/pretix/control/logdisplay.py +++ b/src/pretix/control/logdisplay.py @@ -109,6 +109,10 @@ def pretixcontrol_logentry_display(sender: Event, logentry: LogEntry, **kwargs): 'pretix.event.plugins.disabled': _('A plugin has been disabled.'), 'pretix.event.live.activated': _('The shop has been taken live.'), 'pretix.event.live.deactivated': _('The shop has been taken offline.'), + 'pretix.event.changed': _('The event settings have been changed.'), + 'pretix.event.question.option.added': _('An answer option has been added to the question.'), + 'pretix.event.question.option.deleted': _('An answer option has been removed from the question.'), + 'pretix.event.question.option.changed': _('An answer option has been changed.'), } data = json.loads(logentry.data)