diff --git a/components/tabBar/tabBar.vue b/components/tabBar/tabBar.vue
index 09a45eb..ae75718 100644
--- a/components/tabBar/tabBar.vue
+++ b/components/tabBar/tabBar.vue
@@ -7,7 +7,7 @@
- Wallet
+ {{i18n.Wallet}}
@@ -17,7 +17,7 @@
- NFT
+ {{i18n.NFT}}
@@ -27,7 +27,7 @@
- Market
+ {{i18n.Market}}
@@ -37,7 +37,7 @@
- Discover
+ {{i18n.Discover}}
@@ -47,7 +47,7 @@
- Profile
+ {{i18n.Profile}}
@@ -109,6 +109,11 @@
}
},
+ computed: {
+ i18n() {
+ return this.$t('index')
+ },
+ }
}
diff --git a/pages/menu/about/Privacy/index.vue b/pages/menu/about/Privacy/index.vue
index ff40e7b..fd6a780 100644
--- a/pages/menu/about/Privacy/index.vue
+++ b/pages/menu/about/Privacy/index.vue
@@ -1,7 +1,7 @@
- Terms of Service
+ {{i18n.TermsofService}}
@@ -30,7 +30,12 @@
},
methods: {
- }
+ },
+ computed: {
+ i18n() {
+ return this.$t('index')
+ },
+ },
};