From 57d928bb82130f8f1dcbc85ddd5430721a0dbf04 Mon Sep 17 00:00:00 2001 From: StefanVukovic99 Date: Thu, 9 May 2024 03:10:48 +0200 Subject: add source and target language dictionary metadata (#891) * add source and target language dictionary metadata * validate iso * add description and grc --- ext/js/dictionary/dictionary-importer.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'ext/js/dictionary') diff --git a/ext/js/dictionary/dictionary-importer.js b/ext/js/dictionary/dictionary-importer.js index 310b2ec1..f0c92481 100644 --- a/ext/js/dictionary/dictionary-importer.js +++ b/ext/js/dictionary/dictionary-importer.js @@ -285,12 +285,14 @@ export class DictionaryImporter { counts }; - const {author, url, description, attribution, frequencyMode} = index; + const {author, url, description, attribution, frequencyMode, sourceLanguage, targetLanguage} = index; if (typeof author === 'string') { summary.author = author; } if (typeof url === 'string') { summary.url = url; } if (typeof description === 'string') { summary.description = description; } if (typeof attribution === 'string') { summary.attribution = attribution; } if (typeof frequencyMode === 'string') { summary.frequencyMode = frequencyMode; } + if (typeof sourceLanguage === 'string') { summary.sourceLanguage = sourceLanguage; } + if (typeof targetLanguage === 'string') { summary.targetLanguage = targetLanguage; } return summary; } -- cgit v1.2.3