6bcf67e051
* chore: add code required to use chromes spellchecker * chore: fix linting * chore: manifests needs buildflags now * chore: add dictionarySuggestions to the context menu event when the spellchecker is active * chore: enable by default for windows builds * chore: add patch to remove incognito usage in the spellchecker * chore: add dependencies on spellcheck common and flags * chore: conditionally include spell check panel impl * chore: fix deps for spellcheck feature flags * chore: add patch for electron resources * chore: add dependency on //components/language/core/browser * chore: patches to make hunspell work on windows * build: collect hunspell dictionaries into a zip file and publish * chore: clean up patches * chore: add docs and set spell checker url method * chore: fix error handling * chore: fix hash logic * build: update hunspell filename generator * fix: default spellchecker list to the current system locale if we can * docs: document the language getter * chore: patch IDS_ resources for linux builds * feat: add spellcheck webpref flag to disable the builtin spellchecker * chore: fix docs typo * chore: clean up spellchecker impl as per feedback * remove unneeded deps
60 lines
3 KiB
Text
60 lines
3 KiB
Text
hunspell_dictionaries = [
|
|
"//third_party/hunspell_dictionaries/af-ZA-3-0.bdic",
|
|
"//third_party/hunspell_dictionaries/bg-BG-3-0.bdic",
|
|
"//third_party/hunspell_dictionaries/ca-ES-3-0.bdic",
|
|
"//third_party/hunspell_dictionaries/cs-CZ-3-0.bdic",
|
|
"//third_party/hunspell_dictionaries/cy-GB-1-0.bdic",
|
|
"//third_party/hunspell_dictionaries/da-DK-3-0.bdic",
|
|
"//third_party/hunspell_dictionaries/de-DE-3-0.bdic",
|
|
"//third_party/hunspell_dictionaries/el-GR-3-0.bdic",
|
|
"//third_party/hunspell_dictionaries/en-AU-8-0.bdic",
|
|
"//third_party/hunspell_dictionaries/en-CA-8-0.bdic",
|
|
"//third_party/hunspell_dictionaries/en-GB-8-0.bdic",
|
|
"//third_party/hunspell_dictionaries/en-US-8-0.bdic",
|
|
"//third_party/hunspell_dictionaries/es-ES-3-0.bdic",
|
|
"//third_party/hunspell_dictionaries/et-EE-3-0.bdic",
|
|
"//third_party/hunspell_dictionaries/fa-IR-8-0.bdic",
|
|
"//third_party/hunspell_dictionaries/fo-FO-3-0.bdic",
|
|
"//third_party/hunspell_dictionaries/fr-FR-3-0.bdic",
|
|
"//third_party/hunspell_dictionaries/he-IL-3-0.bdic",
|
|
"//third_party/hunspell_dictionaries/hi-IN-3-0.bdic",
|
|
"//third_party/hunspell_dictionaries/hr-HR-3-0.bdic",
|
|
"//third_party/hunspell_dictionaries/hu-HU-3-0.bdic",
|
|
"//third_party/hunspell_dictionaries/hy-1-0.bdic",
|
|
"//third_party/hunspell_dictionaries/id-ID-3-0.bdic",
|
|
"//third_party/hunspell_dictionaries/it-IT-3-0.bdic",
|
|
"//third_party/hunspell_dictionaries/ko-3-0.bdic",
|
|
"//third_party/hunspell_dictionaries/lt-LT-3-0.bdic",
|
|
"//third_party/hunspell_dictionaries/lv-LV-3-0.bdic",
|
|
"//third_party/hunspell_dictionaries/nb-NO-3-0.bdic",
|
|
"//third_party/hunspell_dictionaries/nl-NL-3-0.bdic",
|
|
"//third_party/hunspell_dictionaries/pl-PL-3-0.bdic",
|
|
"//third_party/hunspell_dictionaries/pt-BR-3-0.bdic",
|
|
"//third_party/hunspell_dictionaries/pt-PT-3-0.bdic",
|
|
"//third_party/hunspell_dictionaries/ro-RO-3-0.bdic",
|
|
"//third_party/hunspell_dictionaries/ru-RU-3-0.bdic",
|
|
"//third_party/hunspell_dictionaries/sh-3-0.bdic",
|
|
"//third_party/hunspell_dictionaries/sh-4-0.bdic",
|
|
"//third_party/hunspell_dictionaries/sk-SK-3-0.bdic",
|
|
"//third_party/hunspell_dictionaries/sl-SI-3-0.bdic",
|
|
"//third_party/hunspell_dictionaries/sq-3-0.bdic",
|
|
"//third_party/hunspell_dictionaries/sr-3-0.bdic",
|
|
"//third_party/hunspell_dictionaries/sr-4-0.bdic",
|
|
"//third_party/hunspell_dictionaries/sv-SE-3-0.bdic",
|
|
"//third_party/hunspell_dictionaries/ta-IN-3-0.bdic",
|
|
"//third_party/hunspell_dictionaries/tg-TG-5-0.bdic",
|
|
"//third_party/hunspell_dictionaries/tr-TR-4-0.bdic",
|
|
"//third_party/hunspell_dictionaries/uk-UA-3-0.bdic",
|
|
"//third_party/hunspell_dictionaries/vi-VN-3-0.bdic",
|
|
"//third_party/hunspell_dictionaries/xx-XX-3-0.bdic",
|
|
]
|
|
|
|
hunspell_licenses = [
|
|
"//third_party/hunspell_dictionaries/COPYING",
|
|
"//third_party/hunspell_dictionaries/COPYING.Apache",
|
|
"//third_party/hunspell_dictionaries/COPYING.LESSER",
|
|
"//third_party/hunspell_dictionaries/COPYING.LGPL",
|
|
"//third_party/hunspell_dictionaries/COPYING.MIT",
|
|
"//third_party/hunspell_dictionaries/COPYING.MPL",
|
|
"//third_party/hunspell_dictionaries/LICENSE",
|
|
]
|