1
0
mirror of https://github.com/trezor/trezor-wallet synced 2025-07-05 22:32:33 +00:00
trezor-wallet/src/views/Wallet/components/Content/components/FirmwareUnsupported/index.messages.js
2019-04-29 11:59:15 +02:00

17 lines
480 B
JavaScript

/* @flow */
import { defineMessages } from 'react-intl';
import type { Messages } from 'flowtype';
const definedMessages: Messages = defineMessages({
TR_FIND_OUT_MORE_INFO: {
id: 'TR_FIND_OUT_MORE_INFO',
defaultMessage: 'Find out more info',
},
TR_MODEL_DOES_NOT_SUPPORT_COIN: {
id: 'TR_MODEL_DOES_NOT_SUPPORT_COIN',
defaultMessage: 'The coin {coin} is not supported by your Trezor model.',
},
});
export default definedMessages;