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
86
87
| import { Translation } from "./definition"
|
| export default {
| propertyDefaults: {
| title: "Bez názvu",
| description: "Nebyl uveden žádný popis",
| },
| components: {
| callout: {
| note: "Poznámka",
| abstract: "Abstract",
| info: "Info",
| todo: "Todo",
| tip: "Tip",
| success: "Úspěch",
| question: "Otázka",
| warning: "Upozornění",
| failure: "Chyba",
| danger: "Nebezpečí",
| bug: "Bug",
| example: "Příklad",
| quote: "Citace",
| },
| backlinks: {
| title: "Příchozí odkazy",
| noBacklinksFound: "Nenalezeny žádné příchozí odkazy",
| },
| themeToggle: {
| lightMode: "Světlý režim",
| darkMode: "Tmavý režim",
| },
| readerMode: {
| title: "Režim čtečky",
| },
| explorer: {
| title: "Procházet",
| },
| footer: {
| createdWith: "Vytvořeno pomocí",
| },
| graph: {
| title: "Graf",
| },
| recentNotes: {
| title: "Nejnovější poznámky",
| seeRemainingMore: ({ remaining }) => `Zobraz ${remaining} dalších →`,
| },
| transcludes: {
| transcludeOf: ({ targetSlug }) => `Zobrazení ${targetSlug}`,
| linkToOriginal: "Odkaz na původní dokument",
| },
| search: {
| title: "Hledat",
| searchBarPlaceholder: "Hledejte něco",
| },
| tableOfContents: {
| title: "Obsah",
| },
| contentMeta: {
| readingTime: ({ minutes }) => `${minutes} min čtení`,
| },
| },
| pages: {
| rss: {
| recentNotes: "Nejnovější poznámky",
| lastFewNotes: ({ count }) => `Posledních ${count} poznámek`,
| },
| error: {
| title: "Nenalezeno",
| notFound: "Tato stránka je buď soukromá, nebo neexistuje.",
| home: "Návrat na domovskou stránku",
| },
| folderContent: {
| folder: "Složka",
| itemsUnderFolder: ({ count }) =>
| count === 1 ? "1 položka v této složce." : `${count} položek v této složce.`,
| },
| tagContent: {
| tag: "Tag",
| tagIndex: "Rejstřík tagů",
| itemsUnderTag: ({ count }) =>
| count === 1 ? "1 položka s tímto tagem." : `${count} položek s tímto tagem.`,
| showingFirst: ({ count }) => `Zobrazují se první ${count} tagy.`,
| totalTags: ({ count }) => `Nalezeno celkem ${count} tagů.`,
| },
| },
| } as const satisfies Translation
|
|