misc: mark weekly recurrence choices for translation (#54966)

This commit is contained in:
Frédéric Péters 2021-06-18 08:25:39 +02:00
parent ff02bc7176
commit d28a54ebd4
1 changed files with 3 additions and 3 deletions

View File

@ -1189,9 +1189,9 @@ class Event(models.Model):
]
INTERVAL_CHOICES = [
(1, 'Every week'),
(2, 'Every two weeks'),
(3, 'Every three weeks'),
(1, _('Every week')),
(2, _('Every two weeks')),
(3, _('Every three weeks')),
]
agenda = models.ForeignKey(Agenda, on_delete=models.CASCADE)