Browse Source

dashboard spv translate fix

v0.25
pbca26 7 years ago
parent
commit
7ed063d551
  1. 4
      react/src/components/dashboard/walletsData/walletsData.js

4
react/src/components/dashboard/walletsData/walletsData.js

@ -346,7 +346,7 @@ class WalletsData extends React.Component {
.then((serverSetRes) => { .then((serverSetRes) => {
Store.dispatch( Store.dispatch(
triggerToaster( triggerToaster(
`${this.props.ActiveCoin.coin} SPV {translate('DASHBOARD.SERVER_SET_TO')} ${_randomServer.ip}:${_randomServer.port}`, `${this.props.ActiveCoin.coin} SPV ${translate('DASHBOARD.SERVER_SET_TO')} ${_randomServer.ip}:${_randomServer.port}`,
translate('TOASTR.WALLET_NOTIFICATION'), translate('TOASTR.WALLET_NOTIFICATION'),
'success' 'success'
) )
@ -356,7 +356,7 @@ class WalletsData extends React.Component {
} else { } else {
Store.dispatch( Store.dispatch(
triggerToaster( triggerToaster(
`${this.props.ActiveCoin.coin} SPV {translate('DASHBOARD.SERVER_SM')} ${_randomServer.ip}:${_randomServer.port} {translate('DASHBOARD.IS_UNREACHABLE')}!`, `${this.props.ActiveCoin.coin} SPV ${translate('DASHBOARD.SERVER_SM')} ${_randomServer.ip}:${_randomServer.port} ${translate('DASHBOARD.IS_UNREACHABLE')}!`,
translate('TOASTR.WALLET_NOTIFICATION'), translate('TOASTR.WALLET_NOTIFICATION'),
'error' 'error'
) )

Loading…
Cancel
Save