Skip to content
Snippets Groups Projects
Commit 9c223492 authored by chris's avatar chris
Browse files

fix Ai translations

parent cc1481cd
No related branches found
No related tags found
1 merge request!527fix title track
...@@ -242,17 +242,17 @@ const AskAIOverlay = ({ setPosition, position, config }) => { ...@@ -242,17 +242,17 @@ const AskAIOverlay = ({ setPosition, position, config }) => {
<ActionButton onClick={tryAgain}> <ActionButton onClick={tryAgain}>
<ActionText> <ActionText>
<icons.tryAgain />{' '} <icons.tryAgain />{' '}
{!isEmpty(i18n) && i18n.exists(`Wax.AI. Try again`) {!isEmpty(i18n) && i18n.exists(`Wax.AI.Try again`)
? t(`Wax.AI. Try again`) ? t(`Wax.AI. Try again`)
: ' Try again'} : 'Try again'}
</ActionText> </ActionText>
</ActionButton> </ActionButton>
<ActionButton onClick={discardResults}> <ActionButton onClick={discardResults}>
<ActionText color="#FF4E4E"> <ActionText color="#FF4E4E">
<icons.deleteIco />{' '} <icons.deleteIco />{' '}
{!isEmpty(i18n) && i18n.exists(`Wax.AI. Discard`) {!isEmpty(i18n) && i18n.exists(`Wax.AI.Discard`)
? t(`Wax.AI. Discard`) ? t(`Wax.AI.Discard`)
: ' Discard'} : 'Discard'}
</ActionText> </ActionText>
</ActionButton> </ActionButton>
</ActionSection> </ActionSection>
......
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