├── .github └── workflows │ └── main.yml ├── .gitignore ├── README.md ├── SpecRunner.html ├── jasmine-3.6.0 ├── boot.js ├── jasmine-html.js ├── jasmine.css ├── jasmine.js └── jasmine_favicon.png ├── spec ├── googleTranslate_postProcessTranslation_spec.js ├── googleTranslate_preProcessOriginal_spec.js └── googleTranslate_processPlaceholderSpaces_Spec.js ├── src ├── Changelog.txt ├── _metadata │ └── generated_indexed_rulesets │ │ └── _ruleset1 ├── background.js ├── chrome │ └── manifest.json ├── clipboard-icon.png ├── contentScript.js ├── error-alert.flac ├── error-alert.wav ├── firefox │ └── manifest.json ├── function_list.txt ├── img │ ├── error.svg │ ├── info.svg │ ├── question.svg │ ├── success.svg │ ├── warning-marker.png │ └── warning.svg ├── jsdiff.js ├── jsstore.js ├── jsstore.worker.js ├── list-functions.js ├── locales │ ├── de.json │ ├── en-gb.json │ ├── en.json │ ├── fr.json │ ├── nl-be.json │ ├── nl.json │ ├── ru.json │ └── uk.json ├── manifest.json ├── wptf-block_rules.json ├── wptf-buildstats.js ├── wptf-commonTranslate.js ├── wptf-consistency.js ├── wptf-cute-alert.css ├── wptf-cute-alert.js ├── wptf-database-maintenance.js ├── wptf-database.html ├── wptf-database.js ├── wptf-deeplGloss.html ├── wptf-deeplGloss.js ├── wptf-deeplTrans.js ├── wptf-functions.js ├── wptf-googleTrans.js ├── wptf-importfile.js ├── wptf-inject.js ├── wptf-mark_glossary.js ├── wptf-microsoftTrans.js ├── wptf-openAITrans.js ├── wptf-options.html ├── wptf-options.js ├── wptf-purify.min.js ├── wptf-spellcheck.js └── wptf-style.css └── uploads ├── de ├── export_database_de.csv └── export_verbs_de.csv └── nl ├── export_database_nl.csv ├── export_verbs_nl.csv └── wptf-glossary.csv /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/README.md -------------------------------------------------------------------------------- /SpecRunner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/SpecRunner.html -------------------------------------------------------------------------------- /jasmine-3.6.0/boot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/jasmine-3.6.0/boot.js -------------------------------------------------------------------------------- /jasmine-3.6.0/jasmine-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/jasmine-3.6.0/jasmine-html.js -------------------------------------------------------------------------------- /jasmine-3.6.0/jasmine.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/jasmine-3.6.0/jasmine.css -------------------------------------------------------------------------------- /jasmine-3.6.0/jasmine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/jasmine-3.6.0/jasmine.js -------------------------------------------------------------------------------- /jasmine-3.6.0/jasmine_favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/jasmine-3.6.0/jasmine_favicon.png -------------------------------------------------------------------------------- /spec/googleTranslate_postProcessTranslation_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/spec/googleTranslate_postProcessTranslation_spec.js -------------------------------------------------------------------------------- /spec/googleTranslate_preProcessOriginal_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/spec/googleTranslate_preProcessOriginal_spec.js -------------------------------------------------------------------------------- /spec/googleTranslate_processPlaceholderSpaces_Spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/spec/googleTranslate_processPlaceholderSpaces_Spec.js -------------------------------------------------------------------------------- /src/Changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/src/Changelog.txt -------------------------------------------------------------------------------- /src/_metadata/generated_indexed_rulesets/_ruleset1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/src/_metadata/generated_indexed_rulesets/_ruleset1 -------------------------------------------------------------------------------- /src/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/src/background.js -------------------------------------------------------------------------------- /src/chrome/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/src/chrome/manifest.json -------------------------------------------------------------------------------- /src/clipboard-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/src/clipboard-icon.png -------------------------------------------------------------------------------- /src/contentScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/src/contentScript.js -------------------------------------------------------------------------------- /src/error-alert.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/src/error-alert.flac -------------------------------------------------------------------------------- /src/error-alert.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/src/error-alert.wav -------------------------------------------------------------------------------- /src/firefox/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/src/firefox/manifest.json -------------------------------------------------------------------------------- /src/function_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/src/function_list.txt -------------------------------------------------------------------------------- /src/img/error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/src/img/error.svg -------------------------------------------------------------------------------- /src/img/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/src/img/info.svg -------------------------------------------------------------------------------- /src/img/question.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/src/img/question.svg -------------------------------------------------------------------------------- /src/img/success.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/src/img/success.svg -------------------------------------------------------------------------------- /src/img/warning-marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/src/img/warning-marker.png -------------------------------------------------------------------------------- /src/img/warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/src/img/warning.svg -------------------------------------------------------------------------------- /src/jsdiff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/src/jsdiff.js -------------------------------------------------------------------------------- /src/jsstore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/src/jsstore.js -------------------------------------------------------------------------------- /src/jsstore.worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/src/jsstore.worker.js -------------------------------------------------------------------------------- /src/list-functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/src/list-functions.js -------------------------------------------------------------------------------- /src/locales/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/src/locales/de.json -------------------------------------------------------------------------------- /src/locales/en-gb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/src/locales/en-gb.json -------------------------------------------------------------------------------- /src/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/src/locales/en.json -------------------------------------------------------------------------------- /src/locales/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/src/locales/fr.json -------------------------------------------------------------------------------- /src/locales/nl-be.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/src/locales/nl-be.json -------------------------------------------------------------------------------- /src/locales/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/src/locales/nl.json -------------------------------------------------------------------------------- /src/locales/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/src/locales/ru.json -------------------------------------------------------------------------------- /src/locales/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/src/locales/uk.json -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/wptf-block_rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/src/wptf-block_rules.json -------------------------------------------------------------------------------- /src/wptf-buildstats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/src/wptf-buildstats.js -------------------------------------------------------------------------------- /src/wptf-commonTranslate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/src/wptf-commonTranslate.js -------------------------------------------------------------------------------- /src/wptf-consistency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/src/wptf-consistency.js -------------------------------------------------------------------------------- /src/wptf-cute-alert.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/src/wptf-cute-alert.css -------------------------------------------------------------------------------- /src/wptf-cute-alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/src/wptf-cute-alert.js -------------------------------------------------------------------------------- /src/wptf-database-maintenance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/src/wptf-database-maintenance.js -------------------------------------------------------------------------------- /src/wptf-database.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/src/wptf-database.html -------------------------------------------------------------------------------- /src/wptf-database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/src/wptf-database.js -------------------------------------------------------------------------------- /src/wptf-deeplGloss.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/src/wptf-deeplGloss.html -------------------------------------------------------------------------------- /src/wptf-deeplGloss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/src/wptf-deeplGloss.js -------------------------------------------------------------------------------- /src/wptf-deeplTrans.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/src/wptf-deeplTrans.js -------------------------------------------------------------------------------- /src/wptf-functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/src/wptf-functions.js -------------------------------------------------------------------------------- /src/wptf-googleTrans.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/src/wptf-googleTrans.js -------------------------------------------------------------------------------- /src/wptf-importfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/src/wptf-importfile.js -------------------------------------------------------------------------------- /src/wptf-inject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/src/wptf-inject.js -------------------------------------------------------------------------------- /src/wptf-mark_glossary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/src/wptf-mark_glossary.js -------------------------------------------------------------------------------- /src/wptf-microsoftTrans.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/src/wptf-microsoftTrans.js -------------------------------------------------------------------------------- /src/wptf-openAITrans.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/src/wptf-openAITrans.js -------------------------------------------------------------------------------- /src/wptf-options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/src/wptf-options.html -------------------------------------------------------------------------------- /src/wptf-options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/src/wptf-options.js -------------------------------------------------------------------------------- /src/wptf-purify.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/src/wptf-purify.min.js -------------------------------------------------------------------------------- /src/wptf-spellcheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/src/wptf-spellcheck.js -------------------------------------------------------------------------------- /src/wptf-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/src/wptf-style.css -------------------------------------------------------------------------------- /uploads/de/export_database_de.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/uploads/de/export_database_de.csv -------------------------------------------------------------------------------- /uploads/de/export_verbs_de.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/uploads/de/export_verbs_de.csv -------------------------------------------------------------------------------- /uploads/nl/export_database_nl.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/uploads/nl/export_database_nl.csv -------------------------------------------------------------------------------- /uploads/nl/export_verbs_nl.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/uploads/nl/export_verbs_nl.csv -------------------------------------------------------------------------------- /uploads/nl/wptf-glossary.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibgyj/WPTranslationFiller/HEAD/uploads/nl/wptf-glossary.csv --------------------------------------------------------------------------------