diff --git a/src/layouts/components/DefaultLayout.vue b/src/layouts/components/DefaultLayout.vue index 493b81d3..6a1d9939 100644 --- a/src/layouts/components/DefaultLayout.vue +++ b/src/layouts/components/DefaultLayout.vue @@ -206,7 +206,7 @@ function selected(route: any, nav: NavLink) {
- Sponsors + {{ $t('module.sponsors') }}
-
Links
+
{{ $t('module.links') }}
-
404
-
Page Not Found
+
{{ $t('pages.title_all') }}
+
{{ $t('pages.tag_all') }}
- We couldn't find the page you are looking for. + {{ $t('pages.description_all') }}
- Back to Home + {{ $t('pages.btn_index') }} Coming Soon
diff --git a/src/pages/index.vue b/src/pages/index.vue index 8d797433..5ccac655 100644 --- a/src/pages/index.vue +++ b/src/pages/index.vue @@ -48,17 +48,17 @@ const chainStore = useBlockchain()

- Ping Dashboard + {{ $t('pages.title') }}

- Beta + {{ $t('pages.tag') }}

- {{ $t('index.slogan') }} + {{ $t('pages.slogan') }}

-

Cosmos Ecosystem Blockchains 🚀

+

{{ $t('pages.description') }}

- +
diff --git a/src/plugins/i18n/locales/en.json b/src/plugins/i18n/locales/en.json index ecfaf020..25d8381c 100644 --- a/src/plugins/i18n/locales/en.json +++ b/src/plugins/i18n/locales/en.json @@ -12,15 +12,23 @@ "ibc": "IBC", "consensus": "Consensus", "supply": "Supply", - "account": "Accounts" + "account": "Accounts", + "ecosystem": "Ecosystem", + "favorite": "Favorite", + "add_to_favorite": "Add to favorite", + "all_blockchains": "All Blockchain", + "sponsors": "Sponsors", + "links": "Links" }, - "index": { + "pages": { + "title": "Ping Dashboard", + "title_all": "404", + "tag": "Beta", + "tag_all": "Page Not Found", "slogan": "Ping Dashboard is not just an explorer but also a wallet and more ... 🛠", + "description": "Cosmos Ecosystem Blockchains 🚀", "search_placeholder": "Search Chain", - "add_to_favorite": "Add to favorite" - }, - "Ecosystem": "Ecosystem", - "All Blockchains": "All Blockchain", - "Favorite": "Favorite" - + "description_all": "We couldn't find the page you are looking for.", + "btn_index": "Back to Home" + } }