diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2017-05-08 22:29:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-08 22:29:04 +0200 |
commit | 3a22f9dfe57d97af54a5259c5c8fa0a9a4d1c4e8 (patch) | |
tree | 53ac20e1fec71e3eb97946942a8f4e5606e11805 | |
parent | fe13f214fdec597a7142be62cb420a91e5328c2b (diff) | |
parent | e77ea713b2e5c1334f0273a54679b5ef97dc185d (diff) | |
download | nextcloud-server-3a22f9dfe57d97af54a5259c5c8fa0a9a4d1c4e8.tar.gz nextcloud-server-3a22f9dfe57d97af54a5259c5c8fa0a9a4d1c4e8.zip |
Merge pull request #4745 from nextcloud/improve-text
Improve readability of verify text
-rw-r--r-- | settings/Controller/UsersController.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/settings/Controller/UsersController.php b/settings/Controller/UsersController.php index 4fed2655940..d4a5de93a36 100644 --- a/settings/Controller/UsersController.php +++ b/settings/Controller/UsersController.php @@ -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; |