feat(i18n): add title texts (#201)

This commit is contained in:
Ayaka Rizumu 2022-11-28 22:25:32 +08:00 committed by GitHub
parent 72abfc3ce3
commit bc44b0127d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 37 additions and 13 deletions

View file

@ -5,15 +5,17 @@ definePageMeta({
const paginator = useMasto().bookmarks.getIterator()
const { t } = useI18n()
useHead({
title: 'Bookmarks',
title: () => t('nav_side.bookmarks'),
})
</script>
<template>
<MainContent>
<template #title>
<span text-lg font-bold>Bookmarks</span>
<span text-lg font-bold>{{ t('nav_side.bookmarks') }}</span>
</template>
<slot>