mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
adding textfix on experimental tab (#17306)
This commit is contained in:
parent
3f50243cef
commit
7ef3fa08ff
7
app/_locales/en/messages.json
generated
7
app/_locales/en/messages.json
generated
@ -4240,10 +4240,10 @@
|
|||||||
"message": "Autodetect NFTs"
|
"message": "Autodetect NFTs"
|
||||||
},
|
},
|
||||||
"useCollectibleDetectionDescription": {
|
"useCollectibleDetectionDescription": {
|
||||||
"message": "We use third-party APIs to detect NFTs in your wallet, which means your IP address may be exposed to their servers. Leave this feature off if you don't want the app to pull data from those services."
|
"message": "We use third-party APIs to detect NFTs in your wallet, which means your IP address may be exposed to centralized servers. There are a few things to be cautious about when enabling this feature."
|
||||||
},
|
},
|
||||||
"useCollectibleDetectionDescriptionLine2": {
|
"useCollectibleDetectionDescriptionLine2": {
|
||||||
"message": "Additionally, be aware that:"
|
"message": "Your account address will be viewable to third-party APIs."
|
||||||
},
|
},
|
||||||
"useCollectibleDetectionDescriptionLine3": {
|
"useCollectibleDetectionDescriptionLine3": {
|
||||||
"message": "NFT metadata may contain links to scams or phishing sites."
|
"message": "NFT metadata may contain links to scams or phishing sites."
|
||||||
@ -4251,6 +4251,9 @@
|
|||||||
"useCollectibleDetectionDescriptionLine4": {
|
"useCollectibleDetectionDescriptionLine4": {
|
||||||
"message": "Anyone can airdrop NFTs to your account. This can include offensive content that might be automatically displayed in your wallet."
|
"message": "Anyone can airdrop NFTs to your account. This can include offensive content that might be automatically displayed in your wallet."
|
||||||
},
|
},
|
||||||
|
"useCollectibleDetectionDescriptionLine5": {
|
||||||
|
"message": "Leave this feature off if you don't want the app to pull data from those services."
|
||||||
|
},
|
||||||
"useDefault": {
|
"useDefault": {
|
||||||
"message": "Use default"
|
"message": "Use default"
|
||||||
},
|
},
|
||||||
|
@ -7,8 +7,10 @@ import {
|
|||||||
} from '../../../helpers/utils/settings-search';
|
} from '../../../helpers/utils/settings-search';
|
||||||
import { EVENT } from '../../../../shared/constants/metametrics';
|
import { EVENT } from '../../../../shared/constants/metametrics';
|
||||||
import Typography from '../../../components/ui/typography/typography';
|
import Typography from '../../../components/ui/typography/typography';
|
||||||
|
import { Text } from '../../../components/component-library';
|
||||||
import {
|
import {
|
||||||
COLORS,
|
COLORS,
|
||||||
|
TEXT_COLORS,
|
||||||
FONT_WEIGHT,
|
FONT_WEIGHT,
|
||||||
TYPOGRAPHY,
|
TYPOGRAPHY,
|
||||||
} from '../../../helpers/constants/design-system';
|
} from '../../../helpers/constants/design-system';
|
||||||
@ -96,13 +98,17 @@ export default class ExperimentalTab extends PureComponent {
|
|||||||
<div className="settings-page__content-item">
|
<div className="settings-page__content-item">
|
||||||
<span>{t('useCollectibleDetection')}</span>
|
<span>{t('useCollectibleDetection')}</span>
|
||||||
<div className="settings-page__content-description">
|
<div className="settings-page__content-description">
|
||||||
{t('useCollectibleDetectionDescription')}
|
<Text color={TEXT_COLORS.TEXT_ALTERNATIVE}>
|
||||||
<br />
|
{t('useCollectibleDetectionDescription')}
|
||||||
{t('useCollectibleDetectionDescriptionLine2')}
|
</Text>
|
||||||
<ul className="settings-page__content-unordered-list">
|
<ul className="settings-page__content-unordered-list">
|
||||||
|
<li>{t('useCollectibleDetectionDescriptionLine2')}</li>
|
||||||
<li>{t('useCollectibleDetectionDescriptionLine3')}</li>
|
<li>{t('useCollectibleDetectionDescriptionLine3')}</li>
|
||||||
<li>{t('useCollectibleDetectionDescriptionLine4')}</li>
|
<li>{t('useCollectibleDetectionDescriptionLine4')}</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
<Text color={TEXT_COLORS.TEXT_ALTERNATIVE} paddingTop={4}>
|
||||||
|
{t('useCollectibleDetectionDescriptionLine5')}
|
||||||
|
</Text>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div className="settings-page__content-item">
|
<div className="settings-page__content-item">
|
||||||
|
@ -356,7 +356,7 @@
|
|||||||
|
|
||||||
&__content-unordered-list {
|
&__content-unordered-list {
|
||||||
padding-left: 2.5rem;
|
padding-left: 2.5rem;
|
||||||
margin-top: 2.5rem;
|
margin-top: 1rem;
|
||||||
list-style: disc;
|
list-style: disc;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user