org.languagetool.rules.pt.PortugueseReplaceRule Maven / Gradle / Ivy
/* LanguageTool, a natural language style checker
* Copyright (C) 2005-2015 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.rules.pt;
import org.languagetool.Language;
import org.languagetool.rules.AbstractSimpleReplaceRule;
import org.languagetool.rules.Categories;
import org.languagetool.rules.ITSIssueType;
import org.languagetool.tools.Tools;
import java.util.List;
import java.util.Locale;
import java.util.Map;
import java.util.ResourceBundle;
import java.net.URL;
/**
* A rule that matches words or phrases which should not be used and suggests
* correct ones instead.
*
* @author Marco A.G.Pinto
*/
public class PortugueseReplaceRule extends AbstractSimpleReplaceRule {
public static final String PORTUGUESE_SIMPLE_REPLACE_RULE = "PT_SIMPLE_REPLACE";
private static final Map> wrongWords = loadFromPath("/pt/replace.txt");
private static final Locale PT_LOCALE = new Locale("pt");
@Override
public Map> getWrongWords() {
return wrongWords;
}
public PortugueseReplaceRule(ResourceBundle messages, Language language) {
super(messages, language);
super.setCategory(Categories.STYLE.getCategory(messages));
setLocQualityIssueType(ITSIssueType.LocaleViolation);
useSubRuleSpecificIds();
/*addExamplePair(Example.wrong("device "),
Example.fixed("dispositivo "));*/
}
@Override
public String getId() {
return PORTUGUESE_SIMPLE_REPLACE_RULE;
}
@Override
public String getDescription() {
return "Palavras estrangeiras facilmente confundidas em Português";
}
@Override
public String getShort() {
return "Estrangeirismo";
}
@Override
public String getMessage(String tokenStr, List replacements) {
return "'" + tokenStr + "' é um estrangeirismo. Em Português é mais comum usar: "
+ String.join(", ", replacements) + ".";
}
@Override
public URL getUrl() {
return Tools.getUrl("https://pt.wikipedia.org/wiki/Estrangeirismo");
}
@Override
public boolean isCaseSensitive() {
return false;
}
@Override
public Locale getLocale() {
return PT_LOCALE;
}
}