From b9ebdc4fb3465a01cde85bbc16468da63dbdce56 Mon Sep 17 00:00:00 2001 From: Thomas Zarebczan Date: Tue, 23 Jul 2019 23:35:57 -0400 Subject: [PATCH] Fix language setting? --- src/ui/i18n/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/i18n/index.js b/src/ui/i18n/index.js index 374089a6e..83b614eda 100644 --- a/src/ui/i18n/index.js +++ b/src/ui/i18n/index.js @@ -3,7 +3,7 @@ import y18n from 'y18n'; import path from 'path'; const i18n = y18n({ - directory: path.join(__static, `locales`), + directory: path.join(__dirname, `locales`), updateFiles: true, locale: 'en', });