kopia lustrzana https://gitlab.com/soapbox-pub/soapbox
add help text on minting
rodzic
36445bacb1
commit
6768125778
|
@ -250,6 +250,19 @@ const NewMint = ({ onBack, list }: NewMintProps) => {
|
|||
<Button icon={cancelIcon} theme='danger' text={intl.formatMessage(messages.cancel)} onClick={handleClean} />
|
||||
<Button icon={iconButton} type='submit' theme='primary' text={textButton} />
|
||||
</HStack>
|
||||
<Text size='sm' theme='muted' align='center'>
|
||||
{intl.formatMessage({
|
||||
id: 'wallet.balance.mint.help',
|
||||
defaultMessage: 'Minting converts sats from your existing Lightning wallet into Cashu. {learnMore}',
|
||||
}, {
|
||||
learnMore: (
|
||||
// eslint-disable-next-line formatjs/no-literal-string-in-jsx
|
||||
<a href='https://cashu.space/#howitworks' target='_blank' rel='noopener noreferrer' className='text-blue-500 underline'>
|
||||
Learn more
|
||||
</a>
|
||||
),
|
||||
})}
|
||||
</Text>
|
||||
</Stack>
|
||||
</Form>
|
||||
);
|
||||
|
|
|
@ -1722,6 +1722,7 @@
|
|||
"video.unmute": "Unmute sound",
|
||||
"wallet.balance.expired": "Expired",
|
||||
"wallet.balance.mint.amount": "Amount in sats",
|
||||
"wallet.balance.mint.help": "Minting converts sats from your existing Lightning wallet into Cashu. {learnMore}",
|
||||
"wallet.balance.mint.paid_message": "Your mint was successful, and your sats are now in your balance. Enjoy!",
|
||||
"wallet.balance.mint.payment": "Make the payment to complete:",
|
||||
"wallet.balance.mint.unpaid_message": "Your mint is still unpaid. Complete the payment to receive your sats.",
|
||||
|
|
Ładowanie…
Reference in New Issue