Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ko] Add Language.php, Update Core.php #410

Merged
merged 1 commit into from
Oct 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Language/ko/Core.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
'copyError' => '"{0}" 파일 교체를 시도하는 도중에 에러가 발생하였습니다. 파일 디렉터리에 쓰기 권한이 있는지 확인해주십시오.', // 'An error was encountered while attempting to replace the file "{0}". Please make sure your file directory is writable.'
'enabledZlibOutputCompression' => 'zlib.output_compression ini 지시문이 켜져 있습니다. 이것은 출력 버퍼에서 잘 작동하지 않습니다.', // 'Your zlib.output_compression ini directive is turned on. This will not work well with output buffers.'
'invalidFile' => '유효하지 않은 파일: "{0}"', // 'Invalid file: "{0}"'
'invalidDirectory' => '존재하지 않는 디렉토리: "{0}"', // 'Directory does not exist: "{0}"',
'invalidPhpVersion' => 'CodeIgniter를 실행하려면 PHP 버전이 {0} 이상이어야합니다. 현재 버전: {1}', // 'Your PHP version must be {0} or higher to run CodeIgniter. Current version: {1}'
'missingExtension' => '프레임 워크에는 "{0}" 확장 프로그램이 설치 및 로드 되어야합니다.', // 'The framework needs the following extension(s) installed and loaded: "{0}".'
'noHandlers' => '"{0}"은 (는) 하나 이상의 핸들러를 제공해야합니다.', // '"{0}" must provide at least one Handler.'
Expand Down
15 changes: 15 additions & 0 deletions Language/ko/Language.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?php

/**
* This file is part of CodeIgniter 4 framework.
*
* (c) CodeIgniter Foundation <[email protected]>
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/

// "Language" language settings
return [
'invalidMessageFormat' => '정확하지 않은 메시지 형식: "{0}", 인수: "{1}"', // 'Invalid message format: "{0}", args: "{1}"',
];