PowerShell/Scripts/translate-text.ps1

46 lines
1.5 KiB
PowerShell
Raw Normal View History

2021-09-27 10:38:12 +02:00
<#
2021-07-13 21:10:02 +02:00
.SYNOPSIS
2021-10-04 21:29:23 +02:00
Translates text into other languages
2021-07-13 21:10:02 +02:00
.DESCRIPTION
2022-01-30 10:49:30 +01:00
This PowerShell script translates text into other languages.
2021-10-16 16:50:10 +02:00
.PARAMETER Text
Specifies the text to translate
.PARAMETER SourceLang
Specifies the source language
.PARAMETER TargetLang
Specifies the target language
2021-07-13 21:10:02 +02:00
.EXAMPLE
2021-09-25 19:43:22 +02:00
PS> ./translate-text "Hello World" de en
2021-07-13 21:10:02 +02:00
.LINK
https://github.com/fleschutz/PowerShell
2022-01-30 10:49:30 +01:00
.NOTES
Author: Markus Fleschutz / License: CC0
2020-12-29 15:14:21 +01:00
#>
2020-10-10 18:51:57 +02:00
2022-01-02 12:04:56 +01:00
param([string]$Text = "", [string]$SourceLangCode = "en", [string]$TargetLangCode = "any")
2020-05-03 18:54:49 +02:00
2022-01-02 12:04:56 +01:00
function UseLibreTranslate { param([string]$Text, [string]$SourceLangCode, [string]$TargetLangCode)
$Parameters = @{"q"="$Text"; "source"="$SourceLangCode"; "target"="$TargetLangCode"; }
$Result = (Invoke-WebRequest -Uri https://translate.mentality.rip/translate -Method POST -Body ($Parameters|ConvertTo-Json) -ContentType "application/json" -useBasicParsing).content | ConvertFrom-Json
return $Result.translatedText
}
2020-05-03 18:54:49 +02:00
2020-10-05 13:12:12 +02:00
try {
2022-01-02 12:04:56 +01:00
if ($Text -eq "" ) { $Text = read-host "Enter text to translate" }
2021-07-15 15:51:22 +02:00
2022-01-02 12:04:56 +01:00
if ($TargetLangCode -eq "any") {
$TargetLangCodes = "ar","de","es","fr","ga","hi","it","ja","ko","pt","ru","zh"
foreach($TargetLangCode in $TargetLangCodes) {
$Translation = UseLibreTranslate $Text $SourceLangCode $TargetLangCode
write-output "$($TargetLangCode): $Translation"
2021-04-09 12:53:22 +02:00
}
} else {
2022-01-02 12:04:56 +01:00
$Translation = UseLibreTranslate $Text $SourceLangCode $TargetLangCode
write-output "$Translation"
2020-10-05 13:12:12 +02:00
}
2021-09-27 10:09:45 +02:00
exit 0 # success
2020-12-09 10:30:55 +01:00
} catch {
2021-09-16 20:19:10 +02:00
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
2020-12-09 10:30:55 +01:00
exit 1
}