0
0
mirror of https://github.com/yude-jp/yude.jp synced 2024-06-09 15:26:01 +09:00
yude.jp/i18n/index.js

12 lines
188 B
JavaScript
Raw Permalink Normal View History

2021-12-11 18:55:57 +09:00
var ja = require('./translations.ja.json');
var en = require('./translations.en.json')
2021-12-11 18:07:22 +09:00
const i18n = {
translations: {
ja: ja,
en: en,
},
defaultLang: 'ja'
}
module.exports = i18n;