export translations: improve title translations in filter/aggrs stack

This commit is contained in:
2022-09-14 17:28:03 +02:00
parent f07847e985
commit fb60808dca
6 changed files with 55 additions and 48 deletions

View File

@@ -108,6 +108,6 @@ class DeadOrAliveFilter implements FilterInterface
public function getTitle()
{
return 'Filtered by person\'s that are alive or have deceased at a certain date';
return "Filter by person's that are alive or have deceased at a certain date";
}
}

View File

@@ -106,6 +106,6 @@ class ResidentialAddressAtThirdpartyFilter implements FilterInterface
public function getTitle()
{
return 'Filtered by person\'s who have a residential address located at a thirdparty of type';
return "Filter by person's who have a residential address located at a thirdparty of type";
}
}

View File

@@ -59,11 +59,11 @@ class ResidentialAddressAtUserFilter implements FilterInterface
public function describeAction($data, $format = 'string')
{
return ['Filtered by person\'s who have a residential address located at another user'];
return ["Filtered by person's who have a residential address located at another user"];
}
public function getTitle()
{
return 'Filtered by person\'s who have a residential address located at another user';
return "Filter by person's who have a residential address located at another user";
}
}