fix: wording

This commit is contained in:
Thomas Zarebczan 2019-07-23 12:57:49 -04:00
parent ee93a47f89
commit 6e8c643f45
2 changed files with 2 additions and 2 deletions

2
dist/bundle.es.js vendored
View file

@ -1919,7 +1919,7 @@ function doSendTip(amount, claimId, successCallback, errorCallback) {
const success = () => {
dispatch(doToast({
message: isSupport ? __(`You sent ${amount} LBC as a support!`) : __(`You sent ${amount} LBC as a tip, Mahalo!`),
message: isSupport ? __(`You deposited ${amount} LBC as a support!`) : __(`You sent ${amount} LBC as a tip, Mahalo!`),
linkText: __('History'),
linkTarget: __('/wallet')
}));

View file

@ -230,7 +230,7 @@ export function doSendTip(amount, claimId, successCallback, errorCallback) {
const success = () => {
dispatch(
doToast({
message: isSupport ? __(`You sent ${amount} LBC as a support!`) : __(`You sent ${amount} LBC as a tip, Mahalo!`),
message: isSupport ? __(`You deposited ${amount} LBC as a support!`) : __(`You sent ${amount} LBC as a tip, Mahalo!`),
linkText: __('History'),
linkTarget: __('/wallet'),
})