Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Wording fix #1178

Merged
merged 1 commit into from
Feb 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/i18n/en-US/index.ts
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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