diff options
Diffstat (limited to 'password.php')
-rw-r--r-- | password.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/password.php b/password.php index d53df09a6..1dd88cd17 100644 --- a/password.php +++ b/password.php @@ -51,7 +51,7 @@ function process_password_request() if (empty($_POST['username_or_email'])) { - array_push($page['errors'], l10n('Enter a username or email address')); + array_push($page['errors'], l10n('Invalid username or email')); return false; } @@ -321,7 +321,7 @@ if ('lost' == $page['action'] and !is_a_guest()) // | template initialization | // +-----------------------------------------------------------------------+ -$title = l10n('Reset Password'); +$title = l10n('Password Reset'); if ('lost' == $page['action']) { $title = l10n('Forgot your password?'); |