Commit 77a4cbbc authored by Seyed Reza  Sajjadinasab's avatar Seyed Reza Sajjadinasab
Browse files

Merge branch 'Reza' into 'master'

updateReadME

See merge request ec504/ec504_projects/group6!64
parents 3c96c9cc e547b73d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -65,7 +65,7 @@ In order to have a checker/corrector that is working properly it needs to proces
- Develop and Android client for your checker. [15%]
    - For the most part, the Android client of the checker is interfacing with the Checker CLI tool to produce its output in a pop-up window on the app. To do this, the Checker tool was modified so that it did not write the checked result to a JSON file (and instead kept it as a JSON string) as well as not require CLI arguments for the script to function. In addition, helper class functions were used to display the output to the user in the app.
- Extend your system to a language in which none of the team members have fluency. [15% per language, up to 3] - 1x
    - We added the ability to crawl Dutch websites by adding a Dutch webpage seed to our crawler. Usage: use `--dutchSeed` argument for the crawler. Additional Dutch websites to crawl can be specified by adding their URLs to a file and using the `--file [filename.txt]` argument for the crawler. Also, for the checker and corrector things are similar to english but you need to usee `--dutch` option.
    - We added the ability to crawl Dutch websites by adding a Dutch webpage seed to our crawler. Usage: use `--dutchSeed` argument for the crawler. Additional Dutch websites to crawl can be specified by adding their URLs to a file and using the `--file [filename.txt]` argument for the crawler. Also, for the checker and corrector things are similar to english but you need to usee `--dutch` option. The same goes for `--turkish` as the second language that we have not proficiency in.
- Provide a reasonable translation from English to another language based on common language structures. [30%] 
    - We added the ability to translation from Dutch to English and from English to Dutch. We accomplished this by crawling a Dutch to English online dictionary and translating the words literally. Usage: use `--dutchDict` argument with crawler to re-crawl the dictionary. For translation we used crawled dictionary and translate the data on both side.`--translateToEnglish` and `--translateToDutch` in corrector will do this.