Equicord/src/equicordplugins/translatePlus/settings.ts

36 lines
871 B
TypeScript
Raw Normal View History

2024-07-18 03:07:01 -04:00
/*
* Vencord, a Discord client mod
* Copyright (c) 2024 Vendicated and contributors
* SPDX-License-Identifier: GPL-3.0-or-later
*/
2024-07-18 03:07:01 -04:00
import { definePluginSettings } from "@api/Settings";
import { OptionType } from "@utils/types";
export const settings = definePluginSettings({
target: {
2024-07-18 03:07:01 -04:00
type: OptionType.STRING,
description: "Target language",
2024-07-18 03:07:01 -04:00
default: "en",
restartNeeded: true
2024-07-18 03:07:01 -04:00
},
toki: {
2024-07-18 03:07:01 -04:00
type: OptionType.BOOLEAN,
description: "Enable Toki Pona",
default: true,
restartNeeded: true
2024-07-18 03:07:01 -04:00
},
sitelen: {
2024-07-18 03:07:01 -04:00
type: OptionType.BOOLEAN,
description: "Enable Sitelen Pona",
default: true,
restartNeeded: true
2024-07-18 03:07:01 -04:00
},
shavian: {
type: OptionType.BOOLEAN,
description: "Enable Shavian",
default: true,
restartNeeded: true
2024-07-18 03:07:01 -04:00
}
});