Skip to content
This repository has been archived by the owner on Aug 10, 2021. It is now read-only.

nuald/thb-gramchecker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

84 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Thunderbird Grammar Checker

REPLACED BY https://addons.thunderbird.net/en-US/thunderbird/addon/grammar-and-spell-checker/

Thunderbird add-on for checking grammar using LanguageTool.

Official Thunderbird Grammar Checker add-on: https://addons.thunderbird.net/thunderbird/addon/grammar-checker/

Supported languages: Asturian (ast), Belarusian (be), Breton (br), Catalan (ca), Danish (da), German (de), Greek (el), English (en), Esperanto (eo), Spanish (es), Persian (fa), French (fr), Galician (gl), Italian (it), Japanese (ja), Khmer (km), Dutch (nl), Polish (pl), Portuguese (pt), Romanian (ro), Russian (ru), Slovak (sk), Slovenian (sl), Swedish (sv), Tamil (ta), Tagalog (tl), Ukrainian (uk), Chinese (zh).

Quick Start

The add-on uses either a local LanguageTool server (recommended) or the public one. Please note that the public server has the certain restrictions: Public HTTP API.

To use the local server, please download the stand-alone version for the desktop, unpack and run it as described here: HTTP Server.

The sample instructions:

$ wget https://languagetool.org/download/LanguageTool-4.6.zip
$ unzip LanguageTool-4.6.zip
$ cd LanguageTool-4.6
$ java -cp languagetool-server.jar org.languagetool.server.HTTPServer --port 8081

Development

In general, please follow the Thunderbird extensions official documentations. There are several Gradle tasks specified to make the development easier:

  • Run ESLint check for the JS files: gradle eslint
  • Run unit-tests: gradle test
  • Build the XPI file for the deployment: gradle build