docs: Translate comments and logging messages to Spanish across various modules and the scheduler.

This commit is contained in:
Marco Gallegos
2025-12-18 00:17:14 -06:00
parent ade8a5f98d
commit e960538943
16 changed files with 266 additions and 230 deletions

View File

@@ -1,20 +1,13 @@
# app/modules/servicios.py
"""
This module is responsible for providing information about the services offered.
It's a simple informational module that gives clients an overview of the
available services and can be expanded to provide more detailed information
or initiate a quoting process.
"""
# Este módulo se encarga de dar información sobre los servicios ofrecidos.
# Es un módulo informativo para los clientes.
def get_service_info():
"""
Provides a brief overview of the available services.
Currently, this function returns a hardcoded list of services. For a more
dynamic and easily maintainable system, this information could be fetched
from a database, a configuration file, or an external API.
Muestra una lista breve de los servicios disponibles.
Por ahora devuelve un texto fijo. Se podría conectar a una base de datos
para que sea más fácil de actualizar.
"""
# TODO: Fetch service details from a database or a configuration file to
# make the service list easier to manage and update.
# TODO: Obtener detalles de servicios desde una base de datos o archivo de configuración.
return "Ofrecemos una variedad de servicios, incluyendo:\n\n- Consultoría Estratégica\n- Desarrollo de Software\n- Talleres de Capacitación\n\n¿Sobre cuál te gustaría saber más?"