You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trezor-wallet/src/components/modals/external/common.messages.js

17 lines
505 B

/* @flow */
import { defineMessages } from 'react-intl';
import type { Messages } from 'flowtype/npm/react-intl';
const definedMessages: Messages = defineMessages({
TR_YOU_WILL_BE_REDIRECTED_TO_EXTERNAL: {
id: 'TR_YOU_WILL_BE_REDIRECTED_TO_EXTERNAL',
defaultMessage: 'You will be redirected to external wallet',
},
TR_GO_TO_EXTERNAL_WALLET: {
id: 'TR_GO_TO_EXTERNAL_WALLET',
defaultMessage: 'Go to external wallet',
},
});
export default definedMessages;