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/components/notifications/Context/components/Static/index.messages.js

18 lines
619 B

/* @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;