habitica-self-host/website/common/script/content/translation.js

12 lines
256 B
JavaScript
Raw Normal View History

2015-11-15 14:16:55 +00:00
import i18n from '../i18n';
2015-10-03 11:39:10 +00:00
2016-03-03 03:36:27 +00:00
module.exports = function translator (string, vars = { a: 'a' }) {
2015-11-15 14:16:55 +00:00
function func (lang) {
2015-10-03 11:39:10 +00:00
return i18n.t(string, vars, lang);
2015-11-15 14:16:55 +00:00
}
2015-10-03 11:39:10 +00:00
func.i18nLangFunc = true; // Trick to recognize this type of function
return func;
2016-03-03 03:36:27 +00:00
};