Skip to content

Commit

Permalink
feat: add korean for FILA (#4620)
Browse files Browse the repository at this point in the history
  • Loading branch information
anna-geller authored Aug 9, 2024
1 parent 0cb79fa commit 963d933
Show file tree
Hide file tree
Showing 5 changed files with 822 additions and 1 deletion.
1 change: 1 addition & 0 deletions ui/src/components/settings/BasicSettings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -384,6 +384,7 @@
{value: "ru", text: "Russian"},
{value: "zh_CN", text: "Chinese"},
{value: "ja", text: "Japanese"},
{value: "ko", text: "Korean"},
{value: "hi", text: "Hindi"}
];
},
Expand Down
3 changes: 2 additions & 1 deletion ui/src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,15 @@ import fr from "./translations/fr.json";
import hi from "./translations/hi.json";
import it from "./translations/it.json";
import ja from "./translations/ja.json";
import ko from "./translations/ko.json";
import pl from "./translations/pl.json";
import pt from "./translations/pt.json";
import ru from "./translations/ru.json";
import zh_CN from "./translations/zh_CN.json"
import stores from "./stores/store";

const app = createApp(App)
const translations = {...de,...en,...es,...fr,...hi,...it,...ja,...pl,...pt,...ru,...zh_CN}
const translations = {...de,...en,...es,...fr,...hi,...it,...ja,...ko,...pl,...pt,...ru,...zh_CN}

const {store, router} = initApp(app, routes, stores, translations);

Expand Down
Loading

0 comments on commit 963d933

Please sign in to comment.