You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
226 B
13 lines
226 B
1 year ago
|
import en from './en.json'
|
||
|
import es from './es.json'
|
||
|
import fr from './fr.json'
|
||
|
import zhHans from './zh-Hans.json'
|
||
|
import zhHant from './zh-Hant.json'
|
||
|
export default {
|
||
|
en,
|
||
|
es,
|
||
|
fr,
|
||
|
'zh-Hans': zhHans,
|
||
|
'zh-Hant': zhHant
|
||
|
}
|