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/Header/index.messages.js

39 lines
1004 B

/* @flow */
import { defineMessages } from 'react-intl';
import type { Messages } from 'flowtype/npm/react-intl';
const definedMessages: Messages = defineMessages({
TR_MENU: {
id: 'TR_MENU',
defaultMessage: 'Menu',
description: 'Mobile sidebar toggler',
},
TR_MENU_CLOSE: {
id: 'TR_MENU_CLOSE',
defaultMessage: 'Close',
description: 'Used on button for closing sidebar menu',
},
TR_TREZOR: {
id: 'TR_TREZOR',
defaultMessage: 'Trezor',
description: 'Link in header navigation',
},
TR_WIKI: {
id: 'TR_WIKI',
defaultMessage: 'Wiki',
description: 'Link in header navigation',
},
TR_BLOG: {
id: 'TR_BLOG',
defaultMessage: 'Blog',
description: 'Link in header navigation',
},
TR_SUPPORT: {
id: 'TR_SUPPORT',
defaultMessage: 'Support',
description: 'Link in header navigation',
},
});
export default definedMessages;