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.
Merge pull request PHPMailer#406 from ChalkPE/master
Added Korean language file
- Loading branch information
Showing
1 changed file
with
26 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<?php | ||
/** | ||
* Korean PHPMailer language file: refer to English translation for definitive list | ||
* @package PHPMailer | ||
* @author ChalkPE <[email protected]> | ||
*/ | ||
|
||
$PHPMAILER_LANG['authenticate'] = 'SMTP 오류: 인증할 수 없습니다.'; | ||
$PHPMAILER_LANG['connect_host'] = 'SMTP 오류: SMTP 호스트에 접속할 수 없습니다.'; | ||
$PHPMAILER_LANG['data_not_accepted'] = 'SMTP 오류: 데이터가 받아들여지지 않았습니다.'; | ||
$PHPMAILER_LANG['empty_message'] = '메세지 내용이 없습니다'; | ||
$PHPMAILER_LANG['encoding'] = '알 수 없는 인코딩: '; | ||
$PHPMAILER_LANG['execute'] = '실행 불가: '; | ||
$PHPMAILER_LANG['file_access'] = '파일 접근 불가: '; | ||
$PHPMAILER_LANG['file_open'] = '파일 오류: 파일을 열 수 없습니다: '; | ||
$PHPMAILER_LANG['from_failed'] = '다음 From 주소에서 오류가 발생했습니다: '; | ||
$PHPMAILER_LANG['instantiate'] = 'mail 함수를 인스턴스화할 수 없습니다'; | ||
$PHPMAILER_LANG['invalid_address'] = '잘못된 주소'; | ||
$PHPMAILER_LANG['mailer_not_supported'] = ' 메일러는 지원되지 않습니다.'; | ||
$PHPMAILER_LANG['provide_address'] = '적어도 한 개 이상의 수신자 메일 주소를 제공해야 합니다.'; | ||
$PHPMAILER_LANG['recipients_failed'] = 'SMTP 오류: 다음 수신자에서 오류가 발생했습니다: '; | ||
$PHPMAILER_LANG['signing'] = '서명 오류: '; | ||
$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP 연결을 실패하였습니다.'; | ||
$PHPMAILER_LANG['smtp_error'] = 'SMTP 서버 오류: '; | ||
$PHPMAILER_LANG['variable_set'] = '변수 설정 및 초기화 불가: '; | ||
$PHPMAILER_LANG['extension_missing'] = '확장자 없음: '; |