diff --git a/components/nav/NavSideItem.vue b/components/nav/NavSideItem.vue index 81833884..aa9c9243 100644 --- a/components/nav/NavSideItem.vue +++ b/components/nav/NavSideItem.vue @@ -66,7 +66,7 @@ const noUserVisual = computed(() => isMastoInitialised.value && props.userOnly &
- {{ isHydrated ? text : ' ' }} + {{ text }}
diff --git a/components/search/SearchWidget.vue b/components/search/SearchWidget.vue index 12d27f19..ec4ad5c4 100644 --- a/components/search/SearchWidget.vue +++ b/components/search/SearchWidget.vue @@ -3,7 +3,6 @@ const query = ref('') const { accounts, hashtags, loading, statuses } = useSearch(query) const index = ref(0) -const { t } = useI18n() const el = ref() const router = useRouter() const { focused } = useFocusWithin(el) @@ -66,7 +65,7 @@ const activate = () => { bg-transparent outline="focus:none" pe-4 - :placeholder="isHydrated ? t('nav.search') : ''" + :placeholder="$t('nav.search')" pb="1px" placeholder-text-secondary @keydown.down.prevent="shift(1)" @@ -78,7 +77,7 @@ const activate = () => {
- {{ t('search.search_desc') }} + {{ $t('search.search_desc') }}
diff --git a/pages/[[server]]/explore.vue b/pages/[[server]]/explore.vue index 7495022b..44e346b1 100644 --- a/pages/[[server]]/explore.vue +++ b/pages/[[server]]/explore.vue @@ -4,20 +4,20 @@ const { t } = useI18n() const tabs = $computed(() => [ { to: isHydrated.value ? `/${currentServer.value}/explore` : '/explore', - display: isHydrated.value ? t('tab.posts') : '', + display: t('tab.posts'), }, { to: isHydrated.value ? `/${currentServer.value}/explore/tags` : '/explore/tags', - display: isHydrated.value ? t('tab.hashtags') : '', + display: t('tab.hashtags'), }, { to: isHydrated.value ? `/${currentServer.value}/explore/links` : '/explore/links', - display: isHydrated.value ? t('tab.news') : '', + display: t('tab.news'), }, // This section can only be accessed after logging in { to: isHydrated.value ? `/${currentServer.value}/explore/users` : '/explore/users', - display: isHydrated.value ? t('tab.for_you') : '', + display: t('tab.for_you'), disabled: !isMastoInitialised.value || !currentUser.value, }, ] as const) diff --git a/pages/notifications.vue b/pages/notifications.vue index 96983161..4f581165 100644 --- a/pages/notifications.vue +++ b/pages/notifications.vue @@ -10,12 +10,12 @@ const tabs = $computed(() => [ { name: 'all', to: '/notifications', - display: isHydrated.value ? t('tab.notifications_all') : '', + display: t('tab.notifications_all'), }, { name: 'mention', to: '/notifications/mention', - display: isHydrated.value ? t('tab.notifications_mention') : '', + display: t('tab.notifications_mention'), }, ] as const)