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
type Translate = (
dictionary: {
[key: string]: undefined | string;
},
key: string
) => string;
export const translate: Translate = (dictionary, key) => dictionary[key] || key;