Skip to content
Snippets Groups Projects
Commit a53cfcb9 authored by Morris Jobke's avatar Morris Jobke
Browse files

Migrate ´ to '

parent cedca03e
No related branches found
No related tags found
No related merge requests found
OC.Lostpassword = { OC.Lostpassword = {
sendErrorMsg : t('core', 'Couldnt send reset email. Please contact your administrator.'), sendErrorMsg : t('core', 'Couldn\'t send reset email. Please contact your administrator.'),
sendSuccessMsg : t('core', 'The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.<br>If it is not there ask your local administrator.'), sendSuccessMsg : t('core', 'The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.<br>If it is not there ask your local administrator.'),
encryptedMsg : t('core', "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.<br />If you are not sure what to do, please contact your administrator before you continue. <br />Do you really want to continue?") encryptedMsg : t('core', "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.<br />If you are not sure what to do, please contact your administrator before you continue. <br />Do you really want to continue?")
......
...@@ -130,7 +130,7 @@ class LostController extends Controller { ...@@ -130,7 +130,7 @@ class LostController extends Controller {
if (!$this->userManager->userExists($user)) { if (!$this->userManager->userExists($user)) {
throw new \Exception( throw new \Exception(
$this->l10n->t('Couldnt send reset email. Please make sure '. $this->l10n->t('Couldn\'t send reset email. Please make sure '.
'your username is correct.')); 'your username is correct.'));
} }
...@@ -145,7 +145,7 @@ class LostController extends Controller { ...@@ -145,7 +145,7 @@ class LostController extends Controller {
if (empty($email)) { if (empty($email)) {
throw new \Exception( throw new \Exception(
$this->l10n->t('Couldnt 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 ' . 'email address for this username. Please ' .
'contact your administrator.') 'contact your administrator.')
); );
...@@ -169,7 +169,7 @@ class LostController extends Controller { ...@@ -169,7 +169,7 @@ class LostController extends Controller {
); );
} catch (\Exception $e) { } catch (\Exception $e) {
throw new \Exception($this->l10n->t( throw new \Exception($this->l10n->t(
'Couldnt send reset email. Please contact your administrator.' 'Couldn\'t send reset email. Please contact your administrator.'
)); ));
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment