|
| 1 | +import { Translation } from "./definition" |
| 2 | + |
| 3 | +export default { |
| 4 | + propertyDefaults: { |
| 5 | + title: "Sense títol", |
| 6 | + description: "Sense descripció", |
| 7 | + }, |
| 8 | + components: { |
| 9 | + callout: { |
| 10 | + note: "Nota", |
| 11 | + abstract: "Resum", |
| 12 | + info: "Informació", |
| 13 | + todo: "Per fer", |
| 14 | + tip: "Consell", |
| 15 | + success: "Èxit", |
| 16 | + question: "Pregunta", |
| 17 | + warning: "Advertència", |
| 18 | + failure: "Fall", |
| 19 | + danger: "Perill", |
| 20 | + bug: "Error", |
| 21 | + example: "Exemple", |
| 22 | + quote: "Cita", |
| 23 | + }, |
| 24 | + backlinks: { |
| 25 | + title: "Retroenllaç", |
| 26 | + noBacklinksFound: "No s'han trobat retroenllaços", |
| 27 | + }, |
| 28 | + themeToggle: { |
| 29 | + lightMode: "Mode clar", |
| 30 | + darkMode: "Mode fosc", |
| 31 | + }, |
| 32 | + explorer: { |
| 33 | + title: "Explorador", |
| 34 | + }, |
| 35 | + footer: { |
| 36 | + createdWith: "Creat amb", |
| 37 | + }, |
| 38 | + graph: { |
| 39 | + title: "Vista Gràfica", |
| 40 | + }, |
| 41 | + recentNotes: { |
| 42 | + title: "Notes Recents", |
| 43 | + seeRemainingMore: ({ remaining }) => `Vegi ${remaining} més →`, |
| 44 | + }, |
| 45 | + transcludes: { |
| 46 | + transcludeOf: ({ targetSlug }) => `Transcluit de ${targetSlug}`, |
| 47 | + linkToOriginal: "Enllaç a l'original", |
| 48 | + }, |
| 49 | + search: { |
| 50 | + title: "Cercar", |
| 51 | + searchBarPlaceholder: "Cerca alguna cosa", |
| 52 | + }, |
| 53 | + tableOfContents: { |
| 54 | + title: "Taula de Continguts", |
| 55 | + }, |
| 56 | + contentMeta: { |
| 57 | + readingTime: ({ minutes }) => `Es llegeix en ${minutes} min`, |
| 58 | + }, |
| 59 | + }, |
| 60 | + pages: { |
| 61 | + rss: { |
| 62 | + recentNotes: "Notes recents", |
| 63 | + lastFewNotes: ({ count }) => `Últimes ${count} notes`, |
| 64 | + }, |
| 65 | + error: { |
| 66 | + title: "No s'ha trobat.", |
| 67 | + notFound: "Aquesta pàgina és privada o no existeix.", |
| 68 | + home: "Torna a la pàgina principal", |
| 69 | + }, |
| 70 | + folderContent: { |
| 71 | + folder: "Carpeta", |
| 72 | + itemsUnderFolder: ({ count }) => |
| 73 | + count === 1 ? "1 article en aquesta carpeta." : `${count} articles en esta carpeta.`, |
| 74 | + }, |
| 75 | + tagContent: { |
| 76 | + tag: "Etiqueta", |
| 77 | + tagIndex: "índex d'Etiquetes", |
| 78 | + itemsUnderTag: ({ count }) => |
| 79 | + count === 1 ? "1 article amb aquesta etiqueta." : `${count} article amb aquesta etiqueta.`, |
| 80 | + showingFirst: ({ count }) => `Mostrant les primeres ${count} etiquetes.`, |
| 81 | + totalTags: ({ count }) => `S'han trobat ${count} etiquetes en total.`, |
| 82 | + }, |
| 83 | + }, |
| 84 | +} as const satisfies Translation |
0 commit comments