feat: add korean translation (#752)

* feat: add korean translation

* chore: fix typo
This commit is contained in:
cog25 2022-06-26 15:34:18 +09:00 committed by GitHub
parent 26f4c59fdc
commit 1b7cea41a0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 101 additions and 0 deletions

View file

@ -0,0 +1,99 @@
{
"style.menu.color": "색깔",
"style.menu.fill": "채우기",
"style.menu.dash": "테두리",
"style.menu.size": "크기",
"style.menu.keep.open": "항상 열기",
"style.menu.font": "글꼴",
"style.menu.align": "정렬",
"styles": "스타일",
"zoom.in": "확대",
"zoom.out": "축소",
"to": "to",
"to.selection": "선택 요소 맞춤",
"to.fit": "전체 맞춤",
"menu.file": "파일",
"menu.edit": "편집",
"menu.view": "보기",
"menu.preferences": "설정",
"menu.sign.in": "로그인",
"menu.sign.out": "로그아웃",
"sponsored": "후원",
"become.a.sponsor": "후원자 되기",
"zoom.to.selection": "선택 요소 맞추기",
"zoom.to.fit": "전체 맞추기",
"zoom.to": "맞추기",
"preferences.dark.mode": "다크 모드",
"preferences.focus.mode": "집중 모드",
"preferences.debug.mode": "디버그 모드",
"preferences.show.grid": "격자 보기",
"preferences.use.cad.selection": "CAD 선택 사용",
"preferences.keep.stylemenu.open": "스타일 메뉴 항상 열기",
"preferences.always.show.snaps": "Snap 항상 열기",
"preferences.rotate.handles": "회전 보이기",
"preferences.binding.handles": "Binding Handles",
"preferences.clone.handles": "복제 보이기",
"undo": "실행 취소",
"redo": "다시 실행",
"cut": "자르기",
"copy": "복사",
"paste": "붙여넣기",
"copy.as": "다른 형식으로 복사하기",
"export.as": "내보내기",
"select.all": "전체 선택",
"select.none": "선택 안함",
"delete": "삭제하기",
"new.project": "새 프로젝트",
"open": "열기",
"save": "저장",
"save.as": "다른 이름으로 저장",
"upload.media": "미디어 업로드",
"create.page": "새 페이지 만들기",
"new.page": "새 페이지",
"page.name": "페이지 이름",
"duplicate": "복제",
"cancel": "취소",
"copy.invite.link": "초대 링크 복사하기",
"create.multiplayer.project": "공동 프로젝트 만들기",
"copy.multiplayer.project": "공동 프로젝트로 복사하기",
"select": "선택",
"eraser": "지우개",
"draw": "그리기",
"arrow": "화살표",
"text": "텍스트",
"sticky": "메모",
"Rectangle": "사각형",
"Ellipse": "원",
"Triangle": "삼각형",
"Line": "선",
"rotate": "회전",
"lock.aspect.ratio": "비율 잠금",
"unlock.aspect.ratio": "비율 잠금 해제",
"group": "그룹화",
"ungroup": "그룹화 해제",
"move.to.back": "맨 뒤로 보내기",
"move.backward": "뒤로 보내기",
"move.forward": "앞으로 가져오기",
"move.to.front": "맨 앞으로 가져오기",
"reset.angle": "회전 초기화",
"lock": "잠구기",
"unlock": "잠금 해제하기",
"move.to.page": "페이지로 이동",
"flip.horizontal": "수평으로 뒤집기",
"flip.vertical": "수직으로 뒤집기",
"move": "순서",
"to.front": "맨 앞으로",
"forward": "앞으로",
"backward": "뒤로",
"back": "맨 뒤로",
"language": "언어"
}

View file

@ -2,6 +2,7 @@ import ar from './ar.json'
import en from './en.json'
import fr from './fr.json'
import it from './it.json'
import ko_kr from './ko-kr.json'
import zh_cn from './zh-cn.json'
export const TRANSLATIONS = [
@ -9,6 +10,7 @@ export const TRANSLATIONS = [
{ code: 'ar', label: 'عربي', messages: ar },
{ code: 'fr', label: 'Français', messages: fr },
{ code: 'it', label: 'Italiano', messages: it },
{ code: 'ko-kr', label: '한국어', message: ko_kr },
{ code: 'zh-cn', label: 'Chinese - Simplified', messages: zh_cn },
] as const