diff --git a/src/components/Loading.vue b/src/components/Loading.vue index c3876c41..8fb292d3 100644 --- a/src/components/Loading.vue +++ b/src/components/Loading.vue @@ -18,6 +18,6 @@ const imgURL = browser.runtime.getURL('/assets/loading.gif') h="46px" m="r-2" /> - {{ $t('home.loading_more') }} + {{ $t('common.loading_more') }} diff --git a/src/components/Topbar/MomentsDropdown.vue b/src/components/Topbar/MomentsDropdown.vue index 512dc98f..980760b8 100644 --- a/src/components/Topbar/MomentsDropdown.vue +++ b/src/components/Topbar/MomentsDropdown.vue @@ -12,17 +12,17 @@ export default defineComponent({ momentTabs: [ { id: 0, - name: 'Videos', + name: this.$t('topbar.moments_dropdown.tabs.videos'), isSelected: true, }, { id: 1, - name: 'Live', + name: this.$t('topbar.moments_dropdown.tabs.live'), isSelected: false, }, { id: 2, - name: 'Articles', + name: this.$t('topbar.moments_dropdown.tabs.articles'), isSelected: false, }, ], @@ -279,7 +279,7 @@ export default defineComponent({ - View ALL + {{ $t('common.view_all') }} @@ -330,14 +330,14 @@ export default defineComponent({