1
0
mirror of https://github.com/trezor/trezor-wallet synced 2025-07-01 20:32:37 +00:00
trezor-wallet/src/views/Wallet/views/FirmwareUpdate/index.messages.js
2019-03-04 13:33:02 +01:00

17 lines
524 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/* @flow */
import { defineMessages } from 'react-intl';
import type { Messages } from 'flowtype/npm/react-intl';
const definedMessages: Messages = defineMessages({
TR_ITS_TIME_TO_UPDATE_FIRMWARE: {
id: 'TR_ITS_TIME_TO_UPDATE_FIRMWARE',
defaultMessage: 'Its time to update your firmware',
},
TR_PLEASE_USE_OLD_WALLET: {
id: 'TR_PLEASE_USE_OLD_WALLET',
defaultMessage: 'Please use Bitcoin wallet interface to update your firmware.',
},
});
export default definedMessages;