Skip to content

Commit

Permalink
Refactor RecoveryController to use own view; makes it easier to overr…
Browse files Browse the repository at this point in the history
…ide messages
  • Loading branch information
thyseus committed Mar 30, 2017
1 parent 7fe5766 commit 6579460
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
5 changes: 1 addition & 4 deletions controllers/RecoveryController.php
Original file line number Diff line number Diff line change
Expand Up @@ -120,10 +120,7 @@ public function actionRequest()

if ($model->load(\Yii::$app->request->post()) && $model->sendRecoveryMessage()) {
$this->trigger(self::EVENT_AFTER_REQUEST, $event);
return $this->render('/message', [
'title' => \Yii::t('user', 'Recovery message sent'),
'module' => $this->module,
]);
return $this->render('/recovery/request_sent');
}

return $this->render('request', [
Expand Down
4 changes: 3 additions & 1 deletion messages/de/user.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,15 @@
'Account details' => 'Kontodetails',
'Account details have been updated' => 'Kontodetails wurden gespeichert',
'Account settings' => 'Kontoeinstellungen',
'An email has been sent with instructions for resetting your password' => 'Eine E-Mail mit weiteren Instruktionen, um Ihr Passwort zurück zu setzen, wurde gesendet.',
'An email has been sent with instructions for resetting your password' => 'Wir haben Ihnen eine E-Mail geschickt, um ein neues Passwort vergeben zu können',
'Please follow the instructions to change your password' => 'Bitte öffnen Sie Ihr E-Mail-Postfach und folgen Sie der beschriebenen Vorgehensweise, um Ihr Passwort zurückzusetzen',
'An error occurred and your password has not been changed. Please try again later.' => 'Es ist ein Problem aufgetreten. Ihr Passwort wurde nicht verändert. Bitte versuchen Sie es später noch einmal.',
'An error occurred processing your request' => 'Ein Fehler ist aufgetreten',
'Assignments' => 'Zuordnungen',
'Are you sure you want to switch to this user for the rest of this Session?' => 'Sind Sie sicher, dass sie für den Rest der Sitzung zu diesem Benutzer wechseln möchten?',
'Awesome, almost there. Now you need to click the confirmation link sent to your new email address' => 'Fast geschafft. Nun müssen Sie nur noch den Aktivierungslink besuchen, der an ihre neue E-Mail Adresse gesendet wurde',
'Awesome, almost there. Now you need to click the confirmation link sent to your old email address' => 'Fast geschafft. Nun müssen Sie nur noch den Aktivierungslink besuchen, der an ihre alte E-Mail Adresse gesendet wurde',
'Back to Login' => 'Zurück zur Anmeldung',
'Become this user' => 'Zu diesem Nutzer wechseln',
'Complete password reset on {0}' => 'Passwort komplett zurücksetzen auf {0}',
'Confirm account on {0}' => 'Passwort bestätigen auf {0}',
Expand Down
7 changes: 7 additions & 0 deletions views/recovery/request_sent.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?php use yii\helpers\Html; ?>

<p> <?= \Yii::t('user', 'An email has been sent with instructions for resetting your password'); ?>. </p>

<p> <?= \Yii::t('user', 'Please follow the instructions to change your password'); ?>. </p>

<p> <?= Html::a(Yii::t('user', 'Back to Login'), ['//user/security/login'], ['class' => 'btn btn-primary']); ?> </p>

0 comments on commit 6579460

Please sign in to comment.