summaryrefslogtreecommitdiffstats
path: root/lib/private/Mail
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2017-04-18 18:01:50 -0500
committerGitHub <noreply@github.com>2017-04-18 18:01:50 -0500
commit269600a04f18e025313352d3b2293cc10d3c26fa (patch)
treeea97f5ea1965ea7328ce9a20585a282419e1ecf2 /lib/private/Mail
parent34e0b21f418c7dcc5ab346248873a2ae0ec5ba2b (diff)
parent1c0bffe87f578403b130015f8fee5560cc075b34 (diff)
downloadnextcloud-server-269600a04f18e025313352d3b2293cc10d3c26fa.tar.gz
nextcloud-server-269600a04f18e025313352d3b2293cc10d3c26fa.zip
Merge pull request #4369 from nextcloud/fix-translations
Fix translations
Diffstat (limited to 'lib/private/Mail')
-rw-r--r--lib/private/Mail/EMailTemplate.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/Mail/EMailTemplate.php b/lib/private/Mail/EMailTemplate.php
index c0949b91c42..7384069f430 100644
--- a/lib/private/Mail/EMailTemplate.php
+++ b/lib/private/Mail/EMailTemplate.php
@@ -456,11 +456,11 @@ EOF;
/**
* Adds a logo and a text to the footer. <br> in the text will be replaced by new lines in the plain text email
*
- * @param string $text If the text is empty the default "Name - Slogan<br>This is an automatically generated email" will be used
+ * @param string $text If the text is empty the default "Name - Slogan<br>This is an automatically sent email" will be used
*/
public function addFooter($text = '') {
if($text === '') {
- $text = $this->themingDefaults->getName() . ' - ' . $this->themingDefaults->getSlogan() . '<br>' . $this->l10n->t('This is an automatically generated email, please do not reply.');
+ $text = $this->themingDefaults->getName() . ' - ' . $this->themingDefaults->getSlogan() . '<br>' . $this->l10n->t('This is an automatically sent email, please do not reply.');
}
if ($this->footerAdded) {