wasita
2026-03-04 59b58076016c5e5f09f16ab0395fed02e2ebb72e
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