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
88
| import { Translation } from "./definition"
|
| export default {
| propertyDefaults: {
| title: "Fără titlu",
| description: "Nici o descriere furnizată",
| },
| components: {
| callout: {
| note: "Notă",
| abstract: "Rezumat",
| info: "Informație",
| todo: "De făcut",
| tip: "Sfat",
| success: "Succes",
| question: "Întrebare",
| warning: "Avertisment",
| failure: "Eșec",
| danger: "Pericol",
| bug: "Bug",
| example: "Exemplu",
| quote: "Citat",
| },
| backlinks: {
| title: "Legături înapoi",
| noBacklinksFound: "Nu s-au găsit legături înapoi",
| },
| themeToggle: {
| lightMode: "Modul luminos",
| darkMode: "Modul întunecat",
| },
| readerMode: {
| title: "Modul de citire",
| },
| explorer: {
| title: "Explorator",
| },
| footer: {
| createdWith: "Creat cu",
| },
| graph: {
| title: "Graf",
| },
| recentNotes: {
| title: "Notițe recente",
| seeRemainingMore: ({ remaining }) => `Vezi încă ${remaining} →`,
| },
| transcludes: {
| transcludeOf: ({ targetSlug }) => `Extras din ${targetSlug}`,
| linkToOriginal: "Legătură către original",
| },
| search: {
| title: "Căutare",
| searchBarPlaceholder: "Introduceți termenul de căutare...",
| },
| tableOfContents: {
| title: "Cuprins",
| },
| contentMeta: {
| readingTime: ({ minutes }) =>
| minutes == 1 ? `lectură de 1 minut` : `lectură de ${minutes} minute`,
| },
| },
| pages: {
| rss: {
| recentNotes: "Notițe recente",
| lastFewNotes: ({ count }) => `Ultimele ${count} notițe`,
| },
| error: {
| title: "Pagina nu a fost găsită",
| notFound: "Fie această pagină este privată, fie nu există.",
| home: "Reveniți la pagina de pornire",
| },
| folderContent: {
| folder: "Dosar",
| itemsUnderFolder: ({ count }) =>
| count === 1 ? "1 articol în acest dosar." : `${count} elemente în acest dosar.`,
| },
| tagContent: {
| tag: "Etichetă",
| tagIndex: "Indexul etichetelor",
| itemsUnderTag: ({ count }) =>
| count === 1 ? "1 articol cu această etichetă." : `${count} articole cu această etichetă.`,
| showingFirst: ({ count }) => `Se afișează primele ${count} etichete.`,
| totalTags: ({ count }) => `Au fost găsite ${count} etichete în total.`,
| },
| },
| } as const satisfies Translation
|
|