Improved string variable names

This commit is contained in:
Luquinhas 2025-01-10 10:09:47 -03:00
parent d1494fbd80
commit 8227d88e72
No known key found for this signature in database
GPG key ID: D9B075FC6DC93985
6 changed files with 26 additions and 26 deletions

View file

@ -46,7 +46,7 @@ module.exports = (bot) => {
disable_web_page_preview: true,
reply_markup: JSON.stringify({
inline_keyboard: [
[{ text: Strings.goBack, callback_data: 'helpBack' }],
[{ text: Strings.varBack, callback_data: 'helpBack' }],
]
})
};
@ -93,7 +93,7 @@ module.exports = (bot) => {
await sendHelpMessage(ctx, true);
break;
default:
await ctx.answerCbQuery(Strings.invalidOption);
await ctx.answerCbQuery(Strings.errInvalidOption);
break;
}
});