Add a missing translation for the filter description

This commit is contained in:
2023-12-18 17:04:16 +01:00
parent 138a537d2b
commit d2a31de1be
2 changed files with 2 additions and 1 deletions

View File

@@ -75,7 +75,7 @@ final readonly class WithParticipationBetweenDatesFilter implements FilterInterf
public function describeAction($data, $format = 'string')
{
return ['Filtered by participations during period: between %dateafter% and %datebefore%', [
return ['export.filter.person.with_participation_between_dates.Filtered by participations during period: between %dateafter% and %datebefore%', [
'%dateafter%' => $this->rollingDateConverter->convert($data['date_after'])->format('d-m-Y'),
'%datebefore%' => $this->rollingDateConverter->convert($data['date_before'])->format('d-m-Y'),
]];