FarmBot/Farmbot-Web-App

View on GitHub
frontend/i18next_wrapper.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import { Dictionary } from "farmbot";
import { t as translate } from "i18next";

export function t(str: string, map: Dictionary<string | number> = {}): string {
  return translate(str, map) || "";
}