mirror of
https://github.com/trezor/trezor-wallet
synced 2025-07-03 13:22:35 +00:00
17 lines
558 B
JavaScript
17 lines
558 B
JavaScript
/* @flow */
|
|
import { defineMessages } from 'react-intl';
|
|
import type { Messages } from 'flowtype/npm/react-intl';
|
|
|
|
const definedMessages: Messages = defineMessages({
|
|
TR_YOUR_DEVICE_IS_NOT_INITIALIZED: {
|
|
id: 'TR_YOUR_DEVICE_IS_NOT_INITIALIZED',
|
|
defaultMessage: 'Your device is not initialized',
|
|
},
|
|
TR_PLEASE_USE_TO_START_INITIALIZATION: {
|
|
id: 'TR_PLEASE_USE_TO_START_INITIALIZATION',
|
|
defaultMessage: 'Please use Bitcoin wallet interface to start initialization process',
|
|
},
|
|
});
|
|
|
|
export default definedMessages;
|