1
0
mirror of https://github.com/trezor/trezor-wallet synced 2025-07-13 01:58:08 +00:00
trezor-wallet/src/components/modals/device/Forget/index.messages.js
2019-04-29 11:59:15 +02:00

19 lines
645 B
JavaScript

/* @flow */
import { defineMessages } from 'react-intl';
import type { Messages } from 'flowtype';
const definedMessages: Messages = defineMessages({
TR_DONT_FORGET: {
id: 'TR_DONT_FORGET',
defaultMessage: "Don't forget",
description: 'Button in remember/forget dialog',
},
TR_FORGETTING_ONLY_REMOVES_THE_DEVICE_FROM: {
id: 'TR_FORGETTING_ONLY_REMOVES_THE_DEVICE_FROM',
defaultMessage:
'Forgetting only removes the device from the list on the left, your coins are still safe and you can access them by reconnecting your Trezor again.',
},
});
export default definedMessages;