Farmbot-Web-App/frontend/i18next_wrapper.tsx

7 lines
176 B
TypeScript
Raw Permalink Normal View History

2019-04-02 13:59:37 -06:00
import { Dictionary } from "farmbot";
import I from "i18next";
export function t(str: string, map: Dictionary<string | number> = {}): string {
return I.t(str, map) || "";
}