webapp/src/utils/intl.ts
2022-09-22 11:37:49 +02:00

13 lines
189 B
TypeScript

import ru from '../locales/ru.json'
// add locales here
const dict = { ru }
export const t = (s, lang = 'ru'): string => {
try {
return dict[lang][s]
} catch {
return s
}
}