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 (6 loc) 283 B
const locales = require('./locales'); function text(string, locale) { const dictionary = locales[locale] || locales[locale.split('-')[0]] || locales[locale.split('_')[0]] || locales.main; return dictionary[string] || locales.main[string] || string; } export default text;