diff options
author | Lukas Fleischer <archlinux@cryptocrack.de> | 2014-02-10 22:20:47 +0100 |
---|---|---|
committer | Lukas Fleischer <archlinux@cryptocrack.de> | 2014-02-10 22:20:47 +0100 |
commit | 1be6761acd25f4e3c65f5d9d1cc5da851ced2e0c (patch) | |
tree | a2d60e5c27c05105e6a5032a81d3d4015a8df6ea /web/html | |
parent | 94a4f597ff8aee0b79e51c9093452a1a2b6b7290 (diff) |
passreset.php: Make error messages translatable
This fixes a regression introduced in commit 48b7407 (passreset.php:
Refactor HTML, 2014-01-08).
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Diffstat (limited to 'web/html')
-rw-r--r-- | web/html/passreset.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web/html/passreset.php b/web/html/passreset.php index e926161..6fade6b 100644 --- a/web/html/passreset.php +++ b/web/html/passreset.php @@ -62,9 +62,9 @@ html_header(__("Password Reset")); <h2><?= __("Password Reset"); ?></h2> <?php if ($step == 'confirm'): ?> - <p>Check your e-mail for the confirmation link.</p> + <p><?= __('Check your e-mail for the confirmation link.') ?></p> <?php elseif ($step == 'complete'): ?> - <p>Your password has been reset successfully.</p> + <p><?= __('Your password has been reset successfully.') ?></p> <?php elseif (isset($_GET['resetkey'])): ?> <?php if ($error): ?> <ul class="errorlist"><li><?= $error ?></li></ul> |