UNPKG

@textback/notification-widget

Version:

TODO: Give a short introduction of your project. Let this section explain the objectives or the motivation behind this project.

10 lines (7 loc) 357 B
const locales = require('../locales'); import getLocale from './getLocale' function text(string, locale) { const dictionary = locales[locale] || locales[locale.split('-')[0]] || locales[getLocale()] || locales[getLocale().split('-')[0]] ||locales.main; return dictionary[string] || locales.main[string] || string; } export default text;