'use strict'; const getCoreStore = () => { return strapi.store({ environment: '', type: 'plugin', name: 'i18n', }); }; // retrieve a local service const getService = name => { return strapi.plugin('i18n').service(name); }; module.exports = { getService, getCoreStore, };