Skip to content

Commit

Permalink
[ko] Add missing messages (#483)
Browse files Browse the repository at this point in the history
  • Loading branch information
Terrorboy authored Feb 6, 2025
1 parent fa064fb commit a1557d5
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
2 changes: 2 additions & 0 deletions Language/ko/Errors.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
return [
'pageNotFound' => '404 - Page Not Found', // '404 - Page Not Found'
'sorryCannotFind' => '죄송합니다! 찾으시던 페이지를 찾을 수 없습니다.', // 'Sorry! Cannot seem to find the page you were looking for.'
'badRequest' => '400 - Bad Request', // '400 - Bad Request'
'sorryBadRequest' => '죄송합니다! 요청에 문제가 있습니다.', // 'Sorry! Something is wrong with your request.'
'whoops' => 'Whoops!', // 'Whoops!'
'weHitASnag' => '문제가 발생하였습니다. 나중에 다시 시도해 주세요.', // 'We seem to have hit a snag. Please try again later...'
];
7 changes: 4 additions & 3 deletions Language/ko/Publisher.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
'fileNotAllowed' => '"{0}"은(는) "{1}"제한에 의해 실패했습니다. ("{2}")', // '"{0}" fails the following restriction for "{1}": {2}'

// Publish Command
'publishMissing' => '모든 네임스페이스에서 {0} 클래스를 찾지 못했습니다.', // 'No Publisher classes detected in {0} across all namespaces.'
'publishSuccess' => '"{0}"가 {1} 파일들을 "{2}"에 게시했습니다.', // '"{0}" published {1} file(s) to "{2}".'
'publishFailure' => '"{0}"가 "{1}"에 게시하지 못했습니다!', // '"{0}" failed to publish to "{1}".'
'publishMissing' => '모든 네임스페이스에서 {0} 클래스를 찾지 못했습니다.', // 'No Publisher classes detected in {0} across all namespaces.'
'publishMissingNamespace' => '{1} 네임스페이스의 {0}에서 클래스가 감지되지 않았습니다.', // 'No Publisher classes detected in {0} in the {1} namespace.'
'publishSuccess' => '"{0}"가 {1} 파일들을 "{2}"에 게시했습니다.', // '"{0}" published {1} file(s) to "{2}".'
'publishFailure' => '"{0}"가 "{1}"에 게시하지 못했습니다!', // '"{0}" failed to publish to "{1}".'
];
1 change: 1 addition & 0 deletions Language/ko/Validation.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,4 +72,5 @@
'mime_in' => '{field} 경우, 유효한 MIME 타입을 갖고 있지 않습니다.', // '{field} does not have a valid mime type.'
'ext_in' => '{field} 경우, 유효한 파일 확장자를 갖고 있지 않습니다.', // '{field} does not have a valid file extension.'
'max_dims' => '{field} 경우, 이미지가 아니거나 이미지의 크기가 너무 넓거나 큽니다.', // '{field} is either not an image, or it is too wide or tall.'
'min_dims' => '{field} 경우, 이미지가 아니거나 이미지의 크기가 너무 좁거나 작습니다.', // '{field} is either not an image, or it is not wide or tall enough.'
];
1 change: 1 addition & 0 deletions tests/Language/KoreanTranslationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ protected function setUp(): void
$this->excludedLocaleKeyTranslations = [
'Migrations.batch',
'Errors.pageNotFound',
'Errors.badRequest',
'Errors.whoops',
];
}
Expand Down

0 comments on commit a1557d5

Please sign in to comment.