Skip to content
This repository was archived by the owner on May 12, 2026. It is now read-only.
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
19c305e
feat(config): refactor misc config to use component commands and pane…
Arsabutispik Jan 24, 2026
4fc15ac
chore(deps): update lodash to version 4.17.23
Arsabutispik Jan 24, 2026
f830781
feat(config): Add the minimum required code for navigation
Arsabutispik Jan 27, 2026
9d3e034
refactor(navigation): remove unused updateGuildConfig import
Arsabutispik Jan 27, 2026
b0c9d43
feat(config): add mod-mail message editing with modal and reset funct…
Arsabutispik Jan 29, 2026
9f89486
Merge branch 'master' into feat/improve-config-command
Arsabutispik Jan 29, 2026
0dbfa4e
feat(config): expand role configuration panel and refactor dynamic ro…
Arsabutispik Jan 29, 2026
2705c61
refactor(config): remove unused imports from roleConfig and utils
Arsabutispik Jan 29, 2026
ca9d638
feat(config): add dynamic role handlers for male, female, mute, and c…
Arsabutispik Jan 29, 2026
a2c0c1e
refactor(config): update config panel imports to use alias in navigation
Arsabutispik Jan 29, 2026
cb5b634
feat(config): add welcome & leave message configuration panel with dy…
Arsabutispik Jan 29, 2026
71e2e51
refactor(config): remove unused dynamicChannel and dynamicMessage imp…
Arsabutispik Jan 29, 2026
111a03f
Merge branch 'master' into feat/improve-config-command
Arsabutispik Jan 30, 2026
e17cc7e
feat(config): add leave message configuration and handling
Arsabutispik Feb 2, 2026
1f11198
refactor(guildMemberRemove): reorder imports for better clarity
Arsabutispik Feb 2, 2026
99c0a53
feat(config): add reset functionality for configuration panels
Arsabutispik Feb 2, 2026
80e50fc
feat(config): update reset button style and add emoji
Arsabutispik Feb 2, 2026
bcf819f
refactor(translation): fix translations
Arsabutispik Feb 2, 2026
54a7d33
fix(translations): Update script to scan translations in classes
Arsabutispik Feb 3, 2026
fcde5a2
feat(config): implement pagination for role configuration panels and …
Arsabutispik Feb 3, 2026
e38e29e
feat(config): add register configuration panel and update navigation …
Arsabutispik Feb 7, 2026
4be3211
feat(config): add registration message configuration and testing func…
Arsabutispik Feb 7, 2026
fba1a1a
refactor(guildMemberAdd): remove unused imports
Arsabutispik Feb 7, 2026
f33cd25
feat(log): add logging configuration panel and dynamic channel setup
Arsabutispik Feb 7, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
591 changes: 265 additions & 326 deletions apps/bot/locales/en-GB/commands.json

Large diffs are not rendered by default.

51 changes: 51 additions & 0 deletions apps/bot/locales/en-GB/components.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
{
"config": {
"joinChannelId": {
"modal": {
"label": {
"joinMessage": "Join Message"
},
"title": "Set Join Message"
},
"test": {
"fail": "{{reject}} Could not send message.\n- Check if the channel is set.\n- Check if the bot has **Send Messages** permission in that channel.",
"pass": "{{check}} Test message sent to <#{{channelId}}>!"
}
},
"leaveChannelId": {
"modal": {
"label": {
"leaveMessage": "Leave Message"
},
"title": "Set Leave Message"
},
"test": {
"fail": "{{reject}} Could not send message.\n- Check if the channel is set.\n- Check if the bot has **Send Messages** permission in that channel.",
"pass": "{{check}} Test message sent to <#{{channelId}}>!"
}
},
"modMailMessage": {
"modal": {
"label": {
"messageContent": "Message Content"
},
"title": "Edit Mod Mail Message"
}
},
"registerJoinChannelId": {
"modal": {
"label": {
"messageContent": "Message Content"
},
"title": "Edit Registration Message"
},
"test": {
"fail": "{{reject}} Could not send message.\n- Check if the channel is set.\n- Check if the bot has **Send Messages** permission in that channel.",
"pass": "{{check}} Test message sent to <#{{channelId}}>!"
}
}
},
"dynamicRole": {
"notEditable": "{{role}} is not editable by the bot. Please adjust the role's position in the server settings to be below the bot's highest role."
}
}
571 changes: 290 additions & 281 deletions apps/bot/locales/en-GB/translations.json

Large diffs are not rendered by default.

Loading
Loading