Preview: translate.js
Size: 253 B
//proc/thread-self/root/home/byroehnu/easetack.com/resources/js/utils/translate.js
const translate = (text) => {
const translation = localStorage.getItem("translation") ? JSON.parse(localStorage.getItem("translation")) : {};
const translateText = translation[text];
return translateText ?? text;
}
export default translate;
Directory Contents
Dirs: 0 × Files: 7