]> source.dussan.org Git - nextcloud-server.git/commitdiff
Improve readability of verify text 4745/head
authorMorris Jobke <hey@morrisjobke.de>
Mon, 8 May 2017 19:56:20 +0000 (14:56 -0500)
committerMorris Jobke <hey@morrisjobke.de>
Mon, 8 May 2017 20:03:25 +0000 (15:03 -0500)
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
settings/Controller/UsersController.php

index 4fed265594044a5153fd864fd777276aecadd687..d4a5de93a36e18fa2def5e697be1001ef99c9905 100644 (file)
@@ -611,7 +611,7 @@ class UsersController extends Controller {
                switch ($account) {
                        case 'verify-twitter':
                                $accountData[AccountManager::PROPERTY_TWITTER]['verified'] = AccountManager::VERIFICATION_IN_PROGRESS;
-                               $msg = $this->l10n->t('In order to verify your Twitter account post following tweet on Twitter (please make sure to post it without any line breaks):');
+                               $msg = $this->l10n->t('In order to verify your Twitter account, post the following tweet on Twitter (please make sure to post it without any line breaks):');
                                $code = $codeMd5;
                                $type = AccountManager::PROPERTY_TWITTER;
                                $data = $accountData[AccountManager::PROPERTY_TWITTER]['value'];
@@ -619,7 +619,7 @@ class UsersController extends Controller {
                                break;
                        case 'verify-website':
                                $accountData[AccountManager::PROPERTY_WEBSITE]['verified'] = AccountManager::VERIFICATION_IN_PROGRESS;
-                               $msg = $this->l10n->t('In order to verify your Website store following content in your web-root at \'.well-known/CloudIdVerificationCode.txt\' (please make sure that the complete text is in one line):');
+                               $msg = $this->l10n->t('In order to verify your Website, store the following content in your web-root at \'.well-known/CloudIdVerificationCode.txt\' (please make sure that the complete text is in one line):');
                                $type = AccountManager::PROPERTY_WEBSITE;
                                $data = $accountData[AccountManager::PROPERTY_WEBSITE]['value'];
                                $accountData[AccountManager::PROPERTY_WEBSITE]['signature'] = $signature;