diff options
author | Morris Jobke <hey@morrisjobke.de> | 2014-06-13 16:02:41 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2014-06-13 16:02:41 +0200 |
commit | a53cfcb9d1ca3f77dcebac9bd584bb1992aac815 (patch) | |
tree | 6d3ffedebb7301df3b707eb185478bb1da459da7 /core/lostpassword | |
parent | cedca03ef524376135e9fa232879bd1df0da0c9d (diff) | |
download | nextcloud-server-a53cfcb9d1ca3f77dcebac9bd584bb1992aac815.tar.gz nextcloud-server-a53cfcb9d1ca3f77dcebac9bd584bb1992aac815.zip |
Migrate ´ to '
Diffstat (limited to 'core/lostpassword')
-rw-r--r-- | core/lostpassword/controller/lostcontroller.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/lostpassword/controller/lostcontroller.php b/core/lostpassword/controller/lostcontroller.php index a13d6a26d51..db94eeadeac 100644 --- a/core/lostpassword/controller/lostcontroller.php +++ b/core/lostpassword/controller/lostcontroller.php @@ -130,7 +130,7 @@ class LostController extends Controller { if (!$this->userManager->userExists($user)) { throw new \Exception( - $this->l10n->t('Couldn’t send reset email. Please make sure '. + $this->l10n->t('Couldn\'t send reset email. Please make sure '. 'your username is correct.')); } @@ -145,7 +145,7 @@ class LostController extends Controller { if (empty($email)) { throw new \Exception( - $this->l10n->t('Couldn’t send reset email because there is no '. + $this->l10n->t('Couldn\'t send reset email because there is no '. 'email address for this username. Please ' . 'contact your administrator.') ); @@ -169,7 +169,7 @@ class LostController extends Controller { ); } catch (\Exception $e) { throw new \Exception($this->l10n->t( - 'Couldn’t send reset email. Please contact your administrator.' + 'Couldn\'t send reset email. Please contact your administrator.' )); } } |