mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-22 19:46:23 +00:00
feat(i18n): localize the min read string for the nl-NL locale (#850)
* Update min read translation * Added nl_BE to Dutch Added Flemish (nl_BE) to point to nl. * Removed period to match other translations
This commit is contained in:
parent
76f295620c
commit
5dc4f21a4b
2 changed files with 3 additions and 1 deletions
|
@ -15,6 +15,7 @@ export const TRANSLATIONS = {
|
||||||
"ja-JP": ja,
|
"ja-JP": ja,
|
||||||
"de-DE": de,
|
"de-DE": de,
|
||||||
"nl-NL": nl,
|
"nl-NL": nl,
|
||||||
|
"nl-BE": nl,
|
||||||
"ro-RO": ro,
|
"ro-RO": ro,
|
||||||
"ro-MD": ro,
|
"ro-MD": ro,
|
||||||
"es-ES": es,
|
"es-ES": es,
|
||||||
|
|
|
@ -54,7 +54,8 @@ export default {
|
||||||
title: "Inhoudsopgave",
|
title: "Inhoudsopgave",
|
||||||
},
|
},
|
||||||
contentMeta: {
|
contentMeta: {
|
||||||
readingTime: ({ minutes }) => `${minutes} min read`,
|
readingTime: ({ minutes }) =>
|
||||||
|
minutes === 1 ? "1 minuut leestijd" : `${minutes} minuten leestijd`,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
pages: {
|
pages: {
|
||||||
|
|
Loading…
Reference in a new issue