batch replacing ', ou' in filters

This commit is contained in:
Mathieu Jaumotte 2022-10-18 15:25:43 +02:00
parent 93713f2ac2
commit a7a921ee4d
22 changed files with 22 additions and 22 deletions

View File

@ -62,7 +62,7 @@ class ByCreatorFilter implements FilterInterface
} }
return ['Filtered activity by creator: only %users%', [ return ['Filtered activity by creator: only %users%', [
'%users%' => implode(', ou ', $users), '%users%' => implode(', ', $users),
]]; ]];
} }

View File

@ -72,7 +72,7 @@ class BySocialActionFilter implements FilterInterface
} }
return ['Filtered activity by linked socialaction: only %actions%', [ return ['Filtered activity by linked socialaction: only %actions%', [
'%actions%' => implode(', ou ', $actions), '%actions%' => implode(', ', $actions),
]]; ]];
} }

View File

@ -72,7 +72,7 @@ class BySocialIssueFilter implements FilterInterface
} }
return ['Filtered activity by linked socialissue: only %issues%', [ return ['Filtered activity by linked socialissue: only %issues%', [
'%issues%' => implode(', ou ', $issues), '%issues%' => implode(', ', $issues),
]]; ]];
} }

View File

@ -77,7 +77,7 @@ class LocationTypeFilter implements FilterInterface
} }
return ['Filtered activity by locationtype: only %types%', [ return ['Filtered activity by locationtype: only %types%', [
'%types%' => implode(', ou ', $types), '%types%' => implode(', ', $types),
]]; ]];
} }

View File

@ -71,7 +71,7 @@ class UserFilter implements FilterInterface
} }
return ['Filtered activity by user: only %users%', [ return ['Filtered activity by user: only %users%', [
'%users%' => implode(', ou ', $users), '%users%' => implode(', ', $users),
]]; ]];
} }

View File

@ -85,7 +85,7 @@ class UserScopeFilter implements FilterInterface
} }
return ['Filtered activity by userscope: only %scopes%', [ return ['Filtered activity by userscope: only %scopes%', [
'%scopes%' => implode(', ou ', $scopes), '%scopes%' => implode(', ', $scopes),
]]; ]];
} }

View File

@ -91,7 +91,7 @@ class ActivityTypeFilter implements ExportElementValidatedInterface, FilterInter
); );
return ['Filtered by activity type: only %list%', [ return ['Filtered by activity type: only %list%', [
'%list%' => implode(', ou ', $reasonsNames), '%list%' => implode(', ', $reasonsNames),
]]; ]];
} }

View File

@ -76,7 +76,7 @@ class AgentFilter implements FilterInterface
return [ return [
'Filtered by agent: only %agents%', [ 'Filtered by agent: only %agents%', [
'%agents' => implode(', ou ', $users), '%agents' => implode(', ', $users),
], ]; ], ];
} }

View File

@ -90,7 +90,7 @@ class JobFilter implements FilterInterface
} }
return ['Filtered by agent job: only %jobs%', [ return ['Filtered by agent job: only %jobs%', [
'%jobs%' => implode(', ou ', $userJobs), '%jobs%' => implode(', ', $userJobs),
]]; ]];
} }

View File

@ -90,7 +90,7 @@ class ScopeFilter implements FilterInterface
} }
return ['Filtered by agent scope: only %scopes%', [ return ['Filtered by agent scope: only %scopes%', [
'%scopes%' => implode(', ou ', $scopes), '%scopes%' => implode(', ', $scopes),
]]; ]];
} }

View File

@ -63,7 +63,7 @@ class AdministrativeLocationFilter implements FilterInterface
} }
return ['Filtered by administratives locations: only %locations%', [ return ['Filtered by administratives locations: only %locations%', [
'%locations%' => implode(', ou ', $locations), '%locations%' => implode(', ', $locations),
]]; ]];
} }

View File

@ -77,7 +77,7 @@ class ClosingMotiveFilter implements FilterInterface
return [ return [
'Filtered by closingmotive: only %closingmotives%', [ 'Filtered by closingmotive: only %closingmotives%', [
'%closingmotives%' => implode(', ou ', $motives), '%closingmotives%' => implode(', ', $motives),
], ]; ], ];
} }

View File

@ -87,7 +87,7 @@ class EvaluationFilter implements FilterInterface
} }
return ['Filtered by evaluations: only %evals%', [ return ['Filtered by evaluations: only %evals%', [
'%evals%' => implode(', ou ', $evaluations), '%evals%' => implode(', ', $evaluations),
]]; ]];
} }

View File

@ -76,7 +76,7 @@ class OriginFilter implements FilterInterface
} }
return ['Filtered by origins: only %origins%', [ return ['Filtered by origins: only %origins%', [
'%origins%' => implode(', ou ', $origins), '%origins%' => implode(', ', $origins),
]]; ]];
} }

View File

@ -89,7 +89,7 @@ class ReferrerFilter implements FilterInterface
return [ return [
'Filtered by referrer: only %referrers%', [ 'Filtered by referrer: only %referrers%', [
'%referrers' => implode(', ou ', $users), '%referrers' => implode(', ', $users),
], ]; ], ];
} }

View File

@ -84,7 +84,7 @@ class SocialActionFilter implements FilterInterface
} }
return ['Filtered by socialactions: only %socialactions%', [ return ['Filtered by socialactions: only %socialactions%', [
'%socialactions%' => implode(', ou ', $actions), '%socialactions%' => implode(', ', $actions),
]]; ]];
} }

View File

@ -89,7 +89,7 @@ class SocialIssueFilter implements FilterInterface
return [ return [
'Filtered by socialissues: only %socialissues%', [ 'Filtered by socialissues: only %socialissues%', [
'%socialissues%' => implode(', ou ', $issues), '%socialissues%' => implode(', ', $issues),
], ]; ], ];
} }

View File

@ -76,7 +76,7 @@ final class EvaluationTypeFilter implements FilterInterface
} }
return ['Filtered by evaluation type: only %evals%', [ return ['Filtered by evaluation type: only %evals%', [
'%evals%' => implode(', ou ', $evals), '%evals%' => implode(', ', $evals),
]]; ]];
} }

View File

@ -95,7 +95,7 @@ class CompositionFilter implements FilterInterface
} }
return ['Filtered by composition: only %compositions% on %ondate%', [ return ['Filtered by composition: only %compositions% on %ondate%', [
'%compositions%' => implode(', ou ', $compositions), '%compositions%' => implode(', ', $compositions),
'%ondate%' => $data['on_date']->format('d-m-Y'), '%ondate%' => $data['on_date']->format('d-m-Y'),
]]; ]];
} }

View File

@ -90,7 +90,7 @@ class JobFilter implements FilterInterface
} }
return ['Filtered by treating agent job: only %jobs%', [ return ['Filtered by treating agent job: only %jobs%', [
'%jobs%' => implode(', ou ', $userjobs), '%jobs%' => implode(', ', $userjobs),
]]; ]];
} }

View File

@ -81,7 +81,7 @@ class ReferrerFilter implements FilterInterface
return [ return [
'Filtered by treating agent: only %agents%', [ 'Filtered by treating agent: only %agents%', [
'%agents' => implode(', ou ', $users), '%agents' => implode(', ', $users),
], ]; ], ];
} }

View File

@ -90,7 +90,7 @@ class ScopeFilter implements FilterInterface
} }
return ['Filtered by treating agent scope: only %scopes%', [ return ['Filtered by treating agent scope: only %scopes%', [
'%scopes%' => implode(', ou ', $scopes), '%scopes%' => implode(', ', $scopes),
]]; ]];
} }