Add pt-BR spell checker

This commit is contained in:
rodrigo
2018-07-30 13:28:53 -03:00
parent 9e0239097a
commit f2d6cd383c
5 changed files with 11 additions and 4 deletions

View File

@@ -23,6 +23,9 @@ describe('main/Spellchecker.js', function() {
SpellChecker.getSpellCheckerLocale('nl').should.equal('nl-NL');
SpellChecker.getSpellCheckerLocale('nl-NL').should.equal('nl-NL');
SpellChecker.getSpellCheckerLocale('pt').should.equal('pt-BR');
SpellChecker.getSpellCheckerLocale('pt-BR').should.equal('pt-BR');
SpellChecker.getSpellCheckerLocale('ja').should.equal('en-US');
SpellChecker.getSpellCheckerLocale('ja-JP').should.equal('en-US');
});