org.languagetool.rules.pt.PortugueseArchaismsRule Maven / Gradle / Ivy
/* LanguageTool, a natural language style checker
* Copyright (C) 2005 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.ITSIssueType;
import org.languagetool.tools.Tools;
import java.net.URL;
import java.util.*;
/**
* A rule that matches words which should not be used and suggests correct ones instead.
* Romanian implementations. Loads the list of words from
* /ro/replace.txt
.
*
* @author Tiago F. Santos (localized from romanian)
* @since 3.6
*/
public class PortugueseArchaismsRule extends AbstractSimpleReplaceRule2 {
public static final String PT_ARCHAISMS_REPLACE = "PT_ARCHAISMS_REPLACE";
private static final Locale PT_LOCALE = new Locale("pt"); // locale used on case-conversion
private final String path;
@Override
public final List getFileNames() {
return Collections.singletonList(path);
}
public PortugueseArchaismsRule(ResourceBundle messages, String path, Language language) {
super(messages, language);
this.path = Objects.requireNonNull(path);
setCategory(Categories.STYLE.getCategory(messages));
setLocQualityIssueType(ITSIssueType.LocaleViolation);
//addExamplePair(Example.wrong("câmera "), // TODO
// Example.fixed("câmara "));
this.useSubRuleSpecificIds();
}
@Override
public String getId() {
return PT_ARCHAISMS_REPLACE;
}
@Override
public String getDescription() {
return "Palavras arcaicas evitáveis";
}
@Override
public String getShort() {
return "Arcaísmo";
}
@Override
public String getMessage() {
return "\"$match\" é um arcaísmo. É preferível dizer $suggestions.";
}
@Override
public String getSuggestionsSeparator() {
return " ou ";
}
@Override
public URL getUrl() {
return Tools.getUrl("https://pt.wikipedia.org/wiki/Arca%C3%ADsmo");
}
@Override
public Locale getLocale() {
return PT_LOCALE;
}
}