LBC => LBRY Credits
This commit is contained in:
parent
3df916548f
commit
1c02ca2b6b
2 changed files with 5 additions and 5 deletions
4
dist/bundle.es.js
vendored
4
dist/bundle.es.js
vendored
|
@ -2778,7 +2778,7 @@ function doSendDraftTransaction(address, amount) {
|
|||
type: SEND_TRANSACTION_COMPLETED
|
||||
});
|
||||
dispatch(doToast({
|
||||
message: __(`You sent ${amount} LBC`),
|
||||
message: __(`You sent ${amount} LBRY Credits`),
|
||||
linkText: __('History'),
|
||||
linkTarget: '/wallet'
|
||||
}));
|
||||
|
@ -2844,7 +2844,7 @@ function doSendTip(params, isSupport, successCallback, errorCallback) {
|
|||
|
||||
const success = () => {
|
||||
dispatch(doToast({
|
||||
message: shouldSupport ? __('You deposited %amount% LBC as a support!', { amount: params.amount }) : __('You sent %amount% LBC as a tip, Mahalo!', { amount: params.amount }),
|
||||
message: shouldSupport ? __('You deposited %amount% LBRY Credits as a support!', { amount: params.amount }) : __('You sent %amount% LBRY Credits as a tip, Mahalo!', { amount: params.amount }),
|
||||
linkText: __('History'),
|
||||
linkTarget: '/wallet'
|
||||
}));
|
||||
|
|
|
@ -185,7 +185,7 @@ export function doSendDraftTransaction(address, amount) {
|
|||
});
|
||||
dispatch(
|
||||
doToast({
|
||||
message: __(`You sent ${amount} LBC`),
|
||||
message: __(`You sent ${amount} LBRY Credits`),
|
||||
linkText: __('History'),
|
||||
linkTarget: '/wallet',
|
||||
})
|
||||
|
@ -261,8 +261,8 @@ export function doSendTip(params, isSupport, successCallback, errorCallback) {
|
|||
dispatch(
|
||||
doToast({
|
||||
message: shouldSupport
|
||||
? __('You deposited %amount% LBC as a support!', { amount: params.amount })
|
||||
: __('You sent %amount% LBC as a tip, Mahalo!', { amount: params.amount }),
|
||||
? __('You deposited %amount% LBRY Credits as a support!', { amount: params.amount })
|
||||
: __('You sent %amount% LBRY Credits as a tip, Mahalo!', { amount: params.amount }),
|
||||
linkText: __('History'),
|
||||
linkTarget: '/wallet',
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue