The Trans Directory
0
fork

Configure Feed

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

feat(i18n): added nb-NO (Norwegian) (#1795)

authored by

Jon Erling Hustadnes and committed by
GitHub
9b47279f 4901472a

+86
+2
quartz/i18n/index.ts
··· 25 25 import th from "./locales/th-TH" 26 26 import lt from "./locales/lt-LT" 27 27 import fi from "./locales/fi-FI" 28 + import no from "./locales/nb-NO" 28 29 29 30 export const TRANSLATIONS = { 30 31 "en-US": enUs, ··· 74 75 "th-TH": th, 75 76 "lt-LT": lt, 76 77 "fi-FI": fi, 78 + "nb-NO": no, 77 79 } as const 78 80 79 81 export const defaultTranslation = "en-US"
+84
quartz/i18n/locales/nb-NO.ts
··· 1 + import { Translation } from "./definition" 2 + 3 + export default { 4 + propertyDefaults: { 5 + title: "Uten navn", 6 + description: "Ingen beskrivelse angitt", 7 + }, 8 + components: { 9 + callout: { 10 + note: "Notis", 11 + abstract: "Abstrakt", 12 + info: "Info", 13 + todo: "Husk på", 14 + tip: "Tips", 15 + success: "Suksess", 16 + question: "Spørsmål", 17 + warning: "Advarsel", 18 + failure: "Feil", 19 + danger: "Farlig", 20 + bug: "Bug", 21 + example: "Eksempel", 22 + quote: "Sitat", 23 + }, 24 + backlinks: { 25 + title: "Tilbakekoblinger", 26 + noBacklinksFound: "Ingen tilbakekoblinger funnet", 27 + }, 28 + themeToggle: { 29 + lightMode: "Lys modus", 30 + darkMode: "Mørk modus", 31 + }, 32 + explorer: { 33 + title: "Utforsker", 34 + }, 35 + footer: { 36 + createdWith: "Laget med", 37 + }, 38 + graph: { 39 + title: "Graf-visning", 40 + }, 41 + recentNotes: { 42 + title: "Nylige notater", 43 + seeRemainingMore: ({ remaining }) => `Se ${remaining} til →`, 44 + }, 45 + transcludes: { 46 + transcludeOf: ({ targetSlug }) => `Transkludering of ${targetSlug}`, 47 + linkToOriginal: "Lenke til original", 48 + }, 49 + search: { 50 + title: "Søk", 51 + searchBarPlaceholder: "Søk etter noe", 52 + }, 53 + tableOfContents: { 54 + title: "Oversikt", 55 + }, 56 + contentMeta: { 57 + readingTime: ({ minutes }) => `${minutes} min lesning`, 58 + }, 59 + }, 60 + pages: { 61 + rss: { 62 + recentNotes: "Nylige notat", 63 + lastFewNotes: ({ count }) => `Siste ${count} notat`, 64 + }, 65 + error: { 66 + title: "Ikke funnet", 67 + notFound: "Enten er denne siden privat eller så finnes den ikke.", 68 + home: "Returner til hovedsiden", 69 + }, 70 + folderContent: { 71 + folder: "Mappe", 72 + itemsUnderFolder: ({ count }) => 73 + count === 1 ? "1 gjenstand i denne mappen." : `${count} gjenstander i denne mappen.`, 74 + }, 75 + tagContent: { 76 + tag: "Tagg", 77 + tagIndex: "Tagg Indeks", 78 + itemsUnderTag: ({ count }) => 79 + count === 1 ? "1 gjenstand med denne taggen." : `${count} gjenstander med denne taggen.`, 80 + showingFirst: ({ count }) => `Viser første ${count} tagger.`, 81 + totalTags: ({ count }) => `Fant totalt ${count} tagger.`, 82 + }, 83 + }, 84 + } as const satisfies Translation