forked from jackyzha0/quartz
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(i18n): Add Dutch to i18n (jackyzha0#813)
* Create nl-NL.ts * Update index.ts * Update nl-NL.ts
- Loading branch information
1 parent
ba836dd
commit b169a58
Showing
2 changed files
with
68 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
import { Translation } from "./definition" | ||
|
||
export default { | ||
propertyDefaults: { | ||
title: "Naamloos", | ||
description: "Geen beschrijving gegeven.", | ||
}, | ||
components: { | ||
backlinks: { | ||
title: "Backlinks", | ||
noBacklinksFound: "Geen backlinks gevonden", | ||
}, | ||
themeToggle: { | ||
lightMode: "Lichte modus", | ||
darkMode: "Donkere modus", | ||
}, | ||
explorer: { | ||
title: "Verkenner", | ||
}, | ||
footer: { | ||
createdWith: "Gemaakt met", | ||
}, | ||
graph: { | ||
title: "Grafiekweergave", | ||
}, | ||
recentNotes: { | ||
title: "Recente notities", | ||
seeRemainingMore: ({ remaining }) => `Zie ${remaining} meer →`, | ||
}, | ||
transcludes: { | ||
transcludeOf: ({ targetSlug }) => `Invoeging van ${targetSlug}`, | ||
linkToOriginal: "Link naar origineel", | ||
}, | ||
search: { | ||
title: "Zoeken", | ||
searchBarPlaceholder: "Doorzoek de website", | ||
}, | ||
tableOfContents: { | ||
title: "Inhoudsopgave", | ||
}, | ||
}, | ||
pages: { | ||
rss: { | ||
recentNotes: "Recente notities", | ||
lastFewNotes: ({ count }) => `Laatste ${count} notities`, | ||
}, | ||
error: { | ||
title: "Niet gevonden", | ||
notFound: "Deze pagina is niet zichtbaar of bestaat niet.", | ||
}, | ||
folderContent: { | ||
folder: "Map", | ||
itemsUnderFolder: ({ count }) => | ||
count === 1 ? "1 item in deze map" : `${count} items in deze map.`, | ||
}, | ||
tagContent: { | ||
tag: "Label", | ||
tagIndex: "Label-index", | ||
itemsUnderTag: ({ count }) => | ||
count === 1 ? "1 item met dit label." : `${count} items met dit label.`, | ||
showingFirst: ({ count }) => | ||
count === 1 ? "Eerste label tonen." : `Eerste ${count} labels tonen.`, | ||
totalTags: ({ count }) => `${count} labels gevonden.`, | ||
}, | ||
}, | ||
} as const satisfies Translation |