Commit 557042a8 authored by Justin Domingue's avatar Justin Domingue Committed by GitHub

add missing translations (#1842)

parent 860413dd
...@@ -720,9 +720,11 @@ export default function AddLiquidity({ ...@@ -720,9 +720,11 @@ export default function AddLiquidity({
width={showApprovalB ? '48%' : '100%'} width={showApprovalB ? '48%' : '100%'}
> >
{approvalA === ApprovalState.PENDING ? ( {approvalA === ApprovalState.PENDING ? (
<Dots>Approving {currencies[Field.CURRENCY_A]?.symbol}</Dots> <Dots>
<Trans>Approving {currencies[Field.CURRENCY_A]?.symbol}</Trans>
</Dots>
) : ( ) : (
'Approve ' + currencies[Field.CURRENCY_A]?.symbol <Trans>Approve {currencies[Field.CURRENCY_A]?.symbol}</Trans>
)} )}
</ButtonPrimary> </ButtonPrimary>
)} )}
...@@ -735,9 +737,11 @@ export default function AddLiquidity({ ...@@ -735,9 +737,11 @@ export default function AddLiquidity({
width={showApprovalA ? '48%' : '100%'} width={showApprovalA ? '48%' : '100%'}
> >
{approvalB === ApprovalState.PENDING ? ( {approvalB === ApprovalState.PENDING ? (
<Dots>Approving {currencies[Field.CURRENCY_B]?.symbol}</Dots> <Dots>
<Trans>Approving {currencies[Field.CURRENCY_B]?.symbol}</Trans>
</Dots>
) : ( ) : (
'Approve ' + currencies[Field.CURRENCY_B]?.symbol <Trans>Approve {currencies[Field.CURRENCY_B]?.symbol}</Trans>
)} )}
</ButtonPrimary> </ButtonPrimary>
)} )}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment