Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[de] merged spelling.txt into hunspell/morfologik dictionaries #1227

Merged
merged 5 commits into from Oct 24, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
@@ -1,55 +1,56 @@
/* LanguageTool, a natural language style checker
* Copyright (C) 2012 Marcin Miłkowski (http://www.languagetool.org)
*
* 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.de;

import java.io.IOException;
import java.util.ResourceBundle;

import org.languagetool.Language;
import org.languagetool.UserConfig;
import org.languagetool.rules.Example;
import org.languagetool.rules.spelling.morfologik.MorfologikSpellerRule;

/**
* Spell checker rule that, unlike {@link GermanSpellerRule}, does not support compounds
* (except those listed in the dictionary of course).
*/
public final class MorfologikGermanyGermanSpellerRule extends MorfologikSpellerRule {

private static final String RESOURCE_FILENAME = "/de/hunspell/de_DE.dict";

public MorfologikGermanyGermanSpellerRule(ResourceBundle messages,
Language language, UserConfig userConfig) throws IOException {
super(messages, language, userConfig);
addExamplePair(Example.wrong("LanguageTool kann mehr als eine <marker>nromale</marker> Rechtschreibprüfung."),
Example.fixed("LanguageTool kann mehr als eine <marker>normale</marker> Rechtschreibprüfung."));
}

@Override
public String getFileName() {
return RESOURCE_FILENAME;
}

@Override
public String getId() {
return "MORFOLOGIK_RULE_DE_DE";
}

}
/* LanguageTool, a natural language style checker
* Copyright (C) 2012 Marcin Miłkowski (http://www.languagetool.org)
*
* 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.de;

import java.io.IOException;
import java.util.ResourceBundle;

import org.languagetool.Language;
import org.languagetool.UserConfig;
import org.languagetool.rules.Example;
import org.languagetool.rules.spelling.morfologik.MorfologikSpellerRule;

/**
* Spell checker rule that, unlike {@link GermanSpellerRule}, does not support compounds
* (except those listed in the dictionary of course).
* @deprecated since 4.4, use GermanSpellerRule
*/
public final class MorfologikGermanyGermanSpellerRule extends MorfologikSpellerRule {

private static final String RESOURCE_FILENAME = "/de/hunspell/de_DE.dict";

public MorfologikGermanyGermanSpellerRule(ResourceBundle messages,
Language language, UserConfig userConfig) throws IOException {
super(messages, language, userConfig);
addExamplePair(Example.wrong("LanguageTool kann mehr als eine <marker>nromale</marker> Rechtschreibprüfung."),
Example.fixed("LanguageTool kann mehr als eine <marker>normale</marker> Rechtschreibprüfung."));
}

@Override
public String getFileName() {
return RESOURCE_FILENAME;
}

@Override
public String getId() {
return "MORFOLOGIK_RULE_DE_DE";
}

}