From fd64e13ec24c67787e8bd804f397023dcb10bcec Mon Sep 17 00:00:00 2001 From: Madalina Raicu Date: Tue, 21 Feb 2023 18:35:16 +0000 Subject: [PATCH] fix(trading): fix wording on quote unit and asset --- libs/assets/src/lib/asset-details-dialog.tsx | 2 +- libs/market-info/src/components/market-info/info-market.tsx | 4 ++-- .../src/components/market-info/tooltip-mapping.tsx | 4 +++- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/libs/assets/src/lib/asset-details-dialog.tsx b/libs/assets/src/lib/asset-details-dialog.tsx index b403971df..4c581df8f 100644 --- a/libs/assets/src/lib/asset-details-dialog.tsx +++ b/libs/assets/src/lib/asset-details-dialog.tsx @@ -100,7 +100,7 @@ export const AssetDetailsDialog = ({ {content}

{t( - 'The notional value of a position of size 1 is 1 settlement asset (%s) for every 1 quote unit.', + 'There is 1 unit of the settlement asset (%s) to every 1 quote unit.', [assetSymbol] )}

diff --git a/libs/market-info/src/components/market-info/info-market.tsx b/libs/market-info/src/components/market-info/info-market.tsx index 8550aa64b..adaf87513 100644 --- a/libs/market-info/src/components/market-info/info-market.tsx +++ b/libs/market-info/src/components/market-info/info-market.tsx @@ -147,7 +147,7 @@ export const Info = ({ market, onSelect }: InfoProps) => { />

{t( - 'The notional value of a position of size 1 is 1 settlement asset (%s) for every 1 quote unit (%s).', + 'There is 1 unit of the settlement asset (%s) to every 1 quote unit (%s).', [assetSymbol, quoteUnit] )}

@@ -251,7 +251,7 @@ export const Info = ({ market, onSelect }: InfoProps) => { />

{t( - 'The notional value of a position of size 1 is 1 settlement asset (%s) for every 1 quote unit (%s).', + 'There is 1 unit of the settlement asset (%s) to every 1 quote unit (%s).', [assetSymbol, quoteUnit] )}

diff --git a/libs/market-info/src/components/market-info/tooltip-mapping.tsx b/libs/market-info/src/components/market-info/tooltip-mapping.tsx index 784626b3e..5b5921c09 100644 --- a/libs/market-info/src/components/market-info/tooltip-mapping.tsx +++ b/libs/market-info/src/components/market-info/tooltip-mapping.tsx @@ -16,7 +16,9 @@ export const tooltipMapping: Record = { markPrice: t( 'A concept derived from traditional markets. It is a calculated value for the ‘current market price’ on a market.' ), - quoteUnit: t(`The unit of the data fed from this market's oracle.`), + quoteUnit: t( + `The underlying that is being priced by the market, described by the market's oracle.` + ), openInterest: t( 'The volume of all open positions in a given market (the sum of the size of all positions greater than 0).' ),