i18n - "LBC" to "Credit"
This commit is contained in:
parent
05d831b283
commit
73e8a99c7e
2 changed files with 4 additions and 4 deletions
|
@ -1197,10 +1197,10 @@
|
|||
"Boost This Video": "Boost This Video",
|
||||
"Boost This Content": "Boost This Content",
|
||||
"Send a $%displayAmount% Tip": "Send a $%displayAmount% Tip",
|
||||
"Send a %displayAmount% LBC Tip": "Send a %displayAmount% LBC Tip",
|
||||
"Send a %displayAmount% Credit Tip": "Send a %displayAmount% Credit Tip",
|
||||
"Boost": "Boost",
|
||||
"Boosting": "Boosting",
|
||||
"Tipping LBC": "Tipping LBC",
|
||||
"Tipping Credit": "Tipping Credit",
|
||||
"Tipping Fiat (USD):": "Tipping Fiat (USD)",
|
||||
"Send Revocable Support": "Send Revocable Support",
|
||||
"Send a %amount% Tip": "Send a %amount% Tip",
|
||||
|
|
|
@ -293,7 +293,7 @@ function WalletSendTip(props: Props) {
|
|||
} else if (activeTab === TAB_FIAT) {
|
||||
return __('Send a $%displayAmount% Tip', { displayAmount });
|
||||
} else if (activeTab === TAB_LBC) {
|
||||
return __('Send a %displayAmount% LBC Tip', { displayAmount });
|
||||
return __('Send a %displayAmount% Credit Tip', { displayAmount });
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -305,7 +305,7 @@ function WalletSendTip(props: Props) {
|
|||
|
||||
function setConfirmLabel() {
|
||||
if (activeTab === TAB_LBC) {
|
||||
return __('Tipping LBC');
|
||||
return __('Tipping Credit');
|
||||
} else if (activeTab === TAB_FIAT) {
|
||||
return __('Tipping Fiat (USD)');
|
||||
} else if (activeTab === TAB_BOOST) {
|
||||
|
|
Loading…
Reference in a new issue