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: "Senza titolo",
| description: "Nessuna descrizione",
| },
| components: {
| callout: {
| note: "Nota",
| abstract: "Astratto",
| info: "Info",
| todo: "Da fare",
| tip: "Consiglio",
| success: "Completato",
| question: "Domanda",
| warning: "Attenzione",
| failure: "Errore",
| danger: "Pericolo",
| bug: "Bug",
| example: "Esempio",
| quote: "Citazione",
| },
| backlinks: {
| title: "Link entranti",
| noBacklinksFound: "Nessun link entrante",
| },
| themeToggle: {
| lightMode: "Tema chiaro",
| darkMode: "Tema scuro",
| },
| readerMode: {
| title: "Modalità lettura",
| },
| explorer: {
| title: "Esplora",
| },
| footer: {
| createdWith: "Creato con",
| },
| graph: {
| title: "Vista grafico",
| },
| recentNotes: {
| title: "Note recenti",
| seeRemainingMore: ({ remaining }) => `Vedi ${remaining} altro →`,
| },
| transcludes: {
| transcludeOf: ({ targetSlug }) => `Transclusione di ${targetSlug}`,
| linkToOriginal: "Link all'originale",
| },
| search: {
| title: "Cerca",
| searchBarPlaceholder: "Cerca qualcosa",
| },
| tableOfContents: {
| title: "Tabella dei contenuti",
| },
| contentMeta: {
| readingTime: ({ minutes }) => `${minutes} minuti`,
| },
| },
| pages: {
| rss: {
| recentNotes: "Note recenti",
| lastFewNotes: ({ count }) => `Ultime ${count} note`,
| },
| error: {
| title: "Non trovato",
| notFound: "Questa pagina è privata o non esiste.",
| home: "Ritorna alla home page",
| },
| folderContent: {
| folder: "Cartella",
| itemsUnderFolder: ({ count }) =>
| count === 1 ? "1 oggetto in questa cartella." : `${count} oggetti in questa cartella.`,
| },
| tagContent: {
| tag: "Etichetta",
| tagIndex: "Indice etichette",
| itemsUnderTag: ({ count }) =>
| count === 1 ? "1 oggetto con questa etichetta." : `${count} oggetti con questa etichetta.`,
| showingFirst: ({ count }) => `Prime ${count} etichette.`,
| totalTags: ({ count }) => `Trovate ${count} etichette totali.`,
| },
| },
| } as const satisfies Translation
|
|