From 862a5f9cdbbda522c608ea63c1e296e81f44de10 Mon Sep 17 00:00:00 2001 From: Ben Beltran Date: Sat, 20 Jun 2020 16:20:31 +0200 Subject: Add internationalization support --- app/config/i18n.js | 2 ++ 1 file changed, 2 insertions(+) (limited to 'app/config/i18n.js') diff --git a/app/config/i18n.js b/app/config/i18n.js index e00adb5..25ffc45 100644 --- a/app/config/i18n.js +++ b/app/config/i18n.js @@ -1,8 +1,10 @@ import { addMessages, getLocaleFromNavigator, init } from 'svelte-i18n'; import en from './translations/en.json'; +import es from './translations/es.json'; addMessages('en', en); +addMessages('es', es); init({ fallbackLocale: 'en', -- cgit