remove periods

This commit is contained in:
Indiana Jone (Indi) 2025-06-21 12:00:40 -04:00
parent 96f86f1e66
commit fc1e999818

View file

@ -42,12 +42,12 @@ const searchEngines = {
const settings = definePluginSettings({ const settings = definePluginSettings({
hyperlink: { hyperlink: {
type: OptionType.BOOLEAN, type: OptionType.BOOLEAN,
description: "If the sent link should hyperlink with the query as the label.", description: "If the sent link should hyperlink with the query as the label",
default: false default: false
}, },
defaultEngine: { defaultEngine: {
type: OptionType.SELECT, type: OptionType.SELECT,
description: "The search engine to use.", description: "The search engine to use",
options: Object.keys(searchEngines).map((key, index) => ({ options: Object.keys(searchEngines).map((key, index) => ({
label: key, label: key,
value: key, value: key,
@ -55,7 +55,7 @@ const settings = definePluginSettings({
})) }))
}, },
customEngineURL: { customEngineURL: {
description: "The URL of the Engine you wish to use.", description: "The URL of the Engine you wish to use",
type: OptionType.STRING, type: OptionType.STRING,
placeholder: "https://search.vmohammad.dev/?q=" placeholder: "https://search.vmohammad.dev/?q="
} }
@ -63,7 +63,7 @@ const settings = definePluginSettings({
export default definePlugin({ export default definePlugin({
name: "GoogleThat", name: "GoogleThat",
description: "Adds a command to send a internet search link.", description: "Adds a command to send a internet search link",
authors: [ authors: [
Devs.Samwich, Devs.Samwich,
EquicordDevs.KrystalSkull, EquicordDevs.KrystalSkull,