mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-20 14:43:49 +00:00
fix translation with calendar exports
This commit is contained in:
@@ -74,6 +74,6 @@ final class AgentAggregator implements AggregatorInterface
|
||||
|
||||
public function getTitle(): string
|
||||
{
|
||||
return 'Group by agent';
|
||||
return 'Group appointments by agent';
|
||||
}
|
||||
}
|
@@ -50,7 +50,7 @@ class CancelReasonAggregator implements AggregatorInterface
|
||||
|
||||
public function getTitle(): string
|
||||
{
|
||||
return 'Group by cancel reason';
|
||||
return 'Group appointments by cancel reason';
|
||||
}
|
||||
|
||||
public function addRole()
|
||||
|
@@ -50,7 +50,7 @@ final class JobAggregator implements AggregatorInterface
|
||||
|
||||
public function getTitle(): string
|
||||
{
|
||||
return 'Group by agent job';
|
||||
return 'Group appointments by agent job';
|
||||
}
|
||||
|
||||
public function addRole()
|
||||
|
@@ -45,7 +45,7 @@ final class LocationAggregator implements AggregatorInterface
|
||||
|
||||
public function getTitle(): string
|
||||
{
|
||||
return 'Group by location';
|
||||
return 'Group appointments by location';
|
||||
}
|
||||
|
||||
public function addRole(): ?Role
|
||||
|
@@ -50,7 +50,7 @@ final class LocationTypeAggregator implements AggregatorInterface
|
||||
|
||||
public function getTitle(): string
|
||||
{
|
||||
return 'Group by location type';
|
||||
return 'Group appointments by location type';
|
||||
}
|
||||
|
||||
public function addRole()
|
||||
|
@@ -38,7 +38,7 @@ class MonthYearAggregator implements AggregatorInterface
|
||||
|
||||
public function getTitle(): string
|
||||
{
|
||||
return 'Group by month and year';
|
||||
return 'Group appointments by month and year';
|
||||
}
|
||||
|
||||
public function addRole(): ?Role
|
||||
|
@@ -50,7 +50,7 @@ final class ScopeAggregator implements AggregatorInterface
|
||||
|
||||
public function getTitle(): string
|
||||
{
|
||||
return 'Group by agent scope';
|
||||
return 'Group appointments by agent scope';
|
||||
}
|
||||
|
||||
public function addRole()
|
||||
|
@@ -35,7 +35,7 @@ class AgentFilter implements FilterInterface
|
||||
|
||||
public function getTitle(): string
|
||||
{
|
||||
return 'Filter by agent';
|
||||
return 'Filter appointments by agent';
|
||||
}
|
||||
|
||||
public function describeAction($data, $format = 'string'): array
|
||||
|
@@ -5,6 +5,7 @@ namespace Chill\CalendarBundle\Export\Filter;
|
||||
use Chill\CalendarBundle\Export\Declarations;
|
||||
use Chill\MainBundle\Export\FilterInterface;
|
||||
use Chill\MainBundle\Form\Type\ChillDateType;
|
||||
use Doctrine\DBAL\Types\Types;
|
||||
use Doctrine\ORM\Query\Expr\Andx;
|
||||
use Doctrine\ORM\QueryBuilder;
|
||||
use Symfony\Component\Form\FormBuilderInterface;
|
||||
@@ -26,7 +27,7 @@ class BetweenDatesFilter implements FilterInterface
|
||||
|
||||
public function getTitle(): string
|
||||
{
|
||||
return 'Filter by appointments between certain dates';
|
||||
return 'Filter appointments between certain dates';
|
||||
}
|
||||
|
||||
public function describeAction($data, $format = 'string'): array
|
||||
|
@@ -94,6 +94,6 @@ class JobFilter implements FilterInterface
|
||||
|
||||
public function getTitle(): string
|
||||
{
|
||||
return 'Filter by agent job';
|
||||
return 'Filter appointments by agent job';
|
||||
}
|
||||
}
|
||||
|
@@ -94,6 +94,6 @@ class ScopeFilter implements FilterInterface
|
||||
|
||||
public function getTitle()
|
||||
{
|
||||
return 'Filter by agent scope';
|
||||
return 'Filter appointments by agent scope';
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user