Add 'revoke modal' strings

This commit is contained in:
infiinte-persistence 2020-06-20 22:17:11 +08:00 committed by Sean Yesmunt
parent 391b5d2b50
commit 8e85d77c71
2 changed files with 7 additions and 3 deletions

View file

@ -418,8 +418,12 @@
"You currently have the highest bid for this name.": "You currently have the highest bid for this name.",
"You can generate a new address at any time, and any previous addresses will continue to work.": "You can generate a new address at any time, and any previous addresses will continue to work.",
"Confirm Claim Revoke": "Confirm Claim Revoke",
"Confirm Tip Unlock": "Confirm Tip Unlock",
"Confirm Support Revoke": "Confirm Support Revoke",
"Are you sure you want to remove this support?": "Are you sure you want to remove this support?",
"These credits are permanently yours and can be removed at any time. Removing this support will reduce the claim's discoverability and return the LBC to your spendable balance.": "These credits are permanently yours and can be removed at any time. Removing this support will reduce the claim's discoverability and return the LBC to your spendable balance.",
"Are you sure you want to unlock these credits?": "Are you sure you want to unlock these credits?",
"These credits are permanently yours and can be unlocked at any time. Unlocking them allows you to spend them, but can hurt the performance of your content in lookups and search results. It is recommended you leave tips locked until you need or want to spend them.": "These credits are permanently yours and can be unlocked at any time. Unlocking them allows you to spend them, but can hurt the performance of your content in lookups and search results. It is recommended you leave tips locked until you need or want to spend them.",
"Mature": "Mature",
"Show mature content": "Show mature content",
"Mature content may include nudity, intense sexuality, profanity, or other adult content. By displaying mature content, you are affirming you are of legal age to view mature content in your country or jurisdiction. ": "Mature content may include nudity, intense sexuality, profanity, or other adult content. By displaying mature content, you are affirming you are of legal age to view mature content in your country or jurisdiction. ",

View file

@ -25,11 +25,11 @@ export default function ModalRevokeClaim(props: Props) {
function getButtonLabel(type: string, isSupport: boolean) {
if (isSupport && type === txnTypes.SUPPORT) {
return 'Confirm Support Revoke';
return __('Confirm Support Revoke');
} else if (type === txnTypes.SUPPORT) {
return 'Confirm Tip Unlock';
return __('Confirm Tip Unlock');
}
return 'Confirm Claim Revoke';
return __('Confirm Claim Revoke');
}
function getMsgBody(type: string, isSupport: boolean, name: string) {