/home/tuzdhajd/tuzdayscloset.com/wp-content/plugins/brizy/public/editor-client/src/utils/i18n/t.ts
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);
};