LBC => LBRY Credits

This commit is contained in:
Sean Yesmunt 2020-09-02 14:32:58 -04:00
parent 3df916548f
commit 1c02ca2b6b
2 changed files with 5 additions and 5 deletions

4
dist/bundle.es.js vendored
View file

@ -2778,7 +2778,7 @@ function doSendDraftTransaction(address, amount) {
type: SEND_TRANSACTION_COMPLETED type: SEND_TRANSACTION_COMPLETED
}); });
dispatch(doToast({ dispatch(doToast({
message: __(`You sent ${amount} LBC`), message: __(`You sent ${amount} LBRY Credits`),
linkText: __('History'), linkText: __('History'),
linkTarget: '/wallet' linkTarget: '/wallet'
})); }));
@ -2844,7 +2844,7 @@ function doSendTip(params, isSupport, successCallback, errorCallback) {
const success = () => { const success = () => {
dispatch(doToast({ 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'), linkText: __('History'),
linkTarget: '/wallet' linkTarget: '/wallet'
})); }));

View file

@ -185,7 +185,7 @@ export function doSendDraftTransaction(address, amount) {
}); });
dispatch( dispatch(
doToast({ doToast({
message: __(`You sent ${amount} LBC`), message: __(`You sent ${amount} LBRY Credits`),
linkText: __('History'), linkText: __('History'),
linkTarget: '/wallet', linkTarget: '/wallet',
}) })
@ -261,8 +261,8 @@ export function doSendTip(params, isSupport, successCallback, errorCallback) {
dispatch( dispatch(
doToast({ doToast({
message: shouldSupport message: shouldSupport
? __('You deposited %amount% LBC as a support!', { amount: params.amount }) ? __('You deposited %amount% LBRY Credits as a support!', { amount: params.amount })
: __('You sent %amount% LBC as a tip, Mahalo!', { amount: params.amount }), : __('You sent %amount% LBRY Credits as a tip, Mahalo!', { amount: params.amount }),
linkText: __('History'), linkText: __('History'),
linkTarget: '/wallet', linkTarget: '/wallet',
}) })