Skip to content

Commit

Permalink
Wording fix (#1178)
Browse files Browse the repository at this point in the history
  • Loading branch information
bobo-k2 committed Feb 12, 2024
1 parent 489f917 commit ed150c3
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
6 changes: 3 additions & 3 deletions src/i18n/en-US/index.ts
Expand Up @@ -853,7 +853,7 @@ export default {
numberOfDapps: 'Number of dApps',
numberOfDappsDescription:
'The total number of dApps that are currently listed on dApp Staking.',
numberOfParticipants: 'Number of participants',
lockAccounts: 'Lock accounts',
numberOfParticipantsDescription: 'The total number of dApp Staking users.',
tokenomics: 'tokenomics',
general: 'General',
Expand All @@ -863,10 +863,10 @@ export default {
tvlDescription: 'dApp Staking TVL is {tvlAmount}. {tvlPercentage} % of total supply.',
builderRewards: 'Builder Rewards',
stakerRewards: 'Staker Rewards',
tvv: 'TVV',
stakedToLockedRatio: 'Staked to Locked Ratio',
tvvDescription:
'Total Volume of Vote is the rate that shows how much is staked within dApp Staking TVL.',
bonusEligibleTokens: 'Bonus eligible tokens',
loyaltyStake: 'Loyalty Stake',
bonusEligibleTokensDescription:
'Real time amount of tokens that are entitled to receive bonus rewards.',
bonusPool: 'Bonus pool',
Expand Down
9 changes: 6 additions & 3 deletions src/staking-v3/components/data/DataList.vue
Expand Up @@ -20,7 +20,7 @@
{{ protocolState?.era ?? '--' }}
</data-card>
<data-card
:title="$t('stakingV3.numberOfParticipants')"
:title="$t('stakingV3.lockAccounts')"
:description="$t('stakingV3.numberOfParticipantsDescription')"
>
{{ numberOfParticipants }}
Expand All @@ -46,7 +46,10 @@
>
{{ $n(tvlPercentage) }} %
</data-card>
<data-card :title="`${$t('stakingV3.tvv')}`" :description="$t('stakingV3.tvvDescription')">
<data-card
:title="`${$t('stakingV3.stakedToLockedRatio')}`"
:description="$t('stakingV3.tvvDescription')"
>
{{ $n(totalVolumeOfVotesPercentage) }} %
</data-card>
</div>
Expand Down Expand Up @@ -86,7 +89,7 @@
/>
</data-card>
<data-card
:title="$t('stakingV3.bonusEligibleTokens')"
:title="$t('stakingV3.loyaltyStake')"
:description="$t('stakingV3.bonusEligibleTokensDescription')"
>
<format-balance :balance="bonusEligibleTokens.toString() ?? ''" />
Expand Down

0 comments on commit ed150c3

Please sign in to comment.