Update the comment header

This commit is contained in:
Markus Fleschutz
2022-01-30 10:49:30 +01:00
parent c112524c6f
commit 7bccf69f0c
76 changed files with 216 additions and 216 deletions

View File

@ -2,7 +2,7 @@
.SYNOPSIS
Translates text into other languages
.DESCRIPTION
This script translates text into other languages.
This PowerShell script translates text into other languages.
.PARAMETER Text
Specifies the text to translate
.PARAMETER SourceLang
@ -11,10 +11,10 @@
Specifies the target language
.EXAMPLE
PS> ./translate-text "Hello World" de en
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#>
param([string]$Text = "", [string]$SourceLangCode = "en", [string]$TargetLangCode = "any")