forked from PHPMailer/PHPMailer
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add smtp error string to all languages
Remove stray comment chars in Arabic translation Correct UTF-8 encoding of Russian and Chinese translations Use single quotes in all array indices in language files Remove unnecessary string concatenations and blank lines Japanese and Polish are still broken
- Loading branch information
Showing
24 changed files
with
312 additions
and
339 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,24 @@ | ||
<?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"] = '未知编码:'; | ||
<?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: '; | ||
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.