Update translations/en.py
Browse files- translations/en.py +43 -5
translations/en.py
CHANGED
@@ -44,11 +44,48 @@ COMMON = {
|
|
44 |
}
|
45 |
|
46 |
TABS = {
|
47 |
-
'
|
48 |
-
'
|
49 |
-
'
|
50 |
-
'
|
51 |
-
'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
52 |
}
|
53 |
|
54 |
MORPHOSYNTACTIC = {
|
@@ -300,5 +337,6 @@ TRANSLATIONS = {
|
|
300 |
'ACTIVITIES': ACTIVITIES,
|
301 |
'FEEDBACK': FEEDBACK,
|
302 |
'TEXT_TYPES': TEXT_TYPES,
|
|
|
303 |
'NLP_MODEL': NLP_MODEL
|
304 |
}
|
|
|
44 |
}
|
45 |
|
46 |
TABS = {
|
47 |
+
'current_situation_tab': "Current situation",
|
48 |
+
'morpho_tab': "Morphosyntactic analysis",
|
49 |
+
'semantic_live_tab': "Semantic live",
|
50 |
+
'semantic_tab': "Semantic analysis",
|
51 |
+
'discourse_live_tab': "Discourse live",
|
52 |
+
'discourse_tab': "Discourse analysis",
|
53 |
+
'activities_tab': "My activities",
|
54 |
+
'feedback_tab': "Feedback form"
|
55 |
+
}
|
56 |
+
|
57 |
+
CURRENT_SITUATION = {
|
58 |
+
'title': "My Current Situation",
|
59 |
+
'input_prompt': "Write or paste your text here:",
|
60 |
+
'analyze_button': "Analyze my writing",
|
61 |
+
'processing': "Analyzing...",
|
62 |
+
'analysis_error': "Error analyzing text",
|
63 |
+
'help': "We will analyze your text to know its current status", # <-- Añadir esta línea
|
64 |
+
|
65 |
+
# Radio buttons para tipo de texto
|
66 |
+
'text_type_header': "Text type",
|
67 |
+
'text_type_help': "Select the type of text to adjust the evaluation criteria",
|
68 |
+
|
69 |
+
# Métricas
|
70 |
+
'vocabulary_label': "Vocabulary",
|
71 |
+
'vocabulary_help': "Richness and variety of vocabulary",
|
72 |
+
'structure_label': "Structure",
|
73 |
+
'structure_help': "Organization and complexity of sentences",
|
74 |
+
'cohesion_label': "Cohesion",
|
75 |
+
'cohesion_help': "Connection and fluidity between ideas",
|
76 |
+
'clarity_label': "Clarity",
|
77 |
+
'clarity_help': "Ease of understanding the text",
|
78 |
+
|
79 |
+
# Estados de métricas
|
80 |
+
'metric_improvement': "⚠️ Needs improvement",
|
81 |
+
'metric_acceptable': "📈 Acceptable",
|
82 |
+
'metric_optimal': "✅ Optimal",
|
83 |
+
'metric_target': "Goal: {:.2f}",
|
84 |
+
|
85 |
+
# Errores
|
86 |
+
'error_interface': "An error occurred while loading the interface",
|
87 |
+
'error_results': "Error displaying results",
|
88 |
+
'error_chart': "Error displaying chart"
|
89 |
}
|
90 |
|
91 |
MORPHOSYNTACTIC = {
|
|
|
337 |
'ACTIVITIES': ACTIVITIES,
|
338 |
'FEEDBACK': FEEDBACK,
|
339 |
'TEXT_TYPES': TEXT_TYPES,
|
340 |
+
'CURRENT_SITUATION': CURRENT_SITUATION, # Añadir esta línea
|
341 |
'NLP_MODEL': NLP_MODEL
|
342 |
}
|