Some general changes on strings

This commit is contained in:
Luquinhas 2025-01-10 09:24:28 -03:00
parent 0af901a258
commit 901e5ab98a
No known key found for this signature in database
GPG key ID: D9B075FC6DC93985
5 changed files with 21 additions and 18 deletions

View file

@ -5,7 +5,7 @@ const spamwatchMiddleware = require('../plugins/lib-spamwatch/Middleware.js')(is
module.exports = (bot) => {
bot.start(spamwatchMiddleware, async (ctx) => {
const Strings = getStrings(ctx.from.language_code);
ctx.reply(Strings.kowalskiWelcome, {
ctx.reply(Strings.botWelcome, {
parse_mode: 'Markdown',
reply_to_message_id: ctx.message.message_id
});
@ -14,7 +14,7 @@ module.exports = (bot) => {
bot.command('privacy', spamwatchMiddleware, async (ctx) => {
const Strings = getStrings(ctx.from.language_code);
ctx.reply(
Strings.kowalskiPrivacy, {
Strings.botPrivacy, {
parse_mode: 'Markdown',
disable_web_page_preview: true,
reply_to_message_id: ctx.message.message_id