@sveltia/ui 0.59.0 → 0.60.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/locales/ko.yaml +113 -0
- package/package.json +4 -4
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
# Dialog action button labels
|
|
2
|
+
ok: 확인
|
|
3
|
+
cancel: 취소
|
|
4
|
+
close: 닫기
|
|
5
|
+
|
|
6
|
+
# Button to clear content, e.g. search input or calendar date
|
|
7
|
+
clear: 지우기
|
|
8
|
+
|
|
9
|
+
# Text editor dialog buttons for link/image insertion
|
|
10
|
+
insert: 삽입
|
|
11
|
+
update: 업데이트
|
|
12
|
+
remove: 제거
|
|
13
|
+
|
|
14
|
+
# Combobox dropdown toggle button aria-labels
|
|
15
|
+
collapse: 접기
|
|
16
|
+
expand: 펼치기
|
|
17
|
+
|
|
18
|
+
# Infobar/toast dismiss button label
|
|
19
|
+
dismiss: 닫기
|
|
20
|
+
|
|
21
|
+
# Calendar component
|
|
22
|
+
calendar:
|
|
23
|
+
# View switcher group aria-labels and navigation button aria-labels
|
|
24
|
+
year: 연도
|
|
25
|
+
previous_decade: 이전 10년
|
|
26
|
+
next_decade: 다음 10년
|
|
27
|
+
month: 월
|
|
28
|
+
previous_month: 이전 달
|
|
29
|
+
next_month: 다음 달
|
|
30
|
+
# “Today” button label in footer
|
|
31
|
+
today: 오늘
|
|
32
|
+
|
|
33
|
+
# Split button component
|
|
34
|
+
split_button:
|
|
35
|
+
# Wrapper aria-label, e.g. “Save Options” when primary button is “Save”
|
|
36
|
+
x_options: '{$name} 옵션'
|
|
37
|
+
# Dropdown toggle aria-label
|
|
38
|
+
more_options: 옵션 더 보기
|
|
39
|
+
|
|
40
|
+
# Combobox component
|
|
41
|
+
combobox:
|
|
42
|
+
# Placeholder when no option is selected
|
|
43
|
+
select_an_option: 옵션을 선택하세요…
|
|
44
|
+
# Filter input aria-label
|
|
45
|
+
filter_options: 옵션 필터
|
|
46
|
+
# Empty state message when filter has no matches
|
|
47
|
+
no_matching_options: 일치하는 옵션이 없습니다
|
|
48
|
+
|
|
49
|
+
# Number input component
|
|
50
|
+
number_input:
|
|
51
|
+
# Spin button aria-labels for incrementing/decrementing the number value
|
|
52
|
+
increase: 증가
|
|
53
|
+
decrease: 감소
|
|
54
|
+
|
|
55
|
+
# Password input component
|
|
56
|
+
password_input:
|
|
57
|
+
# Visibility toggle button aria-labels
|
|
58
|
+
show_password: 비밀번호 표시
|
|
59
|
+
hide_password: 비밀번호 숨기기
|
|
60
|
+
|
|
61
|
+
# Secret input component (API keys, tokens, etc.)
|
|
62
|
+
secret_input:
|
|
63
|
+
# Visibility toggle button aria-labels
|
|
64
|
+
show_secret: 시크릿 표시
|
|
65
|
+
hide_secret: 시크릿 숨기기
|
|
66
|
+
|
|
67
|
+
# Select tags component (multi-select)
|
|
68
|
+
select_tags:
|
|
69
|
+
# Listbox aria-label
|
|
70
|
+
selected_options: 선택된 옵션
|
|
71
|
+
# Remove button aria-label, e.g. “Remove Option 1”
|
|
72
|
+
remove_x: '{$name} 제거'
|
|
73
|
+
|
|
74
|
+
# Text editor component
|
|
75
|
+
text_editor:
|
|
76
|
+
# Toolbar aria-labels
|
|
77
|
+
text_editor: 텍스트 에디터
|
|
78
|
+
code_editor: 코드 에디터
|
|
79
|
+
# Block style menu button and menu aria-labels
|
|
80
|
+
text_style_options: 텍스트 스타일 옵션
|
|
81
|
+
show_text_style_options: 텍스트 스타일 옵션 표시
|
|
82
|
+
# Block style menu items
|
|
83
|
+
paragraph: 단락
|
|
84
|
+
heading_1: 제목 1
|
|
85
|
+
heading_2: 제목 2
|
|
86
|
+
heading_3: 제목 3
|
|
87
|
+
heading_4: 제목 4
|
|
88
|
+
heading_5: 제목 5
|
|
89
|
+
heading_6: 제목 6
|
|
90
|
+
bulleted_list: 글머리 기호 목록
|
|
91
|
+
numbered_list: 번호 매기기 목록
|
|
92
|
+
blockquote: 인용 블록
|
|
93
|
+
code_block: 코드 블록
|
|
94
|
+
# Inline style button aria-labels
|
|
95
|
+
bold: 굵게
|
|
96
|
+
italic: 기울임꼴
|
|
97
|
+
strikethrough: 취소선
|
|
98
|
+
code: 코드
|
|
99
|
+
link: 링크
|
|
100
|
+
# Link dialog title
|
|
101
|
+
insert_link: 링크 삽입
|
|
102
|
+
update_link: 링크 업데이트
|
|
103
|
+
# Link dialog input field labels
|
|
104
|
+
text: 텍스트
|
|
105
|
+
url: URL
|
|
106
|
+
# Markdown mode toggle button aria-label
|
|
107
|
+
edit_in_markdown: 마크다운으로 편집
|
|
108
|
+
# Error message when rich text conversion fails
|
|
109
|
+
converter_error: 리치 텍스트 모드를 사용할 수 없습니다. 일반 텍스트 에디터를 사용하십시오.
|
|
110
|
+
# Language selector aria-label
|
|
111
|
+
language: 언어
|
|
112
|
+
# Plain text mode option in language selector
|
|
113
|
+
plain_text: 일반 텍스트
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sveltia/ui",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.60.0",
|
|
4
4
|
"description": "A collection of Svelte components and utilities for building user interfaces.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -63,12 +63,12 @@
|
|
|
63
63
|
"eslint-config-airbnb-extended": "^3.2.0",
|
|
64
64
|
"eslint-config-prettier": "^10.1.8",
|
|
65
65
|
"eslint-plugin-import": "^2.32.0",
|
|
66
|
-
"eslint-plugin-jsdoc": "^64.0.
|
|
67
|
-
"eslint-plugin-package-json": "^1.
|
|
66
|
+
"eslint-plugin-jsdoc": "^64.0.2",
|
|
67
|
+
"eslint-plugin-package-json": "^1.7.0",
|
|
68
68
|
"eslint-plugin-svelte": "^3.22.0",
|
|
69
69
|
"globals": "^17.9.0",
|
|
70
70
|
"happy-dom": "^20.11.2",
|
|
71
|
-
"oxlint": "^1.
|
|
71
|
+
"oxlint": "^1.78.0",
|
|
72
72
|
"postcss": "^8.5.26",
|
|
73
73
|
"postcss-html": "^2.0.0",
|
|
74
74
|
"prettier": "^3.9.6",
|