mirror of
https://github.com/mue/mue.git
synced 2026-06-11 02:59:06 +02:00
fix: sidebar bug, tab name translation
This commit is contained in:
25
src/modules/translations.js
Normal file
25
src/modules/translations.js
Normal file
@@ -0,0 +1,25 @@
|
||||
import * as de_DE from '../translations/de_DE.json';
|
||||
import * as en_GB from '../translations/en_GB.json';
|
||||
import * as en_US from '../translations/en_US.json';
|
||||
import * as es from '../translations/es.json';
|
||||
import * as fr from '../translations/fr.json';
|
||||
import * as nl from '../translations/nl.json';
|
||||
import * as no from '../translations/no.json';
|
||||
import * as ru from '../translations/ru.json';
|
||||
import * as zh_CN from '../translations/zh_CN.json';
|
||||
import * as id_ID from '../translations/id_ID.json';
|
||||
|
||||
const translations = {
|
||||
de_DE,
|
||||
en_GB,
|
||||
en_US,
|
||||
es,
|
||||
fr,
|
||||
nl,
|
||||
no,
|
||||
ru,
|
||||
zh_CN,
|
||||
id_ID
|
||||
};
|
||||
|
||||
export default translations;
|
||||
Reference in New Issue
Block a user