update copy
This commit is contained in:
parent
304dcf79e1
commit
f8357c4ec6
2 changed files with 23 additions and 4 deletions
|
@ -1056,5 +1056,10 @@
|
||||||
"Rewards validation is optional.": "Rewards validation is optional.",
|
"Rewards validation is optional.": "Rewards validation is optional.",
|
||||||
"Continue Without Rewards": "Continue Without Rewards",
|
"Continue Without Rewards": "Continue Without Rewards",
|
||||||
"If you'd like to participate our %rewards_program% to earn credits, please complete one of the steps below to be validated.": "If you'd like to participate our %rewards_program% to earn credits, please complete one of the steps below to be validated.",
|
"If you'd like to participate our %rewards_program% to earn credits, please complete one of the steps below to be validated.": "If you'd like to participate our %rewards_program% to earn credits, please complete one of the steps below to be validated.",
|
||||||
"verify your email": "verify your email"
|
"verify your email": "verify your email",
|
||||||
|
"rename your existing wallet in the lbry/wallets directory": "rename your existing wallet in the lbry/wallets directory",
|
||||||
|
"Your wallet data will remain intact. If you sign in with a different account, the wallets will be merged. To prevent this, you need to %rename_wallet_instructions%": "Your wallet data will remain intact. If you sign in with a different account, the wallets will be merged. To prevent this, you need to %rename_wallet_instructions%",
|
||||||
|
"rename your existing wallet": "rename your existing wallet",
|
||||||
|
"Your wallet data will remain intact. If you sign in with a different account, the wallets will be merged. To prevent this, you need to %rename_wallet_instructions% in the lbry/wallets directory": "Your wallet data will remain intact. If you sign in with a different account, the wallets will be merged. To prevent this, you need to %rename_wallet_instructions% in the lbry/wallets directory",
|
||||||
|
"Your wallet data will remain intact. If you sign in with a different account, the wallets will be merged. To prevent this, you need to %rename_wallet_instructions% in the lbry/wallets directory.": "Your wallet data will remain intact. If you sign in with a different account, the wallets will be merged. To prevent this, you need to %rename_wallet_instructions% in the lbry/wallets directory."
|
||||||
}
|
}
|
|
@ -3,6 +3,7 @@ import React from 'react';
|
||||||
import { Modal } from 'modal/modal';
|
import { Modal } from 'modal/modal';
|
||||||
import Card from 'component/common/card';
|
import Card from 'component/common/card';
|
||||||
import Button from 'component/button';
|
import Button from 'component/button';
|
||||||
|
import I18nMessage from 'component/i18nMessage';
|
||||||
|
|
||||||
type Props = {
|
type Props = {
|
||||||
doHideModal: () => void,
|
doHideModal: () => void,
|
||||||
|
@ -16,9 +17,22 @@ function ModalRepost(props: Props) {
|
||||||
<Modal isOpen type="card">
|
<Modal isOpen type="card">
|
||||||
<Card
|
<Card
|
||||||
title={__('Sign Out')}
|
title={__('Sign Out')}
|
||||||
subtitle={__(
|
subtitle={
|
||||||
'Are you sure you want to sign out? Your wallet data will be merged with another account if they sign in on this device.'
|
<I18nMessage
|
||||||
)}
|
tokens={{
|
||||||
|
rename_wallet_instructions: (
|
||||||
|
<Button
|
||||||
|
button="link"
|
||||||
|
label={__('rename your existing wallet')}
|
||||||
|
href="https://lbry.com/faq/lbry-directories"
|
||||||
|
/>
|
||||||
|
),
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
Your wallet data will remain intact. If you sign in with a different account, the wallets will be merged. To
|
||||||
|
prevent this, you need to %rename_wallet_instructions% in the lbry/wallets directory.
|
||||||
|
</I18nMessage>
|
||||||
|
}
|
||||||
actions={
|
actions={
|
||||||
<div className="section__actions">
|
<div className="section__actions">
|
||||||
<Button button="primary" label={__('Sign Out')} onClick={doSignOut} />
|
<Button button="primary" label={__('Sign Out')} onClick={doSignOut} />
|
||||||
|
|
Loading…
Add table
Reference in a new issue