Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/data_request.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSascha Wiswedel <sascha.wiswedel@nextcloud.com>2021-01-20 21:29:12 +0300
committerSascha Wiswedel <sascha.wiswedel@nextcloud.com>2021-01-20 21:29:12 +0300
commit0634a84a8e4f3f73740ddf84f286586c2fb46aea (patch)
tree77a8efcaf9bdf5728413dd82cc12e1f212ee2215
parent33bff905d2910cac472136dc884ba44d3535a569 (diff)
Make emails gender neutral
Signed-off-by: Sascha Wiswedel <sascha.wiswedel@nextcloud.com>
-rw-r--r--lib/Services/Request.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Services/Request.php b/lib/Services/Request.php
index e6fa047..b4cc0d2 100644
--- a/lib/Services/Request.php
+++ b/lib/Services/Request.php
@@ -136,7 +136,7 @@ class Request {
$template->addHeader();
$template->addHeading($l->t('Hello %s,',[$admin->getDisplayName()]));
- $template->addBodyText($l->t('The user %s, identified by user id "%s", has requested an export of his personal data. Please take action accordingly.', [$this->requester->getDisplayName(), $this->requester->getUID()]));
+ $template->addBodyText($l->t('The user %s, identified by user id "%s", has requested an export of their personal data. Please take action accordingly.', [$this->requester->getDisplayName(), $this->requester->getUID()]));
$template->addFooter();
@@ -151,7 +151,7 @@ class Request {
$template->addHeader();
$template->addHeading($l->t('Hello %s,',[$admin->getDisplayName()]));
- $template->addBodyText($l->t('The user %s, identified by user id "%s", has requested to delete the account. Please take action accordingly.', [$this->requester->getDisplayName(), $this->requester->getUID()]));
+ $template->addBodyText($l->t('The user %s, identified by user id "%s", has requested to delete their account. Please take action accordingly.', [$this->requester->getDisplayName(), $this->requester->getUID()]));
$template->addFooter();