summaryrefslogtreecommitdiff
path: root/docs/.vitepress/config/en.ts
blob: 6b1a18cfe3e67af045fee5c553bc92e710db146d (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
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
import type { DefaultTheme } from 'vitepress';

export const en: DefaultTheme.Config = {
  editLink: {
    pattern: 'https://github.com/m1sk9/LunaticChat/edit/main/docs/src/:path',
    text: 'Edit this page on GitHub',
  },
  footer: {
    copyright: 'Copyright © 2026 m1sk9',
  },
  nav: [
    { link: '/en/player-guide/getting-started', text: 'Player Guide' },
    { link: '/en/admin-guide/getting-started', text: 'Admin Guide' },
    { component: 'VersionSwitcher' },
  ],
  sidebar: {
    '/en/admin-guide/': [
      {
        link: '/en/admin-guide/getting-started',
        text: 'Getting Started',
      },
      {
        link: '/en/admin-guide/configuration',
        text: 'Configuration',
      },
      {
        link: '/en/admin-guide/permissions',
        text: 'Permissions',
      },
      {
        items: [
          {
            link: '/en/admin-guide/channel-chat/introduction',
            text: 'Deployment Guide',
          },
          {
            link: '/en/admin-guide/channel-chat/logs',
            text: 'Logs',
          },
        ],
        text: 'Channel Chat',
      },
      {
        link: '/en/admin-guide/velocity',
        text: 'Velocity Integration',
      },
      {
        link: '/en/admin-guide/cache',
        text: 'Cache System',
      },
      {
        link: '/en/admin-guide/management-data',
        text: 'Data Management',
      },
    ],
    '/en/player-guide/': [
      {
        link: '/en/player-guide/getting-started',
        text: 'Getting Started',
      },
      {
        link: '/en/player-guide/about',
        text: 'About LunaticChat',
      },
      {
        items: [
          {
            link: '/en/player-guide/channel-chat/chatmode',
            text: 'Chat Mode',
          },
          {
            link: '/en/player-guide/channel-chat/private-channel',
            text: 'Private Channel',
          },
          {
            link: '/en/player-guide/channel-chat/moderation',
            text: 'Moderation',
          },
        ],
        link: '/en/player-guide/channel-chat/about',
        text: 'Channel Chat',
      },
      {
        link: '/en/player-guide/direct-message',
        text: 'Direct Messages',
      },
      {
        link: '/en/player-guide/japanese-romanization',
        text: 'Romanization Conversion',
      },
      {
        items: [
          {
            link: '/en/player-guide/commands/tell',
            text: '/tell',
          },
          {
            link: '/en/player-guide/commands/reply',
            text: '/reply',
          },
          {
            link: '/en/player-guide/commands/jp',
            text: '/jp',
          },
          {
            link: '/en/player-guide/commands/notice',
            text: '/notice',
          },
          {
            items: [
              {
                link: '/en/player-guide/commands/lc/settings',
                text: '/lc settings',
              },
              {
                link: '/en/player-guide/commands/lc/status',
                text: '/lc status',
              },
              {
                link: '/en/player-guide/commands/lc/channel',
                text: '/lc channel',
              },
              {
                link: '/en/player-guide/commands/lc/chatmode',
                text: '/lc chatmode',
              },
            ],
            text: '/lc',
          },
          {
            items: [
              {
                link: '/en/player-guide/commands/lcv/status',
                text: '/lcv status',
              },
            ],
            text: '/lcv',
          },
        ],
        text: 'Commands',
      },
    ],
  },
};