This commit is contained in:
bkfox
2022-10-08 13:46:30 +02:00
parent da42ea4bcf
commit ec844297ee
7 changed files with 130 additions and 111 deletions

View File

@ -196,7 +196,7 @@ class Diffusion(BaseRerun):
verbose_name = _('Diffusion')
verbose_name_plural = _('Diffusions')
permissions = (
('programming', _('edit the diffusion\'s planification')),
('programming', _('edit the diffusions\' planification')),
)
def __str__(self):

View File

@ -277,7 +277,7 @@ class Schedule(BaseRerun):
'last': _('last {day} of the month'),
'first_and_third': _('1st and 3rd {day} of the month'),
'second_and_fourth': _('2nd and 4th {day} of the month'),
'every': _('every {day}'),
'every': _('{day}'),
'one_on_two': _('one {day} on two'),
}[x]) for x, y in Frequency.__members__.items()],
)