From 8d690ac875c7ec3d366ed4ac725aaf0adc28e9e4 Mon Sep 17 00:00:00 2001 From: Jakob Scheid Date: Wed, 1 Jul 2026 13:36:54 +0200 Subject: [PATCH] feat(i18n): swap Italian and Portuguese in the available languages array This increases the accessibility of the languages selection. --- src/i18n.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/i18n.js b/src/i18n.js index a57766b..d764d8b 100644 --- a/src/i18n.js +++ b/src/i18n.js @@ -28,8 +28,8 @@ export const SUPPORTED_LANGUAGES = [ 'de', 'fr', 'es', - 'it', - 'pt' + 'pt', + 'it' ]; export const i18n = createI18n({ -- 2.39.5