The Trans Directory
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat(i18n): add Finnish translations for i18n (#1782)

authored by

Suamppa and committed by
GitHub
1a026424 57944059

+86
+2
quartz/i18n/index.ts
··· 24 24 import tr from "./locales/tr-TR" 25 25 import th from "./locales/th-TH" 26 26 import lt from "./locales/lt-LT" 27 + import fi from "./locales/fi-FI" 27 28 28 29 export const TRANSLATIONS = { 29 30 "en-US": enUs, ··· 72 73 "tr-TR": tr, 73 74 "th-TH": th, 74 75 "lt-LT": lt, 76 + "fi-FI": fi, 75 77 } as const 76 78 77 79 export const defaultTranslation = "en-US"
+84
quartz/i18n/locales/fi-FI.ts
··· 1 + import { Translation } from "./definition" 2 + 3 + export default { 4 + propertyDefaults: { 5 + title: "Nimetön", 6 + description: "Ei kuvausta saatavilla", 7 + }, 8 + components: { 9 + callout: { 10 + note: "Merkintä", 11 + abstract: "Tiivistelmä", 12 + info: "Info", 13 + todo: "Tehtävälista", 14 + tip: "Vinkki", 15 + success: "Onnistuminen", 16 + question: "Kysymys", 17 + warning: "Varoitus", 18 + failure: "Epäonnistuminen", 19 + danger: "Vaara", 20 + bug: "Virhe", 21 + example: "Esimerkki", 22 + quote: "Lainaus", 23 + }, 24 + backlinks: { 25 + title: "Takalinkit", 26 + noBacklinksFound: "Takalinkkejä ei löytynyt", 27 + }, 28 + themeToggle: { 29 + lightMode: "Vaalea tila", 30 + darkMode: "Tumma tila", 31 + }, 32 + explorer: { 33 + title: "Selain", 34 + }, 35 + footer: { 36 + createdWith: "Luotu käyttäen", 37 + }, 38 + graph: { 39 + title: "Verkkonäkymä", 40 + }, 41 + recentNotes: { 42 + title: "Viimeisimmät muistiinpanot", 43 + seeRemainingMore: ({ remaining }) => `Näytä ${remaining} lisää →`, 44 + }, 45 + transcludes: { 46 + transcludeOf: ({ targetSlug }) => `Upote kohteesta ${targetSlug}`, 47 + linkToOriginal: "Linkki alkuperäiseen", 48 + }, 49 + search: { 50 + title: "Haku", 51 + searchBarPlaceholder: "Hae jotain", 52 + }, 53 + tableOfContents: { 54 + title: "Sisällysluettelo", 55 + }, 56 + contentMeta: { 57 + readingTime: ({ minutes }) => `${minutes} min lukuaika`, 58 + }, 59 + }, 60 + pages: { 61 + rss: { 62 + recentNotes: "Viimeisimmät muistiinpanot", 63 + lastFewNotes: ({ count }) => `Viimeiset ${count} muistiinpanoa`, 64 + }, 65 + error: { 66 + title: "Ei löytynyt", 67 + notFound: "Tämä sivu on joko yksityinen tai sitä ei ole olemassa.", 68 + home: "Palaa etusivulle", 69 + }, 70 + folderContent: { 71 + folder: "Kansio", 72 + itemsUnderFolder: ({ count }) => 73 + count === 1 ? "1 kohde tässä kansiossa." : `${count} kohdetta tässä kansiossa.`, 74 + }, 75 + tagContent: { 76 + tag: "Tunniste", 77 + tagIndex: "Tunnisteluettelo", 78 + itemsUnderTag: ({ count }) => 79 + count === 1 ? "1 kohde tällä tunnisteella." : `${count} kohdetta tällä tunnisteella.`, 80 + showingFirst: ({ count }) => `Näytetään ensimmäiset ${count} tunnistetta.`, 81 + totalTags: ({ count }) => `Löytyi yhteensä ${count} tunnistetta.`, 82 + }, 83 + }, 84 + } as const satisfies Translation