html_smtp_error_no_con instead of html_smtp_no_con

This commit is contained in:
oheil 2023-03-05 13:30:48 +01:00
parent f0263dc5e1
commit 3ecb1a5b52
2 changed files with 5 additions and 3 deletions

View file

@ -14,7 +14,7 @@
* *
* @package NOCC * @package NOCC
* @license http://www.gnu.org/licenses/ GNU General Public License * @license http://www.gnu.org/licenses/ GNU General Public License
* @version SVN: $Id: class_smtp.php 2713 2017-09-06 12:34:03Z oheil $ * @version SVN: $Id: class_smtp.php 3058 2023-03-05 12:30:39Z oheil $
*/ */
require_once 'exception.php'; require_once 'exception.php';
@ -96,7 +96,7 @@ class smtp {
$smtp=stream_socket_client($remote_socket,$errno,$errstr,ini_get("default_socket_timeout"),STREAM_CLIENT_CONNECT,$context); $smtp=stream_socket_client($remote_socket,$errno,$errstr,ini_get("default_socket_timeout"),STREAM_CLIENT_CONNECT,$context);
if (!$smtp) if (!$smtp)
return new NoccException($html_smtp_no_con . ' : ' . $errstr); return new NoccException($html_smtp_error_no_con . ' : ' . $errstr);
$response=""; $response="";
if( $this->check_response("OPEN",$smtp,$response) ) { if( $this->check_response("OPEN",$smtp,$response) ) {

View file

@ -12,7 +12,7 @@
* @package NOCC * @package NOCC
* @subpackage Translations * @subpackage Translations
* @license http://www.gnu.org/licenses/ GNU General Public License * @license http://www.gnu.org/licenses/ GNU General Public License
* @version SVN: $Id: lb.php 2937 2021-03-12 06:05:32Z translatewiki $ * @version SVN: $Id: lb.php 3056 2023-03-02 12:15:27Z translatewiki $
*/ */
/** Luxembourgish (Lëtzebuergesch) /** Luxembourgish (Lëtzebuergesch)
* *
@ -24,6 +24,7 @@
* *
* @author Les Meloures * @author Les Meloures
* @author Robby * @author Robby
* @author Volvox
*/ */
$lang_locale = 'lb_LB.UTF-8'; $lang_locale = 'lb_LB.UTF-8';
@ -48,6 +49,7 @@ $html_welcome = 'Wëllkomm op %1$s';
$html_login = 'Aloggen'; $html_login = 'Aloggen';
$html_user_label = 'Benotzer:'; $html_user_label = 'Benotzer:';
$html_passwd_label = 'Passwuert:'; $html_passwd_label = 'Passwuert:';
$html_submit = 'Schécken';
$html_help = 'Hëllef'; $html_help = 'Hëllef';
$html_server_label = 'Server:'; $html_server_label = 'Server:';
$html_wrong = 'De Benotzernumm oder d\'Passwuert sinn net richteg'; $html_wrong = 'De Benotzernumm oder d\'Passwuert sinn net richteg';