fix localization

This commit is contained in:
kakkokari-gtyih 2023-12-02 15:01:48 +09:00
parent 0ae1fa8a26
commit f2cf7c183c
2 changed files with 3 additions and 3 deletions

View File

@ -113,7 +113,7 @@ _servers:
_docs:
title: "ドキュメント"
description: "Misskeyの上手なつかいかたから、サーバーの運営者・プログラムの開発者向けの情報まで網羅しています。"
description: "Misskeyはオープンソースの分散型ソーシャルネットワーキングプラットフォームです。Misskeyの上手な使い方から、サーバーの運営者・プログラムの開発者向けの情報まで網羅しています。"
indexTitle: "目次ページ"
_contribute:
editThis: "このページを編集"

View File

@ -3,7 +3,7 @@
<GHero>
<template #title>{{ $t('_docs.title') }}</template>
<template #description>
{{ $t('_seo.defaultDescription') + ' ' + $t('_docs.description') }}
{{ $t('_docs.description') }}
</template>
<template #icon>
<div class="hidden lg:block relative px-6 py-8">
@ -60,7 +60,7 @@ const { t, locale } = useI18n();
const route = useRoute();
route.meta.title = t('_docs.title');
route.meta.description = t('_seo.defaultDescription') + ' ' + t('_docs.description');
route.meta.description = t('_docs.description');
</script>
<style scoped>