diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2021-12-13 16:52:59 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-13 16:52:59 +0100 |
commit | af98f52eacab4c8731063c5261f4b1267fb25cf9 (patch) | |
tree | 7f854d6034100d2dcccd7f540c8a6980285c456b /apps | |
parent | f287be5424f0a1fe3ca8fd1d9d50bd0cf8dab93c (diff) | |
parent | 5ec2b0e42562cf609d51638fc2b5a4f81a315977 (diff) | |
download | nextcloud-server-af98f52eacab4c8731063c5261f4b1267fb25cf9.tar.gz nextcloud-server-af98f52eacab4c8731063c5261f4b1267fb25cf9.zip |
Merge pull request #30240 from nextcloud/Valdnet-patch-1
Diffstat (limited to 'apps')
-rw-r--r-- | apps/encryption/templates/altmail.php | 2 | ||||
-rw-r--r-- | apps/encryption/templates/mail.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/encryption/templates/altmail.php b/apps/encryption/templates/altmail.php index b1041454ea8..2044fd8e74c 100644 --- a/apps/encryption/templates/altmail.php +++ b/apps/encryption/templates/altmail.php @@ -2,7 +2,7 @@ /** @var OC_Theme $theme */ /** @var array $_ */ -print_unescaped($l->t("Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password \"%s\".\n\nPlease login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.\n\n", [$_['password']])); +print_unescaped($l->t("Hey there,\n\nThe administration enabled server-side-encryption. Your files were encrypted using the password \"%s\".\n\nPlease login to the web interface, go to the section \"Basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"Old log-in password\" field and your current login-password.\n\n", [$_['password']])); if (isset($_['expiration'])) { print_unescaped($l->t("The share will expire on %s.", [$_['expiration']])); print_unescaped("\n\n"); diff --git a/apps/encryption/templates/mail.php b/apps/encryption/templates/mail.php index 1241cfd9f62..2cfd415b646 100644 --- a/apps/encryption/templates/mail.php +++ b/apps/encryption/templates/mail.php @@ -15,7 +15,7 @@ <td width="20px"> </td> <td style="font-weight:normal; font-size:0.8em; line-height:1.2em; font-family:verdana,'arial',sans;"> <?php - print_unescaped($l->t('Hey there,<br><br>the admin enabled server-side-encryption. Your files were encrypted using the password <strong>%s</strong>.<br><br>Please login to the web interface, go to the section "basic encryption module" of your personal settings and update your encryption password by entering this password into the "old log-in password" field and your current login-password.<br><br>', [$_['password']])); + print_unescaped($l->t('Hey there,<br><br>The administration enabled server-side-encryption. Your files were encrypted using the password <strong>%s</strong>.<br><br>Please login to the web interface, go to the section "Basic encryption module" of your personal settings and update your encryption password by entering this password into the "Old log-in password" field and your current login-password.<br><br>', [$_['password']])); // TRANSLATORS term at the end of a mail p($l->t('Cheers!')); ?> |