mirror of
https://github.com/LiteyukiStudio/nonebot-plugin-marshoai.git
synced 2025-01-26 18:12:47 +08:00
30 lines
1.1 KiB
TypeScript
Executable File
30 lines
1.1 KiB
TypeScript
Executable File
import {defineConfig} from 'vitepress'
|
|
import { ThemeConfig } from './common'
|
|
|
|
export const ja = defineConfig({
|
|
lang: "ja-JP",
|
|
title: "Marsho AI",
|
|
description: "かわいくて、賢くて、拡張しやすい",
|
|
themeConfig: {
|
|
docFooter: {
|
|
prev: '前へ',
|
|
next: '次へ'
|
|
},
|
|
nav: [
|
|
{text: 'ホーム', link: '/ja'},
|
|
{text: '使用方法', link: '/ja/start/install'},
|
|
{text: '開発', link: '/ja/dev/extension'},
|
|
],
|
|
editLink: ThemeConfig.getEditLink('このページを編集'),
|
|
langMenuLabel: '言語',
|
|
returnToTopLabel: 'トップへ戻る',
|
|
sidebarMenuLabel: 'オプション',
|
|
darkModeSwitchLabel: 'テーマ',
|
|
lightModeSwitchTitle: 'ライト',
|
|
darkModeSwitchTitle: 'ダーク',
|
|
footer: {
|
|
message: "ドキュメントは改善中です。ご意見をお待ちしております。",
|
|
copyright: '© 2024 <a href="https://liteyuki.icu" target="_blank">Liteyuki Studio</a>',
|
|
}
|
|
},
|
|
}) |