import O18N from 'o18n'; const lang = new O18N({ zh: { hello: '哈囉' }, en: { hello: 'hello' }, }); /* Default is the first language */ console.log(lang.hello); // 哈囉 lang.locale = 'en'; console.log(lang.hello); // hello