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
| import { Translation } from "./definition"
|
| export default {
| propertyDefaults: {
| title: "Naamloos",
| description: "Geen beschrijving gegeven.",
| },
| components: {
| backlinks: {
| title: "Backlinks",
| noBacklinksFound: "Geen backlinks gevonden",
| },
| themeToggle: {
| lightMode: "Lichte modus",
| darkMode: "Donkere modus",
| },
| explorer: {
| title: "Verkenner",
| },
| footer: {
| createdWith: "Gemaakt met",
| },
| graph: {
| title: "Grafiekweergave",
| },
| recentNotes: {
| title: "Recente notities",
| seeRemainingMore: ({ remaining }) => `Zie ${remaining} meer →`,
| },
| transcludes: {
| transcludeOf: ({ targetSlug }) => `Invoeging van ${targetSlug}`,
| linkToOriginal: "Link naar origineel",
| },
| search: {
| title: "Zoeken",
| searchBarPlaceholder: "Doorzoek de website",
| },
| tableOfContents: {
| title: "Inhoudsopgave",
| },
| },
| pages: {
| rss: {
| recentNotes: "Recente notities",
| lastFewNotes: ({ count }) => `Laatste ${count} notities`,
| },
| error: {
| title: "Niet gevonden",
| notFound: "Deze pagina is niet zichtbaar of bestaat niet.",
| },
| folderContent: {
| folder: "Map",
| itemsUnderFolder: ({ count }) =>
| count === 1 ? "1 item in deze map" : `${count} items in deze map.`,
| },
| tagContent: {
| tag: "Label",
| tagIndex: "Label-index",
| itemsUnderTag: ({ count }) =>
| count === 1 ? "1 item met dit label." : `${count} items met dit label.`,
| showingFirst: ({ count }) =>
| count === 1 ? "Eerste label tonen." : `Eerste ${count} labels tonen.`,
| totalTags: ({ count }) => `${count} labels gevonden.`,
| },
| },
| } as const satisfies Translation
|
|