mirror of
https://github.com/trezor/trezor-wallet
synced 2025-07-16 11:38:19 +00:00
18 lines
619 B
JavaScript
18 lines
619 B
JavaScript
/* @flow */
|
|
import { defineMessages } from 'react-intl';
|
|
import type { Messages } from 'flowtype';
|
|
|
|
const definedMessages: Messages = defineMessages({
|
|
TR_MINIMUM_ACCOUNT_RESERVE_REQUIRED: {
|
|
id: 'TR_MINIMUM_ACCOUNT_RESERVE_REQUIRED',
|
|
defaultMessage: 'Minimum account reserve required',
|
|
},
|
|
TR_RIPPLE_ADDRESSES_REQUIRE_MINIMUM_BALANCE: {
|
|
id: 'TR_RIPPLE_ADDRESSES_REQUIRE_MINIMUM_BALANCE',
|
|
defaultMessage:
|
|
'XRP addresses require a minimum balance of {minBalance} XRP to activate and maintain the account. {TR_LEARN_MORE}',
|
|
},
|
|
});
|
|
|
|
export default definedMessages;
|