Farmbot-Web-App/frontend/revert_to_english.ts

8 lines
186 B
TypeScript

import { detectLanguage } from "./i18n";
import I from "i18next";
import { noop } from "lodash";
export async function revertToEnglish() {
I.init(await detectLanguage("en"), noop);
}