From ff484cebed7bd04912090ae15e196de43da79e88 Mon Sep 17 00:00:00 2001 From: Lei Nelissen Date: Tue, 3 Nov 2020 23:10:21 +0100 Subject: [PATCH] Add nl locale as option --- src/localisation/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/localisation/index.ts b/src/localisation/index.ts index 65c5d60..646b7a4 100644 --- a/src/localisation/index.ts +++ b/src/localisation/index.ts @@ -6,6 +6,7 @@ import { LocaleKeys } from './types'; const localeGetters: Record object> = { en: () => require('./lang/en/locale.json'), fr: () => require('./lang/fr/locale.json'), + nl: () => require('./lang/nl/locale.json'), }; // Have RNLocalize pick the best locale from the languages on offer