inc/phpmailer/examples/test_mail.php -text
inc/phpmailer/examples/test_sendmail.php -text
inc/phpmailer/examples/test_smtp.php -text
+inc/phpmailer/language/phpmailer.lang-ar.php -text
inc/phpmailer/language/phpmailer.lang-br.php -text
inc/phpmailer/language/phpmailer.lang-ca.php -text
+inc/phpmailer/language/phpmailer.lang-ch.php -text
inc/phpmailer/language/phpmailer.lang-cz.php -text
inc/phpmailer/language/phpmailer.lang-de.php -text
inc/phpmailer/language/phpmailer.lang-de.zip -text
inc/phpmailer/language/phpmailer.lang-fr.php -text
inc/phpmailer/language/phpmailer.lang-hu.php -text
inc/phpmailer/language/phpmailer.lang-it.php -text
-inc/phpmailer/language/phpmailer.lang-ja.php -text
+inc/phpmailer/language/phpmailer.lang-ja.php -text svneol=unset#application/octet-stream
inc/phpmailer/language/phpmailer.lang-nl.php -text
inc/phpmailer/language/phpmailer.lang-no.php -text
inc/phpmailer/language/phpmailer.lang-pl.php -text
inc/phpmailer/language/phpmailer.lang-ru.php -text
inc/phpmailer/language/phpmailer.lang-se.php -text
inc/phpmailer/language/phpmailer.lang-tr.php -text
+inc/phpmailer/language/phpmailer.lang-zh.php -text
+inc/phpmailer/language/phpmailer.lang-zh_cn.php -text
inc/phpmailer/phpdoc/PHPMailer/PHPMailer.html -text
inc/phpmailer/phpdoc/PHPMailer/SMTP.html -text
inc/phpmailer/phpdoc/PHPMailer/_class_phpmailer_php.html -text
$mail = new PHPMailer();
// Set charset to UTF-8
- $mail->CharSet('UTF-8');
+ $mail->CharSet = 'UTF-8';
// Path for PHPMailer
$mail->PluginDir = sprintf("%sinc/phpmailer/", getConfig('PATH'));
ChangeLog
+Version 2.0.4 (April 02 2009)
+* fixed == in class.smtp.php
+- NOTE: this is it folks, our last PHPMailer to support PHP4
+
Version 2.0.3 (November 08 2008)
* fixed line 1041 in class.smtp.php (endless loop from missing = sign)
* fixed duplicate images in email body
Full Featured Email Transfer Class for PHP\r
==========================================\r
\r
-Version 2.3 (November 08, 2008)\r
+Version 2.0.4 (April 02, 2009)\r
+\r
+This is the last version to support PHP4. We've made the move to PHP5 and\r
+all of our efforts now are into PHPMailer for PHP5/6.\r
+\r
+Version 2.0.3 (November 08, 2008)\r
\r
PHP4 continues to be a major platform for developers. We are responding\r
to the emails received to continue development for PHP4 with this \r
/*~ class.phpmailer.php
.---------------------------------------------------------------------------.
| Software: PHPMailer - PHP email class |
-| Version: 2.0.3 |
+| Version: 2.0.4 |
| Contact: via sourceforge.net support pages (also www.codeworxtech.com) |
| Info: http://phpmailer.sourceforge.net |
| Support: http://sourceforge.net/projects/phpmailer/ |
* PHPMailer - PHP email transport class
* @package PHPMailer
* @author Andy Prevost
- * @copyright 2004 - 2008 Andy Prevost
+ * @copyright 2004 - 2009 Andy Prevost
*/
class PHPMailer {
* characters.
* @var int
*/
- var $WordWrap = '0';
+ var $WordWrap = 0;
/**
* Method to send mail: ("mail", "sendmail", or "smtp").
* Holds PHPMailer version.
* @var string
*/
- var $Version = "2.0.3";
+ var $Version = "2.0.4";
/**
* Sets the email address that a reading confirmation will be sent.
var $Hostname = '';
/**
- * Sets the message id to be used in the Message-Id header.
+ * Sets the message ID to be used in the Message-Id header.
* If empty, a unique id will be generated.
* @var string
*/
var $message_type = '';
var $boundary = array();
var $language = array();
- var $error_count = '0';
- var $LE = "\r\n";
+ var $error_count = 0;
+ var $LE = "\n";
var $sign_cert_file = "";
var $sign_key_file = "";
var $sign_key_pass = "";
$this->ContentType = 'multipart/alternative';
}
- $this->error_count = '0'; // reset errors
+ $this->error_count = 0; // reset errors
$this->SetMessageType();
$header .= $this->CreateHeader();
$body = $this->CreateBody();
function MailSend($header, $body) {
$to = '';
- for($i = '0'; $i < count($this->to); $i++) {
+ for($i = 0; $i < count($this->to); $i++) {
if($i != 0) { $to .= ', '; }
$to .= $this->AddrFormat($this->to[$i]);
}
}
/* Attempt to send attach all recipients */
- for($i = '0'; $i < count($this->to); $i++) {
+ for($i = 0; $i < count($this->to); $i++) {
if(!$this->smtp->Recipient($this->to[$i][0])) {
$bad_rcpt[] = $this->to[$i][0];
}
}
- for($i = '0'; $i < count($this->cc); $i++) {
+ for($i = 0; $i < count($this->cc); $i++) {
if(!$this->smtp->Recipient($this->cc[$i][0])) {
$bad_rcpt[] = $this->cc[$i][0];
}
}
- for($i = '0'; $i < count($this->bcc); $i++) {
+ for($i = 0; $i < count($this->bcc); $i++) {
if(!$this->smtp->Recipient($this->bcc[$i][0])) {
$bad_rcpt[] = $this->bcc[$i][0];
}
}
if(count($bad_rcpt) > 0) { // Create error message
- for($i = '0'; $i < count($bad_rcpt); $i++) {
+ for($i = 0; $i < count($bad_rcpt); $i++) {
if($i != 0) {
$error .= ', ';
}
$this->smtp->do_debug = $this->SMTPDebug;
$hosts = explode(';', $this->Host);
- $index = '0';
+ $index = 0;
$connection = ($this->smtp->Connected());
/* Retry while there is no connection */
while($index < count($hosts) && $connection == false) {
$hostinfo = array();
- if(isInStringIgnoreCase('^(.+):([0-9]+)$', $hosts[$index], $hostinfo)) {
+ if(eregi('^(.+):([0-9]+)$', $hosts[$index], $hostinfo)) {
$host = $hostinfo[1];
$port = $hostinfo[2];
} else {
for ($i=0 ;$i < count($line); $i++) {
$line_part = explode(' ', $line[$i]);
$buf = '';
- for ($e = '0'; $e<count($line_part); $e++) {
+ for ($e = 0; $e<count($line_part); $e++) {
$word = $line_part[$e];
if ($qp_mode and (strlen($word) > $length)) {
$space_left = $length - strlen($buf) - 1;
}
} else {
$buf_o = $buf;
- $buf .= ($e == '0') ? $word : (' ' . $word);
+ $buf .= ($e == 0) ? $word : (' ' . $word);
if (strlen($buf) > $length and $buf_o != '') {
$message .= $buf_o . $soft_break;
if ($dec < 128) { // Single byte character.
// If the encoded char was found at pos 0, it will fit
// otherwise reduce maxLength to start of the encoded char
- $maxLength = ($encodedCharPos == '0') ? $maxLength :
+ $maxLength = ($encodedCharPos == 0) ? $maxLength :
$maxLength - ($lookBack - $encodedCharPos);
$foundSplitPos = true;
} elseif ($dec >= 192) { // First byte of a multi byte character
if($this->Mailer != 'mail') {
if(count($this->to) > 0) {
$result .= $this->AddrAppend('To', $this->to);
- } elseif (count($this->cc) == '0') {
+ } elseif (count($this->cc) == 0) {
$result .= $this->HeaderLine('To', 'undisclosed-recipients:;');
}
}
}
if($this->MessageID != '') {
- $result .= $this->HeaderLine('Message-Id',$this->MessageID);
+ $result .= $this->HeaderLine('Message-ID',$this->MessageID);
} else {
- $result .= sprintf("Message-Id: <%s@%s>%s", $uniq_id, $this->ServerHostname(), $this->LE);
+ $result .= sprintf("Message-ID: <%s@%s>%s", $uniq_id, $this->ServerHostname(), $this->LE);
}
$result .= $this->HeaderLine('X-Priority', $this->Priority);
$result .= $this->HeaderLine('X-Mailer', 'PHPMailer (phpmailer.sourceforge.net) [version ' . $this->Version . ']');
}
// Add custom headers
- for($index = '0'; $index < count($this->CustomHeader); $index++) {
+ for($index = 0; $index < count($this->CustomHeader); $index++) {
$result .= $this->HeaderLine(trim($this->CustomHeader[$index][0]), $this->EncodeHeader(trim($this->CustomHeader[$index][1])));
}
if (!$this->sign_key_file) {
$this->attachment[$cur][4] = $type;
$this->attachment[$cur][5] = false; // isStringAttachment
$this->attachment[$cur][6] = 'attachment';
- $this->attachment[$cur][7] = '0';
+ $this->attachment[$cur][7] = 0;
return true;
}
$mime = array();
/* Add all attachments */
- for($i = '0'; $i < count($this->attachment); $i++) {
+ for($i = 0; $i < count($this->attachment); $i++) {
/* Check for string attachment */
$bString = $this->attachment[$i][5];
if ($bString) {
$mime[] = sprintf("Content-Transfer-Encoding: %s%s", $encoding, $this->LE);
if($disposition == 'inline') {
- $mime[] = sprintf("Content-Id: <%s>%s", $cid, $this->LE);
+ $mime[] = sprintf("Content-ID: <%s>%s", $cid, $this->LE);
}
$mime[] = sprintf("Content-Disposition: %s; filename=\"%s\"%s", $disposition, $this->EncodeHeader($this->SecureHeader($name)), $this->LE.$this->LE);
* @return string
*/
function EncodeHeader ($str, $position = 'text') {
- $x = '0';
+ $x = 0;
switch (strtolower($position)) {
case 'phrase':
break;
}
- if ($x == '0') {
+ if ($x == 0) {
return ($str);
}
// Base64 has a 4:3 ratio
$offset = $avgLength = floor($length * $ratio * .75);
- for ($i = '0'; $i < $mb_length; $i += $offset) {
- $lookBack = '0';
+ for ($i = 0; $i < $mb_length; $i += $offset) {
+ $lookBack = 0;
do {
$offset = $avgLength - $lookBack;
while( list(, $line) = each($lines) ) {
$linlen = strlen($line);
$newline = '';
- for($i = '0'; $i < $linlen; $i++) {
+ for($i = 0; $i < $linlen; $i++) {
$c = substr( $line, $i, 1 );
$dec = ord( $c );
- if ( ( $i == '0' ) && ( $dec == 46 ) ) { // convert first point in the line into =2E
+ if ( ( $i == 0 ) && ( $dec == 46 ) ) { // convert first point in the line into =2E
$c = '=2E';
}
if ( $dec == 32 ) {
$this->attachment[$cur][4] = $type;
$this->attachment[$cur][5] = true; // isString
$this->attachment[$cur][6] = 'attachment';
- $this->attachment[$cur][7] = '0';
+ $this->attachment[$cur][7] = 0;
}
/**
* image type. For JPEG images use "image/jpeg" and for GIF images
* use "image/gif".
* @param string $path Path to the attachment.
- * @param string $cid Content id of the attachment. Use this to identify
+ * @param string $cid Content ID of the attachment. Use this to identify
* the Id for accessing the image in an HTML form.
* @param string $name Overrides the attachment name.
* @param string $encoding File encoding (see $Encoding).
*/
function InlineImageExists() {
$result = false;
- for($i = '0'; $i < count($this->attachment); $i++) {
+ for($i = 0; $i < count($this->attachment); $i++) {
if($this->attachment[$i][6] == 'inline') {
$result = true;
break;
/*~ class.pop3.php
.---------------------------------------------------------------------------.
| Software: PHPMailer - PHP email class |
-| Version: 2.0.3 |
+| Version: 2.0.4 |
| Contact: via sourceforge.net support pages (also www.codeworxtech.com) |
| Info: http://phpmailer.sourceforge.net |
| Support: http://sourceforge.net/projects/phpmailer/ |
*/
function POP3 ()
{
- $this->pop_conn = '0';
+ $this->pop_conn = 0;
$this->connected = false;
$this->error = null;
}
* @param string $username
* @param string $password
*/
- function Authorise ($host, $port = false, $tval = false, $username, $password, $debug_level = '0')
+ function Authorise ($host, $port = false, $tval = false, $username, $password, $debug_level = 0)
{
$this->host = $host;
/*~ class.smtp.php
.---------------------------------------------------------------------------.
| Software: PHPMailer - PHP email class |
-| Version: 2.0.3 |
+| Version: 2.0.4 |
| Contact: via sourceforge.net support pages (also www.codeworxtech.com) |
| Info: http://phpmailer.sourceforge.net |
| Support: http://sourceforge.net/projects/phpmailer/ |
* @return void
*/
function SMTP() {
- $this->smtp_conn = '0';
+ $this->smtp_conn = 0;
$this->error = null;
$this->helo_rply = null;
- $this->do_debug = '0';
+ $this->do_debug = 0;
}
/*************************************************************
if(!empty($this->smtp_conn)) {
# close the connection and cleanup
fclose($this->smtp_conn);
- $this->smtp_conn = '0';
+ $this->smtp_conn = 0;
}
}
*/
function get_lines() {
$data = "";
- while($str == @fgets($this->smtp_conn,515)) {
+ while($str = @fgets($this->smtp_conn,515)) {
if($this->do_debug >= 4) {
echo "SMTP -> get_lines(): \$data was \"$data\"" .
$this->CRLF;
--- /dev/null
+<?php
+/**
+ * PHPMailer language file.
+ * Arabic Version, UTF-8
+ * by : bahjat al mostafa <bahjat983@hotmail.com>
+ */
+
+$PHPMAILER_LANG = array();
+
+$PHPMAILER_LANG['provide_address'] = 'You must provide at least one ' .
+ 'recipient email address.';
+$PHPMAILER_LANG['mailer_not_supported'] = ' mailer غير مدعوم.';
+$PHPMAILER_LANG['execute'] = 'لم أستطع تنفيذ : ';
+$PHPMAILER_LANG['instantiate'] = 'لم نستطع توفير خدمة البريد.';
+$PHPMAILER_LANG['authenticate'] = 'SMTP Error: لم نستطع تأكيد الهوية.';
+$PHPMAILER_LANG['from_failed'] = 'البريد التالي لم نستطع ارسال البريد له : ';
+$PHPMAILER_LANG['recipients_failed'] = 'SMTP Error: الأخطاء التالية ' .
+ 'فشل في الارسال لكل من : ';
+$PHPMAILER_LANG['data_not_accepted'] = 'SMTP Error: لم يتم قبول المعلومات .';
+$PHPMAILER_LANG['connect_host'] = 'SMTP Error: لم نستطع الاتصال بمخدم SMTP.';
+$PHPMAILER_LANG['file_access'] = 'لم نستطع الوصول للملف: ';
+$PHPMAILER_LANG['file_open'] = 'File Error: لم نستطع فتح الملف: ';
+$PHPMAILER_LANG['encoding'] = 'ترميز غير معروف: ';
+$PHPMAILER_LANG['signing'] = 'خطأ في التوقيع: ';
+$PHPMAILER_LANG['smtp_error'] = 'SMTP server error: ';
+?>
\ No newline at end of file
-<?php
-/**
- * PHPMailer language file.
- * Portuguese Version
- * By Paulo Henrique Garcia - paulo@controllerweb.com.br
- */
-
-$PHPMAILER_LANG = array();
-$PHPMAILER_LANG["provide_address"] = 'Você deve fornecer pelo menos um endereço de destinatário de email.';
-$PHPMAILER_LANG["mailer_not_supported"] = ' mailer não suportado.';
-$PHPMAILER_LANG["execute"] = 'Não foi possível executar: ';
-$PHPMAILER_LANG["instantiate"] = 'Não foi possível instanciar a função mail.';
-$PHPMAILER_LANG["authenticate"] = 'Erro de SMTP: Não foi possível autenticar.';
-$PHPMAILER_LANG["from_failed"] = 'Os endereços de rementente a seguir falharam: ';
-$PHPMAILER_LANG["recipients_failed"] = 'Erro de SMTP: Os endereços de destinatário a seguir falharam: ';
-$PHPMAILER_LANG["data_not_accepted"] = 'Erro de SMTP: Dados não aceitos.';
-$PHPMAILER_LANG["connect_host"] = 'Erro de SMTP: Não foi possível conectar com o servidor SMTP.';
-$PHPMAILER_LANG["file_access"] = 'Não foi possível acessar o arquivo: ';
-$PHPMAILER_LANG["file_open"] = 'Erro de Arquivo: Não foi possível abrir o arquivo: ';
-$PHPMAILER_LANG["encoding"] = 'Codificação desconhecida: ';
-$PHPMAILER_LANG["signing"] = 'Signing Error: ';
-
+<?php\r
+/**\r
+ * PHPMailer language file.\r
+ * Portuguese Version\r
+ * By Paulo Henrique Garcia - paulo@controllerweb.com.br\r
+ */\r
+\r
+$PHPMAILER_LANG = array();\r
+$PHPMAILER_LANG['provide_address'] = 'Você deve fornecer pelo menos um endereço de destinatário de email.';\r
+$PHPMAILER_LANG['mailer_not_supported'] = ' mailer não suportado.';\r
+$PHPMAILER_LANG['execute'] = 'Não foi possível executar: ';\r
+$PHPMAILER_LANG['instantiate'] = 'Não foi possível instanciar a função mail.';\r
+$PHPMAILER_LANG['authenticate'] = 'Erro de SMTP: Não foi possível autenticar.';\r
+$PHPMAILER_LANG['from_failed'] = 'Os endereços de rementente a seguir falharam: ';\r
+$PHPMAILER_LANG['recipients_failed'] = 'Erro de SMTP: Os endereços de destinatário a seguir falharam: ';\r
+$PHPMAILER_LANG['data_not_accepted'] = 'Erro de SMTP: Dados não aceitos.';\r
+$PHPMAILER_LANG['connect_host'] = 'Erro de SMTP: Não foi possível conectar com o servidor SMTP.';\r
+$PHPMAILER_LANG['file_access'] = 'Não foi possível acessar o arquivo: ';\r
+$PHPMAILER_LANG['file_open'] = 'Erro de Arquivo: Não foi possível abrir o arquivo: ';\r
+$PHPMAILER_LANG['encoding'] = 'Codificação desconhecida: ';\r
+$PHPMAILER_LANG['signing'] = 'Signing Error: ';\r
+$PHPMAILER_LANG['smtp_error'] = 'SMTP server error: ';\r
?>
\ No newline at end of file
-<?php
-/**
- * PHPMailer language file.
- * Catalan Version
- * By Ivan: web AT microstudi DOT com
- */
-
-$PHPMAILER_LANG = array();
-
-$PHPMAILER_LANG["provide_address"] = 'S\'ha de proveir almenys una adreça d\'email com a destinatari.';
-$PHPMAILER_LANG["mailer_not_supported"] = ' mailer no està suportat';
-$PHPMAILER_LANG["execute"] = 'No es pot executar: ';
-$PHPMAILER_LANG["instantiate"] = 'No s\'ha pogut crear una instància de la funció Mail.';
-$PHPMAILER_LANG["authenticate"] = 'Error SMTP: No s\'hapogut autenticar.';
-$PHPMAILER_LANG["from_failed"] = 'La(s) següent(s) adreces de remitent han fallat: ';
-$PHPMAILER_LANG["recipients_failed"] = 'Error SMTP: Els següents destinataris han fallat: ';
-$PHPMAILER_LANG["data_not_accepted"] = 'Error SMTP: Dades no acceptades.';
-$PHPMAILER_LANG["connect_host"] = 'Error SMTP: No es pot connectar al servidor SMTP.';
-$PHPMAILER_LANG["file_access"] = 'No es pot accedir a l\'arxiu: ';
-$PHPMAILER_LANG["file_open"] = 'Error d\'Arxiu: No es pot obrir l\'arxiu: ';
-$PHPMAILER_LANG["encoding"] = 'Codificació desconeguda: ';
-$PHPMAILER_LANG["signing"] = 'Signing Error: ';
-
+<?php\r
+/**\r
+ * PHPMailer language file.\r
+ * Catalan Version\r
+ * By Ivan: web AT microstudi DOT com\r
+ */\r
+\r
+$PHPMAILER_LANG = array();\r
+\r
+$PHPMAILER_LANG['provide_address'] = 'S\'ha de proveir almenys una adreça d\'email com a destinatari.';\r
+$PHPMAILER_LANG['mailer_not_supported'] = ' mailer no està suportat';\r
+$PHPMAILER_LANG['execute'] = 'No es pot executar: ';\r
+$PHPMAILER_LANG['instantiate'] = 'No s\'ha pogut crear una instància de la funció Mail.';\r
+$PHPMAILER_LANG['authenticate'] = 'Error SMTP: No s\'hapogut autenticar.';\r
+$PHPMAILER_LANG['from_failed'] = 'La(s) següent(s) adreces de remitent han fallat: ';\r
+$PHPMAILER_LANG['recipients_failed'] = 'Error SMTP: Els següents destinataris han fallat: ';\r
+$PHPMAILER_LANG['data_not_accepted'] = 'Error SMTP: Dades no acceptades.';\r
+$PHPMAILER_LANG['connect_host'] = 'Error SMTP: No es pot connectar al servidor SMTP.';\r
+$PHPMAILER_LANG['file_access'] = 'No es pot accedir a l\'arxiu: ';\r
+$PHPMAILER_LANG['file_open'] = 'Error d\'Arxiu: No es pot obrir l\'arxiu: ';\r
+$PHPMAILER_LANG['encoding'] = 'Codificació desconeguda: ';\r
+$PHPMAILER_LANG['signing'] = 'Signing Error: ';\r
+$PHPMAILER_LANG['smtp_error'] = 'SMTP server error: ';\r
?>
\ No newline at end of file
--- /dev/null
+<?php
+/**
+ * PHPMailer language file.
+ * Chinese Version
+ * By LiuXin: www.80x86.cn/blog/
+ */
+
+$PHPMAILER_LANG = array();
+
+$PHPMAILER_LANG['provide_address'] = '您必须提供至少一个 收信人的email地址。';
+$PHPMAILER_LANG['mailer_not_supported'] = ' 您所选择的发送邮件的方法并不支持。';
+$PHPMAILER_LANG['execute'] = '不能执行: ';
+$PHPMAILER_LANG['instantiate'] = '不能实现mail方法。';
+$PHPMAILER_LANG['authenticate'] = 'SMTP 错误:身份验证失败。';
+$PHPMAILER_LANG['from_failed'] = '下面的发送地址邮件发送失败了: ';
+$PHPMAILER_LANG['recipients_failed'] = 'SMTP 错误: 下面的 收件人失败了: ';
+$PHPMAILER_LANG['data_not_accepted'] = 'SMTP 错误: 数据不可接受。';
+$PHPMAILER_LANG['connect_host'] = 'SMTP 错误: 不能连接SMTP主机。';
+$PHPMAILER_LANG['file_access'] = '不能访问文件:';
+$PHPMAILER_LANG['file_open'] = '文件错误:不能打开文件:';
+$PHPMAILER_LANG['encoding'] = '未知编码:';
+$PHPMAILER_LANG['signing'] = 'Signing Error: ';
+$PHPMAILER_LANG['smtp_error'] = 'SMTP server error: ';
+?>
\ No newline at end of file
-<?php
-/**
- * PHPMailer language file.
- * Czech Version
- */
-
-$PHPMAILER_LANG = array();
-
-$PHPMAILER_LANG["provide_address"] = 'Musíte zadat alespoò jednu ' .
- 'emailovou adresu pøíjemce.';
-$PHPMAILER_LANG["mailer_not_supported"] = ' mailový klient není podporován.';
-$PHPMAILER_LANG["execute"] = 'Nelze provést: ';
-$PHPMAILER_LANG["instantiate"] = 'Nelze vytvoøit instanci emailové funkce.';
-$PHPMAILER_LANG["authenticate"] = 'SMTP Error: Chyba autentikace.';
-$PHPMAILER_LANG["from_failed"] = 'Následující adresa From je nesprávná: ';
-$PHPMAILER_LANG["recipients_failed"] = 'SMTP Error: Adresy pøíjemcù ' .
- 'nejsou správné ' .
-$PHPMAILER_LANG["data_not_accepted"] = 'SMTP Error: Data nebyla pøijata';
-$PHPMAILER_LANG["connect_host"] = 'SMTP Error: Nelze navázat spojení se ' .
- ' SMTP serverem.';
-$PHPMAILER_LANG["file_access"] = 'Soubor nenalezen: ';
-$PHPMAILER_LANG["file_open"] = 'File Error: Nelze otevøít soubor pro ètení: ';
-$PHPMAILER_LANG["encoding"] = 'Neznámé kódování: ';
-$PHPMAILER_LANG["signing"] = 'Signing Error: ';
-
+<?php\r
+/**\r
+ * PHPMailer language file.\r
+ * Czech Version\r
+ */\r
+\r
+$PHPMAILER_LANG = array();\r
+\r
+$PHPMAILER_LANG["provide_address"] = 'Musíte zadat alespoò jednu emailovou adresu pøíjemce.';\r
+$PHPMAILER_LANG["mailer_not_supported"] = ' mailový klient není podporován.';\r
+$PHPMAILER_LANG["execute"] = 'Nelze provést: ';\r
+$PHPMAILER_LANG["instantiate"] = 'Nelze vytvoøit instanci emailové funkce.';\r
+$PHPMAILER_LANG["authenticate"] = 'SMTP Error: Chyba autentikace.';\r
+$PHPMAILER_LANG["from_failed"] = 'Následující adresa From je nesprávná: ';\r
+$PHPMAILER_LANG["recipients_failed"] = 'SMTP Error: Adresy pøíjemcù nejsou správné ' .\r
+$PHPMAILER_LANG["data_not_accepted"] = 'SMTP Error: Data nebyla pøijata';\r
+$PHPMAILER_LANG["connect_host"] = 'SMTP Error: Nelze navázat spojení se SMTP serverem.';\r
+$PHPMAILER_LANG["file_access"] = 'Soubor nenalezen: ';\r
+$PHPMAILER_LANG["file_open"] = 'File Error: Nelze otevøít soubor pro ètení: ';\r
+$PHPMAILER_LANG["encoding"] = 'Neznámé kódování: ';\r
+$PHPMAILER_LANG["signing"] = 'Signing Error: ';\r
+$PHPMAILER_LANG['smtp_error'] = 'SMTP server error: ';\r
?>
\ No newline at end of file
-<?php
-/**
- * PHPMailer language file.
- * German Version
- * Thanks to Yann-Patrick Schlame for the latest update!
- */
-
-$PHPMAILER_LANG = array();
-
-$PHPMAILER_LANG["provide_address"] = 'Bitte geben Sie mindestens eine ' .
- 'Empfänger Emailadresse an.';
-$PHPMAILER_LANG["mailer_not_supported"] = ' mailer wird nicht unterstützt.';
-$PHPMAILER_LANG["execute"] = 'Konnte folgenden Befehl nicht ausführen: ';
-$PHPMAILER_LANG["instantiate"] = 'Mail Funktion konnte nicht initialisiert werden.';
-$PHPMAILER_LANG["authenticate"] = 'SMTP Fehler: Authentifizierung fehlgeschlagen.';
-$PHPMAILER_LANG["from_failed"] = 'Die folgende Absenderadresse ist nicht korrekt: ';
-$PHPMAILER_LANG["recipients_failed"] = 'SMTP Fehler: Die folgenden ' .
- 'Empfänger sind nicht korrekt: ';
-$PHPMAILER_LANG["data_not_accepted"] = 'SMTP Fehler: Daten werden nicht akzeptiert.';
-$PHPMAILER_LANG["connect_host"] = 'SMTP Fehler: Konnte keine Verbindung zum SMTP-Host herstellen.';
-$PHPMAILER_LANG["file_access"] = 'Zugriff auf folgende Datei fehlgeschlagen: ';
-$PHPMAILER_LANG["file_open"] = 'Datei Fehler: konnte folgende Datei nicht öffnen: ';
-$PHPMAILER_LANG["encoding"] = 'Unbekanntes Encoding-Format: ';
-$PHPMAILER_LANG["signing"] = 'Fehler beim Signieren: ';
-
+<?php\r
+/**\r
+ * PHPMailer language file.\r
+ * German Version\r
+ * Thanks to Yann-Patrick Schlame for the latest update!\r
+ */\r
+\r
+$PHPMAILER_LANG = array();\r
+\r
+$PHPMAILER_LANG['provide_address'] = 'Bitte geben Sie mindestens eine Empfänger Emailadresse an.';\r
+$PHPMAILER_LANG['mailer_not_supported'] = ' mailer wird nicht unterstützt.';\r
+$PHPMAILER_LANG['execute'] = 'Konnte folgenden Befehl nicht ausführen: ';\r
+$PHPMAILER_LANG['instantiate'] = 'Mail Funktion konnte nicht initialisiert werden.';\r
+$PHPMAILER_LANG['authenticate'] = 'SMTP Fehler: Authentifizierung fehlgeschlagen.';\r
+$PHPMAILER_LANG['from_failed'] = 'Die folgende Absenderadresse ist nicht korrekt: ';\r
+$PHPMAILER_LANG['recipients_failed'] = 'SMTP Fehler: Die folgenden Empfänger sind nicht korrekt: ';\r
+$PHPMAILER_LANG['data_not_accepted'] = 'SMTP Fehler: Daten werden nicht akzeptiert.';\r
+$PHPMAILER_LANG['connect_host'] = 'SMTP Fehler: Konnte keine Verbindung zum SMTP-Host herstellen.';\r
+$PHPMAILER_LANG['file_access'] = 'Zugriff auf folgende Datei fehlgeschlagen: ';\r
+$PHPMAILER_LANG['file_open'] = 'Datei Fehler: konnte folgende Datei nicht öffnen: ';\r
+$PHPMAILER_LANG['encoding'] = 'Unbekanntes Encoding-Format: ';\r
+$PHPMAILER_LANG['signing'] = 'Fehler beim Signieren: ';\r
+$PHPMAILER_LANG['smtp_error'] = 'SMTP server error: ';\r
?>
\ No newline at end of file
-<?php
-/**
- * PHPMailer language file.
- * Danish Version
- * Author: Mikael Stokkebro <info@stokkebro.dk?> */
-
-$PHPMAILER_LANG = array();
-
-$PHPMAILER_LANG["provide_address"] = 'Du skal indtaste mindst en ' .
- 'modtagers emailadresse.';
-$PHPMAILER_LANG["mailer_not_supported"] = ' mailer understøttes ikke.';
-$PHPMAILER_LANG["execute"] = 'Kunne ikke køre: ';
-$PHPMAILER_LANG["instantiate"] = 'Kunne ikke initialisere email funktionen.';
-$PHPMAILER_LANG["authenticate"] = 'SMTP fejl: Kunne ikke logge på.';
-$PHPMAILER_LANG["from_failed"] = 'Følgende afsenderadresse er forkert: ';
-$PHPMAILER_LANG["recipients_failed"] = 'SMTP fejl: Følgende' .
- 'modtagere er forkerte: ';
-$PHPMAILER_LANG["data_not_accepted"] = 'SMTP fejl: Data kunne ikke accepteres.';
-$PHPMAILER_LANG["connect_host"] = 'SMTP fejl: Kunne ikke tilslutte SMTP serveren.';
-$PHPMAILER_LANG["file_access"] = 'Ingen adgang til fil: ';
-$PHPMAILER_LANG["file_open"] = 'Fil fejl: Kunne ikke åbne filen: ';
-$PHPMAILER_LANG["encoding"] = 'Ukendt encode-format: ';
-$PHPMAILER_LANG["signing"] = 'Signing Error: ';
-
+<?php\r
+/**\r
+ * PHPMailer language file.\r
+ * Danish Version\r
+ * Author: Mikael Stokkebro <info@stokkebro.dk> */\r
+\r
+$PHPMAILER_LANG = array();\r
+\r
+$PHPMAILER_LANG['provide_address'] = 'Du skal indtaste mindst en modtagers emailadresse.';\r
+$PHPMAILER_LANG['mailer_not_supported'] = ' mailer understøttes ikke.';\r
+$PHPMAILER_LANG['execute'] = 'Kunne ikke køre: ';\r
+$PHPMAILER_LANG['instantiate'] = 'Kunne ikke initialisere email funktionen.';\r
+$PHPMAILER_LANG['authenticate'] = 'SMTP fejl: Kunne ikke logge på.';\r
+$PHPMAILER_LANG['from_failed'] = 'Følgende afsenderadresse er forkert: ';\r
+$PHPMAILER_LANG['recipients_failed'] = 'SMTP fejl: Følgende modtagere er forkerte: ';\r
+$PHPMAILER_LANG['data_not_accepted'] = 'SMTP fejl: Data kunne ikke accepteres.';\r
+$PHPMAILER_LANG['connect_host'] = 'SMTP fejl: Kunne ikke tilslutte SMTP serveren.';\r
+$PHPMAILER_LANG['file_access'] = 'Ingen adgang til fil: ';\r
+$PHPMAILER_LANG['file_open'] = 'Fil fejl: Kunne ikke åbne filen: ';\r
+$PHPMAILER_LANG['encoding'] = 'Ukendt encode-format: ';\r
+$PHPMAILER_LANG['signing'] = 'Signing Error: ';\r
+$PHPMAILER_LANG['smtp_error'] = 'SMTP server error: ';\r
?>
\ No newline at end of file
-<?php
-/**
- * PHPMailer language file.
- * English Version
- */
-
-$PHPMAILER_LANG = array();
-
-$PHPMAILER_LANG["provide_address"] = 'You must provide at least one ' .
- 'recipient email address.';
-$PHPMAILER_LANG["mailer_not_supported"] = ' mailer is not supported.';
-$PHPMAILER_LANG["execute"] = 'Could not execute: ';
-$PHPMAILER_LANG["instantiate"] = 'Could not instantiate mail function.';
-$PHPMAILER_LANG["authenticate"] = 'SMTP Error: Could not authenticate.';
-$PHPMAILER_LANG["from_failed"] = 'The following From address failed: ';
-$PHPMAILER_LANG["recipients_failed"] = 'SMTP Error: The following ' .
- 'recipients failed: ';
-$PHPMAILER_LANG["data_not_accepted"] = 'SMTP Error: Data not accepted.';
-$PHPMAILER_LANG["connect_host"] = 'SMTP Error: Could not connect to SMTP host.';
-$PHPMAILER_LANG["file_access"] = 'Could not access file: ';
-$PHPMAILER_LANG["file_open"] = 'File Error: Could not open file: ';
-$PHPMAILER_LANG["encoding"] = 'Unknown encoding: ';
-$PHPMAILER_LANG["signing"] = 'Signing Error: ';
-
+<?php\r
+/**\r
+ * PHPMailer language file.\r
+ * English Version\r
+ */\r
+\r
+$PHPMAILER_LANG = array();\r
+\r
+$PHPMAILER_LANG['provide_address'] = 'You must provide at least one recipient email address.';\r
+$PHPMAILER_LANG['mailer_not_supported'] = ' mailer is not supported.';\r
+$PHPMAILER_LANG['execute'] = 'Could not execute: ';\r
+$PHPMAILER_LANG['instantiate'] = 'Could not instantiate mail function.';\r
+$PHPMAILER_LANG['authenticate'] = 'SMTP Error: Could not authenticate.';\r
+$PHPMAILER_LANG['from_failed'] = 'The following From address failed: ';\r
+$PHPMAILER_LANG['recipients_failed'] = 'SMTP Error: The following recipients failed: ';\r
+$PHPMAILER_LANG['data_not_accepted'] = 'SMTP Error: Data not accepted.';\r
+$PHPMAILER_LANG['connect_host'] = 'SMTP Error: Could not connect to SMTP host.';\r
+$PHPMAILER_LANG['file_access'] = 'Could not access file: ';\r
+$PHPMAILER_LANG['file_open'] = 'File Error: Could not open file: ';\r
+$PHPMAILER_LANG['encoding'] = 'Unknown encoding: ';\r
+$PHPMAILER_LANG['signing'] = 'Signing Error: ';\r
+$PHPMAILER_LANG['smtp_error'] = 'SMTP server error: ';\r
?>
\ No newline at end of file
-<?php
-/**
- * PHPMailer language file.
- * Versión en español
- */
-
-$PHPMAILER_LANG = array();
-
-$PHPMAILER_LANG["provide_address"] = 'Debe proveer al menos una ' .
- 'dirección de email como destinatario.';
-$PHPMAILER_LANG["mailer_not_supported"] = ' mailer no está soportado.';
-$PHPMAILER_LANG["execute"] = 'No puedo ejecutar: ';
-$PHPMAILER_LANG["instantiate"] = 'No pude crear una instancia de la función Mail.';
-$PHPMAILER_LANG["authenticate"] = 'Error SMTP: No se pudo autentificar.';
-$PHPMAILER_LANG["from_failed"] = 'La(s) siguiente(s) direcciones de remitente fallaron: ';
-$PHPMAILER_LANG["recipients_failed"] = 'Error SMTP: Los siguientes ' .
- 'destinatarios fallaron: ';
-$PHPMAILER_LANG["data_not_accepted"] = 'Error SMTP: Datos no aceptados.';
-$PHPMAILER_LANG["connect_host"] = 'Error SMTP: No puedo conectar al servidor SMTP.';
-$PHPMAILER_LANG["file_access"] = 'No puedo acceder al archivo: ';
-$PHPMAILER_LANG["file_open"] = 'Error de Archivo: No puede abrir el archivo: ';
-$PHPMAILER_LANG["encoding"] = 'Codificación desconocida: ';
-$PHPMAILER_LANG["signing"] = 'Error al firmar: ';
-
+<?php\r
+/**\r
+ * PHPMailer language file.\r
+ * Versión en español\r
+ */\r
+\r
+$PHPMAILER_LANG = array();\r
+\r
+$PHPMAILER_LANG['provide_address'] = 'Debe proveer al menos una dirección de email como destinatario.';\r
+$PHPMAILER_LANG['mailer_not_supported'] = ' mailer no está soportado.';\r
+$PHPMAILER_LANG['execute'] = 'No puedo ejecutar: ';\r
+$PHPMAILER_LANG['instantiate'] = 'No pude crear una instancia de la función Mail.';\r
+$PHPMAILER_LANG['authenticate'] = 'Error SMTP: No se pudo autentificar.';\r
+$PHPMAILER_LANG['from_failed'] = 'La(s) siguiente(s) direcciones de remitente fallaron: ';\r
+$PHPMAILER_LANG['recipients_failed'] = 'Error SMTP: Los siguientes destinatarios fallaron: ';\r
+$PHPMAILER_LANG['data_not_accepted'] = 'Error SMTP: Datos no aceptados.';\r
+$PHPMAILER_LANG['connect_host'] = 'Error SMTP: No puedo conectar al servidor SMTP.';\r
+$PHPMAILER_LANG['file_access'] = 'No puedo acceder al archivo: ';\r
+$PHPMAILER_LANG['file_open'] = 'Error de Archivo: No puede abrir el archivo: ';\r
+$PHPMAILER_LANG['encoding'] = 'Codificación desconocida: ';\r
+$PHPMAILER_LANG['signing'] = 'Error al firmar: ';\r
+$PHPMAILER_LANG['smtp_error'] = 'SMTP server error: ';\r
?>
\ No newline at end of file
/**
* PHPMailer language file.
* Estonian Version
- * By Indrek Päri
+ * By Indrek Päri
*/
$PHPMAILER_LANG = array();
-$PHPMAILER_LANG["provide_address"] = 'Te peate määrama vähemalt ühe saaja e-posti aadressi.';
-$PHPMAILER_LANG["mailer_not_supported"] = ' maileri tugi puudub.';
-$PHPMAILER_LANG["execute"] = 'Tegevus ebaõnnestus: ';
-$PHPMAILER_LANG["instantiate"] = 'mail funktiooni käivitamine ebaõnnestus.';
-$PHPMAILER_LANG["authenticate"] = 'SMTP Viga: Autoriseerimise viga.';
-$PHPMAILER_LANG["from_failed"] = 'Järgnev saatja e-posti aadress on vigane: ';
-$PHPMAILER_LANG["recipients_failed"] = 'SMTP Viga: Järgnevate saajate e-posti aadressid on vigased: ';
-$PHPMAILER_LANG["data_not_accepted"] = 'SMTP Viga: Vigased andmed.';
-$PHPMAILER_LANG["connect_host"] = 'SMTP Viga: Ei õnnestunud luua ühendust SMTP serveriga.';
-$PHPMAILER_LANG["file_access"] = 'Pole piisavalt õiguseid järgneva faili avamiseks: ';
-$PHPMAILER_LANG["file_open"] = 'Faili Viga: Faili avamine ebaõnnestus: ';
-$PHPMAILER_LANG["encoding"] = 'Tundmatu Unknown kodeering: ';
-$PHPMAILER_LANG["signing"] = 'Signing Error: ';
-
+$PHPMAILER_LANG['provide_address'] = 'Te peate määrama vähemalt ühe saaja e-posti aadressi.';
+$PHPMAILER_LANG['mailer_not_supported'] = ' maileri tugi puudub.';
+$PHPMAILER_LANG['execute'] = 'Tegevus ebaõnnestus: ';
+$PHPMAILER_LANG['instantiate'] = 'mail funktiooni käivitamine ebaõnnestus.';
+$PHPMAILER_LANG['authenticate'] = 'SMTP Viga: Autoriseerimise viga.';
+$PHPMAILER_LANG['from_failed'] = 'Järgnev saatja e-posti aadress on vigane: ';
+$PHPMAILER_LANG['recipients_failed'] = 'SMTP Viga: Järgnevate saajate e-posti aadressid on vigased: ';
+$PHPMAILER_LANG['data_not_accepted'] = 'SMTP Viga: Vigased andmed.';
+$PHPMAILER_LANG['connect_host'] = 'SMTP Viga: Ei õnnestunud luua ühendust SMTP serveriga.';
+$PHPMAILER_LANG['file_access'] = 'Pole piisavalt õiguseid järgneva faili avamiseks: ';
+$PHPMAILER_LANG['file_open'] = 'Faili Viga: Faili avamine ebaõnnestus: ';
+$PHPMAILER_LANG['encoding'] = 'Tundmatu Unknown kodeering: ';
+$PHPMAILER_LANG['signing'] = 'Signing Error: ';
+$PHPMAILER_LANG['smtp_error'] = 'SMTP server error: ';
?>
\ No newline at end of file
-<?php
-/**
- * PHPMailer language file.
- * Finnish Version
- * By Jyry Kuukanen
- */
-
-$PHPMAILER_LANG = array();
-
-$PHPMAILER_LANG["provide_address"] = 'Aseta vähintään yksi vastaanottajan ' .
- 'sähköpostiosoite.';
-$PHPMAILER_LANG["mailer_not_supported"] = 'postivälitintyyppiä ei tueta.';
-$PHPMAILER_LANG["execute"] = 'Suoritus epäonnistui: ';
-$PHPMAILER_LANG["instantiate"] = 'mail-funktion luonti epäonnistui.';
-$PHPMAILER_LANG["authenticate"] = 'SMTP-virhe: käyttäjätunnistus epäonnistui.';
-$PHPMAILER_LANG["from_failed"] = 'Seuraava lähettäjän osoite on virheellinen: ';
-$PHPMAILER_LANG["recipients_failed"] = 'SMTP-virhe: seuraava vastaanottaja osoite on virheellinen.';
-$PHPMAILER_LANG["data_not_accepted"] = 'SMTP-virhe: data on virheellinen.';
-$PHPMAILER_LANG["connect_host"] = 'SMTP-virhe: yhteys palvelimeen ei onnistu.';
-$PHPMAILER_LANG["file_access"] = 'Seuraavaan tiedostoon ei ole oikeuksia: ';
-$PHPMAILER_LANG["file_open"] = 'Tiedostovirhe: Ei voida avata tiedostoa: ';
-$PHPMAILER_LANG["encoding"] = 'Tuntematon koodaustyyppi: ';
-$PHPMAILER_LANG["signing"] = 'Signing Error: ';
-
+<?php\r
+/**\r
+ * PHPMailer language file.\r
+ * Finnish Version\r
+ * By Jyry Kuukanen\r
+ */\r
+\r
+$PHPMAILER_LANG = array();\r
+\r
+$PHPMAILER_LANG['provide_address'] = 'Aseta vähintään yksi vastaanottajan sähköpostiosoite.';\r
+$PHPMAILER_LANG['mailer_not_supported'] = 'postivälitintyyppiä ei tueta.';\r
+$PHPMAILER_LANG['execute'] = 'Suoritus epäonnistui: ';\r
+$PHPMAILER_LANG['instantiate'] = 'mail-funktion luonti epäonnistui.';\r
+$PHPMAILER_LANG['authenticate'] = 'SMTP-virhe: käyttäjätunnistus epäonnistui.';\r
+$PHPMAILER_LANG['from_failed'] = 'Seuraava lähettäjän osoite on virheellinen: ';\r
+$PHPMAILER_LANG['recipients_failed'] = 'SMTP-virhe: seuraava vastaanottaja osoite on virheellinen.';\r
+$PHPMAILER_LANG['data_not_accepted'] = 'SMTP-virhe: data on virheellinen.';\r
+$PHPMAILER_LANG['connect_host'] = 'SMTP-virhe: yhteys palvelimeen ei onnistu.';\r
+$PHPMAILER_LANG['file_access'] = 'Seuraavaan tiedostoon ei ole oikeuksia: ';\r
+$PHPMAILER_LANG['file_open'] = 'Tiedostovirhe: Ei voida avata tiedostoa: ';\r
+$PHPMAILER_LANG['encoding'] = 'Tuntematon koodaustyyppi: ';\r
+$PHPMAILER_LANG['signing'] = 'Signing Error: ';\r
+$PHPMAILER_LANG['smtp_error'] = 'SMTP server error: ';\r
?>
\ No newline at end of file
-<?php
-/**
- * PHPMailer language file.
- * Faroese Version [language of the Faroe Islands, a Danish dominion]
- * This file created: 11-06-2004
- * Supplied by Dávur Sørensen [www.profo-webdesign.dk]
- */
-
-$PHPMAILER_LANG = array();
-
-$PHPMAILER_LANG["provide_address"] = 'Tú skal uppgeva minst ' .
- 'móttakara-emailadressu(r).';
-$PHPMAILER_LANG["mailer_not_supported"] = ' er ikki supporterað.';
-$PHPMAILER_LANG["execute"] = 'Kundi ikki útføra: ';
-$PHPMAILER_LANG["instantiate"] = 'Kuni ikki instantiera mail funktión.';
-$PHPMAILER_LANG["authenticate"] = 'SMTP feilur: Kundi ikki góðkenna.';
-$PHPMAILER_LANG["from_failed"] = 'fylgjandi Frá/From adressa miseydnaðist: ';
-$PHPMAILER_LANG["recipients_failed"] = 'SMTP Feilur: Fylgjandi ' .
- 'móttakarar miseydnaðust: ';
-$PHPMAILER_LANG["data_not_accepted"] = 'SMTP feilur: Data ikki góðkent.';
-$PHPMAILER_LANG["connect_host"] = 'SMTP feilur: Kundi ikki knýta samband við SMTP vert.';
-$PHPMAILER_LANG["file_access"] = 'Kundi ikki tilganga fílu: ';
-$PHPMAILER_LANG["file_open"] = 'Fílu feilur: Kundi ikki opna fílu: ';
-$PHPMAILER_LANG["encoding"] = 'Ókend encoding: ';
-$PHPMAILER_LANG["signing"] = 'Signing Error: ';
-
+<?php\r
+/**\r
+ * PHPMailer language file.\r
+ * Faroese Version [language of the Faroe Islands, a Danish dominion]\r
+ * This file created: 11-06-2004\r
+ * Supplied by Dávur Sørensen [www.profo-webdesign.dk]\r
+ */\r
+\r
+$PHPMAILER_LANG = array();\r
+\r
+$PHPMAILER_LANG['provide_address'] = 'Tú skal uppgeva minst móttakara-emailadressu(r).';\r
+$PHPMAILER_LANG['mailer_not_supported'] = ' er ikki supporterað.';\r
+$PHPMAILER_LANG['execute'] = 'Kundi ikki útføra: ';\r
+$PHPMAILER_LANG['instantiate'] = 'Kuni ikki instantiera mail funktión.';\r
+$PHPMAILER_LANG['authenticate'] = 'SMTP feilur: Kundi ikki góðkenna.';\r
+$PHPMAILER_LANG['from_failed'] = 'fylgjandi Frá/From adressa miseydnaðist: ';\r
+$PHPMAILER_LANG['recipients_failed'] = 'SMTP Feilur: Fylgjandi móttakarar miseydnaðust: ';\r
+$PHPMAILER_LANG['data_not_accepted'] = 'SMTP feilur: Data ikki góðkent.';\r
+$PHPMAILER_LANG['connect_host'] = 'SMTP feilur: Kundi ikki knýta samband við SMTP vert.';\r
+$PHPMAILER_LANG['file_access'] = 'Kundi ikki tilganga fílu: ';\r
+$PHPMAILER_LANG['file_open'] = 'Fílu feilur: Kundi ikki opna fílu: ';\r
+$PHPMAILER_LANG['encoding'] = 'Ókend encoding: ';\r
+$PHPMAILER_LANG['signing'] = 'Signing Error: ';\r
+$PHPMAILER_LANG['smtp_error'] = 'SMTP server error: ';\r
?>
\ No newline at end of file
-<?php
-/**
- * PHPMailer language file.
- * French Version
- */
-
-$PHPMAILER_LANG = array();
-
-$PHPMAILER_LANG["provide_address"] = 'Vous devez fournir au moins une ' .
- 'adresse de destinataire.';
-$PHPMAILER_LANG["mailer_not_supported"] = ' client de messagerie non supporté.';
-$PHPMAILER_LANG["execute"] = 'Impossible de lancer l\'exécution : ';
-$PHPMAILER_LANG["instantiate"] = 'Impossible d\'instancier la fonction mail.';
-$PHPMAILER_LANG["authenticate"] = 'Erreur SMTP : Echec de l\'authentification.';
-$PHPMAILER_LANG["from_failed"] = 'L\'adresse d\'expéditeur suivante a échouée : ';
-$PHPMAILER_LANG["recipients_failed"] = 'Erreur SMTP : Les destinataires ' .
- 'suivants sont en erreur : ';
-$PHPMAILER_LANG["data_not_accepted"] = 'Erreur SMTP : Données incorrects.';
-$PHPMAILER_LANG["connect_host"] = 'Erreur SMTP : Impossible de se connecter au serveur SMTP.';
-$PHPMAILER_LANG["file_access"] = 'Impossible d\'accéder au fichier : ';
-$PHPMAILER_LANG["file_open"] = 'Erreur Fichier : ouverture impossible : ';
-$PHPMAILER_LANG["encoding"] = 'Encodage inconnu : ';
-$PHPMAILER_LANG["signing"] = 'Signing Error: ';
-
+<?php\r
+/**\r
+ * PHPMailer language file.\r
+ * French Version\r
+ */\r
+\r
+$PHPMAILER_LANG = array();\r
+\r
+$PHPMAILER_LANG['provide_address'] = 'Vous devez fournir au moins une adresse de destinataire.';\r
+$PHPMAILER_LANG['mailer_not_supported'] = ' client de messagerie non supporté.';\r
+$PHPMAILER_LANG['execute'] = 'Impossible de lancer l\'exécution : ';\r
+$PHPMAILER_LANG['instantiate'] = 'Impossible d\'instancier la fonction mail.';\r
+$PHPMAILER_LANG['authenticate'] = 'Erreur SMTP : Echec de l\'authentification.';\r
+$PHPMAILER_LANG['from_failed'] = 'L\'adresse d\'expéditeur suivante a échouée : ';\r
+$PHPMAILER_LANG['recipients_failed'] = 'Erreur SMTP : Les destinataires suivants sont en erreur : ';\r
+$PHPMAILER_LANG['data_not_accepted'] = 'Erreur SMTP : Données incorrects.';\r
+$PHPMAILER_LANG['connect_host'] = 'Erreur SMTP : Impossible de se connecter au serveur SMTP.';\r
+$PHPMAILER_LANG['file_access'] = 'Impossible d\'accéder au fichier : ';\r
+$PHPMAILER_LANG['file_open'] = 'Erreur Fichier : ouverture impossible : ';\r
+$PHPMAILER_LANG['encoding'] = 'Encodage inconnu : ';\r
+$PHPMAILER_LANG['signing'] = 'Signing Error: ';\r
+$PHPMAILER_LANG['smtp_error'] = 'SMTP server error: ';\r
?>
\ No newline at end of file
-<?php
-/**
- * PHPMailer language file.
- * Hungarian Version
- */
-
-$PHPMAILER_LANG = array();
-
-$PHPMAILER_LANG["provide_address"] = 'Meg kell adnod legalább egy ' .
- 'címzett email címet.';
-$PHPMAILER_LANG["mailer_not_supported"] = ' levelezõ nem támogatott.';
-$PHPMAILER_LANG["execute"] = 'Nem tudtam végrehajtani: ';
-$PHPMAILER_LANG["instantiate"] = 'Nem sikerült példányosítani a mail funkciót.';
-$PHPMAILER_LANG["authenticate"] = 'SMTP Hiba: Sikertelen autentikáció.';
-$PHPMAILER_LANG["from_failed"] = 'Az alábbi Feladó cím hibás: ';
-$PHPMAILER_LANG["recipients_failed"] = 'SMTP Hiba: Az alábbi ' .
- 'címzettek hibásak: ';
-$PHPMAILER_LANG["data_not_accepted"] = 'SMTP Hiba: Nem elfogadható adat.';
-$PHPMAILER_LANG["connect_host"] = 'SMTP Hiba: Nem tudtam csatlakozni az SMTP host-hoz.';
-$PHPMAILER_LANG["file_access"] = 'Nem sikerült elérni a következõ fájlt: ';
-$PHPMAILER_LANG["file_open"] = 'Fájl Hiba: Nem sikerült megnyitni a következõ fájlt: ';
-$PHPMAILER_LANG["encoding"] = 'Ismeretlen kódolás: ';
-$PHPMAILER_LANG["signing"] = 'Signing Error: ';
-
+<?php\r
+/**\r
+ * PHPMailer language file.\r
+ * Hungarian Version\r
+ */\r
+\r
+$PHPMAILER_LANG = array();\r
+\r
+$PHPMAILER_LANG['provide_address'] = 'Meg kell adnod legalább egy címzett email címet.';\r
+$PHPMAILER_LANG['mailer_not_supported'] = ' levelezõ nem támogatott.';\r
+$PHPMAILER_LANG['execute'] = 'Nem tudtam végrehajtani: ';\r
+$PHPMAILER_LANG['instantiate'] = 'Nem sikerült példányosítani a mail funkciót.';\r
+$PHPMAILER_LANG['authenticate'] = 'SMTP Hiba: Sikertelen autentikáció.';\r
+$PHPMAILER_LANG['from_failed'] = 'Az alábbi Feladó cím hibás: ';\r
+$PHPMAILER_LANG['recipients_failed'] = 'SMTP Hiba: Az alábbi címzettek hibásak: ';\r
+$PHPMAILER_LANG['data_not_accepted'] = 'SMTP Hiba: Nem elfogadható adat.';\r
+$PHPMAILER_LANG['connect_host'] = 'SMTP Hiba: Nem tudtam csatlakozni az SMTP host-hoz.';\r
+$PHPMAILER_LANG['file_access'] = 'Nem sikerült elérni a következõ fájlt: ';\r
+$PHPMAILER_LANG['file_open'] = 'Fájl Hiba: Nem sikerült megnyitni a következõ fájlt: ';\r
+$PHPMAILER_LANG['encoding'] = 'Ismeretlen kódolás: ';\r
+$PHPMAILER_LANG['signing'] = 'Signing Error: ';\r
+$PHPMAILER_LANG['smtp_error'] = 'SMTP server error: ';\r
?>
\ No newline at end of file
-<?php
-/**
-* PHPMailer language file.
-* Italian version
-* @package PHPMailer
-* @author Ilias Bartolini <brain79@inwind.it?>*/
-
-$PHPMAILER_LANG = array();
-
-$PHPMAILER_LANG["provide_address"] = 'Deve essere fornito almeno un'.
- ' indirizzo ricevente';
-$PHPMAILER_LANG["mailer_not_supported"] = 'Mailer non supportato';
-$PHPMAILER_LANG["execute"] = "Impossibile eseguire l'operazione: ";
-$PHPMAILER_LANG["instantiate"] = 'Impossibile istanziare la funzione mail';
-$PHPMAILER_LANG["authenticate"] = 'SMTP Error: Impossibile autenticarsi.';
-$PHPMAILER_LANG["from_failed"] = 'I seguenti indirizzi mittenti hanno'.
- ' generato errore: ';
-$PHPMAILER_LANG["recipients_failed"] = 'SMTP Error: I seguenti indirizzi'.
- 'destinatari hanno generato errore: ';
-$PHPMAILER_LANG["data_not_accepted"] = 'SMTP Error: Data non accettati dal'.
- 'server.';
-$PHPMAILER_LANG["connect_host"] = 'SMTP Error: Impossibile connettersi'.
- ' all\'host SMTP.';
-$PHPMAILER_LANG["file_access"] = 'Impossibile accedere al file: ';
-$PHPMAILER_LANG["file_open"] = 'File Error: Impossibile aprire il file: ';
-$PHPMAILER_LANG["encoding"] = 'Encoding set dei caratteri sconosciuto: ';
-$PHPMAILER_LANG["signing"] = 'Signing Error: ';
-
+<?php\r
+/**\r
+* PHPMailer language file.\r
+* Italian version\r
+* @package PHPMailer\r
+* @author Ilias Bartolini <brain79@inwind.it>*/\r
+\r
+$PHPMAILER_LANG = array();\r
+\r
+$PHPMAILER_LANG['provide_address'] = 'Deve essere fornito almeno un indirizzo ricevente';\r
+$PHPMAILER_LANG['mailer_not_supported'] = 'Mailer non supportato';\r
+$PHPMAILER_LANG['execute'] = 'Impossibile eseguire l\'operazione: ';\r
+$PHPMAILER_LANG['instantiate'] = 'Impossibile istanziare la funzione mail';\r
+$PHPMAILER_LANG['authenticate'] = 'SMTP Error: Impossibile autenticarsi.';\r
+$PHPMAILER_LANG['from_failed'] = 'I seguenti indirizzi mittenti hanno generato errore: ';\r
+$PHPMAILER_LANG['recipients_failed'] = 'SMTP Error: I seguenti indirizzi'.\r
+ 'destinatari hanno generato errore: ';\r
+$PHPMAILER_LANG['data_not_accepted'] = 'SMTP Error: Data non accettati dal'.\r
+ 'server.';\r
+$PHPMAILER_LANG['connect_host'] = 'SMTP Error: Impossibile connettersi all\'host SMTP.';\r
+$PHPMAILER_LANG['file_access'] = 'Impossibile accedere al file: ';\r
+$PHPMAILER_LANG['file_open'] = 'File Error: Impossibile aprire il file: ';\r
+$PHPMAILER_LANG['encoding'] = 'Encoding set dei caratteri sconosciuto: ';\r
+$PHPMAILER_LANG['signing'] = 'Signing Error: ';\r
+$PHPMAILER_LANG['smtp_error'] = 'SMTP server error: ';\r
?>
\ No newline at end of file
-<?php
-/**
- * PHPMailer language file.
- * Dutch Version
- */
-
-$PHPMAILER_LANG = array();
-
-$PHPMAILER_LANG["provide_address"] = 'Er moet tenmiste één ' .
- 'ontvanger emailadres opgegeven worden.';
-$PHPMAILER_LANG["mailer_not_supported"] = ' mailer wordt niet ondersteund.';
-$PHPMAILER_LANG["execute"] = 'Kon niet uitvoeren: ';
-$PHPMAILER_LANG["instantiate"] = 'Kon mail functie niet initialiseren.';
-$PHPMAILER_LANG["authenticate"] = 'SMTP Fout: authenticatie mislukt.';
-$PHPMAILER_LANG["from_failed"] = 'De volgende afzender adressen zijn mislukt: ';
-$PHPMAILER_LANG["recipients_failed"] = 'SMTP Fout: De volgende ' .
- 'ontvangers zijn mislukt: ';
-$PHPMAILER_LANG["data_not_accepted"] = 'SMTP Fout: Data niet geaccepteerd.';
-$PHPMAILER_LANG["connect_host"] = 'SMTP Fout: Kon niet verbinden met SMTP host.';
-$PHPMAILER_LANG["file_access"] = 'Kreeg geen toegang tot bestand: ';
-$PHPMAILER_LANG["file_open"] = 'Bestandsfout: Kon bestand niet openen: ';
-$PHPMAILER_LANG["encoding"] = 'Onbekende codering: ';
-$PHPMAILER_LANG["signing"] = 'Signing Error: ';
-
+<?php\r
+/**\r
+ * PHPMailer language file.\r
+ * Dutch Version\r
+ */\r
+\r
+$PHPMAILER_LANG = array();\r
+\r
+$PHPMAILER_LANG['provide_address'] = 'Er moet tenmiste één ontvanger emailadres opgegeven worden.';\r
+$PHPMAILER_LANG['mailer_not_supported'] = ' mailer wordt niet ondersteund.';\r
+$PHPMAILER_LANG['execute'] = 'Kon niet uitvoeren: ';\r
+$PHPMAILER_LANG['instantiate'] = 'Kon mail functie niet initialiseren.';\r
+$PHPMAILER_LANG['authenticate'] = 'SMTP Fout: authenticatie mislukt.';\r
+$PHPMAILER_LANG['from_failed'] = 'De volgende afzender adressen zijn mislukt: ';\r
+$PHPMAILER_LANG['recipients_failed'] = 'SMTP Fout: De volgende ontvangers zijn mislukt: ';\r
+$PHPMAILER_LANG['data_not_accepted'] = 'SMTP Fout: Data niet geaccepteerd.';\r
+$PHPMAILER_LANG['connect_host'] = 'SMTP Fout: Kon niet verbinden met SMTP host.';\r
+$PHPMAILER_LANG['file_access'] = 'Kreeg geen toegang tot bestand: ';\r
+$PHPMAILER_LANG['file_open'] = 'Bestandsfout: Kon bestand niet openen: ';\r
+$PHPMAILER_LANG['encoding'] = 'Onbekende codering: ';\r
+$PHPMAILER_LANG['signing'] = 'Signing Error: ';\r
+$PHPMAILER_LANG['smtp_error'] = 'SMTP server error: ';\r
?>
\ No newline at end of file
-<?php
-/**
- * PHPMailer language file.
- * Norwegian Version
- */
-
-$PHPMAILER_LANG = array();
-
-$PHPMAILER_LANG["provide_address"] = 'Du må ha med minst en' .
- 'mottager adresse.';
-$PHPMAILER_LANG["mailer_not_supported"] = ' mailer er ikke supportert.';
-$PHPMAILER_LANG["execute"] = 'Kunne ikke utføre: ';
-$PHPMAILER_LANG["instantiate"] = 'Kunne ikke instantiate mail funksjonen.';
-$PHPMAILER_LANG["authenticate"] = 'SMTP Feil: Kunne ikke authentisere.';
-$PHPMAILER_LANG["from_failed"] = 'Følgende Fra feilet: ';
-$PHPMAILER_LANG["recipients_failed"] = 'SMTP Feil: Følgende' .
- 'mottagere feilet: ';
-$PHPMAILER_LANG["data_not_accepted"] = 'SMTP Feil: Data ble ikke akseptert.';
-$PHPMAILER_LANG["connect_host"] = 'SMTP Feil: Kunne ikke koble til SMTP host.';
-$PHPMAILER_LANG["file_access"] = 'Kunne ikke få tilgang til filen: ';
-$PHPMAILER_LANG["file_open"] = 'Fil feil: Kunne ikke åpne filen: ';
-$PHPMAILER_LANG["encoding"] = 'Ukjent encoding: ';
-$PHPMAILER_LANG["signing"] = 'Signing Error: ';
-
+<?php\r
+/**\r
+ * PHPMailer language file.\r
+ * Norwegian Version\r
+ */\r
+\r
+$PHPMAILER_LANG = array();\r
+\r
+$PHPMAILER_LANG['provide_address'] = 'Du må ha med minst en mottager adresse.';\r
+$PHPMAILER_LANG['mailer_not_supported'] = ' mailer er ikke supportert.';\r
+$PHPMAILER_LANG['execute'] = 'Kunne ikke utføre: ';\r
+$PHPMAILER_LANG['instantiate'] = 'Kunne ikke instantiate mail funksjonen.';\r
+$PHPMAILER_LANG['authenticate'] = 'SMTP Feil: Kunne ikke authentisere.';\r
+$PHPMAILER_LANG['from_failed'] = 'Følgende Fra feilet: ';\r
+$PHPMAILER_LANG['recipients_failed'] = 'SMTP Feil: Følgende mottagere feilet: ';\r
+$PHPMAILER_LANG['data_not_accepted'] = 'SMTP Feil: Data ble ikke akseptert.';\r
+$PHPMAILER_LANG['connect_host'] = 'SMTP Feil: Kunne ikke koble til SMTP host.';\r
+$PHPMAILER_LANG['file_access'] = 'Kunne ikke få tilgang til filen: ';\r
+$PHPMAILER_LANG['file_open'] = 'Fil feil: Kunne ikke åpne filen: ';\r
+$PHPMAILER_LANG['encoding'] = 'Ukjent encoding: ';\r
+$PHPMAILER_LANG['signing'] = 'Signing Error: ';\r
+$PHPMAILER_LANG['smtp_error'] = 'SMTP server error: ';\r
?>
\ No newline at end of file
-<?php
-/**
- * PHPMailer language file.
- * Polish Version, encoding: windows-1250
- * translated from english lang file ver. 1.72
- */
-
-$PHPMAILER_LANG = array();
-
-$PHPMAILER_LANG["provide_address"] = 'Nale¿y podaæ prawid³owy adres email Odbiorcy.';
-$PHPMAILER_LANG["mailer_not_supported"] = 'Wybrana metoda wysy³ki wiadomoœci nie jest obs³ugiwana.';
-$PHPMAILER_LANG["execute"] = 'Nie mo¿na uruchomiæ: ';
-$PHPMAILER_LANG["instantiate"] = 'Nie mo¿na wywo³aæ funkcji mail(). SprawdŸ konfiguracjê serwera.';
-$PHPMAILER_LANG["authenticate"] = 'B³¹d SMTP: Nie mo¿na przeprowadziæ autentykacji.';
-$PHPMAILER_LANG["from_failed"] = 'Nastêpuj¹cy adres Nadawcy jest jest nieprawid³owy: ';
-$PHPMAILER_LANG["recipients_failed"] = 'B³¹d SMTP: Nastêpuj¹cy ' .
- 'odbiorcy s¹ nieprawid³owi: ';
-$PHPMAILER_LANG["data_not_accepted"] = 'B³¹d SMTP: Dane nie zosta³y przyjête.';
-$PHPMAILER_LANG["connect_host"] = 'B³¹d SMTP: Nie mo¿na po³¹czyæ siê z wybranym hostem.';
-$PHPMAILER_LANG["file_access"] = 'Brak dostêpu do pliku: ';
-$PHPMAILER_LANG["file_open"] = 'Nie mo¿na otworzyæ pliku: ';
-$PHPMAILER_LANG["encoding"] = 'Nieznany sposób kodowania znaków: ';
-$PHPMAILER_LANG["signing"] = 'Signing Error: ';
-
+<?php\r
+/**\r
+ * PHPMailer language file. \r
+ * Polish Version\r
+ */\r
+\r
+$PHPMAILER_LANG = array();\r
+\r
+$PHPMAILER_LANG["provide_address"] = 'Należy podać prawidłowy adres email Odbiorcy.';\r
+$PHPMAILER_LANG["mailer_not_supported"] = 'Wybrana metoda wysyłki wiadomości nie jest obsługiwana.';\r
+$PHPMAILER_LANG["execute"] = 'Nie można uruchomić: ';\r
+$PHPMAILER_LANG["instantiate"] = 'Nie można wywołać funkcji mail(). Sprawdź konfigurację serwera.';\r
+$PHPMAILER_LANG["authenticate"] = 'Błąd SMTP: Nie można przeprowadzić autentykacji.';\r
+$PHPMAILER_LANG["from_failed"] = 'Następujący adres Nadawcy jest jest nieprawidłowy: ';\r
+$PHPMAILER_LANG["recipients_failed"] = 'Błąd SMTP: Następujący odbiorcy są nieprawidłowi: ';\r
+$PHPMAILER_LANG["data_not_accepted"] = 'Błąd SMTP: Dane nie zostały przyjęte.';\r
+$PHPMAILER_LANG["connect_host"] = 'Błąd SMTP: Nie można połączyć się z wybranym hostem.';\r
+$PHPMAILER_LANG["file_access"] = 'Brak dostępu do pliku: ';\r
+$PHPMAILER_LANG["file_open"] = 'Nie można otworzyć pliku: ';\r
+$PHPMAILER_LANG["encoding"] = 'Nieznany sposób kodowania znaków: ';\r
+$PHPMAILER_LANG['signing'] = 'Signing Error: ';\r
+$PHPMAILER_LANG['smtp_error'] = 'SMTP server error: ';\r
?>
\ No newline at end of file
-<?php
-/**
- * PHPMailer language file.
- * Romanian Version
- * @package PHPMailer
- * @author Catalin Constantin <catalin@dazoot.ro?> */
-
-$PHPMAILER_LANG = array();
-
-$PHPMAILER_LANG["provide_address"] = 'Trebuie sa adaugati cel putin un recipient (adresa de mail).';
-$PHPMAILER_LANG["mailer_not_supported"] = ' mailer nu este suportat.';
-$PHPMAILER_LANG["execute"] = 'Nu pot executa: ';
-$PHPMAILER_LANG["instantiate"] = 'Nu am putut instantia functia mail.';
-$PHPMAILER_LANG["authenticate"] = 'Eroare SMTP: Nu a functionat autentificarea.';
-$PHPMAILER_LANG["from_failed"] = 'Urmatoarele adrese From au dat eroare: ';
-$PHPMAILER_LANG["recipients_failed"] = 'Eroare SMTP: Urmatoarele adrese de mail au dat eroare: ';
-$PHPMAILER_LANG["data_not_accepted"] = 'Eroare SMTP: Continutul mailului nu a fost acceptat.';
-$PHPMAILER_LANG["connect_host"] = 'Eroare SMTP: Nu m-am putut conecta la adresa SMTP.';
-$PHPMAILER_LANG["file_access"] = 'Nu pot accesa fisierul: ';
-$PHPMAILER_LANG["file_open"] = 'Eroare de fisier: Nu pot deschide fisierul: ';
-$PHPMAILER_LANG["encoding"] = 'Encodare necunoscuta: ';
-$PHPMAILER_LANG["signing"] = 'Signing Error: ';
-
+<?php\r
+/**\r
+ * PHPMailer language file.\r
+ * Romanian Version\r
+ * @package PHPMailer\r
+ * @author Catalin Constantin <catalin@dazoot.ro> */\r
+\r
+$PHPMAILER_LANG = array();\r
+\r
+$PHPMAILER_LANG['provide_address'] = 'Trebuie sa adaugati cel putin un recipient (adresa de mail).';\r
+$PHPMAILER_LANG['mailer_not_supported'] = ' mailer nu este suportat.';\r
+$PHPMAILER_LANG['execute'] = 'Nu pot executa: ';\r
+$PHPMAILER_LANG['instantiate'] = 'Nu am putut instantia functia mail.';\r
+$PHPMAILER_LANG['authenticate'] = 'Eroare SMTP: Nu a functionat autentificarea.';\r
+$PHPMAILER_LANG['from_failed'] = 'Urmatoarele adrese From au dat eroare: ';\r
+$PHPMAILER_LANG['recipients_failed'] = 'Eroare SMTP: Urmatoarele adrese de mail au dat eroare: ';\r
+$PHPMAILER_LANG['data_not_accepted'] = 'Eroare SMTP: Continutul mailului nu a fost acceptat.';\r
+$PHPMAILER_LANG['connect_host'] = 'Eroare SMTP: Nu m-am putut conecta la adresa SMTP.';\r
+$PHPMAILER_LANG['file_access'] = 'Nu pot accesa fisierul: ';\r
+$PHPMAILER_LANG['file_open'] = 'Eroare de fisier: Nu pot deschide fisierul: ';\r
+$PHPMAILER_LANG['encoding'] = 'Encodare necunoscuta: ';\r
+$PHPMAILER_LANG['signing'] = 'Signing Error: ';\r
+$PHPMAILER_LANG['smtp_error'] = 'SMTP server error: ';\r
?>
\ No newline at end of file
-<?php
-/**
- * PHPMailer language file.
- * Russian Version by Alexey Chumakov <alex@chumakov.ru?> */
-
-$PHPMAILER_LANG = array();
-
-$PHPMAILER_LANG["provide_address"] = 'Ïîæàëóéñòà, ââåäèòå õîòÿ áû îäèí àäðåñ e-mail ' .
- 'ïîëó÷àòåëÿ.';
-$PHPMAILER_LANG["mailer_not_supported"] = ' - ïî÷òîâûé ñåðâåð íå ïîääåðæèâàåòñÿ.';
-$PHPMAILER_LANG["execute"] = 'Íåâîçìîæíî âûïîëíèòü êîìàíäó: ';
-$PHPMAILER_LANG["instantiate"] = 'Íåâîçìîæíî çàïóñòèòü ôóíêöèþ mail.';
-$PHPMAILER_LANG["authenticate"] = 'Îøèáêà SMTP: îøèáêà àâòîðèçàöèè.';
-$PHPMAILER_LANG["from_failed"] = 'Íåâåðíûé àäðåñ îòïðàâèòåëÿ: ';
-$PHPMAILER_LANG["recipients_failed"] = 'Îøèáêà SMTP: îòïðàâêà ïî ñëåäóþùèì ' .
- 'àäðåñàì ïîëó÷àòåëåé íå óäàëàñü: ';
-$PHPMAILER_LANG["data_not_accepted"] = 'Îøèáêà SMTP: äàííûå íå ïðèíÿòû.';
-$PHPMAILER_LANG["connect_host"] = 'Îøèáêà SMTP: íå óäàåòñÿ ïîäêëþ÷èòüñÿ ê ñåðâåðó SMTP.';
-$PHPMAILER_LANG["file_access"] = 'Íåò äîñòóïà ê ôàéëó: ';
-$PHPMAILER_LANG["file_open"] = 'Ôàéëîâàÿ îøèáêà: íå óäàåòñÿ îòêðûòü ôàéë: ';
-$PHPMAILER_LANG["encoding"] = 'Íåèçâåñòíûé âèä êîäèðîâêè: ';
-$PHPMAILER_LANG["signing"] = 'Signing Error: ';
-
+<?php\r
+/**\r
+ * PHPMailer language file.\r
+ * Russian Version by Alexey Chumakov <alex@chumakov.ru> */\r
+\r
+$PHPMAILER_LANG = array();\r
+\r
+$PHPMAILER_LANG['provide_address'] = 'Пожалуйста, введите хотя бы один адрес e-mail получателя.';\r
+$PHPMAILER_LANG['mailer_not_supported'] = ' - почтовый сервер не поддерживается.';\r
+$PHPMAILER_LANG['execute'] = 'Невозможно выполнить команду: ';\r
+$PHPMAILER_LANG['instantiate'] = 'Невозможно запустить функцию mail.';\r
+$PHPMAILER_LANG['authenticate'] = 'Ошибка SMTP: ошибка авторизации.';\r
+$PHPMAILER_LANG['from_failed'] = 'Неверный адрес отправителя: ';\r
+$PHPMAILER_LANG['recipients_failed'] = 'Ошибка SMTP: отправка по следующим ' .\r
+ 'адресам получателей не удалась: ';\r
+$PHPMAILER_LANG['data_not_accepted'] = 'Ошибка SMTP: данные не приняты.';\r
+$PHPMAILER_LANG['connect_host'] = 'Ошибка SMTP: не удается подключиться к серверу SMTP.';\r
+$PHPMAILER_LANG['file_access'] = 'Нет доступа к файлу: ';\r
+$PHPMAILER_LANG['file_open'] = 'Файловая ошибка: не удается открыть файл: ';\r
+$PHPMAILER_LANG['encoding'] = 'Неизвестный вид кодировки: ';\r
+$PHPMAILER_LANG['signing'] = 'Signing Error: ';\r
+$PHPMAILER_LANG['smtp_error'] = 'SMTP server error: ';\r
?>
\ No newline at end of file
-<?php
-/**
- * PHPMailer language file.
- * Swedish Version
- * Author: Johan Linnér <johan@linner.biz?> */
-
-$PHPMAILER_LANG = array();
-
-$PHPMAILER_LANG["provide_address"] = 'Du måste ange minst en ' .
- 'mottagares e-postadress.';
-$PHPMAILER_LANG["mailer_not_supported"] = ' mailer stöds inte.';
-$PHPMAILER_LANG["execute"] = 'Kunde inte köra: ';
-$PHPMAILER_LANG["instantiate"] = 'Kunde inte initiera e-postfunktion.';
-$PHPMAILER_LANG["authenticate"] = 'SMTP fel: Kunde inte autentisera.';
-$PHPMAILER_LANG["from_failed"] = 'Följande avsändaradress är felaktig: ';
-$PHPMAILER_LANG["recipients_failed"] = 'SMTP fel: Följande ' .
- 'mottagare är felaktig: ';
-$PHPMAILER_LANG["data_not_accepted"] = 'SMTP fel: Data accepterades inte.';
-$PHPMAILER_LANG["connect_host"] = 'SMTP fel: Kunde inte ansluta till SMTP-server.';
-$PHPMAILER_LANG["file_access"] = 'Ingen åtkomst till fil: ';
-$PHPMAILER_LANG["file_open"] = 'Fil fel: Kunde inte öppna fil: ';
-$PHPMAILER_LANG["encoding"] = 'Okänt encode-format: ';
-$PHPMAILER_LANG["signing"] = 'Signing Error: ';
-
+<?php\r
+/**\r
+ * PHPMailer language file.\r
+ * Swedish Version\r
+ * Author: Johan Linnér <johan@linner.biz> */\r
+\r
+$PHPMAILER_LANG = array();\r
+\r
+$PHPMAILER_LANG['provide_address'] = 'Du måste ange minst en mottagares e-postadress.';\r
+$PHPMAILER_LANG['mailer_not_supported'] = ' mailer stöds inte.';\r
+$PHPMAILER_LANG['execute'] = 'Kunde inte köra: ';\r
+$PHPMAILER_LANG['instantiate'] = 'Kunde inte initiera e-postfunktion.';\r
+$PHPMAILER_LANG['authenticate'] = 'SMTP fel: Kunde inte autentisera.';\r
+$PHPMAILER_LANG['from_failed'] = 'Följande avsändaradress är felaktig: ';\r
+$PHPMAILER_LANG['recipients_failed'] = 'SMTP fel: Följande mottagare är felaktig: ';\r
+$PHPMAILER_LANG['data_not_accepted'] = 'SMTP fel: Data accepterades inte.';\r
+$PHPMAILER_LANG['connect_host'] = 'SMTP fel: Kunde inte ansluta till SMTP-server.';\r
+$PHPMAILER_LANG['file_access'] = 'Ingen åtkomst till fil: ';\r
+$PHPMAILER_LANG['file_open'] = 'Fil fel: Kunde inte öppna fil: ';\r
+$PHPMAILER_LANG['encoding'] = 'Okänt encode-format: ';\r
+$PHPMAILER_LANG['signing'] = 'Signing Error: ';\r
+$PHPMAILER_LANG['smtp_error'] = 'SMTP server error: ';\r
?>
\ No newline at end of file
-<?php
-/**
- * PHPMailer dil dosyasý.
- * Türkçe Versiyonu
- * ÝZYAZILIM - Elçin Özel - Can Yýlmaz - Mehmet Benlioðlu
- */
-
-$PHPMAILER_LANG = array();
-
-$PHPMAILER_LANG["provide_address"] = 'En az bir tane mail adresi belirtmek zorundasýnýz ' .
- 'alýcýnýn email adresi.';
-$PHPMAILER_LANG["mailer_not_supported"] = ' mailler desteklenmemektedir.';
-$PHPMAILER_LANG["execute"] = 'Çalýþtýrýlamýyor: ';
-$PHPMAILER_LANG["instantiate"] = 'Örnek mail fonksiyonu yaratýlamadý.';
-$PHPMAILER_LANG["authenticate"] = 'SMTP Hatasý: Doðrulanamýyor.';
-$PHPMAILER_LANG["from_failed"] = 'Baþarýsýz olan gönderici adresi: ';
-$PHPMAILER_LANG["recipients_failed"] = 'SMTP Hatasý: ' .
- 'alýcýlara ulaþmadý: ';
-$PHPMAILER_LANG["data_not_accepted"] = 'SMTP Hatasý: Veri kabul edilmedi.';
-$PHPMAILER_LANG["connect_host"] = 'SMTP Hatasý: SMTP hosta baðlanýlamýyor.';
-$PHPMAILER_LANG["file_access"] = 'Dosyaya eriþilemiyor: ';
-$PHPMAILER_LANG["file_open"] = 'Dosya Hatasý: Dosya açýlamýyor: ';
-$PHPMAILER_LANG["encoding"] = 'Bilinmeyen þifreleme: ';
-$PHPMAILER_LANG["signing"] = 'Signing Error: ';
-
+<?php\r
+/**\r
+ * PHPMailer dil dosyasý.\r
+ * Türkçe Versiyonu\r
+ * ÝZYAZILIM - Elçin Özel - Can Yýlmaz - Mehmet Benlioðlu\r
+ */\r
+\r
+$PHPMAILER_LANG = array();\r
+\r
+$PHPMAILER_LANG['provide_address'] = 'En az bir tane mail adresi belirtmek zorundasýnýz alýcýnýn email adresi.';\r
+$PHPMAILER_LANG['mailer_not_supported'] = ' mailler desteklenmemektedir.';\r
+$PHPMAILER_LANG['execute'] = 'Çalýþtýrýlamýyor: ';\r
+$PHPMAILER_LANG['instantiate'] = 'Örnek mail fonksiyonu yaratýlamadý.';\r
+$PHPMAILER_LANG['authenticate'] = 'SMTP Hatasý: Doðrulanamýyor.';\r
+$PHPMAILER_LANG['from_failed'] = 'Baþarýsýz olan gönderici adresi: ';\r
+$PHPMAILER_LANG['recipients_failed'] = 'SMTP Hatasý: alýcýlara ulaþmadý: ';\r
+$PHPMAILER_LANG['data_not_accepted'] = 'SMTP Hatasý: Veri kabul edilmedi.';\r
+$PHPMAILER_LANG['connect_host'] = 'SMTP Hatasý: SMTP hosta baðlanýlamýyor.';\r
+$PHPMAILER_LANG['file_access'] = 'Dosyaya eriþilemiyor: ';\r
+$PHPMAILER_LANG['file_open'] = 'Dosya Hatasý: Dosya açýlamýyor: ';\r
+$PHPMAILER_LANG['encoding'] = 'Bilinmeyen þifreleme: ';\r
+$PHPMAILER_LANG['signing'] = 'Signing Error: ';\r
+$PHPMAILER_LANG['smtp_error'] = 'SMTP server error: ';\r
?>
\ No newline at end of file
--- /dev/null
+<?php
+/**
+ * PHPMailer language file.
+ * Traditional Chinese Version
+ * @author liqwei <liqwei@liqwei.com>
+ */
+
+$PHPMAILER_LANG = array();
+$PHPMAILER_LANG['provide_address'] = '必須提供至少一個收件人地址。';
+$PHPMAILER_LANG['mailer_not_supported'] = '發信客戶端不被支持。';
+$PHPMAILER_LANG['execute'] = '無法執行:';
+$PHPMAILER_LANG['instantiate'] = '未知函數調用。';
+$PHPMAILER_LANG['authenticate'] = 'SMTP 錯誤:登錄失敗。';
+$PHPMAILER_LANG['from_failed'] = '發送地址錯誤:';
+$PHPMAILER_LANG['recipients_failed'] = 'SMTP 錯誤:收件人地址錯誤:';
+$PHPMAILER_LANG['data_not_accepted'] = 'SMTP 錯誤:數據不被接受。';
+$PHPMAILER_LANG['connect_host'] = 'SMTP 錯誤:無法連接到 SMTP 主機。';
+$PHPMAILER_LANG['file_access'] = '無法訪問文件:';
+$PHPMAILER_LANG['file_open'] = '文件錯誤:無法打開文件:';
+$PHPMAILER_LANG['encoding'] = '未知編碼: ';
+$PHPMAILER_LANG['signing'] = 'Signing Error: ';
+$PHPMAILER_LANG['smtp_error'] = 'SMTP server error: ';
+?>
\ No newline at end of file
--- /dev/null
+<?php
+/**
+ * PHPMailer language file.
+ * Simplified Chinese Version
+ * @author liqwei <liqwei@liqwei.com>
+ */
+
+$PHPMAILER_LANG = array();
+
+$PHPMAILER_LANG["provide_address"] = '必须提供至少一个收件人地址。';
+$PHPMAILER_LANG["mailer_not_supported"] = '发信客户端不被支持。';
+$PHPMAILER_LANG["execute"] = '无法执行:';
+$PHPMAILER_LANG["instantiate"] = '未知函数调用。';
+$PHPMAILER_LANG["authenticate"] = 'SMTP 错误:登录失败。';
+$PHPMAILER_LANG["from_failed"] = '发送地址错误:';
+$PHPMAILER_LANG["recipients_failed"] = 'SMTP 错误:收件人地址错误:';
+$PHPMAILER_LANG["data_not_accepted"] = 'SMTP 错误:数据不被接受。';
+$PHPMAILER_LANG["connect_host"] = 'SMTP 错误:无法连接到 SMTP 主机。';
+$PHPMAILER_LANG["file_access"] = '无法访问文件:';
+$PHPMAILER_LANG["file_open"] = '文件错误:无法打开文件:';
+$PHPMAILER_LANG["encoding"] = '未知编码: ';
+$PHPMAILER_LANG["signing"] = 'Signing Error: ';
+$PHPMAILER_LANG['smtp_error'] = 'SMTP server error: ';
+?>
\ No newline at end of file
\r
$INCLUDE_DIR = "../";\r
\r
-include("phpunit.php");\r
-include($INCLUDE_DIR . "class.phpmailer.php");\r
+require("phpunit.php");\r
+require($INCLUDE_DIR . "class.phpmailer.php");\r
error_reporting(E_ALL);\r
\r
/**\r
$this->Mail->Subject = "Unit Test";\r
$this->Mail->Body = "";\r
$this->Mail->AltBody = "";\r
- $this->Mail->WordWrap = '0';\r
+ $this->Mail->WordWrap = 0;\r
$this->Mail->Host = $global_vars["mail_host"];\r
$this->Mail->Port = 25;\r
$this->Mail->Helo = "localhost.localdomain";\r
{\r
$ReportBody .= "Attachments:" . $eol;\r
$ReportBody .= $bullet_start;\r
- for($i = '0'; $i < count($this->Mail->attachment); $i++)\r
+ for($i = 0; $i < count($this->Mail->attachment); $i++)\r
{\r
$ReportBody .= $bullet . "Name: " . $this->Mail->attachment[$i][1] . ", ";\r
$ReportBody .= "Encoding: " . $this->Mail->attachment[$i][3] . ", ";\r
$ReportBody .= "-------" . $eol;\r
\r
$ReportBody .= $bullet_start;\r
- for($i = '0'; $i < count($this->ChangeLog); $i++)\r
+ for($i = 0; $i < count($this->ChangeLog); $i++)\r
{\r
$ReportBody .= $bullet . $this->ChangeLog[$i][0] . " was changed to [" . \r
$this->ChangeLog[$i][1] . "]" . $eol;\r
$ReportBody .= "-----" . $eol;\r
\r
$ReportBody .= $bullet_start;\r
- for($i = '0'; $i < count($this->NoteLog); $i++)\r
+ for($i = 0; $i < count($this->NoteLog); $i++)\r
{\r
$ReportBody .= $bullet . $this->NoteLog[$i] . $eol;\r
}\r
// Written by Fred Yankowski <fred@ontosys.com>\r
// OntoSys, Inc <http://www.OntoSys.com>\r
//\r
-// $Id: phpunit.php 880 2009-03-07 02:55:57Z quix0r $\r
+// $Id: phpunit.php,v 1.1 2002/03/30 19:32:17 bmatzelle Exp $\r
\r
// Copyright (c) 2000 Fred Yankowski\r
\r
$testResult = $this->_createResult();\r
$this->fResult = $testResult;\r
$testResult->run(&$this);\r
- $this->fResult = '0';\r
+ $this->fResult = 0;\r
return $testResult;\r
}\r
\r
function countTestCases() {\r
/* Number of TestCases comprising this TestSuite (including those\r
in any constituent TestSuites) */\r
- $count = '0';\r
+ $count = 0;\r
reset($fTests);\r
while (list($na, $test_case) = each($this->fTests)) {\r
$count += $test_case->countTestCases();\r
class TestResult {\r
/* Collect the results of running a set of TestCases. */\r
var $fFailures = array();\r
- var $fRunTests = '0';\r
+ var $fRunTests = 0;\r
var $fStop = false;\r
\r
function TestResult() { }\r
$nFailures = $this->countFailures();\r
printf("<p>%s test%s run<br>", $nRun, ($nRun == 1) ? '' : 's');\r
printf("%s failure%s.<br>\n", $nFailures, ($nFailures == 1) ? '' : 's');\r
- if ($nFailures == '0')\r
+ if ($nFailures == 0)\r
return;\r
\r
print("<ol>\n");\r