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/Landing/components/BrowserNotSupported/index.messages.js

25 lines
709 B

/* @flow */
import { defineMessages } from 'react-intl';
import type { Messages } from 'flowtype';
const definedMessages: Messages = defineMessages({
TR_YOUR_BROWSER_IS_NOT_SUPPORTED: {
id: 'TR_YOUR_BROWSER_IS_NOT_SUPPORTED',
defaultMessage: 'Your browser is not supported',
},
TR_PLEASE_CHOOSE_ONE_OF_THE_SUPPORTED: {
id: 'TR_PLEASE_CHOOSE_ONE_OF_THE_SUPPORTED',
defaultMessage: 'Please choose one of the supported browsers',
},
TR_GET_CHROME: {
id: 'TR_GET_CHROME',
defaultMessage: 'Get Chrome',
},
TR_GET_FIREFOX: {
id: 'TR_GET_FIREFOX',
defaultMessage: 'Get Firefox',
},
});
export default definedMessages;