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/components/LeftNavigation/components/AccountMenu/index.messages.js

25 lines
799 B

/* @flow */
import { defineMessages } from 'react-intl';
import type { Messages } from 'flowtype/npm/react-intl';
const definedMessages: Messages = defineMessages({
TR_TO_ADD_A_NEW_ACCOUNT_LAST: {
id: 'TR_TO_ADD_A_NEW_ACCOUNT_LAST',
defaultMessage: 'To add a new account, last account must have some transactions.',
},
TR_TO_ADD_ACCOUNTS: {
id: 'TR_TO_ADD_ACCOUNTS',
defaultMessage: 'To add accounts, make sure your device is connected.',
},
TR_ADD_ACCOUNT: {
id: 'TR_ADD_ACCOUNT',
defaultMessage: 'Add account',
},
TR_YOU_CANNOT_ADD_MORE_THAN_10_ACCOUNTS: {
id: 'TR_YOU_CANNOT_ADD_MORE_THAN_10_ACCOUNTS',
defaultMessage: 'You cannot add more than 10 accounts',
},
});
export default definedMessages;