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

Add new locale (ko_KR) #619

Merged
merged 2 commits into from
Jun 16, 2021
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion l10n/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@ import esES from './es_ES';
import frFR from './fr_FR';
import itIT from './it_IT';
import trTR from './tr_TR';
import koKR from './ko_KR';

export { esES, frFR, itIT, trTR };
export { esES, frFR, itIT, trTR, koKR };
22 changes: 22 additions & 0 deletions l10n/ko_KR.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
export default {
search: {
placeholder: '검색어 입력...',
},
sort: {
sortAsc: '내림차순 정렬',
sortDesc: '오름차순 정렬',
},
pagination: {
previous: '이전',
next: '다음',
navigate: (page, pages) => `${pages} 중 ${page} 페이지`,
page: (page) => `${page} 페이지`,
showing: '결과보기:',
of: '까지 총',
to: '에서',
results: '개',
},
loading: '로딩중...',
noRecordsFound: '일치하는 레코드 없음',
error: '데이터 조회 오류',
};