diff --git a/common/containers/Tabs/Swap/components/swapProgress.js b/common/containers/Tabs/Swap/components/swapProgress.js index d5d51e0b..f937ac36 100644 --- a/common/containers/Tabs/Swap/components/swapProgress.js +++ b/common/containers/Tabs/Swap/components/swapProgress.js @@ -1,7 +1,7 @@ import React, { Component } from 'react'; import PropTypes from 'prop-types'; // import { toFixedIfLarger } from 'utils/formatters'; -// import translate from 'translations'; +import translate from 'translations'; export default class SwapProgress extends Component { constructor(props) { @@ -22,25 +22,25 @@ export default class SwapProgress extends Component {
1
-

Order Initiated

+

{translate('SWAP_progress_1')}

2

- Waiting for your {originKind}... + {translate('SWAP_progress_2')}{originKind}...

3

- ETH Received! + {originKind} {translate('SWAP_progress_3')}

4

- destination your{' '} - {destinationKind}
+ Sending your {destinationKind} +
Waiting for {numberOfConfirmations} confirmations... @@ -48,7 +48,7 @@ export default class SwapProgress extends Component {

5
-

Order Complete

+

Order Complete

);