├── .gitignore ├── uninstall.sh ├── src ├── config │ ├── plasma-runner-translator_config.desktop │ ├── translator_config.h │ ├── translator_config.cpp │ └── translator_config.ui ├── translator.json ├── languages.cpp ├── api │ └── CommandLineEngine.h ├── provider │ ├── Bing.h │ ├── GoogleTranslate.h │ ├── baidu.h │ ├── GoogleTranslate.cpp │ ├── Bing.cpp │ ├── youdao.h │ ├── baidu.cpp │ └── youdao.cpp ├── LanguageRepository.h ├── translateShellProcess.h ├── languages.h ├── translator.h ├── translateShellProcess.cpp ├── SupportedLanguages.h ├── translator.cpp └── LanguageRepository.cpp ├── install.sh ├── CMakeLists.txt ├── README.md └── COPYING /.gitignore: -------------------------------------------------------------------------------- 1 | *.kdev4 2 | build/ 3 | .idea/ 4 | cmake-build*/ 5 | compile_commands.json 6 | -------------------------------------------------------------------------------- /uninstall.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Exit immediately if something fails 4 | set -e 5 | 6 | cd build 7 | sudo make uninstall 8 | kquitapp5 krunner 2> /dev/null; kstart5 --windowclass krunner krunner > /dev/null 2>&1 & 9 | 10 | -------------------------------------------------------------------------------- /src/config/plasma-runner-translator_config.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Type=Service 3 | X-KDE-ServiceTypes=KCModule 4 | X-KDE-Library=kcm_krunner_translator 5 | X-KDE-ParentComponents=Translator 6 | X-KDE-PluginKeyword=kcm_krunner_translator 7 | 8 | Name=Translator 9 | -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -e 4 | 5 | mkdir -p build 6 | cd build 7 | 8 | cmake .. -DCMAKE_INSTALL_PREFIX=`kf5-config --prefix` -DKDE_INSTALL_QTPLUGINDIR=`kf5-config --qt-plugins` -DCMAKE_BUILD_TYPE=Release 9 | make -j$(nproc) 10 | 11 | sudo make install 12 | 13 | kquitapp5 krunner 2> /dev/null 14 | -------------------------------------------------------------------------------- /src/translator.json: -------------------------------------------------------------------------------- 1 | { 2 | "KPlugin": { 3 | "Authors": [ 4 | { 5 | "Email": "david.baum@naraesk.eu", 6 | "Name": "David Baum" 7 | } 8 | ], 9 | "Description": "Translates into any language", 10 | "EnabledByDefault": true, 11 | "Icon": "applications-education-language", 12 | "Id": "Translator", 13 | "License": "GPL", 14 | "Name": "Translator", 15 | "Version": "1.5.0" 16 | }, 17 | "X-Plasma-AdvertiseSingleRunnerQueryMode": true 18 | } 19 | -------------------------------------------------------------------------------- /src/languages.cpp: -------------------------------------------------------------------------------- 1 | /****************************************************************************** 2 | * Copyright (C) 2013 – 2020 by David Baum * 3 | * * 4 | * This library is free software; you can redistribute it and/or modify * 5 | * it under the terms of the GNU Lesser General Public License as published * 6 | * by the Free Software Foundation; either version 2 of the License or (at * 7 | * your option) any later version. * 8 | * * 9 | * This library is distributed in the hope that it will be useful, * 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of * 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * 12 | * Library General Public License for more details. * 13 | * * 14 | * You should have received a copy of the GNU Lesser General Public License * 15 | * along with this library; see the file COPYING.LIB. * 16 | * If not, see . * 17 | *****************************************************************************/ 18 | 19 | #include "languages.h" 20 | 21 | Language::Language(SupportedLanguage language, QString name, QString abbreviation) 22 | : name(name), abbreviation(abbreviation){ 23 | Q_UNUSED(language) 24 | } 25 | 26 | QString Language::getCombinedName() { 27 | return name + QStringLiteral(" (") + abbreviation + QStringLiteral(")"); 28 | } 29 | 30 | QString Language::getAbbreviation() { 31 | return abbreviation; 32 | } 33 | -------------------------------------------------------------------------------- /src/api/CommandLineEngine.h: -------------------------------------------------------------------------------- 1 | /****************************************************************************** 2 | * Copyright (C) 2013 – 2020 by David Baum * 3 | * * 4 | * This library is free software; you can redistribute it and/or modify * 5 | * it under the terms of the GNU Lesser General Public License as published * 6 | * by the Free Software Foundation; either version 2 of the License or (at * 7 | * your option) any later version. * 8 | * * 9 | * This library is distributed in the hope that it will be useful, * 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of * 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * 12 | * Library General Public License for more details. * 13 | * * 14 | * You should have received a copy of the GNU Lesser General Public License * 15 | * along with this library; see the file COPYING.LIB. * 16 | * If not, see . * 17 | *****************************************************************************/ 18 | 19 | #ifndef RUNNERTRANSLATOR_COMMANDLINEENGINE_H 20 | #define RUNNERTRANSLATOR_COMMANDLINEENGINE_H 21 | 22 | #include 23 | 24 | class CommandLineEngine { 25 | public: 26 | virtual Plasma::QueryMatch translate(const QString &text, const QPair &language) = 0; 27 | 28 | virtual ~CommandLineEngine() {}; 29 | }; 30 | 31 | 32 | #endif //RUNNERTRANSLATOR_COMMANDLINEENGINE_H 33 | -------------------------------------------------------------------------------- /src/provider/Bing.h: -------------------------------------------------------------------------------- 1 | /****************************************************************************** 2 | * Copyright (C) 2013 – 2020 by David Baum * 3 | * * 4 | * This library is free software; you can redistribute it and/or modify * 5 | * it under the terms of the GNU Lesser General Public License as published * 6 | * by the Free Software Foundation; either version 2 of the License or (at * 7 | * your option) any later version. * 8 | * * 9 | * This library is distributed in the hope that it will be useful, * 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of * 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * 12 | * Library General Public License for more details. * 13 | * * 14 | * You should have received a copy of the GNU Lesser General Public License * 15 | * along with this library; see the file COPYING.LIB. * 16 | * If not, see . * 17 | *****************************************************************************/ 18 | 19 | #ifndef RUNNERTRANSLATOR_BING_H 20 | #define RUNNERTRANSLATOR_BING_H 21 | 22 | #include 23 | #include 24 | 25 | class Bing : public CommandLineEngine { 26 | public: 27 | explicit Bing(Plasma::AbstractRunner*); 28 | ~Bing() override; 29 | Plasma::QueryMatch translate(const QString &text, const QPair &language) override; 30 | 31 | private: 32 | Plasma::QueryMatch match; 33 | }; 34 | 35 | #endif //RUNNERTRANSLATOR_BING_H 36 | -------------------------------------------------------------------------------- /src/provider/GoogleTranslate.h: -------------------------------------------------------------------------------- 1 | /****************************************************************************** 2 | * Copyright (C) 2013 – 2020 by David Baum * 3 | * * 4 | * This library is free software; you can redistribute it and/or modify * 5 | * it under the terms of the GNU Lesser General Public License as published * 6 | * by the Free Software Foundation; either version 2 of the License or (at * 7 | * your option) any later version. * 8 | * * 9 | * This library is distributed in the hope that it will be useful, * 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of * 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * 12 | * Library General Public License for more details. * 13 | * * 14 | * You should have received a copy of the GNU Lesser General Public License * 15 | * along with this library; see the file COPYING.LIB. * 16 | * If not, see . * 17 | *****************************************************************************/ 18 | 19 | #ifndef RUNNERTRANSLATOR_GOOGLETRANSLATE_H 20 | #define RUNNERTRANSLATOR_GOOGLETRANSLATE_H 21 | 22 | #include 23 | #include 24 | 25 | class GoogleTranslate : public CommandLineEngine { 26 | 27 | public: 28 | explicit GoogleTranslate(Plasma::AbstractRunner*); 29 | ~GoogleTranslate() override; 30 | Plasma::QueryMatch translate(const QString &text, const QPair &language) override; 31 | 32 | private: 33 | Plasma::QueryMatch match; 34 | }; 35 | 36 | #endif //RUNNERTRANSLATOR_GOOGLETRANSLATE_H 37 | -------------------------------------------------------------------------------- /src/LanguageRepository.h: -------------------------------------------------------------------------------- 1 | /****************************************************************************** 2 | * Copyright (C) 2013 – 2020 by David Baum * 3 | * * 4 | * This library is free software; you can redistribute it and/or modify * 5 | * it under the terms of the GNU Lesser General Public License as published * 6 | * by the Free Software Foundation; either version 2 of the License or (at * 7 | * your option) any later version. * 8 | * * 9 | * This library is distributed in the hope that it will be useful, * 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of * 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * 12 | * Library General Public License for more details. * 13 | * * 14 | * You should have received a copy of the GNU Lesser General Public License * 15 | * along with this library; see the file COPYING.LIB. * 16 | * If not, see . * 17 | *****************************************************************************/ 18 | 19 | #ifndef RUNNERTRANSLATOR_LANGUAGEREPOSITORY_H 20 | #define RUNNERTRANSLATOR_LANGUAGEREPOSITORY_H 21 | 22 | #include "languages.h" 23 | 24 | class LanguageRepository { 25 | public: 26 | void addSupportedLanguage(SupportedLanguage language, QString name, QString abbreviation); 27 | 28 | void initialize(); 29 | 30 | QList getSupportedLanguages(); 31 | 32 | bool containsAbbreviation(QString abbreviation); 33 | 34 | QString getCombinedName(QString abbreviation); 35 | 36 | private: 37 | QMap *supportedLanguages = new QMap; 38 | }; 39 | 40 | #endif //RUNNERTRANSLATOR_LANGUAGEREPOSITORY_H 41 | -------------------------------------------------------------------------------- /src/translateShellProcess.h: -------------------------------------------------------------------------------- 1 | /****************************************************************************** 2 | * Copyright (C) 2013 – 2020 by David Baum * 3 | * * 4 | * This library is free software; you can redistribute it and/or modify * 5 | * it under the terms of the GNU Lesser General Public License as published * 6 | * by the Free Software Foundation; either version 2 of the License or (at * 7 | * your option) any later version. * 8 | * * 9 | * This library is distributed in the hope that it will be useful, * 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of * 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * 12 | * Library General Public License for more details. * 13 | * * 14 | * You should have received a copy of the GNU Lesser General Public License * 15 | * along with this library; see the file COPYING.LIB. * 16 | * If not, see . * 17 | *****************************************************************************/ 18 | 19 | #ifndef RUNNERTRANSLATOR_TRANSLATESHELLPROCESS_H 20 | #define RUNNERTRANSLATOR_TRANSLATESHELLPROCESS_H 21 | 22 | #include 23 | #include 24 | 25 | class TranslateShellProcess : public QProcess 26 | { 27 | Q_OBJECT 28 | public: 29 | explicit TranslateShellProcess( QObject *parent = 0); 30 | explicit TranslateShellProcess(const QString &engine, QObject *parent = 0); 31 | ~TranslateShellProcess() override; 32 | 33 | public Q_SLOTS: 34 | QString translate(const QPair &language, const QString &text); 35 | void play(const QString &text); 36 | private: 37 | QString engine = "google"; 38 | }; 39 | 40 | #endif //RUNNERTRANSLATOR_TRANSLATESHELLPROCESS_H 41 | -------------------------------------------------------------------------------- /src/languages.h: -------------------------------------------------------------------------------- 1 | /****************************************************************************** 2 | * Copyright (C) 2013 – 2020 by David Baum * 3 | * * 4 | * This library is free software; you can redistribute it and/or modify * 5 | * it under the terms of the GNU Lesser General Public License as published * 6 | * by the Free Software Foundation; either version 2 of the License or (at * 7 | * your option) any later version. * 8 | * * 9 | * This library is distributed in the hope that it will be useful, * 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of * 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * 12 | * Library General Public License for more details. * 13 | * * 14 | * You should have received a copy of the GNU Lesser General Public License * 15 | * along with this library; see the file COPYING.LIB. * 16 | * If not, see . * 17 | *****************************************************************************/ 18 | 19 | #ifndef RUNNERTRANSLATOR_LANGUAGES_H 20 | #define RUNNERTRANSLATOR_LANGUAGES_H 21 | 22 | 23 | #include 24 | #include 25 | #include 26 | #include "SupportedLanguages.h" 27 | 28 | class Language { 29 | 30 | public: 31 | Language() = default; 32 | 33 | ~Language() = default; 34 | 35 | Language(SupportedLanguage language, QString name, QString abbreviation); 36 | 37 | Language(Language const &language) = default; 38 | 39 | QString getCombinedName(); 40 | 41 | QString getAbbreviation(); 42 | 43 | private: 44 | QString name; 45 | QString abbreviation; 46 | }; 47 | 48 | Q_DECLARE_METATYPE(Language) 49 | 50 | #endif //RUNNERTRANSLATOR_LANGUAGES_H 51 | -------------------------------------------------------------------------------- /src/provider/baidu.h: -------------------------------------------------------------------------------- 1 | /****************************************************************************** 2 | * Copyright (C) 2020 by P3psi Boo * 3 | * * 4 | * This library is free software; you can redistribute it and/or modify * 5 | * it under the terms of the GNU Lesser General Public License as published * 6 | * by the Free Software Foundation; either version 2 of the License or (at * 7 | * your option) any later version. * 8 | * * 9 | * This library is distributed in the hope that it will be useful, * 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of * 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * 12 | * Library General Public License for more details. * 13 | * * 14 | * You should have received a copy of the GNU Lesser General Public License * 15 | * along with this library; see the file COPYING.LIB. * 16 | * If not, see . * 17 | *****************************************************************************/ 18 | 19 | #ifndef BAIDU_H 20 | #define BAIDU_H 21 | 22 | #include 23 | #include 24 | 25 | /** 26 | * API Implementation for Baidu http://provider.fanyi.baidu.com/doc/21/) 27 | */ 28 | 29 | class Baidu : public QObject 30 | { 31 | 32 | Q_OBJECT 33 | 34 | public: 35 | Baidu(Plasma::AbstractRunner*, Plasma::RunnerContext&, const QString &, const QPair &, const QString &, const QString &); 36 | 37 | private Q_SLOTS: 38 | void parseResult(QNetworkReply*); 39 | 40 | Q_SIGNALS: 41 | void finished(); 42 | 43 | private: 44 | Plasma::AbstractRunner * m_runner; 45 | QNetworkAccessManager * m_manager; 46 | Plasma::RunnerContext m_context; 47 | QString langMapper(QString); 48 | }; 49 | 50 | #endif 51 | -------------------------------------------------------------------------------- /src/provider/GoogleTranslate.cpp: -------------------------------------------------------------------------------- 1 | /****************************************************************************** 2 | * Copyright (C) 2013 – 2020 by David Baum * 3 | * * 4 | * This library is free software; you can redistribute it and/or modify * 5 | * it under the terms of the GNU Lesser General Public License as published * 6 | * by the Free Software Foundation; either version 2 of the License or (at * 7 | * your option) any later version. * 8 | * * 9 | * This library is distributed in the hope that it will be useful, * 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of * 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * 12 | * Library General Public License for more details. * 13 | * * 14 | * You should have received a copy of the GNU Lesser General Public License * 15 | * along with this library; see the file COPYING.LIB. * 16 | * If not, see . * 17 | *****************************************************************************/ 18 | 19 | #include "GoogleTranslate.h" 20 | #include "src/translateShellProcess.h" 21 | 22 | GoogleTranslate::GoogleTranslate(Plasma::AbstractRunner *runner) 23 | : match(runner) { 24 | } 25 | 26 | Plasma::QueryMatch GoogleTranslate::translate(const QString &text, const QPair &language) { 27 | TranslateShellProcess process; 28 | QString result = process.translate(language, text); 29 | match.setData(QStringLiteral("audio")); 30 | match.setType(Plasma::QueryMatch::ExactMatch); 31 | match.setIcon(QIcon::fromTheme(QStringLiteral("applications-education-language"))); 32 | match.setText(result); 33 | match.setMultiLine(true); 34 | match.setSubtext(QStringLiteral("Google Translate")); 35 | match.setRelevance(1); 36 | return match; 37 | } 38 | 39 | GoogleTranslate::~GoogleTranslate() = default; 40 | -------------------------------------------------------------------------------- /src/provider/Bing.cpp: -------------------------------------------------------------------------------- 1 | /****************************************************************************** 2 | * Copyright (C) 2013 – 2020 by David Baum * 3 | * * 4 | * This library is free software; you can redistribute it and/or modify * 5 | * it under the terms of the GNU Lesser General Public License as published * 6 | * by the Free Software Foundation; either version 2 of the License or (at * 7 | * your option) any later version. * 8 | * * 9 | * This library is distributed in the hope that it will be useful, * 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of * 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * 12 | * Library General Public License for more details. * 13 | * * 14 | * You should have received a copy of the GNU Lesser General Public License * 15 | * along with this library; see the file COPYING.LIB. * 16 | * If not, see . * 17 | *****************************************************************************/ 18 | 19 | #include "Bing.h" 20 | #include "src/translateShellProcess.h" 21 | 22 | Bing::Bing(Plasma::AbstractRunner *runner) 23 | : match(runner) { 24 | } 25 | 26 | Plasma::QueryMatch Bing::translate(const QString &text, const QPair &language) { 27 | TranslateShellProcess process("bing"); 28 | QString result = process.translate(language, text); 29 | if (result == "\n") { // empty result 30 | match.setType(Plasma::QueryMatch::NoMatch); 31 | } else { 32 | match.setData(QStringLiteral("audio")); 33 | match.setType(Plasma::QueryMatch::ExactMatch); 34 | match.setIcon(QIcon::fromTheme(QStringLiteral("applications-education-language"))); 35 | match.setText(result); 36 | match.setMultiLine(true); 37 | match.setSubtext(QStringLiteral("Bing")); 38 | match.setRelevance(1); 39 | } 40 | return match; 41 | } 42 | 43 | Bing::~Bing() = default; 44 | -------------------------------------------------------------------------------- /src/provider/youdao.h: -------------------------------------------------------------------------------- 1 | /****************************************************************************** 2 | * Copyright (C) 2020 by P3psi Boo * 3 | * * 4 | * This library is free software; you can redistribute it and/or modify * 5 | * it under the terms of the GNU Lesser General Public License as published * 6 | * by the Free Software Foundation; either version 2 of the License or (at * 7 | * your option) any later version. * 8 | * * 9 | * This library is distributed in the hope that it will be useful, * 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of * 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * 12 | * Library General Public License for more details. * 13 | * * 14 | * You should have received a copy of the GNU Lesser General Public License * 15 | * along with this library; see the file COPYING.LIB. * 16 | * If not, see . * 17 | *****************************************************************************/ 18 | 19 | #ifndef YOUDAO_H 20 | #define YOUDAO_H 21 | 22 | #include 23 | #include 24 | 25 | /** 26 | * API Implementation for Youdao https://ai.youdao.com/DOCSIRMA/html/%E8%87%AA%E7%84%B6%E8%AF%AD%E8%A8%80%E7%BF%BB%E8%AF%91/API%E6%96%87%E6%A1%A3/%E6%96%87%E6%9C%AC%E7%BF%BB%E8%AF%91%E6%9C%8D%E5%8A%A1/%E6%96%87%E6%9C%AC%E7%BF%BB%E8%AF%91%E6%9C%8D%E5%8A%A1-API%E6%96%87%E6%A1%A3.html) 27 | */ 28 | 29 | class Youdao : public QObject 30 | { 31 | 32 | Q_OBJECT 33 | 34 | public: 35 | Youdao(Plasma::AbstractRunner*, Plasma::RunnerContext&, const QString &, const QPair &, const QString &, const QString &); 36 | 37 | private Q_SLOTS: 38 | void parseResult(QNetworkReply*); 39 | 40 | Q_SIGNALS: 41 | void finished(); 42 | 43 | private: 44 | Plasma::AbstractRunner * m_runner; 45 | QNetworkAccessManager * m_manager; 46 | Plasma::RunnerContext m_context; 47 | QString langMapper(QString); 48 | }; 49 | 50 | #endif 51 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12) 2 | project(RunnerTranslator) 3 | 4 | set(KF5_MIN_VERSION 5.72.0) 5 | find_package(ECM ${KF5_MIN_VERSION} REQUIRED NO_MODULE) 6 | set (CMAKE_MODULE_PATH 7 | ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR} ${CMAKE_MODULE_PATH} 8 | ) 9 | 10 | 11 | # Find the required Libaries 12 | find_package (Qt5 ${QT_MIN_VERSION} REQUIRED CONFIG COMPONENTS Widgets Core Network Quick QuickWidgets) 13 | find_package (KF5 ${KF5_MIN_VERSION} REQUIRED COMPONENTS I18n Service Runner TextWidgets ConfigWidgets PlasmaQuick) 14 | 15 | include(KDEInstallDirs) 16 | include(KDECMakeSettings) 17 | include(KDECompilerSettings NO_POLICY_SCOPE) 18 | 19 | set(krunner_translator_SRCS 20 | src/translator.cpp 21 | src/provider/baidu.cpp 22 | src/provider/youdao.cpp 23 | src/provider/GoogleTranslate.cpp src/provider/GoogleTranslate.h src/translateShellProcess.cpp src/translateShellProcess.h src/provider/Bing.cpp src/provider/Bing.h 24 | src/LanguageRepository.cpp src/LanguageRepository.h 25 | src/languages.cpp src/languages.h src/SupportedLanguages.h) 26 | 27 | set(kcm_krunner_translator_SRCS 28 | src/config/translator_config.cpp 29 | src/api/CommandLineEngine.h src/languages.cpp src/languages.h src/LanguageRepository.cpp src/LanguageRepository.h) 30 | 31 | ki18n_wrap_ui(kcm_krunner_translator_SRCS src/config/translator_config.ui) 32 | add_library(kcm_krunner_translator MODULE ${kcm_krunner_translator_SRCS}) 33 | target_link_libraries(kcm_krunner_translator 34 | Qt5::Core 35 | Qt5::Gui 36 | KF5::CoreAddons 37 | KF5::ConfigCore 38 | KF5::I18n 39 | KF5::ConfigWidgets 40 | KF5::Runner 41 | ) 42 | 43 | # Now make sure all files get to the right place 44 | add_library(krunner_translator MODULE ${krunner_translator_SRCS}) 45 | target_link_libraries(krunner_translator KF5::Runner Qt5::Widgets Qt5::Network 46 | KF5::I18n 47 | KF5::Service 48 | KF5::ConfigWidgets 49 | KF5::Plasma) 50 | 51 | add_dependencies(krunner_translator kcm_krunner_translator) 52 | 53 | install(TARGETS krunner_translator DESTINATION ${PLUGIN_INSTALL_DIR}/kf5/krunner) 54 | install(TARGETS kcm_krunner_translator DESTINATION ${PLUGIN_INSTALL_DIR}) 55 | install(FILES src/config/plasma-runner-translator_config.desktop DESTINATION ${SERVICES_INSTALL_DIR}) 56 | -------------------------------------------------------------------------------- /src/translator.h: -------------------------------------------------------------------------------- 1 | /****************************************************************************** 2 | * Copyright (C) 2013 – 2018 by David Baum * 3 | * * 4 | * This library is free software; you can redistribute it and/or modify * 5 | * it under the terms of the GNU Lesser General Public License as published * 6 | * by the Free Software Foundation; either version 2 of the License or (at * 7 | * your option) any later version. * 8 | * * 9 | * This library is distributed in the hope that it will be useful, * 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of * 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * 12 | * Library General Public License for more details. * 13 | * * 14 | * You should have received a copy of the GNU Lesser General Public License * 15 | * along with this library; see the file COPYING.LIB. * 16 | * If not, see . * 17 | *****************************************************************************/ 18 | 19 | #ifndef TRANSLATOR_H 20 | #define TRANSLATOR_H 21 | 22 | #include 23 | #include "provider/GoogleTranslate.h" 24 | #include "LanguageRepository.h" 25 | 26 | class Translator : public Plasma::AbstractRunner 27 | { 28 | Q_OBJECT 29 | 30 | public: 31 | Translator(QObject *parent, const QVariantList &args); 32 | void match(Plasma::RunnerContext &) override; 33 | void run(const Plasma::RunnerContext &, const Plasma::QueryMatch &) override; 34 | QList actionsForMatch(const Plasma::QueryMatch &match) override; 35 | void reloadConfiguration() override; 36 | 37 | private: 38 | bool parseTerm(const QString &, QString &, QPair &); 39 | QList actions; 40 | QString m_primary; 41 | QString m_secondary; 42 | QString m_baiduAPPID; 43 | QString m_baiduAPIKey; 44 | QString m_youdaoAPPID; 45 | QString m_youdaoAppSec; 46 | bool m_baiduEnable; 47 | bool m_youdaoEnable; 48 | QList engines; 49 | LanguageRepository languages; 50 | }; 51 | 52 | #endif 53 | -------------------------------------------------------------------------------- /src/translateShellProcess.cpp: -------------------------------------------------------------------------------- 1 | /****************************************************************************** 2 | * Copyright (C) 2013 – 2020 by David Baum * 3 | * * 4 | * This library is free software; you can redistribute it and/or modify * 5 | * it under the terms of the GNU Lesser General Public License as published * 6 | * by the Free Software Foundation; either version 2 of the License or (at * 7 | * your option) any later version. * 8 | * * 9 | * This library is distributed in the hope that it will be useful, * 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of * 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * 12 | * Library General Public License for more details. * 13 | * * 14 | * You should have received a copy of the GNU Lesser General Public License * 15 | * along with this library; see the file COPYING.LIB. * 16 | * If not, see . * 17 | *****************************************************************************/ 18 | 19 | #include "translateShellProcess.h" 20 | 21 | TranslateShellProcess::TranslateShellProcess(QObject *parent) : QProcess(parent) { 22 | } 23 | 24 | TranslateShellProcess::TranslateShellProcess(const QString &engine_, QObject *parent) : QProcess(parent), 25 | engine(engine_) { 26 | } 27 | 28 | TranslateShellProcess::~TranslateShellProcess() = default; 29 | 30 | QString TranslateShellProcess::translate(const QPair &language, const QString &text) { 31 | QStringList arguments; 32 | arguments << language.first + QStringLiteral(":") + language.second 33 | << text 34 | << QStringLiteral("--brief") 35 | << QStringLiteral("-e") 36 | << engine; 37 | start("trans", arguments); 38 | waitForFinished(); 39 | QString composeOutput(readLine()); 40 | return composeOutput; 41 | } 42 | 43 | void TranslateShellProcess::play(const QString &text) { 44 | QStringList arguments; 45 | arguments << text 46 | << QStringLiteral("-speak") 47 | << QStringLiteral("-no-translate"); 48 | start("trans", arguments); 49 | waitForFinished(); 50 | } 51 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Translator for KDE KRunner (Plasma 5) 2 | 3 | ![Screenshot Runner](../../wiki/screenshot/interface.png) 4 | 5 | This is a plugin for Plasma 5 KRunner. It's a translator and it translates text. Currently [Google Translate](https://translate.google.com/), [Bing Translator](https://www.bing.com/translator), [youdao](http://fanyi.youdao.com/), and [Baidu Fanyi](https://fanyi.baidu.com/) are supported. By clicking on the corresponding icon, the translation can be copied or read aloud. 6 | 7 | ## Packages 8 | 9 | [![Logo Arch Linux](../../wiki/logos/arch_linux.png)](https://aur.archlinux.org/packages/plasma-runners-translator/) 10 | [![Logo Ubuntu](../../wiki/logos/ubuntu.png)](https://github.com/naraesk/krunner-translator/releases/download/v1.4.1/plasma-runners-translator_1.4.1-1.deb) 11 | 12 | 13 | ## Manual Installation ## 14 | 15 | 1. Install [Translate Shell](https://github.com/soimort/translate-shell) 16 | 2. Install the dependencies listed below 17 | 3. Run `./install.sh` 18 | 19 | ### Debian/Ubuntu 20 | `sudo apt install cmake extra-cmake-modules build-essential libkf5runner-dev libkf5textwidgets-dev qtdeclarative5-dev gettext` 21 | 22 | ### openSUSE 23 | `sudo zypper install cmake extra-cmake-modules libQt5Widgets5 libQt5Core5 libqt5-qtlocation-devel ki18n-devel ktextwidgets-devel 24 | kservice-devel krunner-devel gettext-tools kconfigwidgets-devel` 25 | 26 | ## Fedora 27 | `sudo dnf install cmake extra-cmake-modules kf5-ki18n-devel kf5-kservice-devel kf5-krunner-devel kf5-ktextwidgets-devel gettext` 28 | 29 | ## Configuration ## 30 | 31 | For being able to use Youdao and Baidu, an api key is required. You have to obtain a key yourself by following these steps: 32 | 33 | ### Youdao 34 | 1. Register at https://ai.youdao.com/ 35 | 2. Get an API key and an API secret from Application Manager 36 | 3. Copy the key to configuration dialog 37 | 38 | ### Baidu 39 | 1. Register at http://api.fanyi.baidu.com/ 40 | 2. Get an API key and an API secret from Consoles 41 | 3. Copy the key to configuration dialog 42 | 43 | ## Usage ## 44 | 45 | A list of all language codes you can find [here](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes). 46 | 47 | ### Specify source and target language ### 48 | Syntax: `- ` 49 | *en-de house* → will translate *house* into german (*de*) 50 | 51 | ### Use default source language ### 52 | Syntax: ` ` 53 | 54 | Default source language: *English (en)* 55 | Alternative source language: *German (de)* 56 | 57 | *de soccer* → *en-de soccer* 58 | *en blau* → *de-en blau* 59 | *fr house* → *en-fr house* 60 | 61 | Thanks for your feedback and kudos! If you like the runner, please vote for it [here](http://kde-apps.org/content/show.php?content=156498). 62 | 63 | -------------------------------------------------------------------------------- /src/config/translator_config.h: -------------------------------------------------------------------------------- 1 | /****************************************************************************** 2 | * Copyright (C) 2013 – 2018 by David Baum * 3 | * * 4 | * This library is free software; you can redistribute it and/or modify * 5 | * it under the terms of the GNU Lesser General Public License as published * 6 | * by the Free Software Foundation; either version 2 of the License or (at * 7 | * your option) any later version. * 8 | * * 9 | * This library is distributed in the hope that it will be useful, * 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of * 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * 12 | * Library General Public License for more details. * 13 | * * 14 | * You should have received a copy of the GNU Lesser General Public License * 15 | * along with this library; see the file COPYING.LIB. * 16 | * If not, see . * 17 | *****************************************************************************/ 18 | 19 | #ifndef TRANSLATORCONFIG_H 20 | #define TRANSLATORCONFIG_H 21 | 22 | #include "ui_translator_config.h" 23 | #include 24 | #include 25 | 26 | static const char CONFIG_PRIMARY[] = "primaryLanguage"; 27 | static const char CONFIG_SECONDARY[] = "secondaryLanguage"; 28 | static const char CONFIG_BAIDU_APPID[] = "baiduAPPID"; 29 | static const char CONFIG_BAIDU_APIKEY[] = "baiduAPIKey"; 30 | static const char CONFIG_YOUDAO_APPID[] = "youdaoAPPID"; 31 | static const char CONFIG_YOUDAO_APPSEC[] = "youdaoAPPSec"; 32 | static const char CONFIG_BAIDU_ENABLE[] = "baiduEnable"; 33 | static const char CONFIG_YOUDAO_ENABLE[] = "youdaoEnable"; 34 | static const char CONFIG_GOOGLE_ENABLE[] = "googleEnable"; 35 | static const char CONFIG_BING_ENABLE[] = "bingEnable"; 36 | 37 | class TranslatorConfigForm : public QWidget, public Ui::TranslatorConfigUi { 38 | Q_OBJECT 39 | 40 | public: 41 | explicit TranslatorConfigForm(QWidget *parent); 42 | }; 43 | 44 | class TranslatorConfig : public KCModule { 45 | Q_OBJECT 46 | 47 | public: 48 | explicit TranslatorConfig(QWidget *parent = nullptr, const QVariantList &args = QVariantList()); 49 | 50 | public Q_SLOTS: 51 | 52 | void save() override; 53 | 54 | void load() override; 55 | 56 | void warningHandler(); 57 | 58 | private: 59 | TranslatorConfigForm *m_ui; 60 | LanguageRepository languages; 61 | }; 62 | 63 | #endif 64 | -------------------------------------------------------------------------------- /src/SupportedLanguages.h: -------------------------------------------------------------------------------- 1 | /****************************************************************************** 2 | * Copyright (C) 2013 – 2020 by David Baum * 3 | * * 4 | * This library is free software; you can redistribute it and/or modify * 5 | * it under the terms of the GNU Lesser General Public License as published * 6 | * by the Free Software Foundation; either version 2 of the License or (at * 7 | * your option) any later version. * 8 | * * 9 | * This library is distributed in the hope that it will be useful, * 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of * 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * 12 | * Library General Public License for more details. * 13 | * * 14 | * You should have received a copy of the GNU Lesser General Public License * 15 | * along with this library; see the file COPYING.LIB. * 16 | * If not, see . * 17 | *****************************************************************************/ 18 | 19 | #ifndef RUNNERTRANSLATOR_SUPPORTEDLANGUAGES_H 20 | #define RUNNERTRANSLATOR_SUPPORTEDLANGUAGES_H 21 | 22 | enum SupportedLanguage { 23 | Afrikaans, 24 | Albanian, 25 | Amharic, 26 | Arabic, 27 | Armenian, 28 | Azerbaijani, 29 | Basque, 30 | Belarusian, 31 | Bengali, 32 | Bosnian, 33 | Bulgarian, 34 | Burmese, 35 | Catalan, 36 | Cebuano, 37 | Chewa, 38 | Chinese, 39 | Corsican, 40 | Croatian, 41 | Czech, 42 | Danish, 43 | Dutch, 44 | English, 45 | Esperanto, 46 | Estonian, 47 | Filipino, 48 | Finish, 49 | French, 50 | Galician, 51 | Georgian, 52 | German, 53 | Greek, 54 | Gujarati, 55 | Haitian, 56 | Hausa, 57 | Hawaiian, 58 | Hebrew, 59 | Hindi, 60 | Hmong, 61 | Hungarian, 62 | Icelandic, 63 | Igbo, 64 | Indonesian, 65 | Irish, 66 | Italian, 67 | Japanese, 68 | Javanese, 69 | Kannada, 70 | Kazakh, 71 | Khmer, 72 | Kinyarwanda, 73 | Korean, 74 | Kurdish, 75 | Kyrgyz, 76 | Lao, 77 | Latin, 78 | Latvian, 79 | Lithuanian, 80 | Luxembourgish, 81 | Macedonian, 82 | Malagasy, 83 | Malay, 84 | Malayalam, 85 | Maltese, 86 | Maori, 87 | Marathi, 88 | Mongolian, 89 | Nepali, 90 | Norwegian, 91 | Odia, 92 | Pashto, 93 | Persian, 94 | Polish, 95 | Portuguese, 96 | Punjabi, 97 | Romanian, 98 | Russian, 99 | Samoan, 100 | ScotsGaelic, 101 | Serbian, 102 | Shona, 103 | Sindhi, 104 | Sinhala, 105 | Slovak, 106 | Slovenian, 107 | Somali, 108 | Sotho, 109 | Spanish, 110 | Sundanese, 111 | Swahili, 112 | Swedish, 113 | Tagalog, 114 | Tajik, 115 | Tamil, 116 | Tatar, 117 | Telugu, 118 | Thai, 119 | Turkish, 120 | Turkmen, 121 | Ukrainian, 122 | Urdu, 123 | Uyghur, 124 | Uzbek, 125 | Vietnamese, 126 | Welsh, 127 | WestFrisian, 128 | Xhosa, 129 | Yiddish, 130 | Yoruba, 131 | Zulu 132 | }; 133 | 134 | #endif //RUNNERTRANSLATOR_SUPPORTEDLANGUAGES_H 135 | -------------------------------------------------------------------------------- /src/provider/baidu.cpp: -------------------------------------------------------------------------------- 1 | /****************************************************************************** 2 | * Copyright (C) 2020 by P3psi Boo * 3 | * * 4 | * This library is free software; you can redistribute it and/or modify * 5 | * it under the terms of the GNU Lesser General Public License as published * 6 | * by the Free Software Foundation; either version 2 of the License or (at * 7 | * your option) any later version. * 8 | * * 9 | * This library is distributed in the hope that it will be useful, * 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of * 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * 12 | * Library General Public License for more details. * 13 | * * 14 | * You should have received a copy of the GNU Lesser General Public License * 15 | * along with this library; see the file COPYING.LIB. * 16 | * If not, see . * 17 | *****************************************************************************/ 18 | 19 | #include "baidu.h" 20 | 21 | #include 22 | #include 23 | #include 24 | #include 25 | #include 26 | #include 27 | #include 28 | 29 | Baidu::Baidu(Plasma::AbstractRunner *runner, Plasma::RunnerContext &context, const QString &text, 30 | const QPair &language, const QString &appid, const QString &key) 31 | : m_runner(runner), m_context(context) { 32 | m_manager = new QNetworkAccessManager(this); 33 | 34 | QRandomGenerator randomGenerator = QRandomGenerator(QTime(0, 0, 0).secsTo(QTime::currentTime())); 35 | 36 | quint32 salt = randomGenerator.generate(); 37 | 38 | QString sign; 39 | sign.append(appid); 40 | sign.append(text); 41 | sign.append(QString::number(salt)); 42 | sign.append(key); 43 | QByteArray hash = QCryptographicHash::hash(sign.toUtf8(), QCryptographicHash::Md5); 44 | QString signMD5 = hash.toHex(); 45 | 46 | QUrlQuery query; 47 | query.addQueryItem("appid", appid); 48 | query.addQueryItem("q", text); 49 | query.addQueryItem("from", langMapper(language.first)); 50 | query.addQueryItem("to", langMapper(language.second)); 51 | query.addQueryItem("salt", QString::number(salt)); 52 | query.addQueryItem("sign", signMD5); 53 | 54 | 55 | QNetworkRequest request(QUrl("https://fanyi-api.baidu.com/api/trans/vip/translate?" + 56 | QUrl(query.query(QUrl::FullyEncoded).toUtf8()).toEncoded())); 57 | //request.setSslConfiguration(QSslConfiguration::defaultConfiguration()); 58 | request.setHeader(QNetworkRequest::ContentTypeHeader, "application/x-www-form-urlencoded"); 59 | 60 | m_manager->get(request); 61 | connect(m_manager, &QNetworkAccessManager::finished, this, &Baidu::parseResult); 62 | } 63 | 64 | void Baidu::parseResult(QNetworkReply *reply) { 65 | if (reply->attribute(QNetworkRequest::HttpStatusCodeAttribute) != 200) { 66 | emit finished(); 67 | return; 68 | } 69 | 70 | const QString s = QString::fromUtf8(reply->readAll()); 71 | const QJsonObject jsonObject = QJsonDocument::fromJson(s.toUtf8()).object(); 72 | if (jsonObject.contains(QStringLiteral("error_code"))) { 73 | Plasma::QueryMatch match(m_runner); 74 | match.setType(Plasma::QueryMatch::HelperMatch); 75 | match.setIcon(QIcon::fromTheme(QStringLiteral("dialog-error"))); 76 | match.setText( 77 | QString::fromUtf8("(Baidu) Error code: %1").arg(jsonObject.find("error_code").value().toString())); 78 | match.setRelevance(1); 79 | m_context.addMatch(match); 80 | } else { 81 | QList matches; 82 | const QJsonArray results = jsonObject.find("trans_result").value().toArray(); 83 | float relevance = 1; 84 | for (const QJsonValue result: results) { 85 | Plasma::QueryMatch match(m_runner); 86 | match.setType(Plasma::QueryMatch::InformationalMatch); 87 | match.setIcon(QIcon::fromTheme("applications-education-language")); 88 | match.setText(result.toObject().find("dst").value().toString()); 89 | match.setMultiLine(true); 90 | match.setRelevance(relevance); 91 | matches.append(match); 92 | relevance -= 0.01; 93 | } 94 | m_context.addMatches(matches); 95 | } 96 | emit finished(); 97 | } 98 | 99 | QString Baidu::langMapper(QString lang) { 100 | QString lang2 = lang; 101 | if (lang == "ko") return "kor"; 102 | else if (lang == "bg") return "bul"; 103 | else if (lang == "fi") return "fin"; 104 | else if (lang == "sk") return "slo"; 105 | else if (lang == "fr") return "fra"; 106 | else if (lang == "ar") return "ara"; 107 | else if (lang == "et") return "est"; 108 | else if (lang == "sv") return "swe"; 109 | else if (lang == "ja") return "jp"; 110 | else if (lang == "es") return "spa"; 111 | else if (lang == "da") return "dan"; 112 | else if (lang == "ro") return "rom"; 113 | else { return lang2; } 114 | } 115 | 116 | #include "moc_baidu.cpp" 117 | -------------------------------------------------------------------------------- /src/provider/youdao.cpp: -------------------------------------------------------------------------------- 1 | /****************************************************************************** 2 | * Copyright (C) 2020 by P3psi Boo * 3 | * * 4 | * This library is free software; you can redistribute it and/or modify * 5 | * it under the terms of the GNU Lesser General Public License as published * 6 | * by the Free Software Foundation; either version 2 of the License or (at * 7 | * your option) any later version. * 8 | * * 9 | * This library is distributed in the hope that it will be useful, * 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of * 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * 12 | * Library General Public License for more details. * 13 | * * 14 | * You should have received a copy of the GNU Lesser General Public License * 15 | * along with this library; see the file COPYING.LIB. * 16 | * If not, see . * 17 | *****************************************************************************/ 18 | 19 | #include "youdao.h" 20 | 21 | #include 22 | #include 23 | #include 24 | #include 25 | #include 26 | #include 27 | #include 28 | #include 29 | 30 | Youdao::Youdao(Plasma::AbstractRunner *runner, Plasma::RunnerContext &context, const QString &text, 31 | const QPair &language, const QString &appid, const QString &appSec) 32 | : m_runner(runner), m_context(context) { 33 | m_manager = new QNetworkAccessManager(this); 34 | 35 | QString salt = QUuid::createUuid().toString().mid(1, 36); 36 | qint64 timestamp = QDateTime::currentDateTime().toSecsSinceEpoch(); 37 | 38 | QString input; 39 | if (text.length() > 20) { 40 | input = text.left(10) + QString::number(text.length()) + text.right(10); 41 | } else { 42 | input = text; 43 | } 44 | 45 | QString sign; 46 | // sha256(应用ID+input+salt+curtime+应用密钥) 47 | sign.append(appid); 48 | sign.append(input); 49 | sign.append(salt); 50 | sign.append(QString::number(timestamp)); 51 | sign.append(appSec); 52 | QByteArray hash = QCryptographicHash::hash(sign.toUtf8(), QCryptographicHash::Sha256); 53 | //QString signSha256 = QString::fromUtf8(hash); 54 | 55 | QUrlQuery postData; 56 | postData.addQueryItem(QStringLiteral("q"), text); 57 | postData.addQueryItem(QStringLiteral("from"), langMapper(language.first)); 58 | postData.addQueryItem(QStringLiteral("to"), langMapper(language.second)); 59 | postData.addQueryItem(QStringLiteral("appKey"), appid); 60 | postData.addQueryItem(QStringLiteral("salt"), salt); 61 | postData.addQueryItem(QStringLiteral("sign"), hash.toHex()); 62 | postData.addQueryItem(QStringLiteral("signType"), "v3"); 63 | postData.addQueryItem(QStringLiteral("curtime"), QString::number(timestamp)); 64 | 65 | QNetworkRequest request; 66 | request.setUrl(QUrl("https://openapi.youdao.com/api")); 67 | request.setHeader(QNetworkRequest::ContentTypeHeader, "application/x-www-form-urlencoded"); 68 | //request.setSslConfiguration(QSslConfiguration::defaultConfiguration()); 69 | 70 | m_manager->post(request, postData.toString(QUrl::FullyEncoded).toUtf8()); 71 | connect(m_manager, &QNetworkAccessManager::finished, this, &Youdao::parseResult); 72 | } 73 | 74 | void Youdao::parseResult(QNetworkReply *reply) { 75 | if (reply->attribute(QNetworkRequest::HttpStatusCodeAttribute) != 200) { 76 | emit finished(); 77 | return; 78 | } 79 | 80 | const QString s = QString::fromUtf8(reply->readAll()); 81 | const QJsonObject jsonObject = QJsonDocument::fromJson(s.toUtf8()).object(); 82 | const int errorCode = jsonObject.find("errorCode").value().toInt(); 83 | if (errorCode == 0) { 84 | 85 | QList matches; 86 | 87 | const QJsonArray results = jsonObject.find("translation").value().toArray(); 88 | float relevance = 1; 89 | for (const QJsonValue result: results) { 90 | Plasma::QueryMatch match(m_runner); 91 | match.setType(Plasma::QueryMatch::InformationalMatch); 92 | match.setIcon(QIcon::fromTheme("applications-education-language")); 93 | match.setText(result.toString()); 94 | match.setMultiLine(true); 95 | match.setRelevance(relevance); 96 | matches.append(match); 97 | relevance -= 0.01; 98 | } 99 | // for youdao basic dict 100 | if (jsonObject.contains("basic")) { 101 | const QJsonArray baseExplains = jsonObject.find("basic").value().toObject().find( 102 | "explains").value().toArray(); 103 | for (const QJsonValue explain: baseExplains) { 104 | Plasma::QueryMatch match(m_runner); 105 | match.setType(Plasma::QueryMatch::InformationalMatch); 106 | match.setIcon(QIcon::fromTheme("applications-education-language")); 107 | match.setText(explain.toString()); 108 | match.setMultiLine(true); 109 | match.setRelevance(relevance); 110 | matches.append(match); 111 | relevance -= 0.01; 112 | } 113 | } 114 | m_context.addMatches(matches); 115 | } else { 116 | Plasma::QueryMatch match(m_runner); 117 | match.setType(Plasma::QueryMatch::HelperMatch); 118 | match.setIcon(QIcon::fromTheme(QStringLiteral("dialog-error"))); 119 | match.setText(QString::fromUtf8("(Youdao) Error code: %1").arg(QString::number(errorCode))); 120 | match.setRelevance(1); 121 | m_context.addMatch(match); 122 | } 123 | emit finished(); 124 | } 125 | 126 | QString Youdao::langMapper(QString lang) { 127 | QString lang2 = lang; 128 | if (lang == "zh") return "zh-CHS"; 129 | else { return lang2; } 130 | } 131 | 132 | #include "moc_youdao.cpp" 133 | -------------------------------------------------------------------------------- /src/translator.cpp: -------------------------------------------------------------------------------- 1 | /****************************************************************************** 2 | * Copyright (C) 2013 – 2018 by David Baum * 3 | * * 4 | * This library is free software; you can redistribute it and/or modify * 5 | * it under the terms of the GNU Lesser General Public License as published * 6 | * by the Free Software Foundation; either version 2 of the License or (at * 7 | * your option) any later version. * 8 | * * 9 | * This library is distributed in the hope that it will be useful, * 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of * 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * 12 | * Library General Public License for more details. * 13 | * * 14 | * You should have received a copy of the GNU Lesser General Public License * 15 | * along with this library; see the file COPYING.LIB. * 16 | * If not, see . * 17 | *****************************************************************************/ 18 | 19 | #include "translator.h" 20 | #include "config/translator_config.h" 21 | #include "provider/GoogleTranslate.h" 22 | #include "provider/baidu.h" 23 | #include "provider/youdao.h" 24 | #include "provider/Bing.h" 25 | #include 26 | #include 27 | #include 28 | #include 29 | #include 30 | #include 31 | 32 | Translator::Translator(QObject *parent, const QVariantList &args) 33 | : Plasma::AbstractRunner(parent, args) { 34 | setObjectName(QStringLiteral("Translator")); 35 | setPriority(HighestPriority); 36 | QAction *copy = new QAction(); 37 | copy->setIcon(QIcon::fromTheme(QStringLiteral("editcopy"))); 38 | copy->setText("Copy to Clipboard"); 39 | copy->setData("copy"); 40 | addAction("copy", copy); 41 | auto *play = addAction(QStringLiteral("play"), 42 | QIcon::fromTheme(QStringLiteral("cs-sound")), 43 | QStringLiteral("Play audio")); 44 | play->setData(QStringLiteral("play")); 45 | actions = {copy, play}; 46 | addSyntax(Plasma::RunnerSyntax(QString::fromLatin1("%1:q:").arg(i18n("")), 47 | i18n("Translates the word(s) :q: into target language"))); 48 | addSyntax(Plasma::RunnerSyntax(QString::fromLatin1("%1:q:").arg(i18n("-")), 49 | i18n("Translates the word(s) :q: from the source into target language"))); 50 | languages.initialize(); 51 | } 52 | 53 | bool Translator::parseTerm(const QString &term, QString &text, QPair &language) { 54 | const int index = term.indexOf(QStringLiteral(" ")); 55 | if (index == -1) return false; 56 | text = term.mid(index + 1); 57 | const QString languageTerm = term.left(index); 58 | 59 | if (languageTerm.contains("-")) { 60 | int languageIndex = languageTerm.indexOf("-"); 61 | language.first = languageTerm.left(languageIndex); 62 | language.second = languageTerm.mid(languageIndex + 1); 63 | if(languages.containsAbbreviation( language.first) && languages.containsAbbreviation( language.second) ) { 64 | return true; 65 | } else { 66 | return false; 67 | } 68 | } else { 69 | if (m_primary == languageTerm) { 70 | language.first = m_secondary; 71 | } else { 72 | language.first = m_primary; 73 | } 74 | language.second = languageTerm; 75 | } 76 | return true; 77 | } 78 | 79 | void Translator::match(Plasma::RunnerContext &context) { 80 | const QString term = context.query(); 81 | QString text; 82 | QPair language; 83 | 84 | if (!parseTerm(term, text, language)) return; 85 | if (!context.isValid()) return; 86 | 87 | if (m_baiduEnable) { 88 | QEventLoop baiduLoop; 89 | Baidu baidu(this, context, text, language, m_baiduAPPID, m_baiduAPIKey); 90 | connect(&baidu, &Baidu::finished, &baiduLoop, &QEventLoop::quit); 91 | baiduLoop.exec(); 92 | } 93 | if (m_youdaoEnable) { 94 | QEventLoop youdaoLoop; 95 | Youdao youdao(this, context, text, language, m_youdaoAPPID, m_youdaoAppSec); 96 | connect(&youdao, &Youdao::finished, &youdaoLoop, &QEventLoop::quit); 97 | youdaoLoop.exec(); 98 | } 99 | for (auto engine : engines) { 100 | Plasma::QueryMatch match = engine->translate(text, language); 101 | match.setSelectedAction(actions.first()); 102 | context.addMatch(match); 103 | } 104 | } 105 | 106 | void Translator::run(const Plasma::RunnerContext &context, const Plasma::QueryMatch &match) { 107 | Q_UNUSED(context); 108 | QApplication::clipboard()->setText(match.text()); 109 | if (match.selectedAction()->data().toString() == QLatin1String("play")) { 110 | TranslateShellProcess process; 111 | process.play(match.text()); 112 | } 113 | } 114 | 115 | QList Translator::actionsForMatch(const Plasma::QueryMatch &match) { 116 | if (match.data().toString() == QStringLiteral("audio")) { 117 | return actions; 118 | } 119 | return {actions.first()}; 120 | } 121 | 122 | void Translator::reloadConfiguration() { 123 | auto grp = config(); 124 | m_primary = grp.readEntry(CONFIG_PRIMARY, QStringLiteral("en")); 125 | m_secondary = grp.readEntry(CONFIG_SECONDARY, QStringLiteral("es")); 126 | m_baiduAPPID = grp.readEntry(CONFIG_BAIDU_APPID, QString()); 127 | m_baiduAPIKey = grp.readEntry(CONFIG_BAIDU_APIKEY, QString()); 128 | m_youdaoAPPID = grp.readEntry(CONFIG_YOUDAO_APPID, QString()); 129 | m_youdaoAppSec = grp.readEntry(CONFIG_YOUDAO_APPSEC, QString()); 130 | m_baiduEnable = grp.readEntry(CONFIG_BAIDU_ENABLE, false); 131 | m_youdaoEnable = grp.readEntry(CONFIG_YOUDAO_ENABLE, false); 132 | 133 | const bool googleEnable = grp.readEntry(CONFIG_GOOGLE_ENABLE, true); 134 | if (googleEnable) { 135 | CommandLineEngine *googleTranslate = new GoogleTranslate(this); 136 | engines.push_front(googleTranslate); 137 | } 138 | 139 | const bool bingEnable = grp.readEntry(CONFIG_BING_ENABLE, false); 140 | if (bingEnable) { 141 | CommandLineEngine *bingTranslate = new Bing(this); 142 | engines.push_front(bingTranslate); 143 | } 144 | } 145 | 146 | K_EXPORT_PLASMA_RUNNER_WITH_JSON(Translator, "translator.json") 147 | 148 | #include "translator.moc" 149 | -------------------------------------------------------------------------------- /src/config/translator_config.cpp: -------------------------------------------------------------------------------- 1 | /****************************************************************************** 2 | * Copyright (C) 2013 – 2018 by David Baum * 3 | * * 4 | * This library is free software; you can redistribute it and/or modify * 5 | * it under the terms of the GNU Lesser General Public License as published * 6 | * by the Free Software Foundation; either version 2 of the License or (at * 7 | * your option) any later version. * 8 | * * 9 | * This library is distributed in the hope that it will be useful, * 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of * 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * 12 | * Library General Public License for more details. * 13 | * * 14 | * You should have received a copy of the GNU Lesser General Public License * 15 | * along with this library; see the file COPYING.LIB. * 16 | * If not, see . * 17 | *****************************************************************************/ 18 | 19 | #include "translator_config.h" 20 | #include "src/languages.h" 21 | #include 22 | #include 23 | #include 24 | #include 25 | #include 26 | 27 | K_PLUGIN_FACTORY(TranslatorConfigFactory, registerPlugin("kcm_krunner_translator");) 28 | 29 | TranslatorConfigForm::TranslatorConfigForm(QWidget *parent) : QWidget(parent) { 30 | setupUi(this); 31 | } 32 | 33 | TranslatorConfig::TranslatorConfig(QWidget *parent, const QVariantList &args) : 34 | KCModule(parent, args) { 35 | m_ui = new TranslatorConfigForm(this); 36 | QGridLayout *layout = new QGridLayout(this); 37 | layout->addWidget(m_ui, 0, 0); 38 | 39 | warningHandler(); 40 | languages.initialize(); 41 | 42 | const QList supportedLanguages = languages.getSupportedLanguages(); 43 | for (auto language: supportedLanguages) { 44 | QVariant variant = QVariant::fromValue(language); 45 | m_ui->primaryLanguage->addItem(language.getCombinedName(), variant); 46 | m_ui->secondaryLanguage->addItem(language.getCombinedName(), variant); 47 | } 48 | 49 | connect(m_ui->primaryLanguage, &QComboBox::currentTextChanged, this, &TranslatorConfig::markAsChanged); 50 | connect(m_ui->secondaryLanguage, &QComboBox::currentTextChanged, this, &TranslatorConfig::markAsChanged); 51 | connect(m_ui->baiduAPPID, &QLineEdit::textChanged, this, &TranslatorConfig::markAsChanged); 52 | connect(m_ui->baiduApiKey, &QLineEdit::textChanged, this, &TranslatorConfig::markAsChanged); 53 | connect(m_ui->youdaoAPPID, &QLineEdit::textChanged, this, &TranslatorConfig::markAsChanged); 54 | connect(m_ui->youdaoAppSec, &QLineEdit::textChanged, this, &TranslatorConfig::markAsChanged); 55 | connect(m_ui->baiduEnable, &QCheckBox::stateChanged, this, &TranslatorConfig::markAsChanged); 56 | connect(m_ui->youdaoEnable, &QCheckBox::stateChanged, this, &TranslatorConfig::markAsChanged); 57 | connect(m_ui->googleEnable, &QCheckBox::stateChanged, this, &TranslatorConfig::markAsChanged); 58 | connect(m_ui->bingEnable, &QCheckBox::stateChanged, this, &TranslatorConfig::markAsChanged); 59 | 60 | connect(m_ui->bingEnable, &QCheckBox::stateChanged, this, &TranslatorConfig::warningHandler); 61 | connect(m_ui->googleEnable, &QCheckBox::stateChanged, this, &TranslatorConfig::warningHandler); 62 | connect(m_ui->baiduEnable, &QCheckBox::stateChanged, this, &TranslatorConfig::warningHandler); 63 | connect(m_ui->youdaoEnable, &QCheckBox::stateChanged, this, &TranslatorConfig::warningHandler); 64 | } 65 | 66 | void TranslatorConfig::load() { 67 | KCModule::load(); 68 | 69 | KSharedConfig::Ptr cfg = KSharedConfig::openConfig(QStringLiteral("krunnerrc")); 70 | KConfigGroup grp = cfg->group("Runners"); 71 | grp = KConfigGroup(&grp, "Translator"); 72 | 73 | QString abbrPrimaryLanguage = grp.readEntry(CONFIG_PRIMARY, "en"); 74 | QString abbrSecondaryLanguage = grp.readEntry(CONFIG_SECONDARY, "es"); 75 | QString textPrimaryLanguage = languages.getCombinedName(abbrPrimaryLanguage); 76 | QString textSecondaryLanguage = languages.getCombinedName(abbrSecondaryLanguage); 77 | m_ui->primaryLanguage->setCurrentText(textPrimaryLanguage); 78 | m_ui->secondaryLanguage->setCurrentText(textSecondaryLanguage); 79 | m_ui->baiduAPPID->setText(grp.readEntry(CONFIG_BAIDU_APPID, "")); 80 | m_ui->baiduApiKey->setText(grp.readEntry(CONFIG_BAIDU_APIKEY, "")); 81 | m_ui->youdaoAPPID->setText(grp.readEntry(CONFIG_YOUDAO_APPID, "")); 82 | m_ui->youdaoAppSec->setText(grp.readEntry(CONFIG_YOUDAO_APPSEC, "")); 83 | m_ui->baiduEnable->setChecked(grp.readEntry(CONFIG_BAIDU_ENABLE, false)); 84 | m_ui->youdaoEnable->setChecked(grp.readEntry(CONFIG_YOUDAO_ENABLE, false)); 85 | m_ui->googleEnable->setChecked(grp.readEntry(CONFIG_GOOGLE_ENABLE, true)); 86 | m_ui->bingEnable->setChecked(grp.readEntry(CONFIG_BING_ENABLE, false)); 87 | } 88 | 89 | void TranslatorConfig::save() { 90 | KCModule::save(); 91 | 92 | KSharedConfig::Ptr cfg = KSharedConfig::openConfig(QStringLiteral("krunnerrc")); 93 | KConfigGroup grp = cfg->group("Runners"); 94 | grp = KConfigGroup(&grp, "Translator"); 95 | 96 | Language primaryLanguage = m_ui->primaryLanguage->currentData().value(); 97 | Language secondaryLanguage = m_ui->secondaryLanguage->currentData().value(); 98 | 99 | grp.writeEntry(CONFIG_PRIMARY, primaryLanguage.getAbbreviation()); 100 | grp.writeEntry(CONFIG_SECONDARY, secondaryLanguage.getAbbreviation()); 101 | grp.writeEntry(CONFIG_BAIDU_APPID, m_ui->baiduAPPID->text()); 102 | grp.writeEntry(CONFIG_BAIDU_APIKEY, m_ui->baiduApiKey->text()); 103 | grp.writeEntry(CONFIG_YOUDAO_APPID, m_ui->youdaoAPPID->text()); 104 | grp.writeEntry(CONFIG_YOUDAO_APPSEC, m_ui->youdaoAppSec->text()); 105 | grp.writeEntry(CONFIG_BAIDU_ENABLE, m_ui->baiduEnable->isChecked()); 106 | grp.writeEntry(CONFIG_YOUDAO_ENABLE, m_ui->youdaoEnable->isChecked()); 107 | grp.writeEntry(CONFIG_GOOGLE_ENABLE, m_ui->googleEnable->isChecked()); 108 | grp.writeEntry(CONFIG_BING_ENABLE, m_ui->bingEnable->isChecked()); 109 | emit changed(true); 110 | } 111 | 112 | void TranslatorConfig::warningHandler() { 113 | 114 | // show warning if only bing is enabled 115 | 116 | if (m_ui->bingEnable->isChecked() && 117 | !m_ui->googleEnable->isChecked() && 118 | !m_ui->baiduEnable->isChecked() && 119 | !m_ui->youdaoEnable->isChecked()) { 120 | m_ui->bingWarningOnlyEngine->show(); 121 | } else { 122 | m_ui->bingWarningOnlyEngine->hide(); 123 | } 124 | 125 | // show warning if bing is enabled 126 | 127 | if (m_ui->bingEnable->isChecked()) { 128 | m_ui->bingWarningReliability->show(); 129 | } else { 130 | m_ui->bingWarningReliability->hide(); 131 | } 132 | 133 | // show error message if all engines are disabled 134 | 135 | if (!m_ui->bingEnable->isChecked() && 136 | !m_ui->googleEnable->isChecked() && 137 | !m_ui->baiduEnable->isChecked() && 138 | !m_ui->youdaoEnable->isChecked()) { 139 | m_ui->noEngineWarning->show(); 140 | } else { 141 | m_ui->noEngineWarning->hide(); 142 | } 143 | } 144 | 145 | #include "translator_config.moc" 146 | -------------------------------------------------------------------------------- /src/LanguageRepository.cpp: -------------------------------------------------------------------------------- 1 | /****************************************************************************** 2 | * Copyright (C) 2013 – 2020 by David Baum * 3 | * * 4 | * This library is free software); you can redistribute it and/or modify * 5 | * it under the terms of the GNU Lesser General Public License as published * 6 | * by the Free Software Foundation); either version 2 of the License or (at * 7 | * your option) any later version. * 8 | * * 9 | * This library is distributed in the hope that it will be useful, * 10 | * but WITHOUT ANY WARRANTY); without even the implied warranty of * 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * 12 | * Library General Public License for more details. * 13 | * * 14 | * You should have received a copy of the GNU Lesser General Public License * 15 | * along with this library); see the file COPYING.LIB. * 16 | * If not, see . * 17 | *****************************************************************************/ 18 | 19 | #include "LanguageRepository.h" 20 | 21 | void LanguageRepository::initialize() { 22 | addSupportedLanguage(Afrikaans, QStringLiteral("Afrikaans"), QStringLiteral("af")); 23 | addSupportedLanguage(Albanian, QStringLiteral("Albanian"), QStringLiteral("sq")); 24 | addSupportedLanguage(Amharic, QStringLiteral("Amharic"), QStringLiteral("am")); 25 | addSupportedLanguage(Arabic, QStringLiteral("Arabic"), QStringLiteral("ar")); 26 | addSupportedLanguage(Armenian, QStringLiteral("Armenian"), QStringLiteral("hy")); 27 | addSupportedLanguage(Azerbaijani, QStringLiteral("Azerbaijan"), QStringLiteral("az")); 28 | addSupportedLanguage(Basque, QStringLiteral("Basque"), QStringLiteral("eu")); 29 | addSupportedLanguage(Belarusian, QStringLiteral("Belarusian"), QStringLiteral("be")); 30 | addSupportedLanguage(Bengali, QStringLiteral("Bengali"), QStringLiteral("bn")); 31 | addSupportedLanguage(Bosnian, QStringLiteral("Bosnian"), QStringLiteral("bs")); 32 | addSupportedLanguage(Bulgarian, QStringLiteral("Bulgarian"), QStringLiteral("bg")); 33 | addSupportedLanguage(Burmese, QStringLiteral("Burmese"), QStringLiteral("my")); 34 | addSupportedLanguage(Catalan, QStringLiteral("Catalan"), QStringLiteral("ca")); 35 | addSupportedLanguage(Cebuano, QStringLiteral("Cebuano"), QStringLiteral("ceb")); 36 | addSupportedLanguage(Chewa, QStringLiteral("Chewa"), QStringLiteral("ny")); 37 | addSupportedLanguage(Chinese, QStringLiteral("Chinese"), QStringLiteral("zh")); 38 | addSupportedLanguage(Corsican, QStringLiteral("Corsican"), QStringLiteral("co")); 39 | addSupportedLanguage(Croatian, QStringLiteral("Croatian"), QStringLiteral("hr")); 40 | addSupportedLanguage(Czech, QStringLiteral("Czech"), QStringLiteral("cs")); 41 | addSupportedLanguage(Danish, QStringLiteral("Danish"), QStringLiteral("da")); 42 | addSupportedLanguage(Dutch, QStringLiteral("Dutch"), QStringLiteral("nl")); 43 | addSupportedLanguage(English, QStringLiteral("English"), QStringLiteral("en")); 44 | addSupportedLanguage(Esperanto, QStringLiteral("Esperanto"), QStringLiteral("eo")); 45 | addSupportedLanguage(Estonian, QStringLiteral("Estonian"), QStringLiteral("et")); 46 | addSupportedLanguage(Filipino, QStringLiteral("Filipino"), QStringLiteral("fil")); 47 | addSupportedLanguage(Finish, QStringLiteral("Finish"), QStringLiteral("fi")); 48 | addSupportedLanguage(French, QStringLiteral("French"), QStringLiteral("fr")); 49 | addSupportedLanguage(Galician, QStringLiteral("Galician"), QStringLiteral("gl")); 50 | addSupportedLanguage(Georgian, QStringLiteral("Georgian"), QStringLiteral("ka")); 51 | addSupportedLanguage(German, QStringLiteral("German"), QStringLiteral("de")); 52 | addSupportedLanguage(Greek, QStringLiteral("Greek"), QStringLiteral("el")); 53 | addSupportedLanguage(Gujarati, QStringLiteral("Gujarati"), QStringLiteral("gu")); 54 | addSupportedLanguage(Haitian, QStringLiteral("Haitian Creole"), QStringLiteral("ht")); 55 | addSupportedLanguage(Hausa, QStringLiteral("Hausa"), QStringLiteral("ha")); 56 | addSupportedLanguage(Hawaiian, QStringLiteral("Hawaiian"), QStringLiteral("haw")); 57 | addSupportedLanguage(Hebrew, QStringLiteral("Hebrew"), QStringLiteral("he")); 58 | addSupportedLanguage(Hindi, QStringLiteral("Hindi"), QStringLiteral("hi")); 59 | addSupportedLanguage(Hmong, QStringLiteral("Hmong"), QStringLiteral("hmn")); 60 | addSupportedLanguage(Hungarian, QStringLiteral("Hungarian"), QStringLiteral("hu")); 61 | addSupportedLanguage(Icelandic, QStringLiteral("Icelandic"), QStringLiteral("is")); 62 | addSupportedLanguage(Igbo, QStringLiteral("Igbo"), QStringLiteral("ig")); 63 | addSupportedLanguage(Indonesian, QStringLiteral("Indonesian"), QStringLiteral("id")); 64 | addSupportedLanguage(Irish, QStringLiteral("Irish"), QStringLiteral("ga")); 65 | addSupportedLanguage(Italian, QStringLiteral("Italian"), QStringLiteral("it")); 66 | addSupportedLanguage(Japanese, QStringLiteral("Japanese"), QStringLiteral("ja")); 67 | addSupportedLanguage(Javanese, QStringLiteral("Javanese"), QStringLiteral("jv")); 68 | addSupportedLanguage(Kannada, QStringLiteral("Kannada"), QStringLiteral("kn")); 69 | addSupportedLanguage(Kazakh, QStringLiteral("Kazakh"), QStringLiteral("kk")); 70 | addSupportedLanguage(Khmer, QStringLiteral("Khmer"), QStringLiteral("km")); 71 | addSupportedLanguage(Kinyarwanda, QStringLiteral("Kinyarwanda"), QStringLiteral("rw")); 72 | addSupportedLanguage(Korean, QStringLiteral("Korean"), QStringLiteral("ko")); 73 | addSupportedLanguage(Kurdish, QStringLiteral("Kurdish"), QStringLiteral("ku")); 74 | addSupportedLanguage(Kyrgyz, QStringLiteral("Kyrgyz"), QStringLiteral("ky")); 75 | addSupportedLanguage(Lao, QStringLiteral("Lao"), QStringLiteral("lo")); 76 | addSupportedLanguage(Latin, QStringLiteral("Latin"), QStringLiteral("la")); 77 | addSupportedLanguage(Latvian, QStringLiteral("Latvian"), QStringLiteral("lv")); 78 | addSupportedLanguage(Lithuanian, QStringLiteral("Lithuanian"), QStringLiteral("lt")); 79 | addSupportedLanguage(Luxembourgish, QStringLiteral("Luxembourgish"), QStringLiteral("lb")); 80 | addSupportedLanguage(Macedonian, QStringLiteral("Macedonian"), QStringLiteral("mk")); 81 | addSupportedLanguage(Malagasy, QStringLiteral("Malagasy"), QStringLiteral("mg")); 82 | addSupportedLanguage(Malay, QStringLiteral("Malay"), QStringLiteral("ms")); 83 | addSupportedLanguage(Malayalam, QStringLiteral("Malayalam"), QStringLiteral("ml")); 84 | addSupportedLanguage(Maltese, QStringLiteral("Maltese"), QStringLiteral("mt")); 85 | addSupportedLanguage(Maori, QStringLiteral("Māori"), QStringLiteral("mi")); 86 | addSupportedLanguage(Marathi, QStringLiteral("Marathi"), QStringLiteral("mr")); 87 | addSupportedLanguage(Mongolian, QStringLiteral("Mongolian"), QStringLiteral("mn")); 88 | addSupportedLanguage(Nepali, QStringLiteral("Nepali"), QStringLiteral("ne")); 89 | addSupportedLanguage(Norwegian, QStringLiteral("Norwegian"), QStringLiteral("no")); 90 | addSupportedLanguage(Odia, QStringLiteral("Odia"), QStringLiteral("or")); 91 | addSupportedLanguage(Pashto, QStringLiteral("Pashto"), QStringLiteral("ps")); 92 | addSupportedLanguage(Persian, QStringLiteral("Persian"), QStringLiteral("fa")); 93 | addSupportedLanguage(Polish, QStringLiteral("Polish"), QStringLiteral("pl")); 94 | addSupportedLanguage(Portuguese, QStringLiteral("Portuguese"), QStringLiteral("pt")); 95 | addSupportedLanguage(Punjabi, QStringLiteral("Punjabi"), QStringLiteral("pa")); 96 | addSupportedLanguage(Romanian, QStringLiteral("Romanian"), QStringLiteral("ro")); 97 | addSupportedLanguage(Russian, QStringLiteral("Russian"), QStringLiteral("ru")); 98 | addSupportedLanguage(Samoan, QStringLiteral("Samoan"), QStringLiteral("sm")); 99 | addSupportedLanguage(ScotsGaelic, QStringLiteral("Scots Gaelic"), QStringLiteral("gd")); 100 | addSupportedLanguage(Serbian, QStringLiteral("Serbian"), QStringLiteral("sr")); 101 | addSupportedLanguage(Shona, QStringLiteral("Shona"), QStringLiteral("sn")); 102 | addSupportedLanguage(Sindhi, QStringLiteral("Sindhi"), QStringLiteral("sd")); 103 | addSupportedLanguage(Sinhala, QStringLiteral("Sinhala"), QStringLiteral("si")); 104 | addSupportedLanguage(Slovak, QStringLiteral("Slovak"), QStringLiteral("sk")); 105 | addSupportedLanguage(Slovenian, QStringLiteral("Slovenian"), QStringLiteral("sl")); 106 | addSupportedLanguage(Somali, QStringLiteral("Somali"), QStringLiteral("so")); 107 | addSupportedLanguage(Sotho, QStringLiteral("Sotho"), QStringLiteral("st")); 108 | addSupportedLanguage(Spanish, QStringLiteral("Spanish"), QStringLiteral("es")); 109 | addSupportedLanguage(Sundanese, QStringLiteral("Sundanese"), QStringLiteral("su")); 110 | addSupportedLanguage(Swahili, QStringLiteral("Swahili"), QStringLiteral("sw")); 111 | addSupportedLanguage(Swedish, QStringLiteral("Swedish"), QStringLiteral("sv")); 112 | addSupportedLanguage(Tagalog, QStringLiteral("Tagalog"), QStringLiteral("tl")); 113 | addSupportedLanguage(Tajik, QStringLiteral("Tajik"), QStringLiteral("tg")); 114 | addSupportedLanguage(Tamil, QStringLiteral("Tamil"), QStringLiteral("ta")); 115 | addSupportedLanguage(Tatar, QStringLiteral("Tatar"), QStringLiteral("tt")); 116 | addSupportedLanguage(Telugu, QStringLiteral("Telugu"), QStringLiteral("te")); 117 | addSupportedLanguage(Thai, QStringLiteral("Thai"), QStringLiteral("th")); 118 | addSupportedLanguage(Turkish, QStringLiteral("Turkish"), QStringLiteral("tr")); 119 | addSupportedLanguage(Turkmen, QStringLiteral("Turkmen"), QStringLiteral("tk")); 120 | addSupportedLanguage(Ukrainian, QStringLiteral("Ukrainian"), QStringLiteral("uk")); 121 | addSupportedLanguage(Urdu, QStringLiteral("Urdu"), QStringLiteral("ur")); 122 | addSupportedLanguage(Uyghur, QStringLiteral("Uyghur"), QStringLiteral("ug")); 123 | addSupportedLanguage(Uzbek, QStringLiteral("Uzbek"), QStringLiteral("uz")); 124 | addSupportedLanguage(Vietnamese, QStringLiteral("Vietnamese"), QStringLiteral("vi")); 125 | addSupportedLanguage(Welsh, QStringLiteral("Welsh"), QStringLiteral("cy")); 126 | addSupportedLanguage(WestFrisian, QStringLiteral("West Frisian"), QStringLiteral("fy")); 127 | addSupportedLanguage(Xhosa, QStringLiteral("Xhosa"), QStringLiteral("xh")); 128 | addSupportedLanguage(Yiddish, QStringLiteral("Yiddish"), QStringLiteral("he")); 129 | addSupportedLanguage(Yoruba, QStringLiteral("Yoruba"), QStringLiteral("yo")); 130 | addSupportedLanguage(Zulu, QStringLiteral("Zulu"), QStringLiteral("zu")); 131 | } 132 | 133 | void LanguageRepository::addSupportedLanguage(SupportedLanguage supportedLanguage, QString name, QString abbreviation) { 134 | Language language(supportedLanguage, name, abbreviation); 135 | supportedLanguages->insert(supportedLanguage, language); 136 | } 137 | 138 | QList LanguageRepository::getSupportedLanguages() { 139 | return supportedLanguages->values(); 140 | } 141 | 142 | QString LanguageRepository::getCombinedName(QString abbreviation) { 143 | for (auto language : *supportedLanguages) { 144 | if (language.getAbbreviation() == abbreviation) { 145 | return language.getCombinedName(); 146 | } 147 | } 148 | return ""; 149 | } 150 | 151 | bool LanguageRepository::containsAbbreviation(QString abbreviation) { 152 | for (auto language: *supportedLanguages) { 153 | if (language.getAbbreviation() == abbreviation) 154 | return true; 155 | } 156 | return false; 157 | } 158 | -------------------------------------------------------------------------------- /src/config/translator_config.ui: -------------------------------------------------------------------------------- 1 | 2 | 3 | David Baumr 4 | TranslatorConfigUi 5 | 6 | 7 | 8 | 0 9 | 0 10 | 512 11 | 893 12 | 13 | 14 | 15 | 16 | 17 | 18 | false 19 | 20 | 21 | 22 | 23 | 24 | Qt::AlignBottom|Qt::AlignLeading|Qt::AlignLeft 25 | 26 | 27 | false 28 | 29 | 30 | false 31 | 32 | 33 | 34 | 35 | 36 | Default source language 37 | 38 | 39 | 40 | 41 | 42 | 43 | Will be used if no source language is specified. 44 | 45 | 46 | 47 | 48 | 49 | 50 | Alternative source language 51 | 52 | 53 | 54 | 55 | 56 | 57 | Will be used if target language and default source language are identical. 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | <html><head/><body><p>All translation engines are disabled. Enable at least one translation engine to see results.</p></body></html> 68 | 69 | 70 | true 71 | 72 | 73 | false 74 | 75 | 76 | KMessageWidget::Error 77 | 78 | 79 | 80 | 81 | 82 | 83 | It's not recommended to activate Bing as the only translation engine. 84 | 85 | 86 | true 87 | 88 | 89 | false 90 | 91 | 92 | KMessageWidget::Warning 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 500 101 | 200 102 | 103 | 104 | 105 | 106 | 16777215 107 | 16777215 108 | 109 | 110 | 111 | 0 112 | 113 | 114 | true 115 | 116 | 117 | false 118 | 119 | 120 | 121 | Google Translate 122 | 123 | 124 | 125 | true 126 | 127 | 128 | 129 | 0 130 | 0 131 | 106 132 | 48 133 | 134 | 135 | 136 | Qt::LeftToRight 137 | 138 | 139 | 140 | 141 | 142 | true 143 | 144 | 145 | 146 | 147 | 148 | Enable 149 | 150 | 151 | true 152 | 153 | 154 | false 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | Bing Translator 164 | 165 | 166 | 167 | true 168 | 169 | 170 | 171 | 0 172 | 0 173 | 481 174 | 121 175 | 176 | 177 | 178 | Qt::LeftToRight 179 | 180 | 181 | 182 | 183 | 184 | true 185 | 186 | 187 | 188 | QFormLayout::AllNonFixedFieldsGrow 189 | 190 | 191 | QFormLayout::WrapLongRows 192 | 193 | 194 | Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop 195 | 196 | 197 | 0 198 | 199 | 200 | 4 201 | 202 | 203 | 0 204 | 205 | 206 | 0 207 | 208 | 209 | 210 | 211 | Bing Translate works unreliably. It will only sometimes show results. 212 | 213 | 214 | true 215 | 216 | 217 | false 218 | 219 | 220 | KMessageWidget::Warning 221 | 222 | 223 | 224 | 225 | 226 | 227 | Enable 228 | 229 | 230 | false 231 | 232 | 233 | false 234 | 235 | 236 | 237 | 238 | 239 | 240 | 241 | 242 | Baidu 243 | 244 | 245 | 246 | 247 | 0 248 | 0 249 | 500 250 | 172 251 | 252 | 253 | 254 | 255 | 256 | 257 | true 258 | 259 | 260 | 261 | 6 262 | 263 | 264 | 6 265 | 266 | 267 | 6 268 | 269 | 270 | 6 271 | 272 | 273 | 274 | 275 | 6 276 | 277 | 278 | 6 279 | 280 | 281 | 6 282 | 283 | 284 | 6 285 | 286 | 287 | 288 | 289 | App ID 290 | 291 | 292 | 293 | 294 | 295 | 296 | 297 | 298 | 299 | API Key 300 | 301 | 302 | 303 | 304 | 305 | 306 | 307 | 308 | 309 | Enable 310 | 311 | 312 | 313 | 314 | 315 | 316 | 317 | 318 | 319 | 320 | Youdao 321 | 322 | 323 | 324 | 325 | 0 326 | 0 327 | 500 328 | 290 329 | 330 | 331 | 332 | 333 | 334 | 335 | true 336 | 337 | 338 | 339 | 6 340 | 341 | 342 | 6 343 | 344 | 345 | 6 346 | 347 | 348 | 6 349 | 350 | 351 | 352 | 353 | 6 354 | 355 | 356 | 6 357 | 358 | 359 | 6 360 | 361 | 362 | 6 363 | 364 | 365 | 366 | 367 | Enable 368 | 369 | 370 | 371 | 372 | 373 | 374 | App ID 375 | 376 | 377 | 378 | 379 | 380 | 381 | 382 | 383 | 384 | App Secret 385 | 386 | 387 | 388 | 389 | 390 | 391 | 392 | 393 | 394 | 395 | 396 | 397 | 398 | 399 | 400 | 401 | 402 | KMessageWidget 403 | QFrame 404 |
kmessagewidget.h
405 |
406 |
407 | 408 | 409 |
410 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . --------------------------------------------------------------------------------