Merge branch '10_0_0-beta_2'

This commit is contained in:
7cc5c4f330d47060 2024-08-13 02:28:07 -04:00
commit c9c47e8c62
Signed by: 7cc5c4f330d47060
SSH key fingerprint: SHA256:e+4tcZut1nBpe10PqjaO+Rvie0Q7W4qIvFzcUw+7riA
2 changed files with 6 additions and 4 deletions

View file

@ -78,7 +78,7 @@ module.exports = {
case 'get':{ case 'get':{
c.reply({ c.reply({
translate: "%s: %s", translate: "%s: %s",
color: c.colors.secondary, color: c.colors.primary,
with:[ with:[
{ {
text: getMessage(c.lang, 'command.settings.get.colorPrimary'), text: getMessage(c.lang, 'command.settings.get.colorPrimary'),
@ -92,7 +92,7 @@ module.exports = {
}) })
c.reply({ c.reply({
translate: "%s: %s", translate: "%s: %s",
color: c.colors.secondary, color: c.colors.primary,
with:[ with:[
{ {
text: getMessage(c.lang, 'command.settings.get.colorSecondary'), text: getMessage(c.lang, 'command.settings.get.colorSecondary'),
@ -106,11 +106,11 @@ module.exports = {
}) })
c.reply({ c.reply({
translate: "%s: %s (%s)", translate: "%s: %s (%s)",
color: c.colors.secondary, color: c.colors.primary,
with:[ with:[
{ {
text: getMessage(c.lang, 'command.settings.get.language'), text: getMessage(c.lang, 'command.settings.get.language'),
color: c.colors.primary color: c.colors.secondary
}, },
{ {
text: getMessage(c.lang, 'language.name'), text: getMessage(c.lang, 'language.name'),

View file

@ -29,6 +29,8 @@
"command.refill.desc": "Refill core", "command.refill.desc": "Refill core",
"command.say.usage": " <message>", "command.say.usage": " <message>",
"command.say.desc": "Sends a message to chat", "command.say.desc": "Sends a message to chat",
"command.settings.usage": " get|| set <key> <value>",
"command.settings.desc": "Set your user preferences",
"command.stop.usage": "", "command.stop.usage": "",
"command.stop.desc": "Restart bot", "command.stop.desc": "Restart bot",
"command.template.usage": " <required> [optional]", "command.template.usage": " <required> [optional]",