Currently, the function create_multilingual_glossary_from_csv(name: str, source_lang: str, target_lang: str, csv_data) requires both input and target language parameters. All entries added to the function from a CSV file are added to the created glossary, but the provided translation parameters are ignored. In the created glossary, all word pairs are in the format 'source_language -> target_language', even when the CSV entries have different language combinations.
Input .csv example:
"blockchain","Blockchain","EN","DE" "data breach","Datenleck","EN","DE" "encryption","Verschlüsselung","EN","DE" "latency","Latenz","EN","DE" "Datenleck","data breach","DE","EN" "IP-Adresse","IP address","DE","EN" "Latenz","latency","DE","EN" "stranden","Strand","DA","DE"
Output glossary example (downloaded from DeepL)
"""blockchain""","Blockchain","DE","EN" "Datenleck","data breach","DE","EN" "IP-Adresse","IP address","DE","EN" "Latenz","latency","DE","EN" "data breach","Datenleck","DE","EN" "encryption","Verschlüsselung","DE","EN" "latency","Latenz","DE","EN" "stranden","Strand","DE","EN"
Currently, the function
create_multilingual_glossary_from_csv(name: str, source_lang: str, target_lang: str, csv_data)requires both input and target language parameters. All entries added to the function from a CSV file are added to the created glossary, but the provided translation parameters are ignored. In the created glossary, all word pairs are in the format 'source_language -> target_language', even when the CSV entries have different language combinations.Input .csv example:
"blockchain","Blockchain","EN","DE" "data breach","Datenleck","EN","DE" "encryption","Verschlüsselung","EN","DE" "latency","Latenz","EN","DE" "Datenleck","data breach","DE","EN" "IP-Adresse","IP address","DE","EN" "Latenz","latency","DE","EN" "stranden","Strand","DA","DE"Output glossary example (downloaded from DeepL)
"""blockchain""","Blockchain","DE","EN" "Datenleck","data breach","DE","EN" "IP-Adresse","IP address","DE","EN" "Latenz","latency","DE","EN" "data breach","Datenleck","DE","EN" "encryption","Verschlüsselung","DE","EN" "latency","Latenz","DE","EN" "stranden","Strand","DE","EN"