From 1bc78b9dff5a1451007e28f9955deb1250c82d29 Mon Sep 17 00:00:00 2001 From: canyonknight Date: Sun, 19 Jan 2014 20:37:34 -0500 Subject: acctfuncs.inc.php: Allow translation of missing strings Signed-off-by: canyonknight Signed-off-by: Lukas Fleischer --- web/lib/acctfuncs.inc.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'web') diff --git a/web/lib/acctfuncs.inc.php b/web/lib/acctfuncs.inc.php index fe748a2..b4081b5 100644 --- a/web/lib/acctfuncs.inc.php +++ b/web/lib/acctfuncs.inc.php @@ -425,7 +425,7 @@ function try_login() { $userID = valid_user($_REQUEST['user']); if ( user_suspended($userID) ) { - $login_error = "Account Suspended."; + $login_error = __('Account suspended'); } elseif ( $userID && isset($_REQUEST['passwd']) && valid_passwd($userID, $_REQUEST['passwd']) ) { @@ -490,7 +490,7 @@ function try_login() { } else { - $login_error = "Error trying to generate session id."; + $login_error = __('An error occurred trying to generate a user session.'); } } elseif (passwd_is_empty($userID)) { $login_error = __('Your password has been reset. ' . -- cgit v1.2.3-54-g00ecf