Spaces:
Running
Running
Update translations/es.py
Browse files- translations/es.py +43 -5
translations/es.py
CHANGED
|
@@ -33,11 +33,48 @@ COMMON = {
|
|
| 33 |
}
|
| 34 |
|
| 35 |
TABS = {
|
| 36 |
-
'
|
| 37 |
-
'
|
| 38 |
-
'
|
| 39 |
-
'
|
| 40 |
-
'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 41 |
}
|
| 42 |
|
| 43 |
MORPHOSYNTACTIC = {
|
|
@@ -276,5 +313,6 @@ TRANSLATIONS = {
|
|
| 276 |
'ACTIVITIES': ACTIVITIES,
|
| 277 |
'FEEDBACK': FEEDBACK,
|
| 278 |
'TEXT_TYPES': TEXT_TYPES,
|
|
|
|
| 279 |
'NLP_MODEL': NLP_MODEL
|
| 280 |
}
|
|
|
|
| 33 |
}
|
| 34 |
|
| 35 |
TABS = {
|
| 36 |
+
'current_situation_tab': "Mi situación actual",
|
| 37 |
+
'morpho_tab': "Análisis morfosintáctico",
|
| 38 |
+
'semantic_live_tab': "Semántica en vivo",
|
| 39 |
+
'semantic_tab': "Análisis semántico",
|
| 40 |
+
'discourse_live_tab': "Discurso en vivo",
|
| 41 |
+
'discourse_tab': "Análisis del discurso",
|
| 42 |
+
'activities_tab': "Mis actividades",
|
| 43 |
+
'feedback_tab': "Formulario de comentarios"
|
| 44 |
+
}
|
| 45 |
+
|
| 46 |
+
CURRENT_SITUATION = {
|
| 47 |
+
'title': "Mi Situación Actual",
|
| 48 |
+
'input_prompt': "Escribe o pega tu texto aquí:",
|
| 49 |
+
'analyze_button': "Analizar mi escritura",
|
| 50 |
+
'processing': "Analizando...",
|
| 51 |
+
'analysis_error': "Error al analizar el texto",
|
| 52 |
+
'help': "Analizaremos tu texto para conocer su estado actual", # <-- Añadir esta línea
|
| 53 |
+
|
| 54 |
+
# Radio buttons para tipo de texto
|
| 55 |
+
'text_type_header': "Tipo de texto",
|
| 56 |
+
'text_type_help': "Selecciona el tipo de texto para ajustar los criterios de evaluación",
|
| 57 |
+
|
| 58 |
+
# Métricas
|
| 59 |
+
'vocabulary_label': "Vocabulario",
|
| 60 |
+
'vocabulary_help': "Riqueza y variedad del vocabulario",
|
| 61 |
+
'structure_label': "Estructura",
|
| 62 |
+
'structure_help': "Organización y complejidad de oraciones",
|
| 63 |
+
'cohesion_label': "Cohesión",
|
| 64 |
+
'cohesion_help': "Conexión y fluidez entre ideas",
|
| 65 |
+
'clarity_label': "Claridad",
|
| 66 |
+
'clarity_help': "Facilidad de comprensión del texto",
|
| 67 |
+
|
| 68 |
+
# Estados de métricas
|
| 69 |
+
'metric_improvement': "⚠️ Por mejorar",
|
| 70 |
+
'metric_acceptable': "📈 Aceptable",
|
| 71 |
+
'metric_optimal': "✅ Óptimo",
|
| 72 |
+
'metric_target': "Meta: {:.2f}",
|
| 73 |
+
|
| 74 |
+
# Errores
|
| 75 |
+
'error_interface': "Ocurrió un error al cargar la interfaz",
|
| 76 |
+
'error_results': "Error al mostrar los resultados",
|
| 77 |
+
'error_chart': "Error al mostrar el gráfico"
|
| 78 |
}
|
| 79 |
|
| 80 |
MORPHOSYNTACTIC = {
|
|
|
|
| 313 |
'ACTIVITIES': ACTIVITIES,
|
| 314 |
'FEEDBACK': FEEDBACK,
|
| 315 |
'TEXT_TYPES': TEXT_TYPES,
|
| 316 |
+
'CURRENT_SITUATION': CURRENT_SITUATION, # Añadir esta línea
|
| 317 |
'NLP_MODEL': NLP_MODEL
|
| 318 |
}
|