Farmbot-Web-App/frontend/i18next_wrapper.tsx
2019-04-02 14:59:37 -05:00

7 lines
176 B
TypeScript

import { Dictionary } from "farmbot";
import I from "i18next";
export function t(str: string, map: Dictionary<string | number> = {}): string {
return I.t(str, map) || "";
}