// Como esta creado este comando solo funciona si el usuario que manda el mensaje
// No es ni creador ni administrador del grupo
// Debido a la siguiente condición "if (infouser.status == 'member')"
/**
* Como está creado este comando solo funciona si el usuario que invoca el comando NO es ni creador ni administrador dle grupo debido a la siguiente condición <<if (infoUser.status == 'member')>>
*
* Ahora, el bot crea los botones diferenciando de si el chat tiene un alias o no y en función de si es para el cliente oficial de Telegram o bien Telegram X. Esto sirve para poder acceder rápidamente al mensaje reportado.
[{text:`${app.i18n.__('Go to the message')}`,url:`${deep_link}`}],
[{text:`${app.i18n.__('Tg X: Go to the message')}`,url:`${deep_link_tgx}`}]
]
if(properties.bot==false){
app.bot.sendMessage(properties.adminsinfo.id,app.i18n.__('🛎 Alert: \n👨🏻💼 <b>Name:</b> ')+prop.fromName+"\n🆔 <b>Id:</b> <code>"+prop.from_id+app.i18n.__('</code>\n\n❌ <b>Offender:</b>\n🙅🏻♂️ <b>Name:</b> ')+prop.replyNameUser+"\n🆔 <b>Id:</b> <code>"+prop.replyIdUser+app.i18n.__('</code>\n📃 <b>Text with spam:</b> \n')+prop.replyTextUser+app.i18n.__('\n\n🏛 <b>In the group:</b> ')+prop.titleChat+"\n",{parse_mode:'HTML',reply_markup:{inline_keyboard:[[{text:app.i18n.__('Go to the message'),url:deep_link}],[{text:app.i18n.__('Tg X: Go to the message'),url:deep_link}]]}});