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/views/Wallet/views/FirmwareUpdate/index.messages.js

17 lines
509 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

/* @flow */
import { defineMessages } from 'react-intl';
import type { Messages } from 'flowtype';
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;