From bc19699a586c49f6df83aaf4dfda566f65833224 Mon Sep 17 00:00:00 2001 From: David Nguyen Date: Tue, 2 Dec 2025 11:28:04 +1100 Subject: [PATCH] feat: add dutch language (#2255) --- packages/lib/constants/i18n.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/packages/lib/constants/i18n.ts b/packages/lib/constants/i18n.ts index 86d3f9507..49fbaee84 100644 --- a/packages/lib/constants/i18n.ts +++ b/packages/lib/constants/i18n.ts @@ -6,6 +6,7 @@ export const SUPPORTED_LANGUAGE_CODES = [ 'fr', 'es', 'it', + 'nl', 'pl', 'pt-BR', 'ja', @@ -61,6 +62,10 @@ export const SUPPORTED_LANGUAGES: Record = { full: 'Italian', short: 'it', }, + nl: { + short: 'nl', + full: 'Dutch', + }, pl: { short: 'pl', full: 'Polish',