2024-07-18 03:07:01 -04:00
|
|
|
/*
|
2024-07-18 19:26:01 -03: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({
|
2024-07-18 19:26:01 -03:00
|
|
|
target: {
|
2024-07-18 03:07:01 -04:00
|
|
|
type: OptionType.STRING,
|
2024-07-18 19:26:01 -03:00
|
|
|
description: "Target language",
|
2024-07-18 03:07:01 -04:00
|
|
|
default: "en",
|
2024-07-18 19:26:01 -03:00
|
|
|
restartNeeded: true
|
2024-07-18 03:07:01 -04:00
|
|
|
},
|
2024-07-18 19:26:01 -03:00
|
|
|
toki: {
|
2024-07-18 03:07:01 -04:00
|
|
|
type: OptionType.BOOLEAN,
|
2024-07-18 19:26:01 -03:00
|
|
|
description: "Enable Toki Pona",
|
|
|
|
default: true,
|
|
|
|
restartNeeded: true
|
2024-07-18 03:07:01 -04:00
|
|
|
},
|
2024-07-18 19:26:01 -03:00
|
|
|
sitelen: {
|
2024-07-18 03:07:01 -04:00
|
|
|
type: OptionType.BOOLEAN,
|
2024-07-18 19:26:01 -03:00
|
|
|
description: "Enable Sitelen Pona",
|
|
|
|
default: true,
|
|
|
|
restartNeeded: true
|
2024-07-18 03:07:01 -04:00
|
|
|
},
|
2024-07-18 19:26:01 -03:00
|
|
|
shavian: {
|
|
|
|
type: OptionType.BOOLEAN,
|
|
|
|
description: "Enable Shavian",
|
|
|
|
default: true,
|
|
|
|
restartNeeded: true
|
2024-07-18 03:07:01 -04:00
|
|
|
}
|
2024-07-18 19:26:01 -03:00
|
|
|
});
|