├── .gitignore ├── DeepL Translator (click here).bat ├── DictionaryProgram ├── Plugins │ └── place_Nova_here.txt ├── TranslationAggregator.exe ├── TranslationAggregator.ini ├── activateTranslationAggregator.bat ├── dictionaries │ ├── Conjugations.txt │ ├── Conjugations_old.txt │ ├── edict2 │ └── edict2.bin └── docs │ ├── ChangeLog.txt │ ├── GPL.txt │ └── Hook Codes.txt ├── Instructions ├── Basic Guide (Read this once).txt ├── For both Translators.txt ├── List Of Version Updates.txt └── in case DeepL changed HTML ids │ ├── 0 right click on textbox and click inspect.png │ ├── 1 location of input textbox do the same for result box.png │ └── 2 this is the id and add # before it in setting file.png ├── Offline Translator (click here).bat ├── Papago Translator (click here).bat ├── README.md ├── backendServer ├── Modules │ ├── DeepL-Server │ │ ├── DeepLtranslator.js │ │ ├── activate.bat │ │ ├── main.js │ │ └── settings.json │ ├── Offline-Translation-Server │ │ ├── activate.bat │ │ ├── activateNodeServer.bat │ │ ├── listOfVariablesData.json │ │ ├── offlineBackend.js │ │ └── offlineTranslation │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ └── flaskServer.cpython-38.pyc │ │ │ ├── activateOfflineTranslationServer.bat │ │ │ ├── command.txt │ │ │ ├── example.txt.txt │ │ │ ├── node_modules │ │ │ └── node-fetch │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ ├── browser.js │ │ │ │ ├── lib │ │ │ │ ├── index.es.js │ │ │ │ ├── index.js │ │ │ │ └── index.mjs │ │ │ │ └── package.json │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ └── requestTranslation.js │ └── Papago-Server │ │ ├── PapagoTranslator.js │ │ ├── activate.bat │ │ ├── main.js │ │ └── settings.json ├── Test │ └── requestTranslation.js ├── __pycache__ │ ├── __init__.cpython-38.pyc │ └── flaskServer.cpython-38.pyc └── package.json └── userInterface └── resources └── app ├── WebsocketConnection.js ├── listOfVariablesData.json ├── main.js ├── mainMenuWindow ├── mainMenuWindow.css ├── mainMenuWindow.html └── mainMenuWindow.js ├── package.json └── translationWindow ├── debug.log ├── menu.css ├── menu.js ├── savedata.json ├── slide-menu.css ├── slide-menu.js ├── translationWindow.html └── translationWindow.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/.gitignore -------------------------------------------------------------------------------- /DeepL Translator (click here).bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/DeepL Translator (click here).bat -------------------------------------------------------------------------------- /DictionaryProgram/Plugins/place_Nova_here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DictionaryProgram/TranslationAggregator.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/DictionaryProgram/TranslationAggregator.exe -------------------------------------------------------------------------------- /DictionaryProgram/TranslationAggregator.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/DictionaryProgram/TranslationAggregator.ini -------------------------------------------------------------------------------- /DictionaryProgram/activateTranslationAggregator.bat: -------------------------------------------------------------------------------- 1 | .\TranslationAggregator.exe -------------------------------------------------------------------------------- /DictionaryProgram/dictionaries/Conjugations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/DictionaryProgram/dictionaries/Conjugations.txt -------------------------------------------------------------------------------- /DictionaryProgram/dictionaries/Conjugations_old.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/DictionaryProgram/dictionaries/Conjugations_old.txt -------------------------------------------------------------------------------- /DictionaryProgram/dictionaries/edict2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/DictionaryProgram/dictionaries/edict2 -------------------------------------------------------------------------------- /DictionaryProgram/dictionaries/edict2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/DictionaryProgram/dictionaries/edict2.bin -------------------------------------------------------------------------------- /DictionaryProgram/docs/ChangeLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/DictionaryProgram/docs/ChangeLog.txt -------------------------------------------------------------------------------- /DictionaryProgram/docs/GPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/DictionaryProgram/docs/GPL.txt -------------------------------------------------------------------------------- /DictionaryProgram/docs/Hook Codes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/DictionaryProgram/docs/Hook Codes.txt -------------------------------------------------------------------------------- /Instructions/Basic Guide (Read this once).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/Instructions/Basic Guide (Read this once).txt -------------------------------------------------------------------------------- /Instructions/For both Translators.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/Instructions/For both Translators.txt -------------------------------------------------------------------------------- /Instructions/List Of Version Updates.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/Instructions/List Of Version Updates.txt -------------------------------------------------------------------------------- /Instructions/in case DeepL changed HTML ids/0 right click on textbox and click inspect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/Instructions/in case DeepL changed HTML ids/0 right click on textbox and click inspect.png -------------------------------------------------------------------------------- /Instructions/in case DeepL changed HTML ids/1 location of input textbox do the same for result box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/Instructions/in case DeepL changed HTML ids/1 location of input textbox do the same for result box.png -------------------------------------------------------------------------------- /Instructions/in case DeepL changed HTML ids/2 this is the id and add # before it in setting file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/Instructions/in case DeepL changed HTML ids/2 this is the id and add # before it in setting file.png -------------------------------------------------------------------------------- /Offline Translator (click here).bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/Offline Translator (click here).bat -------------------------------------------------------------------------------- /Papago Translator (click here).bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/Papago Translator (click here).bat -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/README.md -------------------------------------------------------------------------------- /backendServer/Modules/DeepL-Server/DeepLtranslator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/backendServer/Modules/DeepL-Server/DeepLtranslator.js -------------------------------------------------------------------------------- /backendServer/Modules/DeepL-Server/activate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/backendServer/Modules/DeepL-Server/activate.bat -------------------------------------------------------------------------------- /backendServer/Modules/DeepL-Server/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/backendServer/Modules/DeepL-Server/main.js -------------------------------------------------------------------------------- /backendServer/Modules/DeepL-Server/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/backendServer/Modules/DeepL-Server/settings.json -------------------------------------------------------------------------------- /backendServer/Modules/Offline-Translation-Server/activate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/backendServer/Modules/Offline-Translation-Server/activate.bat -------------------------------------------------------------------------------- /backendServer/Modules/Offline-Translation-Server/activateNodeServer.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/backendServer/Modules/Offline-Translation-Server/activateNodeServer.bat -------------------------------------------------------------------------------- /backendServer/Modules/Offline-Translation-Server/listOfVariablesData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/backendServer/Modules/Offline-Translation-Server/listOfVariablesData.json -------------------------------------------------------------------------------- /backendServer/Modules/Offline-Translation-Server/offlineBackend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/backendServer/Modules/Offline-Translation-Server/offlineBackend.js -------------------------------------------------------------------------------- /backendServer/Modules/Offline-Translation-Server/offlineTranslation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backendServer/Modules/Offline-Translation-Server/offlineTranslation/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/backendServer/Modules/Offline-Translation-Server/offlineTranslation/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /backendServer/Modules/Offline-Translation-Server/offlineTranslation/__pycache__/flaskServer.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/backendServer/Modules/Offline-Translation-Server/offlineTranslation/__pycache__/flaskServer.cpython-38.pyc -------------------------------------------------------------------------------- /backendServer/Modules/Offline-Translation-Server/offlineTranslation/activateOfflineTranslationServer.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/backendServer/Modules/Offline-Translation-Server/offlineTranslation/activateOfflineTranslationServer.bat -------------------------------------------------------------------------------- /backendServer/Modules/Offline-Translation-Server/offlineTranslation/command.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/backendServer/Modules/Offline-Translation-Server/offlineTranslation/command.txt -------------------------------------------------------------------------------- /backendServer/Modules/Offline-Translation-Server/offlineTranslation/example.txt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/backendServer/Modules/Offline-Translation-Server/offlineTranslation/example.txt.txt -------------------------------------------------------------------------------- /backendServer/Modules/Offline-Translation-Server/offlineTranslation/node_modules/node-fetch/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/backendServer/Modules/Offline-Translation-Server/offlineTranslation/node_modules/node-fetch/CHANGELOG.md -------------------------------------------------------------------------------- /backendServer/Modules/Offline-Translation-Server/offlineTranslation/node_modules/node-fetch/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/backendServer/Modules/Offline-Translation-Server/offlineTranslation/node_modules/node-fetch/LICENSE.md -------------------------------------------------------------------------------- /backendServer/Modules/Offline-Translation-Server/offlineTranslation/node_modules/node-fetch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/backendServer/Modules/Offline-Translation-Server/offlineTranslation/node_modules/node-fetch/README.md -------------------------------------------------------------------------------- /backendServer/Modules/Offline-Translation-Server/offlineTranslation/node_modules/node-fetch/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/backendServer/Modules/Offline-Translation-Server/offlineTranslation/node_modules/node-fetch/browser.js -------------------------------------------------------------------------------- /backendServer/Modules/Offline-Translation-Server/offlineTranslation/node_modules/node-fetch/lib/index.es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/backendServer/Modules/Offline-Translation-Server/offlineTranslation/node_modules/node-fetch/lib/index.es.js -------------------------------------------------------------------------------- /backendServer/Modules/Offline-Translation-Server/offlineTranslation/node_modules/node-fetch/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/backendServer/Modules/Offline-Translation-Server/offlineTranslation/node_modules/node-fetch/lib/index.js -------------------------------------------------------------------------------- /backendServer/Modules/Offline-Translation-Server/offlineTranslation/node_modules/node-fetch/lib/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/backendServer/Modules/Offline-Translation-Server/offlineTranslation/node_modules/node-fetch/lib/index.mjs -------------------------------------------------------------------------------- /backendServer/Modules/Offline-Translation-Server/offlineTranslation/node_modules/node-fetch/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/backendServer/Modules/Offline-Translation-Server/offlineTranslation/node_modules/node-fetch/package.json -------------------------------------------------------------------------------- /backendServer/Modules/Offline-Translation-Server/offlineTranslation/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/backendServer/Modules/Offline-Translation-Server/offlineTranslation/package-lock.json -------------------------------------------------------------------------------- /backendServer/Modules/Offline-Translation-Server/offlineTranslation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/backendServer/Modules/Offline-Translation-Server/offlineTranslation/package.json -------------------------------------------------------------------------------- /backendServer/Modules/Offline-Translation-Server/offlineTranslation/requestTranslation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/backendServer/Modules/Offline-Translation-Server/offlineTranslation/requestTranslation.js -------------------------------------------------------------------------------- /backendServer/Modules/Papago-Server/PapagoTranslator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/backendServer/Modules/Papago-Server/PapagoTranslator.js -------------------------------------------------------------------------------- /backendServer/Modules/Papago-Server/activate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/backendServer/Modules/Papago-Server/activate.bat -------------------------------------------------------------------------------- /backendServer/Modules/Papago-Server/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/backendServer/Modules/Papago-Server/main.js -------------------------------------------------------------------------------- /backendServer/Modules/Papago-Server/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/backendServer/Modules/Papago-Server/settings.json -------------------------------------------------------------------------------- /backendServer/Test/requestTranslation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/backendServer/Test/requestTranslation.js -------------------------------------------------------------------------------- /backendServer/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/backendServer/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /backendServer/__pycache__/flaskServer.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/backendServer/__pycache__/flaskServer.cpython-38.pyc -------------------------------------------------------------------------------- /backendServer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/backendServer/package.json -------------------------------------------------------------------------------- /userInterface/resources/app/WebsocketConnection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/userInterface/resources/app/WebsocketConnection.js -------------------------------------------------------------------------------- /userInterface/resources/app/listOfVariablesData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/userInterface/resources/app/listOfVariablesData.json -------------------------------------------------------------------------------- /userInterface/resources/app/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/userInterface/resources/app/main.js -------------------------------------------------------------------------------- /userInterface/resources/app/mainMenuWindow/mainMenuWindow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/userInterface/resources/app/mainMenuWindow/mainMenuWindow.css -------------------------------------------------------------------------------- /userInterface/resources/app/mainMenuWindow/mainMenuWindow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/userInterface/resources/app/mainMenuWindow/mainMenuWindow.html -------------------------------------------------------------------------------- /userInterface/resources/app/mainMenuWindow/mainMenuWindow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/userInterface/resources/app/mainMenuWindow/mainMenuWindow.js -------------------------------------------------------------------------------- /userInterface/resources/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/userInterface/resources/app/package.json -------------------------------------------------------------------------------- /userInterface/resources/app/translationWindow/debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/userInterface/resources/app/translationWindow/debug.log -------------------------------------------------------------------------------- /userInterface/resources/app/translationWindow/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/userInterface/resources/app/translationWindow/menu.css -------------------------------------------------------------------------------- /userInterface/resources/app/translationWindow/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/userInterface/resources/app/translationWindow/menu.js -------------------------------------------------------------------------------- /userInterface/resources/app/translationWindow/savedata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/userInterface/resources/app/translationWindow/savedata.json -------------------------------------------------------------------------------- /userInterface/resources/app/translationWindow/slide-menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/userInterface/resources/app/translationWindow/slide-menu.css -------------------------------------------------------------------------------- /userInterface/resources/app/translationWindow/slide-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/userInterface/resources/app/translationWindow/slide-menu.js -------------------------------------------------------------------------------- /userInterface/resources/app/translationWindow/translationWindow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/userInterface/resources/app/translationWindow/translationWindow.html -------------------------------------------------------------------------------- /userInterface/resources/app/translationWindow/translationWindow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leminhyen2/Sugoi-Japanese-Translator/HEAD/userInterface/resources/app/translationWindow/translationWindow.js --------------------------------------------------------------------------------