1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
| import { Translation } from "./definition"
|
| export default {
| propertyDefaults: {
| title: "제목 없음",
| description: "설명 없음",
| },
| components: {
| callout: {
| note: "노트",
| abstract: "개요",
| info: "정보",
| todo: "할일",
| tip: "팁",
| success: "성공",
| question: "질문",
| warning: "주의",
| failure: "실패",
| danger: "위험",
| bug: "버그",
| example: "예시",
| quote: "인용",
| },
| backlinks: {
| title: "백링크",
| noBacklinksFound: "백링크가 없습니다.",
| },
| themeToggle: {
| lightMode: "라이트 모드",
| darkMode: "다크 모드",
| },
| explorer: {
| title: "탐색기",
| },
| footer: {
| createdWith: "Created with",
| },
| graph: {
| title: "그래프 뷰",
| },
| recentNotes: {
| title: "최근 게시글",
| seeRemainingMore: ({ remaining }) => `${remaining}건 더보기 →`,
| },
| transcludes: {
| transcludeOf: ({ targetSlug }) => `${targetSlug}의 포함`,
| linkToOriginal: "원본 링크",
| },
| search: {
| title: "검색",
| searchBarPlaceholder: "검색어를 입력하세요",
| },
| tableOfContents: {
| title: "목차",
| },
| contentMeta: {
| readingTime: ({ minutes }) => `${minutes} min read`,
| },
| },
| pages: {
| rss: {
| recentNotes: "최근 게시글",
| lastFewNotes: ({ count }) => `최근 ${count} 건`,
| },
| error: {
| title: "Not Found",
| notFound: "페이지가 존재하지 않거나 비공개 설정이 되어 있습니다.",
| },
| folderContent: {
| folder: "폴더",
| itemsUnderFolder: ({ count }) => `${count}건의 항목`,
| },
| tagContent: {
| tag: "태그",
| tagIndex: "태그 목록",
| itemsUnderTag: ({ count }) => `${count}건의 항목`,
| showingFirst: ({ count }) => `처음 ${count}개의 태그`,
| totalTags: ({ count }) => `총 ${count}개의 태그를 찾았습니다.`,
| },
| },
| } as const satisfies Translation
|
|