?? 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: translate.ts

type Translate = (
  dictionary: {
    [key: string]: undefined | string;
  },
  key: string
) => string;

export const translate: Translate = (dictionary, key) => dictionary[key] || key;


??

??