1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
import type { DefaultTheme } from 'vitepress';
export const ja: DefaultTheme.Config = {
editLink: {
pattern: 'https://github.com/m1sk9/LunaticChat/edit/main/website/src/:path',
text: 'GitHub で編集',
},
nav: [
{ link: '/ja/download', text: 'ダウンロード' },
{ link: '/ja/docs/getting-started', text: 'ドキュメント' },
],
sidebar: {
'/ja/docs/': [
{
link: '/ja/docs/getting-started',
text: 'はじめる',
},
{
link: '/ja/docs/configuration',
text: '設定',
},
{
link: '/ja/docs/permissions',
text: 'パーミッション',
},
{
text: '機能ガイド',
items: [
{
link: '/ja/docs/features/direct-message',
text: 'ダイレクトメッセージ',
},
{
link: '/ja/docs/features/channel-chat',
text: 'チャンネルチャット',
},
{
link: '/ja/docs/features/japanese-conversion',
text: 'ローマ字変換',
},
{
link: '/ja/docs/features/velocity',
text: 'Velocity 連携',
},
{
link: '/ja/docs/features/message-logging',
text: 'メッセージログ',
},
{
link: '/ja/docs/features/admin',
text: '管理者向け機能',
},
],
},
{
text: 'リファレンス',
items: [
{
link: '/ja/docs/reference/commands',
text: 'コマンド一覧',
},
{
link: '/ja/docs/reference/message-format',
text: 'メッセージフォーマット',
},
{
link: '/ja/docs/reference/player-settings',
text: 'プレイヤー設定',
},
{
link: '/ja/docs/reference/compatibility',
text: 'Paper / Velocity 互換性',
},
],
},
{
text: '開発者向けガイド',
items: [
{
link: '/ja/docs/developers/introduction',
text: 'はじめに',
},
{
text: '設計/アーキテクチャ',
link: '/ja/docs/developers/architecture',
items: [
{
link: '/ja/docs/developers/engine',
text: 'engine - 共通カーネル',
},
{
link: '/ja/docs/developers/platform-paper',
text: 'platform-paper - Paper / Folia プラグイン本体',
},
{
link: '/ja/docs/developers/platform-velocity',
text: 'platform-velocity - Velocity プラグイン本体 (プロキシ中継)',
},
],
},
{
link: '/ja/docs/developers/resource',
text: 'ビルド・リリース・バージョニング',
},
],
},
],
},
};
|