i18n: translate titles
This commit is contained in:
parent
377c015c91
commit
482e8c1c3a
5 changed files with 19 additions and 8 deletions
|
@ -3,15 +3,17 @@ definePageMeta({
|
|||
middleware: 'auth',
|
||||
})
|
||||
|
||||
const { t } = useI18n()
|
||||
|
||||
useHeadFixed({
|
||||
title: 'Blocked users',
|
||||
title: () => t('nav.blocked_users'),
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<MainContent back>
|
||||
<template #title>
|
||||
<span text-lg font-bold>{{ $t('account.blocked_users') }}</span>
|
||||
<span text-lg font-bold>{{ $t('nav.blocked_users') }}</span>
|
||||
</template>
|
||||
|
||||
<TimelineBlocks v-if="isMastoInitialised" />
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue