Update modules/morphosyntax/morphosyntax_interface.py
Browse files
modules/morphosyntax/morphosyntax_interface.py
CHANGED
@@ -113,8 +113,8 @@ def display_morphosyntax_interface(lang_code, nlp_models, morpho_t):
|
|
113 |
arc_state = st.session_state.arc_analysis_state
|
114 |
|
115 |
# 2) Crear pesta帽as con etiquetas traducidas
|
116 |
-
tab_text_base = morpho_t.get('
|
117 |
-
tab_iterations = morpho_t.get('tab_iterations', '
|
118 |
tabs = st.tabs([tab_text_base, tab_iterations])
|
119 |
|
120 |
# =================== PESTA脩A 1: Texto Base ==========================
|
@@ -123,7 +123,7 @@ def display_morphosyntax_interface(lang_code, nlp_models, morpho_t):
|
|
123 |
|
124 |
# Textarea de texto base
|
125 |
arc_state["base_text"] = st.text_area(
|
126 |
-
morpho_t.get('input_base_text', "Ingrese su texto inicial"),
|
127 |
value=arc_state["base_text"],
|
128 |
key="base_text_input",
|
129 |
height=150
|
|
|
113 |
arc_state = st.session_state.arc_analysis_state
|
114 |
|
115 |
# 2) Crear pesta帽as con etiquetas traducidas
|
116 |
+
tab_text_base = morpho_t.get('tab_text_baseline', 'Ingresa la primera versi贸n de tu texto')
|
117 |
+
tab_iterations = morpho_t.get('tab_iterations', 'Produce nuevas versiones de tu primer texto')
|
118 |
tabs = st.tabs([tab_text_base, tab_iterations])
|
119 |
|
120 |
# =================== PESTA脩A 1: Texto Base ==========================
|
|
|
123 |
|
124 |
# Textarea de texto base
|
125 |
arc_state["base_text"] = st.text_area(
|
126 |
+
#morpho_t.get('input_base_text', "Ingrese su texto inicial"),
|
127 |
value=arc_state["base_text"],
|
128 |
key="base_text_input",
|
129 |
height=150
|