Skip to content

Commit 8bdbed5

Browse files
committed
fix: copy text for tooltip fixed
1 parent 87edd02 commit 8bdbed5

File tree

7 files changed

+16
-22
lines changed

7 files changed

+16
-22
lines changed

src/locales/el/messages.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/locales/en/messages.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/locales/en/messages.po

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,10 @@ msgstr "Estimated time"
7474
msgid "Remind me"
7575
msgstr "Remind me"
7676

77+
#: src/modules/umbrella/helpers/StakedUnderlyingTooltip.tsx
78+
msgid "Total amount of underlying assets staked. This number represents the combined sum of your original asset and the corresponding aTokens staked in Umbrella."
79+
msgstr "Total amount of underlying assets staked. This number represents the combined sum of your original asset and the corresponding aTokens staked in Umbrella."
80+
7781
#: src/modules/umbrella/helpers/ApyTooltip.tsx
7882
msgid "Reward APY adjusts with total staked amount, following a curve that targets optimal staking levels."
7983
msgstr "Reward APY adjusts with total staked amount, following a curve that targets optimal staking levels."
@@ -761,10 +765,6 @@ msgstr "Protocol borrow cap at 100% for this asset. Further borrowing unavailabl
761765
msgid "Stable"
762766
msgstr "Stable"
763767

764-
#: src/modules/umbrella/helpers/StakedUnderlyingTooltip.tsx
765-
msgid "This number represents the combined sum of your original asset and the corresponding aTokens supplied to Umbrella."
766-
msgstr "This number represents the combined sum of your original asset and the corresponding aTokens supplied to Umbrella."
767-
768768
#: src/modules/umbrella/helpers/SharesTooltip.tsx
769769
msgid "Shares"
770770
msgstr "Shares"
@@ -1439,10 +1439,6 @@ msgstr "APY, variable"
14391439
msgid "If the health factor goes below 1, the liquidation of your collateral might be triggered."
14401440
msgstr "If the health factor goes below 1, the liquidation of your collateral might be triggered."
14411441

1442-
#: src/modules/umbrella/helpers/SharesTooltip.tsx
1443-
msgid "Shares are Umbrella Stake Tokens you receive when staking. They represent your ownership in the pool and determine how much underlying you can redeem."
1444-
msgstr "Shares are Umbrella Stake Tokens you receive when staking. They represent your ownership in the pool and determine how much underlying you can redeem."
1445-
14461442
#: src/modules/sGho/SGhoDepositPanel.tsx
14471443
msgid "Current APY"
14481444
msgstr "Current APY"
@@ -1752,6 +1748,10 @@ msgstr "Show Frozen or paused assets"
17521748
msgid "Amount in cooldown"
17531749
msgstr "Amount in cooldown"
17541750

1751+
#: src/modules/umbrella/helpers/SharesTooltip.tsx
1752+
msgid "Shares are Umbrella Stake Tokens you receive when staking. They represent your ownership in the pool, and the amount of underlying you can redeem depends on the current exchange rate between shares and the underlying."
1753+
msgstr "Shares are Umbrella Stake Tokens you receive when staking. They represent your ownership in the pool, and the amount of underlying you can redeem depends on the current exchange rate between shares and the underlying."
1754+
17551755
#: src/modules/governance/proposal/VotersListContainer.tsx
17561756
msgid "Failed to load proposal voters. Please refresh the page."
17571757
msgstr "Failed to load proposal voters. Please refresh the page."
@@ -3423,10 +3423,6 @@ msgstr "Borrow amount to reach {0}% utilization"
34233423
msgid "Please, connect your wallet"
34243424
msgstr "Please, connect your wallet"
34253425

3426-
#: src/modules/umbrella/helpers/StakedUnderlyingTooltip.tsx
3427-
msgid "Total amount of underlying assets staked."
3428-
msgstr "Total amount of underlying assets staked."
3429-
34303426
#: src/modules/dashboard/lists/SuppliedPositionsList/SuppliedPositionsList.tsx
34313427
#: src/modules/dashboard/lists/SuppliedPositionsList/SuppliedPositionsList.tsx
34323428
msgid "Your supplies"

src/locales/es/messages.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/locales/fr/messages.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/modules/umbrella/helpers/SharesTooltip.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ export const SharesTooltip = () => {
77
<>
88
<Trans>
99
Shares are Umbrella Stake Tokens you receive when staking. They represent your ownership
10-
in the pool and determine how much underlying you can redeem.
10+
in the pool, and the amount of underlying you can redeem depends on the current exchange
11+
rate between shares and the underlying.
1112
</Trans>{' '}
1213
</>
1314
</TextWithTooltip>

src/modules/umbrella/helpers/StakedUnderlyingTooltip.tsx

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,9 @@ export const StakedUnderlyingTooltip = () => {
55
return (
66
<TextWithTooltip text={<Trans>Staked Underlying</Trans>}>
77
<>
8-
<Trans>Total amount of underlying assets staked.</Trans>
9-
<br />
10-
118
<Trans>
12-
This number represents the combined sum of your original asset and the corresponding
13-
aTokens supplied to Umbrella.
9+
Total amount of underlying assets staked. This number represents the combined sum of your
10+
original asset and the corresponding aTokens staked in Umbrella.
1411
</Trans>
1512
</>
1613
</TextWithTooltip>

0 commit comments

Comments
 (0)