summaryrefslogtreecommitdiff
path: root/website/.vitepress/config/ja.ts
blob: 12fd9a18e3fd487dd8f8d81cc9c7caf7d1b5e468 (plain)
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
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 互換性',
          },
        ],
      },
    ],
  },
};