diff --git a/src/modules/[chain]/index.vue b/src/modules/[chain]/index.vue index ca89b720..b4488177 100644 --- a/src/modules/[chain]/index.vue +++ b/src/modules/[chain]/index.vue @@ -135,7 +135,7 @@ const amount = computed({ }})
- Rank: + {{ $t('index.rank') }}:
#{{ coinInfo.market_cap_rank }}
@@ -209,7 +209,7 @@ const amount = computed({
@@ -264,13 +264,13 @@ const amount = computed({
- Active Proposals + {{ $t('index.active_proposals') }}
- No active proposals + {{ $t('index.no_active_proposals') }}
@@ -279,11 +279,11 @@ const amount = computed({ {{ walletStore.currentAddress || 'Not Connected' }} More + :to="`/${chain}/account/${walletStore.currentAddress}`">{{ $t('index.more') }}
-
Balance
+
{{ $t('account.balance') }}
{{ format.formatToken(walletStore.balanceOfStakingToken) }}
@@ -292,7 +292,7 @@ const amount = computed({
-
Staking
+
{{ $t('module.staking') }}
{{ format.formatToken(walletStore.stakingAmount) }}
@@ -301,7 +301,7 @@ const amount = computed({
-
Reward
+
{{ $t('index.reward') }}
{{ format.formatToken(walletStore.rewardAmount) }}
@@ -310,7 +310,7 @@ const amount = computed({
-
Unbonding
+
{{ $t('index.unbonding') }}
{{ format.formatToken(walletStore.unbondingAmount) }}
@@ -324,10 +324,10 @@ const amount = computed({ - - - - + + + + @@ -354,11 +354,11 @@ const amount = computed({
@@ -368,11 +368,11 @@ const amount = computed({
- - + + - + @click="dialog.open('delegate', {}, updateState)">{{ $t('account.btn_delegate') }} +
- Application Versions + {{ $t('index.app_versions') }}
@@ -391,7 +391,7 @@ const amount = computed({
- Node Information + {{ $t('index.node_info') }}
diff --git a/src/modules/[chain]/staking/[validator].vue b/src/modules/[chain]/staking/[validator].vue index 0520f816..3ba847e0 100644 --- a/src/modules/[chain]/staking/[validator].vue +++ b/src/modules/[chain]/staking/[validator].vue @@ -193,16 +193,16 @@ const tipMsg = computed(() => { validator_address: v.operator_address, }) " - >Delegate{{ $t('account.btn_delegate') }}
@@ -269,7 +269,7 @@ const tipMsg = computed(() => {

{{ format.formatToken(selfBonded.balance) }} ({{ selfRate }})

- Self Bonded + {{ $t('staking.self_bonded') }}
@@ -285,7 +285,7 @@ const tipMsg = computed(() => {

{{ v.min_self_delegation }} {{ staking.params.bond_denom }}

- Min Self Delegation: + {{ $t('staking.min_self') }}
@@ -297,7 +297,7 @@ const tipMsg = computed(() => {

{{ apr }}

- Annual Profit + {{ $t('staking.annual_profit') }}
@@ -310,7 +310,7 @@ const tipMsg = computed(() => {

{{ v.unbonding_height }}

- Unbonding Height + {{ $t('staking.unbonding_height') }}
@@ -324,7 +324,7 @@ const tipMsg = computed(() => {

{{ format.toDay(v.unbonding_time, 'from') }}

-

- Unbonding Time + {{ $t('staking.unbonding_time') }}
@@ -339,14 +339,14 @@ const tipMsg = computed(() => {
- Commissions & Rewards + {{ $t('staking.commissions_&_rewards') }}
-
Commissions
+
{{ $t('staking.commissions') }}
{ > {{ format.formatToken2(i) }}
-
Outstanding Rewards
+
{{ $t('staking.outstanding') }} {{ $t('account.rewards') }}
{ validator_address: v.operator_address, }) " - >Withdraw{{ $t('account.btn_withdraw') }}
- Addresses + {{ $t('staking.addresses') }}
-
Account +
{{ $t('staking.account_addr') }} {
-
Operator Address +
{{ $t('staking.operator_addr') }} {
-
Hex Address +
{{ $t('staking.hex_addr') }} {
{{ addresses.hex }}
-
Signer Address +
{{ $t('staking.signer_addr') }} {
{{ addresses.valCons }}
-
Consensus Public Key +
{{ $t('staking.consensus_pub_key') }} {
-
Transactions
+
{{ $t('account.transactions') }}
ValidatorDelegationsRewardsActions{{ $t('account.validator') }}{{ $t('account.delegations') }}{{ $t('account.rewards') }}{{ $t('staking.actions') }}
- - - + + + diff --git a/src/modules/[chain]/staking/index.vue b/src/modules/[chain]/staking/index.vue index 7d96ff15..5d7b01bf 100644 --- a/src/modules/[chain]/staking/index.vue +++ b/src/modules/[chain]/staking/index.vue @@ -196,7 +196,7 @@ loadAvatars();
{{ format.percent(mintStore.inflation) }}
-
Infalation
+
{{ $t('staking.infalation') }}
@@ -208,7 +208,7 @@ loadAvatars();
{{ formatSeconds(staking.params?.unbonding_time) }}
-
Unbonding Time
+
{{ $t('staking.unbonding_time') }}
@@ -220,7 +220,7 @@ loadAvatars();
{{ format.percent(slashing.slash_fraction_double_sign) }}
-
Double Sign Slashing
+
{{ $t('staking.double_sign_slashing') }}
@@ -232,7 +232,7 @@ loadAvatars();
{{ format.percent(slashing.slash_fraction_downtime) }}
-
Downtime Slashing
+
{{ $t('staking.downtime_slashing') }}
@@ -244,19 +244,19 @@ loadAvatars(); class="tab text-gray-400" :class="{ 'tab-active': tab === 'featured' }" @click="tab = 'featured'" - >Popular
{{ $t('staking.popular') }}Active{{ $t('staking.active') }}Inactive{{ $t('staking.inactive') }} @@ -272,15 +272,16 @@ loadAvatars(); - - - - - + + + + + @@ -400,7 +401,7 @@ loadAvatars(); v-if="v.jailed" class="badge badge-error gap-2 text-white" > - Jailed + {{ $t('staking.jailed') }} {{ $t('account.btn_delegate') }} @@ -428,7 +429,7 @@ loadAvatars(); - Top 33% + {{ $t('staking.top') }} 33%
- Top 67% + {{ $t('staking.top') }} 67%
diff --git a/src/modules/[chain]/statesync/index.vue b/src/modules/[chain]/statesync/index.vue index c89de162..69cc5cb3 100644 --- a/src/modules/[chain]/statesync/index.vue +++ b/src/modules/[chain]/statesync/index.vue @@ -38,37 +38,33 @@ onMounted(() => {
- Height + {{ $t('account.height') }} HashMessagesTime{{ $t('account.hash') }}{{ $t('account.messages') }}{{ $t('account.time') }}
- # + {{ $t('staking.rank') }} VALIDATORVOTING POWER24h CHANGESCOMMISSIONACTIONS{{ $t('staking.validator') }}{{ $t('staking.voting_power') }}{{ $t('staking.24h_changes') }}{{ $t('staking.commission') }}{{ $t('staking.actions') }}