1
0
mirror of https://github.com/trezor/trezor-wallet synced 2025-07-05 22:32:33 +00:00
trezor-wallet/src/views/Wallet/components/TopNavigationAccount/index.messages.js
Maroš 505a27a3ef
Merge pull request #541 from trezor/feature/transactions
Add transaction history - skeleton
2019-05-22 15:05:25 +02:00

36 lines
1.2 KiB
JavaScript

/* @flow */
import { defineMessages } from 'react-intl';
import type { Messages } from 'flowtype';
const definedMessages: Messages = defineMessages({
TR_NAV_TRANSACTIONS: {
id: 'TR_NAV_TRANSACTIONS',
defaultMessage: 'Transactions',
description: 'Title of the navigation tab that contains tx history.',
},
TR_NAV_SUMMARY: {
id: 'TR_NAV_SUMMARY',
defaultMessage: 'Summary',
description:
'Title of the navigation tab that contains information about selected account (balance, tx history).',
},
TR_NAV_RECEIVE: {
id: 'TR_NAV_RECEIVE',
defaultMessage: 'Receive',
description: 'Title of the navigation tab that contains the account address',
},
TR_NAV_SEND: {
id: 'TR_NAV_SEND',
defaultMessage: 'Send',
description: 'Title of the navigation tab that contains a form for sending funds',
},
TR_NAV_SIGN_AND_VERIFY: {
id: 'TR_NAV_SIGN_AND_VERIFY',
defaultMessage: 'Sign & Verify',
description:
'Title of the navigation tab that contains a form for signing and verifying messages',
},
});
export default definedMessages;