Skip to content

Commit 9769e93

Browse files
Added Korea locale + small fixes (#757)
1 parent 116e069 commit 9769e93

File tree

3 files changed

+202
-4
lines changed

3 files changed

+202
-4
lines changed
Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
export * from "./en";
22
export * from "./fr";
3+
export * from "./is";
34
export * from "./ja";
5+
export * from "./ko";
46
export * from "./nl";
5-
export * from "./zh";
67
export * from "./pl";
7-
export * from "./is";
8+
export * from "./pt";
89
export * from "./vi";
9-
export * from "./pt-BR";
10+
export * from "./zh";

packages/core/src/i18n/locales/ko.ts

Lines changed: 197 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,197 @@
1+
export const ko = {
2+
slash_menu: {
3+
heading: {
4+
title: "제목1",
5+
subtext: "섹션 제목(대)",
6+
aliases: ["h", "제목1", "h1", "대제목"],
7+
group: "제목",
8+
},
9+
heading_2: {
10+
title: "제목2",
11+
subtext: "섹션 제목(중)",
12+
aliases: ["h2", "제목2", "중제목"],
13+
group: "제목",
14+
},
15+
heading_3: {
16+
title: "제목3",
17+
subtext: "섹션 제목(소)",
18+
aliases: ["h3", "제목3", "subheading"],
19+
group: "제목",
20+
},
21+
numbered_list: {
22+
title: "번호 매기기 목록",
23+
subtext: "번호가 매겨진 목록을 추가합니다.",
24+
aliases: ["ol", "li", "목록", "번호 매기기 목록", "번호 목록"],
25+
group: "기본 블록",
26+
},
27+
bullet_list: {
28+
title: "글머리 기호 목록",
29+
subtext: "간단한 글머리 기호를 추가합니다.",
30+
aliases: ["ul", "li", "목록", "글머리 기호 목록", "글머리 목록"],
31+
group: "기본 블록",
32+
},
33+
paragraph: {
34+
title: "본문",
35+
subtext: "일반 텍스트",
36+
aliases: ["p", "paragraph", "본문"],
37+
group: "기본 블록",
38+
},
39+
table: {
40+
title: "표",
41+
subtext: "간단한 표를 추가합니다.",
42+
aliases: ["표"],
43+
group: "고급",
44+
},
45+
image: {
46+
title: "이미지",
47+
subtext: "이미지 파일을 업로드합니다.",
48+
aliases: [
49+
"image",
50+
"imageUpload",
51+
"upload",
52+
"img",
53+
"picture",
54+
"media",
55+
"이미지",
56+
"url",
57+
"drive",
58+
"dropbox",
59+
],
60+
group: "미디어",
61+
},
62+
},
63+
placeholders: {
64+
default: "텍스트를 입력하거나 /를 입력하여 명령을 입력하세요.",
65+
heading: "제목",
66+
bulletListItem: "목록",
67+
numberedListItem: "목록",
68+
},
69+
image: {
70+
add_button: "이미지 추가",
71+
},
72+
// from react package:
73+
side_menu: {
74+
add_block_label: "블록 추가",
75+
drag_handle_label: "블록 메뉴 열기",
76+
},
77+
drag_handle: {
78+
delete_menuitem: "삭제",
79+
colors_menuitem: "색깔",
80+
},
81+
table_handle: {
82+
delete_column_menuitem: "열 1개 삭제",
83+
delete_row_menuitem: "행 삭제",
84+
add_left_menuitem: "왼쪽에 열 1개 추가",
85+
add_right_menuitem: "오른쪽에 열 1개 추가",
86+
add_above_menuitem: "위에 행 1개 추가",
87+
add_below_menuitem: "아래에 행 1개 추가",
88+
},
89+
suggestion_menu: {
90+
no_items_title: "항목을 찾을 수 없음",
91+
loading: "로딩 중…",
92+
},
93+
color_picker: {
94+
text_title: "텍스트",
95+
background_title: "배경",
96+
colors: {
97+
default: "기본",
98+
gray: "회색",
99+
brown: "갈색",
100+
red: "빨간색",
101+
orange: "주황색",
102+
yellow: "노란색",
103+
green: "녹색",
104+
blue: "파란색",
105+
purple: "보라색",
106+
pink: "분홍색",
107+
},
108+
},
109+
110+
formatting_toolbar: {
111+
bold: {
112+
tooltip: "진하게",
113+
secondary_tooltip: "Mod+B",
114+
},
115+
italic: {
116+
tooltip: "기울임",
117+
secondary_tooltip: "Mod+I",
118+
},
119+
underline: {
120+
tooltip: "밑줄",
121+
secondary_tooltip: "Mod+U",
122+
},
123+
strike: {
124+
tooltip: "취소선",
125+
secondary_tooltip: "Mod+Shift+X",
126+
},
127+
code: {
128+
tooltip: "코드",
129+
secondary_tooltip: "",
130+
},
131+
colors: {
132+
tooltip: "색깔",
133+
},
134+
link: {
135+
tooltip: "링크 만들기",
136+
secondary_tooltip: "Mod+K",
137+
},
138+
image_caption: {
139+
tooltip: "이미지 캡션 수정",
140+
input_placeholder: "이미지 캡션 수정",
141+
},
142+
image_replace: {
143+
tooltip: "이미지 교체",
144+
},
145+
nest: {
146+
tooltip: "중첩 블록",
147+
secondary_tooltip: "Tab",
148+
},
149+
unnest: {
150+
tooltip: "비중첩 블록",
151+
secondary_tooltip: "Shift+Tab",
152+
},
153+
align_left: {
154+
tooltip: "텍스트 왼쪽 맞춤",
155+
},
156+
align_center: {
157+
tooltip: "텍스트 가운데 맞춤",
158+
},
159+
align_right: {
160+
tooltip: "텍스트 오른쪽 맞춤",
161+
},
162+
align_justify: {
163+
tooltip: "텍스트 양쪽 맞춤",
164+
},
165+
},
166+
image_panel: {
167+
upload: {
168+
title: "업로드",
169+
file_placeholder: "이미지 업로드",
170+
upload_error: "오류: 업로드 실패",
171+
},
172+
embed: {
173+
title: "임베드",
174+
embed_button: "이미지 임베드",
175+
url_placeholder: "URL을 입력하세요.",
176+
},
177+
},
178+
link_toolbar: {
179+
delete: {
180+
tooltip: "링크 삭제",
181+
},
182+
edit: {
183+
text: "링크 수정",
184+
tooltip: "수정",
185+
},
186+
open: {
187+
tooltip: "새 탭으로 열기",
188+
},
189+
form: {
190+
title_placeholder: "제목 수정",
191+
url_placeholder: "URL 수정",
192+
},
193+
},
194+
generic: {
195+
ctrl_shortcut: "Ctrl",
196+
},
197+
};

packages/core/src/i18n/locales/pt-BR.ts renamed to packages/core/src/i18n/locales/pt.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import type { Dictionary } from "../dictionary";
22

3-
export const ptBR: Dictionary = {
3+
export const pt: Dictionary = {
44
slash_menu: {
55
heading: {
66
title: "Título",

0 commit comments

Comments
 (0)