From 1fa5bc3fadd4166742d2463dd0005453131b83be Mon Sep 17 00:00:00 2001
From: AkiraFukushima
Date: Thu, 2 Jun 2022 23:58:11 +0900
Subject: [PATCH] refs #3389 Fix i18next when application is loaded
---
src/renderer/App.vue | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/renderer/App.vue b/src/renderer/App.vue
index 7ac6021c..71238064 100644
--- a/src/renderer/App.vue
+++ b/src/renderer/App.vue
@@ -34,7 +34,7 @@ export default {
created() {
this.$store.dispatch('App/watchShortcutEvents')
this.$store.dispatch('App/loadPreferences').then(conf => {
- this.$i18n.locale = conf.language.language
+ this.$i18n.changeLanguage(conf.language.language)
})
},
unmounted() {