Add glossary methods #4

Open
KaKi87 wants to merge 15 commits from Androz2091/deepl-scraper:glossary-v2 into master
Showing only changes of commit dbb92a8bc6 - Show all commits

View file

@ -93,14 +93,14 @@ DeepL allows you to define a glossary, so you can add your own words in the tran
You can add new words in the glossary using:
```js
setGlossary({
await setGlossary({
'channel': 'salon'
}, 'en', 'fr');
```
Once a word is added, you can update it by calling the function again:
```js
setGlossary({
await setGlossary({
'channel': 'test'
}, 'en', 'fr');
```