diff options
author | StefanVukovic99 <stefanvukovic44@gmail.com> | 2024-05-09 03:10:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-09 01:10:48 +0000 |
commit | 57d928bb82130f8f1dcbc85ddd5430721a0dbf04 (patch) | |
tree | 1c6c63a267a9eda67c17b16dd38ed89a76d6cc84 /ext/js/pages/settings | |
parent | d6b3745b7fe983e1397a00f4cb0cea53cbc61f22 (diff) |
add source and target language dictionary metadata (#891)
* add source and target language dictionary metadata
* validate iso
* add description and grc
Diffstat (limited to 'ext/js/pages/settings')
-rw-r--r-- | ext/js/pages/settings/dictionary-controller.js | 6 |
1 files changed, 4 insertions, 2 deletions
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; |