1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-13 17:56:25 +00:00
Files
Boostnote/browser/lib/i18n.js
2018-03-06 14:07:04 +01:00

7 lines
198 B
JavaScript

//load package for localization
const i18n = new (require('i18n-2'))({
// setup some locales - other locales default to the first locale
locales: ['en', 'de', 'fr']
});
export default i18n;