Skip to content

Commit 85afd66

Browse files
authored
[ko] Update Korea translations (#520)
1 parent f4f24d9 commit 85afd66

30 files changed

Lines changed: 133 additions & 34 deletions

Language/ko/Api.php

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
/**
6+
* This file is part of CodeIgniter 4 framework.
7+
*
8+
* (c) CodeIgniter Foundation <admin@codeigniter.com>
9+
*
10+
* For the full copyright and license information, please view
11+
* the LICENSE file that was distributed with this source code.
12+
*/
13+
14+
// API language settings
15+
return [
16+
'invalidFields' => '유효하지 않은 필드 요청: {0}', // 'Invalid field requested: {0}'
17+
'invalidIncludes' => '유효하지 않은 항목 포함 요청: {0}', // 'Invalid include requested: {0}'
18+
'missingInclude' => '포함 메서드가 없습니다: {0}', // 'Missing include method for: {0}'
19+
'transformerNotFound' => 'Transformer 클래스 \'{0}\'를 찾을 수 없습니다.', // 'Transformer class \'{0}\' not found.'
20+
'invalidTransformer' => 'Transformer 클래스 \'{0}\'는 TransformerInterface를 구현해야 합니다.', // 'Transformer class \'{0}\' must implement TransformerInterface.'
21+
];

Language/ko/CLI.php

Lines changed: 20 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
/**
46
* This file is part of CodeIgniter 4 framework.
57
*
@@ -17,18 +19,19 @@
1719
'generator' => [
1820
'cancelOperation' => '작업이 취소되었습니다.', // 'Operation has been cancelled.'
1921
'className' => [
20-
'cell' => '셀 클래스 이름', // 'Cell class name'
21-
'command' => '커멘드 클래스 이름', // 'Command class name'
22-
'config' => '설정 클래스 이름', // 'Config class name'
23-
'controller' => '컨트롤러 클래스 이름', // 'Controller class name'
24-
'default' => '클래스 이름', // 'Class name'
25-
'entity' => '엔티티 클래스 이름', // 'Entity class name'
26-
'filter' => '필터 클래스 이름', // 'Filter class name'
27-
'migration' => '마이그레이션 클래스 이름', // 'Migration class name'
28-
'model' => '모델 클래스 이름', // 'Model class name'
29-
'seeder' => '시더 클래스 이름', // 'Seeder class name'
30-
'test' => '테스트 클래스 이름', // 'Test class name'
31-
'validation' => '벨리데이션 클래스 이름', // 'Validation class name'
22+
'cell' => '셀 클래스 이름', // 'Cell class name'
23+
'command' => '커멘드 클래스 이름', // 'Command class name'
24+
'config' => '설정 클래스 이름', // 'Config class name'
25+
'controller' => '컨트롤러 클래스 이름', // 'Controller class name'
26+
'default' => '클래스 이름', // 'Class name'
27+
'entity' => '엔티티 클래스 이름', // 'Entity class name'
28+
'filter' => '필터 클래스 이름', // 'Filter class name'
29+
'migration' => '마이그레이션 클래스 이름', // 'Migration class name'
30+
'model' => '모델 클래스 이름', // 'Model class name'
31+
'seeder' => '시더 클래스 이름', // 'Seeder class name'
32+
'test' => '테스트 클래스 이름', // 'Test class name'
33+
'transformer' => 'Transformer 클래스 이름', // 'Transformer class name'
34+
'validation' => '벨리데이션 클래스 이름', // 'Validation class name'
3235
],
3336
'commandType' => '커멘드 타입', // 'Command type'
3437
'databaseGroup' => '데이터베이스 그룹', // 'Database group'
@@ -50,4 +53,9 @@
5053
'helpUsage' => '사용:', // 'Usage:'
5154
'invalidColor' => '유효하지 않은 "{0}" 색상: "{1}".', // 'Invalid "{0}" color: "{1}".'
5255
'namespaceNotDefined' => '네임 스페이스 "{0}"이(가) 정의되지 않았습니다.', // 'Namespace "{0}" is not defined.'
56+
'signals' => [
57+
'noPcntlExtension' => 'PCNTL 확장을 사용할 수 없습니다. 시그널 핸들링 비활성화.', // 'PCNTL extension not available. Signal handling disabled.'
58+
'noPosixExtension' => 'SIGTSTP/SIGCONT 처리를 위해서는 POSIX 확장이 필요합니다. 이 시그널들은 등록에서 제외됩니다.', // 'SIGTSTP/SIGCONT handling requires POSIX extension. These signals will be removed from registration.'
59+
'failedSignal' => '시그널 등록 실패: "{0}".', // 'Failed to register handler for signal: "{0}".'
60+
],
5361
];

Language/ko/Cache.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
/**
46
* This file is part of CodeIgniter 4 framework.
57
*

Language/ko/Cast.php

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
/**
46
* This file is part of CodeIgniter 4 framework.
57
*
@@ -12,6 +14,11 @@
1214
// Cast language settings
1315
return [
1416
'baseCastMissing' => '"{0}" 클래스는 "CodeIgniter\Entity\Cast\BaseCast" 클래스를 상속해야 합니다.', // 'The "{0}" class must inherit the "CodeIgniter\Entity\Cast\BaseCast" class.'
17+
'enumInvalidCaseName' => '열거형(Enum) "{1}"에 유효하지 않은 케이스 이름 "{0}"이(가) 있습니다..', // 'Invalid case name "{0}" for enum "{1}".'
18+
'enumInvalidType' => '열거형(Enum) 타입 "{1}"이(가) 필요하지만, "{0}"이(가) 수신되었습니다..', // 'Expected enum of type "{1}", but received "{0}".'
19+
'enumInvalidValue' => '열거형(Enum) "{0}"에 잘못된 값 "{1}"이(가) 입력되었습니다.', // 'Invalid value "{1}" for enum "{0}".'
20+
'enumMissingClass' => '열거형(Enum) 캐스팅을 위한 enum 클래스가 지정되어야 합니다.', // 'Enum class must be specified for enum casting.'
21+
'enumNotEnum' => '"{0}"은(는) 올바른 열거형(Enum) 클래스 형식이 아닙니다.', // 'The "{0}" is not a valid enum class.'
1522
'invalidCastMethod' => '"{0}"는 유효하지 않은 캐스팅 메소드이며, 유효한 메소드들은 ["get", "set"]입니다.', // 'The "{0}" is invalid cast method, valid methods are: ["get", "set"].'
1623
'invalidTimestamp' => '"timestamp" 캐스팅 유형은 timestamp여야 합니다.', // 'Type casting "timestamp" expects a correct timestamp.'
1724
'jsonErrorCtrlChar' => '예상치 못한 제어 문자 존재', // 'Unexpected control character found.'

Language/ko/Cookie.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
/**
46
* This file is part of CodeIgniter 4 framework.
57
*

Language/ko/Core.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
/**
46
* This file is part of CodeIgniter 4 framework.
57
*

Language/ko/Database.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
/**
46
* This file is part of CodeIgniter 4 framework.
57
*

Language/ko/Email.php

Lines changed: 25 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
/**
46
* This file is part of CodeIgniter 4 framework.
57
*
@@ -11,23 +13,27 @@
1113

1214
// Email language settings
1315
return [
14-
'mustBeArray' => '이메일 유효성 검사 방법은 배열로 전달되어야합니다.', // 'The email validation method must be passed an array.'
15-
'invalidAddress' => '유효하지 않은 이메일 주소: "{0}"', // 'Invalid email address: "{0}"'
16-
'attachmentMissing' => '다음 이메일 첨부 파일을 찾을 수 없습니다. "{0}"', // 'Unable to locate the following email attachment: "{0}"'
17-
'attachmentUnreadable' => '이 첨부 파일을 열 수 없습니다: "{0}"', // 'Unable to open this attachment: "{0}"'
18-
'noFrom' => '"From" 헤더가 없는 메일은 보낼 수 없습니다.', // 'Cannot send mail with no "From" header.'
19-
'noRecipients' => '받는 사람을 포함해야합니다(To, Cc, or Bcc)', // 'You must include recipients: To, Cc, or Bcc'
20-
'sendFailurePHPMail' => 'PHP mail()을 사용하여 이메일을 보낼 수 없습니다. 이 방법을 사용하여 메일을 보내도록 서버가 구성되지 않았을 수 있습니다.', // 'Unable to send email using PHP mail(). Your server might not be configured to send mail using this method.'
21-
'sendFailureSendmail' => 'Sendmail을 사용하여 이메일을 보낼 수 없습니다. 이 방법을 사용하여 메일을 보내도록 서버가 구성되지 않았을 수 있습니다.', // 'Unable to send email using Sendmail. Your server might not be configured to send mail using this method.'
22-
'sendFailureSmtp' => 'SMTP를 사용하여 이메일을 보낼 수 없습니다. 이 방법을 사용하여 메일을 보내도록 서버가 구성되지 않았을 수 있습니다.', // 'Unable to send email using SMTP. Your server might not be configured to send mail using this method.'
23-
'sent' => '{0} 프로토콜을 사용하여 메시지가 성공적으로 전송되었습니다.', // 'Your message has been successfully sent using the following protocol: {0}'
24-
'noSocket' => 'Sendmail 소켓을 열 수 없습니다. 설정을 확인하십시오.', // 'Unable to open a socket to Sendmail. Please check settings.'
25-
'noHostname' => 'SMTP 호스트 이름을 지정하지 않았습니다.', // 'You did not specify a SMTP hostname.'
26-
'SMTPError' => '다음 SMTP 오류가 발생했습니다: {0}', // 'The following SMTP error was encountered: {0}'
27-
'noSMTPAuth' => '오류: SMTP 사용자 이름과 비밀번호를 지정해야합니다.', // 'Error: You must assign an SMTP username and password.'
28-
'failedSMTPLogin' => 'AUTH LOGIN 명령을 보내지 못했습니다. 오류: {0}', // 'Failed to send AUTH LOGIN command. Error: {0}'
29-
'SMTPAuthUsername' => '사용자 이름을 인증하지 못했습니다. 오류: {0}', // 'Failed to authenticate username. Error: {0}'
30-
'SMTPAuthPassword' => '비밀번호 인증에 실패했습니다. 오류: {0}', // 'Failed to authenticate password. Error: {0}'
31-
'SMTPDataFailure' => '데이터를 보낼 수 없습니다: {0}', // 'Unable to send data: {0}'
32-
'exitStatus' => '종료 상태 코드 : {0}', // 'Exit status code: {0}'
16+
'mustBeArray' => '이메일 유효성 검사 방법은 배열로 전달되어야합니다.', // 'The email validation method must be passed an array.'
17+
'invalidAddress' => '유효하지 않은 이메일 주소: "{0}"', // 'Invalid email address: "{0}"'
18+
'attachmentMissing' => '다음 이메일 첨부 파일을 찾을 수 없습니다. "{0}"', // 'Unable to locate the following email attachment: "{0}"'
19+
'attachmentUnreadable' => '이 첨부 파일을 열 수 없습니다: "{0}"', // 'Unable to open this attachment: "{0}"'
20+
'noFrom' => '"From" 헤더가 없는 메일은 보낼 수 없습니다.', // 'Cannot send mail with no "From" header.'
21+
'noRecipients' => '받는 사람을 포함해야합니다(To, Cc, or Bcc)', // 'You must include recipients: To, Cc, or Bcc'
22+
'sendFailurePHPMail' => 'PHP mail()을 사용하여 이메일을 보낼 수 없습니다. 이 방법을 사용하여 메일을 보내도록 서버가 구성되지 않았을 수 있습니다.', // 'Unable to send email using PHP mail(). Your server might not be configured to send mail using this method.'
23+
'sendFailureSendmail' => 'Sendmail을 사용하여 이메일을 보낼 수 없습니다. 이 방법을 사용하여 메일을 보내도록 서버가 구성되지 않았을 수 있습니다.', // 'Unable to send email using Sendmail. Your server might not be configured to send mail using this method.'
24+
'sendFailureSmtp' => 'SMTP를 사용하여 이메일을 보낼 수 없습니다. 이 방법을 사용하여 메일을 보내도록 서버가 구성되지 않았을 수 있습니다.', // 'Unable to send email using SMTP. Your server might not be configured to send mail using this method.'
25+
'sent' => '{0} 프로토콜을 사용하여 메시지가 성공적으로 전송되었습니다.', // 'Your message has been successfully sent using the following protocol: {0}'
26+
'noSocket' => 'Sendmail 소켓을 열 수 없습니다. 설정을 확인하십시오.', // 'Unable to open a socket to Sendmail. Please check settings.'
27+
'noHostname' => 'SMTP 호스트 이름을 지정하지 않았습니다.', // 'You did not specify a SMTP hostname.'
28+
'SMTPError' => '다음 SMTP 오류가 발생했습니다: {0}', // 'The following SMTP error was encountered: {0}'
29+
'noSMTPAuth' => '오류: SMTP 사용자 이름과 비밀번호를 지정해야합니다.', // 'Error: You must assign an SMTP username and password.'
30+
'invalidSMTPAuthMethod' => '오류: SMTP 인증 방식 "{0}"은(는) codeigniter에서 지원되지 않습니다. "login" 또는 "plain" 인증 방식으로 설정하세요.', // 'Error: SMTP authorization method "{0}" is not supported in codeigniter, set either "login" or "plain" authorization method'
31+
'failureSMTPAuthMethod' => 'AUTH 명령 실행에 실패했습니다. 귀하의 서버가 "{0}" 인증 방식을 지원하지 않거나 설정이 누락되었을 수 있습니다.', // 'Unable to initiate AUTH command. Your server might not be configured to use AUTH {0} authentication method.'
32+
'SMTPAuthCredentials' => '사용자 인증 정보 확인에 실패하였습니다. 에러 내용: {0}', // 'Failed to authenticate user credentials. Error: {0}'
33+
'SMTPAuthUsername' => '사용자 이름을 인증하지 못했습니다. 오류: {0}', // 'Failed to authenticate username. Error: {0}'
34+
'SMTPAuthPassword' => '비밀번호 인증에 실패했습니다. 오류: {0}', // 'Failed to authenticate password. Error: {0}'
35+
'SMTPDataFailure' => '데이터를 보낼 수 없습니다: {0}', // 'Unable to send data: {0}'
36+
'exitStatus' => '종료 상태 코드 : {0}', // 'Exit status code: {0}'
37+
// @deprecated
38+
'failedSMTPLogin' => 'AUTH LOGIN 명령을 보내지 못했습니다. 오류: {0}', // 'Failed to send AUTH LOGIN command. Error: {0}'
3339
];

Language/ko/Encryption.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
/**
46
* This file is part of CodeIgniter 4 framework.
57
*

Language/ko/Errors.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
/**
46
* This file is part of CodeIgniter 4 framework.
57
*

0 commit comments

Comments
 (0)