X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Flogin.php;h=28c0f24158ff854bf6d53f62530bffe13b916cd2;hb=99e400a4186ba63f7df2adc19dbcb14d6af4856e;hp=0c17a2641c25651fe6cba03c4f56cc203fa8155f;hpb=a34d6890fedb616a14007a34288b7ed4bc859d7f;p=squirrelmail.git diff --git a/src/login.php b/src/login.php index 0c17a264..28c0f241 100644 --- a/src/login.php +++ b/src/login.php @@ -9,11 +9,14 @@ * This a simple login screen. Some housekeeping is done to clean * cookies and find language. * - * $Id$ + * @version $Id$ * @package squirrelmail */ -/** Path for SquirrelMail required files. */ +/** + * Path for SquirrelMail required files. + * @ignore + */ define('SM_PATH','../'); /* SquirrelMail required files. */ @@ -61,11 +64,12 @@ if($imap_auth_mech == 'login') { $logindisabled = sqimap_capability($imap,'LOGINDISABLED'); sqimap_logout($imap); if ($logindisabled) { - $string = "The IMAP server is reporting that logins are disabled.
"; + $string = _("The IMAP server is reporting that plain text logins are disabled.").'
'. + _("Using CRAM-MD5 or DIGEST-MD5 authentication instead may work.").'
'; if (!$use_imap_tls) { - $string .= "The use of TLS may allow SquirrelMail to login.
"; + $string .= _("Also, the use of TLS may allow SquirrelMail to login.").'
'; } - $string .= "Please contact your system administrator."; + $string .= _("Please contact your system administrator and report this error."); error_box($string,$color); exit; } @@ -151,7 +155,7 @@ echo html_tag( 'table', _("Name:") , 'right', '', 'width="30%"' ) . html_tag( 'td', - addInput($username_form_name, $loginname_value), + addInput($username_form_name, $loginname_value), 'left', '', 'width="*"' ) ) . "\n" . html_tag( 'tr', @@ -159,10 +163,10 @@ echo html_tag( 'table', _("Password:") , 'right', '', 'width="30%"' ) . html_tag( 'td', - addPwField($password_form_name). - addHidden('js_autodetect_results', SMPREF_JS_OFF). + addPwField($password_form_name). + addHidden('js_autodetect_results', SMPREF_JS_OFF). $rcptaddress . - addHidden('just_logged_in', '1'), + addHidden('just_logged_in', '1'), 'left', '', 'width="*"' ) ) , 'center', $color[4], 'border="0" width="100%"' ) , @@ -181,6 +185,5 @@ do_hook('login_form'); echo '' . "\n"; do_hook('login_bottom'); -echo "\n". - "\n"; ?> +