All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.languagetool.language.BrazilianPortuguese Maven / Gradle / Ivy

There is a newer version: 6.4
Show newest version
/* LanguageTool, a natural language style checker 
 * Copyright (C) 2007 Daniel Naber (http://www.danielnaber.de)
 * 
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301
 * USA
 */
package org.languagetool.language;

import org.languagetool.Language;
import org.languagetool.UserConfig;
import org.languagetool.rules.Rule;
import org.languagetool.rules.pt.*;

import java.io.IOException;
import java.util.*;

public class BrazilianPortuguese extends Portuguese {

  @Override
  public String getName() {
    return "Portuguese (Brazil)";
  }

  @Override
  public List getRelevantRules(ResourceBundle messages, UserConfig userConfig, Language motherTongue, List altLanguages) throws IOException {
    List rules = new ArrayList<>();
    rules.addAll(super.getRelevantRules(messages, userConfig, motherTongue, altLanguages));
    rules.add(new PostReformPortugueseCompoundRule(messages, this, userConfig));
    rules.add(new PostReformPortugueseDashRule(messages));
    rules.add(new BrazilianPortugueseReplaceRule(messages, "/pt/pt-BR/replace.txt", this));
    rules.add(new PortugueseBarbarismsRule(messages, "/pt/pt-BR/barbarisms.txt", this));
    rules.add(new PortugueseArchaismsRule(messages, "/pt/pt-BR/archaisms.txt", this));
    rules.add(new PortugueseClicheRule(messages, "/pt/pt-BR/cliches.txt", this));
    rules.add(new PortugueseRedundancyRule(messages, "/pt/pt-BR/redundancies.txt", this));
    rules.add(new PortugueseWordinessRule(messages, "/pt/pt-BR/wordiness.txt", this));
    rules.add(new PortugueseWikipediaRule(messages, "/pt/pt-BR/wikipedia.txt", this));
    return rules;
  }

  @Override
  public String[] getCountries() {
    return new String[]{"BR"};
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy