lifailon - Console-Translate 0.3.3

PowerShell module (cross-platform cli client) for free text translation using Google, DeepL, MyMemory and Reverso providers via REST API

PM> Install-Package Console-Translate -Version 0.3.3 -Source https://www.myget.org/F/lifailon/api/v3/index.json

Copy to clipboard

> nuget.exe install Console-Translate -Version 0.3.3 -Source https://www.myget.org/F/lifailon/api/v3/index.json

Copy to clipboard

> dotnet add package Console-Translate --version 0.3.3 --source https://www.myget.org/F/lifailon/api/v3/index.json

Copy to clipboard
<PackageReference Include="Console-Translate" Version="0.3.3" />
Copy to clipboard
source https://www.myget.org/F/lifailon/api/v3/index.json

nuget Console-Translate  ~> 0.3.3
Copy to clipboard

> choco install Console-Translate --version 0.3.3 --source https://www.myget.org/F/lifailon/api/v2

Copy to clipboard
Import-Module PowerShellGet
Register-PSRepository -Name "lifailon" -SourceLocation "https://www.myget.org/F/lifailon/api/v2"
Install-Module -Name "Console-Translate" -RequiredVersion "0.3.3" -Repository "lifailon" 
Copy to clipboard

Console-Translate

⚠ This module is not planned to be supported.
Try it cross-platform TUI for translating text using multiple providers simultaneously.


PowerShell module for free text translation using Google (public serverless on Vercel), DeepLX (public serverless on Vercel), MyMemory and Reverso providers via REST API (no token required).

This module also automates the process of installing, updating, managing and working with the DeepLX server.

💡 About

The module can be very useful if you spend a lot of time in the console or do not want to use a browser or third-party applications to translate text.

The work of the module is automated and free of charge, no additional intervention in the work of the module is required from you.

The process of determining the language for the LanguageSource and LanguageTarget parameters is automated between Russian and English. This process can be automated for any language.

This module also automates the process of launching the DeepLX server for local or remote use on other machines (e.g. those without Internet access).

Tested on Windows 10/11 and Ubuntu Server 20.04+ using PowerShell Core version 7.2 +.


🚀 Install module to Windows

NuGet

  • Pre-register the NuGet package manager if you have not done so previously:
Register-PSRepository -Name "NuGet" -SourceLocation "https://www.nuget.org/api/v2" -InstallationPolicy Trusted
  • Install the module:
Install-Module Console-Translate -Repository NuGet

MyGet

Register-PSRepository -Name "lifailon" -SourceLocation "https://www.myget.org/F/lifailon/api/v2" -InstallationPolicy Trusted
Install-Module Console-Translate -Repository lifailon

Scoop

  • Install the package manager:
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser && irm https://get.scoop.sh | Invoke-Expression
  • Install the module:
scoop bucket add Console-Translate https://github.com/Lifailon/Console-Translate.git
scoop install Console-Translate
  • To remove module:
scoop uninstall Console-Translate && scoop bucket rm Console-Translate

Deploy from GitHub

Deployment a module from the GitHub repository with a single command in the console:

Invoke-Expression(New-Object Net.WebClient).DownloadString("https://raw.githubusercontent.com/Lifailon/Console-Translate/rsa/deploy-module.ps1")
  • Import the module:
Import-Module Console-Translate
Get-Command -Module Console-Translate

CommandType     Name                 Version    Source
-----------     ----                 -------    ------
Function        Get-Translate        0.3        Console-Translate
Function        Install-DeepLX       0.3        Console-Translate
Function        Start-DeepLX         0.3        Console-Translate
Function        Stop-DeepLX          0.3        Console-Translate
Function        Get-DeepLX           0.3        Console-Translate

🐧 Install module to Linux

💡 Dependence: PowerShell Core

  • Example install PowerShell to Ubuntu:
sudo apt-get install -y wget apt-transport-https software-properties-common
curl -s https://packages.microsoft.com/config/ubuntu/$(lsb_release -rs)/packages-microsoft-prod.deb -o packages-microsoft-prod.deb
sudo dpkg -i packages-microsoft-prod.deb
sudo apt-get update
sudo apt-get install -y powershell
  • Install module:
pwsh -c 'Invoke-Expression(New-Object Net.WebClient).DownloadString("https://raw.githubusercontent.com/Lifailon/Console-Translate/rsa/deploy-module.ps1")'

Run the PowerShell interpreter using the pwsh command. All commands for Windows are identical for execution in Linux by PowerShell Core.


🎉 Examples

The parameters limit the use of this cmdlet to two languages: English (en) and Russian (ru), for which there is automatic detection of the source language at the PowerShell code level.

Get-Translate "Module for text translation" -Provider Google
Модуль для перевода текста

Get-Translate "Модуль для перевода текста"
Text translation module

Get-Translate "Hello друг" -LanguageSelected
Language Source: EN
Language Target: RU
Привет друг

Get-Translate "Привет world" -LanguageSelected
Language Source: RU
Language Target: EN
Hello world

Get-Translate "Module for text translation" -Provider DeepL
Модуль для перевода текста

Get-Translate "Module for text translation" -Provider MyMemory
Модуль для перевода текста
Текстовый перевод.
Перевод текста БД

Get-Translate "Module for text translation" -Provider Reverso
Модуль перевода текстов

🔨 DeepLX

Supported languages from the drop-down list (encoded in the parameter) with support for automatic language detection at the api level.

Abbr EN (RU)
EN English (Английский)
RU Russian (Русский)
JA Japanese (Японский)
ZH Chinese (Китайский)
KO Korean (Корейский)
TR Turkish (Турецкий)
UK Ukrainian (Украинский)
SK Slovak (Словацкий)
SL Slovenian (Словенский)
LT Lithuanian (Литовский)
PL Polish (Польский)
CS Czech (Чешский)
FI Finnish (Финский)
ET Estonian (Эстонский)
BG Bulgarian (Болгарский)
DA Danish (Датский)
LV Latvian (Латышский)
IT Italian (Итальянский)
ES Spanish (Испанский)
FR French (Французский)
PT Portuguese (Португальский)
RO Romanian (Румынский)
SV Swedish (Шведский)
HU Hungarian (Венгерский)
EL Greek (Греческий)
NB Norwegian Bokmal (Норвежский)
NL Dutch (Нидерландский)
DE German (Немецкий)
ID Indonesian (Индонезийский)
AR Arabic (Арабский)

Local server

Install or update the DeepLX server executable for local or remote use with a single command (for Windows and Linux):

Install-DeepLX

When calling the module, if the remote server address is not specified (parameter: Server), the local server is started for the time of sending a request and receiving a response, after which the server stops, it allows not to keep network socket open.

# Russian to English
Get-DeepLX "Помоги перевести текст"
Help translate a text
Help translate the text
Help me translate a text

# English to Russian
Get-DeepLX "Help translate text" ru
Помочь перевести текст
Помощь в переводе текста

# English to Japanese
Get-DeepLX "Help translate text" ja
テキストの翻訳を手伝う
テキストを翻訳する
テキストの翻訳を支援

# Japanese to Russian
Get-DeepLX "テキストの翻訳を手伝う" ru
Помогите перевести тексты.
Помогите переводить тексты.
Помогите перевести текст.

# English to Chinese
Get-DeepLX "Help translate text" zh
帮助翻译文字
协助翻译文本

# English to Turkish
Get-DeepLX "Help translate text" tr
Metni çevirmeye yardımcı olun
Metin çevirisine yardım edin
Metni çevirmeye yardım et

Remote server

If you need to use a single server to handle all requests from multiple clients on the network, you can use this construct:

📭 Start the server:

Start-DeepLX -Job

Start-DeepLX -Status
Running

This will allow you to run the server in the backgroundю. The default port is 1188 and the api token (this key is used for authorization on the server) is 7777777777.

✉️ Execute a requests to the remote server:

Get-DeepLX -Text "Перевод текста на удаленном сервере" -Server 192.168.3.100
Translation of text on a remote server
Translate a text on a remote server
Translating text on a remote server

Get-DeepLX -Text "Перевод текста на удаленном сервере" -Server 192.168.3.100 -Port 1188 -Token "7777777777"
Translation of text on a remote server
Translate a text on a remote server
Translating text on a remote server

Server stop:

Stop-DeepLX

Start-DeepLX -Status
Not running

Windows Terminal

To speed up the process of interacting with the module, program hotkeys in Windows Terminal:

Open the JSON configuration file in Application Settings and add or edit the Actions block:

"actions": 
    [
        {
            "command": 
            {
                "action": "copy",
                "singleLine": false
            },
            "keys": "ctrl+c" // default: ctrl+shift+c
        },
        {
            "command": "paste",
            // We save the classic interpreter insertion via ctrl+v, without forcing you to execute the code line by line
            "keys": "ctrl+shift+v" // default: ctrl+v
        },
        {
            "command": 
            {
                "action": "sendInput",
                "input": "\u0001\u001b[3~Get-Translate -Provider Google ''\u001b[D"
            },
            "keys": "ctrl+g"
        },
        {
            "command": 
            {
                "action": "sendInput",
                "input": "\u0001\u001b[3~Get-Translate -Provider Google -Text $(Get-Clipboard)\u001b[D\r"
            },
            "keys": "ctrl+shift+g"
        }
    ]

The first two command blocks are responsible for redefining the copy and paste keys from the clipboard (use Ctrl+C and Ctrl+V as in the classic PowerShell terminal, getting rid of intrusive warnings about pasting text and line-by-line execution of commands).

The third parameter is responsible for processing the Ctrl+G key press, which preliminarily clears the input line, after which it causes the text to be inserted: Get-Translate -Provider Google '' and moves the cursor to the center of the quotation marks, which allows you to enter text and call translation immediately after pressing . The last command does the same thing, but pastes text from the clipboard (using the built-in Get-Clipboard command) and calls execution to instantly translate the text when you press Ctrl+Shift+G.

Similarly, you can assign the translation call for DeepL/DeepLX, MyMemory and Reverso to other key combinations.


📢 Module not using API

You can use a module that dont use an API, instead using Selenium via .NET to PowerShell for compose requests directly to the application:

Automated deployment and updating of all dependencies: Deploy Selenium: Deploy-Selenium

Repository: Selenium-Modules

Module: Get-Translate

Owners

Lifailon

Authors

Lifailon

Project URL

https://github.com/Lifailon/Console-Translate

License

Unknown

Tags

PowerShell, Module, Translate, Translator, Google, DeepL, DeepLX, MyMemory, Reverso, api, cli

Info

5 total downloads
0 downloads for version 0.3.3
Download (2.45 KB)
Found on the current feed only

Package history

Version Size Last updated Downloads Mirrored?
0.3.6 11.15 KB Tue, 17 Sep 2024 22:48:46 GMT 0
0.3.5 11.56 KB Tue, 17 Sep 2024 16:57:56 GMT 0
0.3.4 11.52 KB Tue, 17 Sep 2024 13:30:18 GMT 0
0.3.3 2.45 KB Tue, 17 Sep 2024 13:27:14 GMT 0
0.3.2 2.43 KB Tue, 17 Sep 2024 10:29:11 GMT 0
0.3.1 9.93 KB Mon, 16 Sep 2024 21:03:25 GMT 0
0.3.0 9.92 KB Mon, 16 Sep 2024 20:37:39 GMT 5