AIdeaText commited on
Commit
da41eef
·
verified ·
1 Parent(s): 2eccb8b

Update translations/en.py

Browse files
Files changed (1) hide show
  1. translations/en.py +11 -1
translations/en.py CHANGED
@@ -349,6 +349,15 @@ TEXT_TYPES = {
349
  # Configuration of the language model for English
350
  NLP_MODEL = 'en_core_web_lg'
351
 
 
 
 
 
 
 
 
 
 
352
  # Esta línea es crucial:
353
  TRANSLATIONS = {
354
  'COMMON': COMMON,
@@ -360,5 +369,6 @@ TRANSLATIONS = {
360
  'FEEDBACK': FEEDBACK,
361
  'TEXT_TYPES': TEXT_TYPES,
362
  'CURRENT_SITUATION': CURRENT_SITUATION, # Añadir esta línea
363
- 'NLP_MODEL': NLP_MODEL
 
364
  }
 
349
  # Configuration of the language model for English
350
  NLP_MODEL = 'en_core_web_lg'
351
 
352
+
353
+ ####
354
+ GRAPH_LABELS = {
355
+ 'concept_network': "Relationships of Key Concepts",
356
+ 'concept_centrality': "Concept Centrality",
357
+ 'entity_relations': "Entity Relationships",
358
+ 'topic_relations': "Topic Relationships"
359
+ }
360
+
361
  # Esta línea es crucial:
362
  TRANSLATIONS = {
363
  'COMMON': COMMON,
 
369
  'FEEDBACK': FEEDBACK,
370
  'TEXT_TYPES': TEXT_TYPES,
371
  'CURRENT_SITUATION': CURRENT_SITUATION, # Añadir esta línea
372
+ 'NLP_MODEL': NLP_MODEL,
373
+ 'GRAPH_LABELS': GRAPH_LABELS
374
  }