summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLukas Fleischer <archlinux@cryptocrack.de>2014-02-10 22:20:47 +0100
committerLukas Fleischer <archlinux@cryptocrack.de>2014-02-10 22:20:47 +0100
commit1be6761acd25f4e3c65f5d9d1cc5da851ced2e0c (patch)
treea2d60e5c27c05105e6a5032a81d3d4015a8df6ea
parent94a4f597ff8aee0b79e51c9093452a1a2b6b7290 (diff)
downloadaur-1be6761acd25f4e3c65f5d9d1cc5da851ced2e0c.tar.gz
aur-1be6761acd25f4e3c65f5d9d1cc5da851ced2e0c.tar.xz
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>
-rw-r--r--web/html/passreset.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/web/html/passreset.php b/web/html/passreset.php
index e926161d..6fade6b9 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>