-
-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- add LanguageToolLanguageManager: Language plugins should register LT language with LanguageToolLanguageManager.registerLTLanguage for supporting module Signed-off-by: Hiroshi Miura <[email protected]>
- Loading branch information
Showing
41 changed files
with
1,523 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 36 additions & 0 deletions
36
languagetools/src/ar/java/org/omegat/languagetool/language/ArabicPlugin.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
/* | ||
* OmegaT - Computer Assisted Translation (CAT) tool | ||
* with fuzzy matching, translation memory, keyword search, | ||
* glossaries, and translation leveraging into updated projects. | ||
* | ||
* Copyright (C) 2023 Hiroshi Miura | ||
* Home page: https://www.omegat.org/ | ||
* Support center: https://omegat.org/support | ||
* | ||
* This file is part of OmegaT. | ||
* | ||
* OmegaT is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* OmegaT 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 General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
package org.omegat.languagetool.language; | ||
|
||
public class ArabicPlugin { | ||
|
||
public static void loadPlugins() { | ||
} | ||
|
||
public static void unloadPlugins() { | ||
} | ||
|
||
} |
36 changes: 36 additions & 0 deletions
36
languagetools/src/ast/java/org/omegat/languagetool/language/AsturianPlugin.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
/* | ||
* OmegaT - Computer Assisted Translation (CAT) tool | ||
* with fuzzy matching, translation memory, keyword search, | ||
* glossaries, and translation leveraging into updated projects. | ||
* | ||
* Copyright (C) 2023 Hiroshi Miura | ||
* Home page: https://www.omegat.org/ | ||
* Support center: https://omegat.org/support | ||
* | ||
* This file is part of OmegaT. | ||
* | ||
* OmegaT is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* OmegaT 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 General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
package org.omegat.languagetool.language; | ||
|
||
public class AsturianPlugin { | ||
|
||
public static void loadPlugins() { | ||
} | ||
|
||
public static void unloadPlugins() { | ||
} | ||
|
||
} |
42 changes: 42 additions & 0 deletions
42
languagetools/src/be/java/org/omegat/languagetool/language/BelarusianPlugin.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
/* | ||
* OmegaT - Computer Assisted Translation (CAT) tool | ||
* with fuzzy matching, translation memory, keyword search, | ||
* glossaries, and translation leveraging into updated projects. | ||
* | ||
* Copyright (C) 2023 Hiroshi Miura | ||
* Home page: https://www.omegat.org/ | ||
* Support center: https://omegat.org/support | ||
* | ||
* This file is part of OmegaT. | ||
* | ||
* OmegaT is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* OmegaT 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 General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
package org.omegat.languagetool.language; | ||
|
||
import org.languagetool.language.Belarusian; | ||
|
||
import org.omegat.languagetools.LanguageToolLanguageManager; | ||
|
||
public class BelarusianPlugin { | ||
|
||
@SuppressWarnings("deprecation") | ||
public static void loadPlugins() { | ||
LanguageToolLanguageManager.registerLTLanguage(new Belarusian()); | ||
} | ||
|
||
public static void unloadPlugins() { | ||
} | ||
|
||
} |
36 changes: 36 additions & 0 deletions
36
languagetools/src/br/java/org/omegat/languagetool/language/BretonPlugin.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
/* | ||
* OmegaT - Computer Assisted Translation (CAT) tool | ||
* with fuzzy matching, translation memory, keyword search, | ||
* glossaries, and translation leveraging into updated projects. | ||
* | ||
* Copyright (C) 2023 Hiroshi Miura | ||
* Home page: https://www.omegat.org/ | ||
* Support center: https://omegat.org/support | ||
* | ||
* This file is part of OmegaT. | ||
* | ||
* OmegaT is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* OmegaT 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 General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
package org.omegat.languagetool.language; | ||
|
||
public class BretonPlugin { | ||
|
||
public static void loadPlugins() { | ||
} | ||
|
||
public static void unloadPlugins() { | ||
} | ||
|
||
} |
36 changes: 36 additions & 0 deletions
36
languagetools/src/ca/java/org/omegat/languagetool/language/CatalanPlugin.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
/* | ||
* OmegaT - Computer Assisted Translation (CAT) tool | ||
* with fuzzy matching, translation memory, keyword search, | ||
* glossaries, and translation leveraging into updated projects. | ||
* | ||
* Copyright (C) 2023 Hiroshi Miura | ||
* Home page: https://www.omegat.org/ | ||
* Support center: https://omegat.org/support | ||
* | ||
* This file is part of OmegaT. | ||
* | ||
* OmegaT is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* OmegaT 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 General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
package org.omegat.languagetool.language; | ||
|
||
public class CatalanPlugin { | ||
|
||
public static void loadPlugins() { | ||
} | ||
|
||
public static void unloadPlugins() { | ||
} | ||
|
||
} |
36 changes: 36 additions & 0 deletions
36
languagetools/src/da/java/org/omegat/languagetool/language/DanishPlugin.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
/* | ||
* OmegaT - Computer Assisted Translation (CAT) tool | ||
* with fuzzy matching, translation memory, keyword search, | ||
* glossaries, and translation leveraging into updated projects. | ||
* | ||
* Copyright (C) 2023 Hiroshi Miura | ||
* Home page: https://www.omegat.org/ | ||
* Support center: https://omegat.org/support | ||
* | ||
* This file is part of OmegaT. | ||
* | ||
* OmegaT is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* OmegaT 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 General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
package org.omegat.languagetool.language; | ||
|
||
public class DanishPlugin { | ||
|
||
public static void loadPlugins() { | ||
} | ||
|
||
public static void unloadPlugins() { | ||
} | ||
|
||
} |
45 changes: 45 additions & 0 deletions
45
languagetools/src/de/java/org/omegat/languagetool/language/GermanPlugin.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
/* | ||
* OmegaT - Computer Assisted Translation (CAT) tool | ||
* with fuzzy matching, translation memory, keyword search, | ||
* glossaries, and translation leveraging into updated projects. | ||
* | ||
* Copyright (C) 2023 Hiroshi Miura | ||
* Home page: https://www.omegat.org/ | ||
* Support center: https://omegat.org/support | ||
* | ||
* This file is part of OmegaT. | ||
* | ||
* OmegaT is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* OmegaT 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 General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
package org.omegat.languagetool.language; | ||
|
||
import org.languagetool.language.AustrianGerman; | ||
import org.languagetool.language.GermanyGerman; | ||
import org.languagetool.language.SwissGerman; | ||
|
||
import org.omegat.languagetools.LanguageToolLanguageManager; | ||
|
||
public class GermanPlugin { | ||
|
||
public static void loadPlugins() { | ||
LanguageToolLanguageManager.registerLTLanguage(new AustrianGerman()); | ||
LanguageToolLanguageManager.registerLTLanguage(new GermanyGerman()); | ||
LanguageToolLanguageManager.registerLTLanguage(new SwissGerman()); | ||
} | ||
|
||
public static void unloadPlugins() { | ||
} | ||
|
||
} |
36 changes: 36 additions & 0 deletions
36
languagetools/src/el/java/org/omegat/languagetool/language/GreekPlugin.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
/* | ||
* OmegaT - Computer Assisted Translation (CAT) tool | ||
* with fuzzy matching, translation memory, keyword search, | ||
* glossaries, and translation leveraging into updated projects. | ||
* | ||
* Copyright (C) 2023 Hiroshi Miura | ||
* Home page: https://www.omegat.org/ | ||
* Support center: https://omegat.org/support | ||
* | ||
* This file is part of OmegaT. | ||
* | ||
* OmegaT is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* OmegaT 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 General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
package org.omegat.languagetool.language; | ||
|
||
public class GreekPlugin { | ||
|
||
public static void loadPlugins() { | ||
} | ||
|
||
public static void unloadPlugins() { | ||
} | ||
|
||
} |
Oops, something went wrong.