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
82
83
84
85
| 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: "๋คํฌ ๋ชจ๋",
| },
| readerMode: {
| title: "๋ฆฌ๋ ๋ชจ๋",
| },
| 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: "ํ์ด์ง๊ฐ ์กด์ฌํ์ง ์๊ฑฐ๋ ๋น๊ณต๊ฐ ์ค์ ์ด ๋์ด ์์ต๋๋ค.",
| home: "ํํ์ด์ง๋ก ๋์๊ฐ๊ธฐ",
| },
| folderContent: {
| folder: "ํด๋",
| itemsUnderFolder: ({ count }) => `${count}๊ฑด์ ํญ๋ชฉ`,
| },
| tagContent: {
| tag: "ํ๊ทธ",
| tagIndex: "ํ๊ทธ ๋ชฉ๋ก",
| itemsUnderTag: ({ count }) => `${count}๊ฑด์ ํญ๋ชฉ`,
| showingFirst: ({ count }) => `์ฒ์ ${count}๊ฐ์ ํ๊ทธ`,
| totalTags: ({ count }) => `์ด ${count}๊ฐ์ ํ๊ทธ๋ฅผ ์ฐพ์์ต๋๋ค.`,
| },
| },
| } as const satisfies Translation
|
|