XylotrechusZ
XylotrechusZ Shell
: /home/mjbynoyq/wazirandsons.pk/wp-content/plugins/brizy/public/editor-client/src/utils/i18n/ [ drwxr-xr-x ]
import { getConfig } from "../../config";
import { translate } from "./translate";
export const t = (key: string): string => {
const config = getConfig();
const dictionary = config?.l10n ?? {};
return translate(dictionary, key);
};