API & Client - enable nl translations

This commit is contained in:
Sam
2022-11-30 10:31:53 +01:00
parent 3af6b3af37
commit 4e9f80af62
4 changed files with 6 additions and 6 deletions

View File

@ -98,7 +98,7 @@ const dateStringFormats: Record<string, string> = {
en: 'MMM. do, yyyy',
fr: 'd MMM yyyy',
// nb: 'do MMM yyyy',
// nl: 'd MMM yyyy',
nl: 'd MMM yyyy',
}
export const getDateFormat = (dateFormat: string, language: string): string => {

View File

@ -1,6 +1,6 @@
/* eslint-disable import/no-duplicates */
import { Locale } from 'date-fns'
import { de, enUS, fr } from 'date-fns/locale'
import { de, enUS, fr, nl } from 'date-fns/locale'
import createI18n from '@/i18n'
@ -9,7 +9,7 @@ export const localeFromLanguage: Record<string, Locale> = {
en: enUS,
fr: fr,
// nb: nb, // disabled for now
// nl: nl, // disabled for now
nl: nl,
}
export const languageLabels: Record<string, string> = {
@ -17,7 +17,7 @@ export const languageLabels: Record<string, string> = {
en: 'English',
fr: 'Français',
// nb: 'Norsk bokmål', // disabled for now
// nl: 'Nederlands', // disabled for now
nl: 'Nederlands',
}
const { availableLocales } = createI18n.global