Skip to content

Commit

Permalink
fix some spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
TheLeoB committed Jun 4, 2018
1 parent 5837e45 commit bcf5de2
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
Expand Up @@ -101,7 +101,7 @@
"components.alerts.wallet_upgrade_error": "Failed to upgrade to HD and save wallet.",
"components.alerts.yubikey_verify_error": "Failed to verify Yubikey",
"components.alerts.yubikey_verify_success": "Yubikey verified",
"components.alerts.uknown_error": "An error has occured.",
"components.alerts.unknown.error": "An error has occurred.",
"coinify.banktransferdetails.header": "Bank Transfer Order Details",
"coinify.banktransferdetails.directions": "Funds must come from your bank account, which needs to be in the same name as your government issued ID. Coinify will reject any transfers from third party accounts not in your name.",
"coinify.banktransferdetails.recipientname": "Recipient Name:",
Expand Down Expand Up @@ -885,7 +885,7 @@
"scenes.exchange.shapeshift.stateregistration.subheader": "Blockchain works with exchange partners to make exchanging coins in your wallet secure and seamless.",
"scenes.exchange.shapeshift.stateregistration.selectstate": "Select your state of residency:",
"scenes.exchange.shapeshift.stateregistration.continue": "Continue",
"scenes.exchange.shapeshift.error": "An error has occured. Please try again.",
"scenes.exchange.shapeshift.error": "An error has occurred. Please try again.",
"modals.exchange.shapeshift.title.success": "Success! Your exchange is complete",
"modals.exchange.shapeshift.title.inprogress": "Exchange In Progress",
"modals.exchange.shapeshift.explain": "Thanks for placing your trade! ",
Expand Down Expand Up @@ -1492,4 +1492,4 @@
"scenes.services.sfoxservice.buysellorderhistory.list.orderstatusbody.sell.rejected": "Your sell trade has been rejected. Please contact support.",
"scenes.services.sfoxservice.buysellorderhistory.list.orderstatusbody.sell.failed": "Your sell trade failed. Please contact support.",
"scenes.buysellorderhistory.list.orderstatusbody.unknown": "There are issues with this trade. Please contact support."
}
}
Expand Up @@ -135,7 +135,7 @@ const selectMessage = (message, data = undefined) => {
case C.WALLET_UPGRADE_ERROR: return <FormattedMessage id='components.alerts.wallet_upgrade_error' defaultMessage='Failed to upgrade to HD and save wallet.' />
case C.YUBIKEY_VERIFY_ERROR: return <FormattedMessage id='components.alerts.yubikey_verify_error' defaultMessage='Failed to verify Yubikey' />
case C.YUBIKEY_VERIFY_SUCCESS: return <FormattedMessage id='components.alerts.yubikey_verify_success' defaultMessage='Yubikey verified' />
default: return <FormattedMessage id='components.alerts.uknown_error' defaultMessage='An error has occured.' />
default: return <FormattedMessage id='components.alerts.unknown.error' defaultMessage='An error has occurred.' />
}
}

Expand Down
Expand Up @@ -17,7 +17,7 @@ const Wrapper = styled.div`
export default (props) => (
<Wrapper>
<Text size='12px' weight={300} color='red'>
<FormattedMessage id='scenes.exchange.shapeshift.error' defaultMessage='An error has occured. Please try again.' />
<FormattedMessage id='scenes.exchange.shapeshift.error' defaultMessage='An error has occurred. Please try again.' />
</Text>
</Wrapper>
)
Expand Up @@ -41,7 +41,7 @@ export default ({ api, btcSocket }) => {
const tx = transactions.payload.transactions[i]
if (tx.hash === message.x.hash) {
if (tx.result > 0) {
yield put(A.webSocket.bitcoin.paymentReceived('You\'ve just received a bitcoin payment.'))
yield put(A.webSocket.bitcoin.paymentReceived("You've just received a bitcoin payment."))
}
break
}
Expand Down

0 comments on commit bcf5de2

Please sign in to comment.