-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.ts
More file actions
35 lines (33 loc) · 871 Bytes
/
settings.ts
File metadata and controls
35 lines (33 loc) · 871 Bytes
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
/*
* Vencord, a Discord client mod
* Copyright (c) 2024 Vendicated and contributors
* SPDX-License-Identifier: GPL-3.0-or-later
*/
import { definePluginSettings } from "@api/Settings";
import { OptionType } from "@utils/types";
export const settings = definePluginSettings({
target: {
type: OptionType.STRING,
description: "Target language",
default: "en",
restartNeeded: true
},
toki: {
type: OptionType.BOOLEAN,
description: "Enable Toki Pona",
default: true,
restartNeeded: true
},
sitelen: {
type: OptionType.BOOLEAN,
description: "Enable Sitelen Pona",
default: true,
restartNeeded: true
},
shavian: {
type: OptionType.BOOLEAN,
description: "Enable Shavian",
default: true,
restartNeeded: true
}
});