diff options
author | Simon L <szaimen@e.mail.de> | 2022-02-04 11:11:52 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-04 11:11:52 +0100 |
commit | 50f51b1782ba0fb2c41d6ad232714298d68df2d8 (patch) | |
tree | 2c51fcfde8a2c38da85ef34fa705545cef7a8c90 | |
parent | 82f602e8575c213c5a49bee2dc89bbf18bce86f1 (diff) | |
parent | 105169433e8432d290873d170c3a28b50dd3de2d (diff) | |
download | nextcloud-server-50f51b1782ba0fb2c41d6ad232714298d68df2d8.tar.gz nextcloud-server-50f51b1782ba0fb2c41d6ad232714298d68df2d8.zip |
Merge pull request #31003 from nextcloud/Valdnet-patch-3
l10n: Remove spaces
-rw-r--r-- | core/js/setupchecks.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/js/setupchecks.js b/core/js/setupchecks.js index 94bf4d5403c..435dffe518d 100644 --- a/core/js/setupchecks.js +++ b/core/js/setupchecks.js @@ -197,9 +197,9 @@ } if (!data.wasEmailTestSuccessful) { messages.push({ - msg: t('core', 'You have not set or verified your email server configuration, yet. Please head over to the {mailSettingsStart} Basic settings {mailSettingsEnd} in order to set them. Afterwards, use the "Send email" button below the form to verify your settings.',) - .replace('{mailSettingsStart} ', '<a href="' + OC.generateUrl('/settings/admin') + '">') - .replace(' {mailSettingsEnd}', '</a>'), + msg: t('core', 'You have not set or verified your email server configuration, yet. Please head over to the {mailSettingsStart}Basic settings{mailSettingsEnd} in order to set them. Afterwards, use the "Send email" button below the form to verify your settings.',) + .replace('{mailSettingsStart}', '<a href="' + OC.generateUrl('/settings/admin') + '">') + .replace('{mailSettingsEnd}', '</a>'), type: OC.SetupChecks.MESSAGE_TYPE_INFO }); } |