1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Corrects the copy in the amount receiving tooltip of the swaps sort-list ()

This commit is contained in:
Dan J Miller 2020-10-09 12:30:16 -02:30 committed by GitHub
parent 549140f6f5
commit 89a0f75942
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions
app/_locales/en
ui/app/pages/swaps/select-quote-popover/sort-list

View File

@ -1686,9 +1686,6 @@
"message": "A service fee of $1% is automatically factored into each quote, which supports ongoing development to make MetaMask even better.", "message": "A service fee of $1% is automatically factored into each quote, which supports ongoing development to make MetaMask even better.",
"description": "Provides information about the fee that metamask takes for swaps. $1 is a decimal number." "description": "Provides information about the fee that metamask takes for swaps. $1 is a decimal number."
}, },
"swapMinimumAmountReceivingInfoTooltip": {
"message": "This is the minimum amount you will receive. You may receive more depending on slippage."
},
"swapNQuotesAvailable": { "swapNQuotesAvailable": {
"message": "$1 quotes available", "message": "$1 quotes available",
"description": "$1 is the number of quotes that the user can select from when opening the list of quotes on the 'view quote' screen" "description": "$1 is the number of quotes that the user can select from when opening the list of quotes on the 'view quote' screen"
@ -1738,6 +1735,9 @@
"swapReceiving": { "swapReceiving": {
"message": "Receiving" "message": "Receiving"
}, },
"swapReceivingInfoTooltip": {
"message": "This is an estimate. The exact amount depends on slippage."
},
"swapRequestForQuotation": { "swapRequestForQuotation": {
"message": "Request for quotation" "message": "Request for quotation"
}, },

View File

@ -77,7 +77,7 @@ export default function SortList ({
<span>{t('swapReceiving')}</span> <span>{t('swapReceiving')}</span>
<InfoTooltip <InfoTooltip
position="bottom" position="bottom"
contentText={t('swapMinimumAmountReceivingInfoTooltip')} contentText={t('swapReceivingInfoTooltip')}
/> />
<ToggleArrows /> <ToggleArrows />
</div> </div>