Add extra colors to the test command

This commit is contained in:
7cc5c4f330d47060 2024-11-20 01:43:12 -05:00
parent dd27c84094
commit b241cefbdb
Signed by: 7cc5c4f330d47060
SSH key fingerprint: SHA256:e+4tcZut1nBpe10PqjaO+Rvie0Q7W4qIvFzcUw+7riA
2 changed files with 8 additions and 0 deletions

View file

@ -45,5 +45,9 @@ const execute = (c) => {
c.reply(reply('lang', c.lang))
c.reply(reply('colorPrimary', c.colors.primary))
c.reply(reply('colorSecondary', c.colors.secondary))
c.reply(reply('colorTertiary', c.colors.tertiary))
c.reply(reply('colorWarning', c.colors.warning))
c.reply(reply('colorError', c.colors.error))
c.reply(reply('colorFatalError', c.colors.fatalError))
}
export { execute }

View file

@ -85,6 +85,10 @@ export default {
'command.test.lang': 'Language',
'command.test.colorPrimary': 'Primary color',
'command.test.colorSecondary': 'Secondary color',
'command.test.colorTertiary': 'Tertiary color',
'command.test.colorWarning': 'Warning color',
'command.test.colorError': 'Error color',
'command.test.colorFatalError': 'Fatal error color',
'command.about.serverInfo.os.android': 'Android %s',
'command.about.serverInfo.os.android.noVersion': 'Android',
'command.about.serverInfo.os.freebsd': 'FreeBSD',