diff --git a/src/modules/[chain]/ibc/connection.vue b/src/modules/[chain]/ibc/connection.vue index 988cc3c8..8b3b6727 100644 --- a/src/modules/[chain]/ibc/connection.vue +++ b/src/modules/[chain]/ibc/connection.vue @@ -39,10 +39,10 @@ function pageload(p: number) {
| Trust Parameters | +{{ $t('ibc.trust_parameters') }} | ||||||||||||||
| trust level: | +{{ $t('ibc.trust_level') }}: | {{ clientState.client_state?.trust_level?.numerator }}/{{ clientState.client_state?.trust_level?.denominator @@ -113,23 +113,23 @@ function color(v: string) { | |||||||||||||
| trusting period: | +{{ $t('ibc.trusting_period') }}: | {{ formatSeconds(clientState.client_state?.trusting_period) }} | |||||||||||||
| unbonding period: | +{{ $t('ibc.unbonding_period') }}: | {{ formatSeconds(clientState.client_state?.unbonding_period) }} | |||||||||||||
| max clock drift: | +{{ $t('ibc.max_clock_drift') }}: | {{ formatSeconds(clientState.client_state?.max_clock_drift) }} | |||||||||||||
| frozen height: | +{{ $t('ibc.frozen_height') }}: | {{ clientState.client_state?.frozen_height }} | |||||||||||||
| latest height: | +{{ $t('ibc.latest_height') }}: | {{ clientState.client_state?.latest_height }} | |||||||||||||
| Upgrade Parameters | +{{ $t('ibc.upgrade_parameters') }} | ||||||||||||||
|
- allow update after expiry: {{
+ {{ $t('ibc.allow_update_after_expiry') }}: {{
clientState.client_state?.allow_update_after_expiry }}
|
|||||||||||||||
|
- allow update after misbehaviour: {{
+ {{ $t('ibc.allow_update_after_misbehaviour') }}: {{
clientState.client_state?.allow_update_after_misbehaviour }}
|
|||||||||||||||
| upgrade path: | +{{ $t('ibc.upgrade_path') }}: | {{ clientState.client_state?.upgrade_path.join(', ') }} | |||||||||||||
| Txs | -Channel Id | -Port Id | -State | -Counterparty | -Hops | -Version | -Ordering | +{{ $t('ibc.txs') }} | +{{ $t('ibc.channel_id') }} | +{{ $t('ibc.port_id') }} | +{{ $t('ibc.state') }} | +{{ $t('ibc.counterparty') }} | +{{ $t('ibc.hops') }} | +{{ $t('ibc.version') }} | +{{ $t('ibc.ordering') }} |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
-
-
+
+
|
@@ -196,8 +196,8 @@ function color(v: string) { | ||||||||||||||
|
-
-
+
+
|
diff --git a/src/plugins/i18n/locales/en.json b/src/plugins/i18n/locales/en.json index 478d38ce..1623b90e 100644 --- a/src/plugins/i18n/locales/en.json +++ b/src/plugins/i18n/locales/en.json @@ -135,5 +135,34 @@ "current_status": "Current Status", "upgrade_plan": "Upgrade Plan", "votes": "Votes" + }, + "ibc": { + "title": "IBC Connections", + "title_2": "IBC Client", + "registry": "Registry", + "connection_id": "Connection Id", + "btn_apply": "Apply", + "trust_parameters": "Trust Parameters", + "trust_level": "Trust level", + "trusting_period": "Trusting period", + "unbonding_period": "Unbonding period", + "max_clock_drift": "Max clock drift", + "frozen_height": "Frozen height", + "latest_height": "Latest height", + "upgrade_parameters": "Upgrade Parameters", + "allow_update_after_expiry": "Allow update after expiry", + "allow_update_after_misbehaviour": "Allow update after misbehaviour", + "upgrade_path": "Upgrade path", + "channels": "Channels", + "txs": "Txs", + "channel_id": "Channel Id", + "port_id": "Port Id", + "state": "State", + "counterparty": "Counterparty", + "hops": "Hops", + "version": "Version", + "ordering": "Ordering", + "btn_out": "Out", + "btn_in": "In" } } |