org.languagetool.rules.pt.PortugueseWikipediaRule 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.language.Portuguese;
import org.languagetool.rules.AbstractSimpleReplaceRule2;
import org.languagetool.rules.Categories;
import org.languagetool.rules.Example;
import org.languagetool.rules.ITSIssueType;
import org.languagetool.tools.Tools;
import java.util.*;
import java.net.URL;
/**
* A rule that matches common Wikipedia errors.
* Portuguese implementations. Loads the list of words from
* /pt/wikipedia.txt
.
*
* @author Tiago F. Santos
* @since 3.6
*/
public class PortugueseWikipediaRule extends AbstractSimpleReplaceRule2 {
public static final String WIKIPEDIA_COMMON_ERRORS = "PT_WIKIPEDIA_COMMON_ERRORS";
private static final Locale PT_LOCALE = new Locale("pt");// locale used on case-conversion
private final String path;
@Override
public List getFileNames() {
return Collections.singletonList(path);
}
public PortugueseWikipediaRule(ResourceBundle messages, String path, Language language) {
super(messages, language);
this.path = Objects.requireNonNull(path);
setCategory(Categories.WIKIPEDIA.getCategory(messages));
setLocQualityIssueType(ITSIssueType.Grammar);
useSubRuleSpecificIds();
// gradually making this rule obsolete, we've removed tests and also this example pair
// addExamplePair(Example.wrong("mais também "),
// Example.fixed("mas também "));
}
@Override
public String getId() {
return WIKIPEDIA_COMMON_ERRORS;
}
@Override
public String getDescription() {
return "Erros frequentes nos artigos da Wikipédia: $match";
}
@Override
public String getShort() {
return "Erro gramatical ou de normativa";
}
@Override
public String getMessage() {
return "Possível erro em \"$match\". Prefira $suggestions";
}
@Override
public String getSuggestionsSeparator() {
return " ou ";
}
@Override
public URL getUrl() {
return Tools.getUrl("https://pt.wikipedia.org/wiki/Wikip%C3%A9dia:Lista_de_erros_comuns/M%C3%A1quinas");
}
@Override
public Locale getLocale() {
return PT_LOCALE;
}
}