webapp/src/utils/intl.ts

13 lines
189 B
TypeScript
Raw Normal View History

2022-09-09 11:53:35 +00:00
import ru from '../locales/ru.json'
// add locales here
const dict = { ru }
2022-09-22 09:37:49 +00:00
export const t = (s, lang = 'ru'): string => {
2022-09-09 11:53:35 +00:00
try {
return dict[lang][s]
} catch {
return s
}
}