Skip to content

Commit

Permalink
add dot.
Browse files Browse the repository at this point in the history
  • Loading branch information
nguyenhoaidanh committed Oct 17, 2023
1 parent d2ff531 commit d99e189
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const DescriptionCrossChain = (
link: `${APP_PATHS.CROSS_CHAIN}?tab=${CrossChainTab.HISTORY}`,
summary: isSuccess
? t`${amountIn} ${srcTokenSymbol} on ${srcChainName} has been successfully swapped to ${amountOut} ${dstTokenSymbol} on ${dstChainName}`
: t`There was an issue with swapping ${amountIn} ${srcTokenSymbol} on ${srcChainName} to ${amountOut} ${dstTokenSymbol} on ${dstChainName}. Your assets remain in your wallet`,
: t`There was an issue with swapping ${amountIn} ${srcTokenSymbol} on ${srcChainName} to ${amountOut} ${dstTokenSymbol} on ${dstChainName}. Your assets remain in your wallet.`,
}
}
export default DescriptionCrossChain
4 changes: 2 additions & 2 deletions src/components/Announcement/Popups/TransactionPopup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ const summaryClaim = (txs: TransactionDetails) => {
}

const summaryStakeUnstakeFarm = (txs: TransactionDetails) => {
return txs.type === TRANSACTION_TYPE.STAKE ? t`Stake liquidity into farm` : t`Unstake liquidity from farm`
return txs.type === TRANSACTION_TYPE.STAKE ? t`Stake liquidity into farm` : t`Unstake liquidity from farm.`
}

// ex: elastic add liquidity 30 knc and 40 usdt
Expand Down Expand Up @@ -105,7 +105,7 @@ const summaryDelegateDao = (txs: TransactionDetails) => {
? t`undelegated your voting power`
: t`delegated voting power to ${contract.slice(0, 6)}...${contract.slice(-4)}`

return { success: t`You have successfully ${summary}`, error: t`Error ${summary}` }
return { success: t`You have successfully ${summary}`, error: t`Error ${summary}.` }
}

const summaryCancelLimitOrder = (txs: TransactionDetails) => {
Expand Down
2 changes: 1 addition & 1 deletion src/components/Header/web3/NetworkModal/Networks.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ const Networks = ({
text={
disabled
? isMaintenance
? t`Chain under maintenance. We will be back as soon as possible`
? t`Chain under maintenance. We will be back as soon as possible.`
: disabledMsg
: ''
}
Expand Down
6 changes: 3 additions & 3 deletions src/components/ProAmm/ProAmmPriceRange.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export default function ProAmmPriceRange({
<Trans>Selected Price Range</Trans>
</Text>
<InfoHelper
text={t`Represents the range where all your liquidity is concentrated. When market price of your token pair is no longer between your selected price range, your liquidity becomes inactive and you stop earning fees`}
text={t`Represents the range where all your liquidity is concentrated. When market price of your token pair is no longer between your selected price range, your liquidity becomes inactive and you stop earning fees.`}
placement={'right'}
size={12}
></InfoHelper>
Expand Down Expand Up @@ -94,7 +94,7 @@ export default function ProAmmPriceRange({
<Trans>Min Price</Trans>
</Text>
<InfoHelper
text={t`Your position will be 100% composed of ${baseCurrency?.symbol} at this price`}
text={t`Your position will be 100% composed of ${baseCurrency?.symbol} at this price.`}
placement={'right'}
size={12}
/>
Expand All @@ -112,7 +112,7 @@ export default function ProAmmPriceRange({
<Trans>Max Price</Trans>
</Text>
<InfoHelper
text={t`Your position will be 100% composed of ${quoteCurrency?.symbol} at this price`}
text={t`Your position will be 100% composed of ${quoteCurrency?.symbol} at this price.`}
placement={'right'}
size={12}
/>
Expand Down
2 changes: 1 addition & 1 deletion src/components/ProAmm/ProAmmPriceRangeConfirm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ export default function ProAmmPriceRangeConfirm({
>
{formatTickPrice(priceUpper, ticksAtLimit, Bound.UPPER)}
<InfoHelper
text={t`Your position will be 100% composed of ${quoteCurrency?.symbol} at this price`}
text={t`Your position will be 100% composed of ${quoteCurrency?.symbol} at this price.`}
placement={'right'}
size={12}
/>
Expand Down

0 comments on commit d99e189

Please sign in to comment.