Commit 3e9289dc authored by Moody Salem's avatar Moody Salem

couple of missing translations in the currency list

parent 4eb5c3ca
import { t, Trans } from '@lingui/macro'
import { Currency, CurrencyAmount, Token } from '@uniswap/sdk-core' import { Currency, CurrencyAmount, Token } from '@uniswap/sdk-core'
import React, { CSSProperties, MutableRefObject, useCallback, useMemo } from 'react' import React, { CSSProperties, MutableRefObject, useCallback, useMemo } from 'react'
import { FixedSizeList } from 'react-window' import { FixedSizeList } from 'react-window'
...@@ -132,7 +133,7 @@ function CurrencyRow({ ...@@ -132,7 +133,7 @@ function CurrencyRow({
{currency.symbol} {currency.symbol}
</Text> </Text>
<TYPE.darkGray ml="0px" fontSize={'12px'} fontWeight={300}> <TYPE.darkGray ml="0px" fontSize={'12px'} fontWeight={300}>
{currency.name} {!currency.isNative && !isOnSelectedList && customAdded && 'Added by user'} {currency.name} {!currency.isNative && !isOnSelectedList && customAdded && '' + t`Added by user`}
</TYPE.darkGray> </TYPE.darkGray>
</Column> </Column>
<TokenTags currency={currency} /> <TokenTags currency={currency} />
...@@ -158,10 +159,12 @@ function BreakLineComponent({ style }: { style: CSSProperties }) { ...@@ -158,10 +159,12 @@ function BreakLineComponent({ style }: { style: CSSProperties }) {
<RowFixed> <RowFixed>
<TokenListLogoWrapper src={TokenListLogo} /> <TokenListLogoWrapper src={TokenListLogo} />
<TYPE.main ml="6px" fontSize="12px" color={theme.text1}> <TYPE.main ml="6px" fontSize="12px" color={theme.text1}>
Expanded results from inactive Token Lists <Trans>Expanded results from inactive Token Lists</Trans>
</TYPE.main> </TYPE.main>
</RowFixed> </RowFixed>
<QuestionHelper text="Tokens from inactive lists. Import specific tokens below or click 'Manage' to activate more lists." /> <QuestionHelper
text={t`Tokens from inactive lists. Import specific tokens below or click 'Manage' to activate more lists.`}
/>
</RowBetween> </RowBetween>
</LightGreyCard> </LightGreyCard>
</FixedContentRow> </FixedContentRow>
......
...@@ -191,6 +191,10 @@ msgstr "" ...@@ -191,6 +191,10 @@ msgstr ""
msgid "Add {0}/{1} V3 liquidity" msgid "Add {0}/{1} V3 liquidity"
msgstr "" msgstr ""
#: src/components/SearchModal/CurrencyList.tsx
msgid "Added by user"
msgstr ""
#: src/components/TransactionConfirmationModal/index.tsx #: src/components/TransactionConfirmationModal/index.tsx
msgid "Added {0}" msgid "Added {0}"
msgstr "" msgstr ""
...@@ -618,6 +622,10 @@ msgstr "" ...@@ -618,6 +622,10 @@ msgstr ""
msgid "Error importing list" msgid "Error importing list"
msgstr "" msgstr ""
#: src/components/SearchModal/CurrencyList.tsx
msgid "Expanded results from inactive Token Lists"
msgstr ""
#: src/pages/Pool/CTACards.tsx #: src/pages/Pool/CTACards.tsx
msgid "Explore popular pools on Uniswap Analytics." msgid "Explore popular pools on Uniswap Analytics."
msgstr "" msgstr ""
...@@ -1189,6 +1197,10 @@ msgstr "" ...@@ -1189,6 +1197,10 @@ msgstr ""
msgid "Tokens" msgid "Tokens"
msgstr "" msgstr ""
#: src/components/SearchModal/CurrencyList.tsx
msgid "Tokens from inactive lists. Import specific tokens below or click 'Manage' to activate more lists."
msgstr ""
#: src/pages/Pool/CTACards.tsx #: src/pages/Pool/CTACards.tsx
msgid "Top pools" msgid "Top pools"
msgstr "" msgstr ""
......
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