leafy-i18n
v0.0.9
Published
Parses project, finds i18n calls and opens browser to translate them
Downloads
3
Readme
leafy-i18n
Parses project, finds i18n calls and opens browser to translate them
/**
* @param {string[]} t
* @param {...string[]} args
*/
function i18n(key, ...args) {
return db[key.join("\x01")][locale].map(e =>
typeof e === "number" ? args[e] : e
).join("")
}