?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/wdp/wp-content/plugins/brizy/public/editor-client/src/utils/i18n/



?? Go up: /home/webdevt/www/wdp/wp-content/plugins/brizy/public/editor-client/src/utils

?? Viewing: 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);
};


??

??