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/pages/settings/dictionary-controller.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'ext/js/pages/settings') diff --git a/ext/js/pages/settings/dictionary-controller.js b/ext/js/pages/settings/dictionary-controller.js index a0e0c196..f0450892 100644 --- a/ext/js/pages/settings/dictionary-controller.js +++ b/ext/js/pages/settings/dictionary-controller.js @@ -211,12 +211,14 @@ class DictionaryEntry { * @returns {boolean} */ _setupDetails(detailsTable) { - /** @type {[label: string, key: 'author'|'url'|'description'|'attribution'][]} */ + /** @type {[label: string, key: 'author'|'url'|'description'|'attribution'|'sourceLanguage'|'targetLanguage'][]} */ const targets = [ ['Author', 'author'], ['URL', 'url'], ['Description', 'description'], - ['Attribution', 'attribution'] + ['Attribution', 'attribution'], + ['Source Language', 'sourceLanguage'], + ['Target Language', 'targetLanguage'] ]; const dictionaryInfo = this._dictionaryInfo; -- cgit v1.2.3