mirror of
https://github.com/marcogll/talia_bot.git
synced 2026-01-13 21:35:19 +00:00
docs: Translate comments and logging messages to Spanish across various modules and the scheduler.
This commit is contained in:
@@ -1,21 +1,15 @@
|
||||
# app/modules/citas.py
|
||||
"""
|
||||
This module handles appointment scheduling for clients.
|
||||
|
||||
It provides a simple way for users to get a link to an external scheduling
|
||||
service, such as Calendly or an n8n workflow.
|
||||
"""
|
||||
# Este módulo maneja la programación de citas para los clientes.
|
||||
# Permite a los usuarios obtener un enlace para agendar una reunión.
|
||||
|
||||
def request_appointment():
|
||||
"""
|
||||
Provides the user with a link to schedule an appointment.
|
||||
|
||||
Currently, this function returns a hardcoded placeholder link to Calendly.
|
||||
The intention is to replace this with a dynamic link generated by an n8n
|
||||
workflow or another scheduling service.
|
||||
Proporciona al usuario un enlace para agendar una cita.
|
||||
|
||||
Por ahora devuelve un enlace de ejemplo a Calendly.
|
||||
La idea es que sea un enlace dinámico generado por n8n.
|
||||
"""
|
||||
# TODO: Integrate with a real scheduling service or an n8n workflow to
|
||||
# provide a dynamic and personalized scheduling link.
|
||||
# TODO: Integrar con un servicio real o un flujo de n8n para dar un enlace personalizado.
|
||||
response_text = (
|
||||
"Para agendar una cita, por favor utiliza el siguiente enlace: \n\n"
|
||||
"[Enlace de Calendly](https://calendly.com/user/appointment-link)"
|
||||
|
||||
Reference in New Issue
Block a user