feat(i18n): add title texts (#201)
This commit is contained in:
parent
72abfc3ce3
commit
bc44b0127d
9 changed files with 37 additions and 13 deletions
|
@ -5,15 +5,17 @@ definePageMeta({
|
|||
|
||||
const paginator = useMasto().conversations.getIterator()
|
||||
|
||||
const { t } = useI18n()
|
||||
|
||||
useHead({
|
||||
title: 'Conversations',
|
||||
title: () => t('nav_side.conversations'),
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<MainContent>
|
||||
<template #title>
|
||||
<span text-lg font-bold>Conversations</span>
|
||||
<span text-lg font-bold>{{ t('nav_side.conversations') }}</span>
|
||||
</template>
|
||||
|
||||
<slot>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue