mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 09:57:02 +01:00
7 lines
190 B
JavaScript
7 lines
190 B
JavaScript
|
import { getMessage } from '../../ui/helpers/utils/i18n-helper';
|
||
|
import * as en from '../../app/_locales/en/messages.json';
|
||
|
|
||
|
export function tEn(key) {
|
||
|
return getMessage('en', en, key);
|
||
|
}
|