From 006d7324797619054e3c46bb3e578364feaddc0d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Fri, 12 May 2023 08:58:24 +0200 Subject: [PATCH] misc: pass string to gettext before variable interpolation (#77517) --- chrono/manager/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrono/manager/forms.py b/chrono/manager/forms.py index 04a035f5..59a0c8d7 100644 --- a/chrono/manager/forms.py +++ b/chrono/manager/forms.py @@ -834,7 +834,7 @@ class MeetingTypeForm(forms.ModelForm): and mt.duration == self.instance.duration ): raise ValidationError( - _('This meetingtype is used by a virtual agenda: %s' % virtual_agenda) + _('This meetingtype is used by a virtual agenda: %s') % virtual_agenda )