1
0
Fork 0

Language improvements

* fixed some English words always appearing in small letters, when some should be capitalized (I, Friday, December, etc...)"

* fixed Bulgarian words that should have been capitalized, but were not

* fixed mixed case suggestions priority not updating

* optimized dictionary loading (it's more than 2x faster now)

* fixed the last words of dictionaries not being loaded
This commit is contained in:
sspanak 2022-12-15 11:27:01 +02:00
parent 8888485f70
commit 759317dce1
11 changed files with 25342 additions and 23472 deletions

View file

@ -8,7 +8,7 @@ const GEO_NAME = /[A-Z]\w+\-[^\n]+/;
function printHelp() {
console.log(`Usage ${basename(process.argv[1])} LOCALE FILENAME.txt `);
console.log('Removes repeating words from a word list');
console.log('\nLocale could any valid JS locale, for exmaple: en, en-US, etc...');
console.log('\nLocale could be any valid JS locale, for exmaple: en, en-US, etc...');
}