From a1b3470f6b8f51d04e0eadf8df6caece5b99267c Mon Sep 17 00:00:00 2001 From: dohseven Date: Fri, 21 Dec 2018 17:09:58 +0100 Subject: [PATCH] Add French support --- flatisfy/web/js_src/i18n/index.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/flatisfy/web/js_src/i18n/index.js b/flatisfy/web/js_src/i18n/index.js index 9f0f33e..bf8fec7 100644 --- a/flatisfy/web/js_src/i18n/index.js +++ b/flatisfy/web/js_src/i18n/index.js @@ -3,6 +3,7 @@ import VueI18n from 'vue-i18n' // Import translations import en from './en' +import fr from './fr' Vue.use(VueI18n) @@ -32,7 +33,8 @@ export function getBrowserLocales () { } const messages = { - 'en': en + 'en': en, + 'fr': fr } const locales = getBrowserLocales()