Update the speak-*.ps1 scripts

This commit is contained in:
Markus Fleschutz 2023-08-06 11:35:19 +02:00
parent 001c19a2b3
commit 16489cb0b0
22 changed files with 24 additions and 24 deletions

View File

@ -6,7 +6,7 @@
.PARAMETER text .PARAMETER text
Specifies the text to speak Specifies the text to speak
.EXAMPLE .EXAMPLE
PS> ./speak-arabic "أهلاً" PS> ./speak-arabic.ps1 "أهلاً"
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES .NOTES

View File

@ -6,7 +6,7 @@
.PARAMETER Name .PARAMETER Name
Specifies the name of the checklist Specifies the name of the checklist
.EXAMPLE .EXAMPLE
PS> ./speak-checklist PS> ./speak-checklist.ps1
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES .NOTES

View File

@ -6,7 +6,7 @@
.PARAMETER StartNumber .PARAMETER StartNumber
Specifies the number to start from (10 by default) Specifies the number to start from (10 by default)
.EXAMPLE .EXAMPLE
PS> ./speak-countdown 60 PS> ./speak-countdown.ps1 60
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES .NOTES

View File

@ -6,7 +6,7 @@
.PARAMETER text .PARAMETER text
Specifies the text to speak Specifies the text to speak
.EXAMPLE .EXAMPLE
PS> ./speak-danish Hej PS> ./speak-danish.ps1 Hej
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES .NOTES

View File

@ -6,7 +6,7 @@
.PARAMETER text .PARAMETER text
Specifies the text to speak Specifies the text to speak
.EXAMPLE .EXAMPLE
PS> ./speak-dutch Hallo PS> ./speak-dutch.ps1 Hallo
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES .NOTES

View File

@ -6,7 +6,7 @@
.PARAMETER text .PARAMETER text
Specifies the text to speak Specifies the text to speak
.EXAMPLE .EXAMPLE
PS> ./speak-english Hi PS> ./speak-english.ps1 Hi
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES .NOTES

View File

@ -6,7 +6,7 @@
.PARAMETER File .PARAMETER File
Specifies the path to the text file Specifies the path to the text file
.EXAMPLE .EXAMPLE
PS> ./speak-file C:\MyFile.txt PS> ./speak-file.ps1 C:\MyFile.txt
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES .NOTES

View File

@ -6,7 +6,7 @@
.PARAMETER text .PARAMETER text
Specifies the text to speak Specifies the text to speak
.EXAMPLE .EXAMPLE
PS> ./speak-french Salut PS> ./speak-french.ps1 Salut
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES .NOTES

View File

@ -6,7 +6,7 @@
.PARAMETER text .PARAMETER text
Specifies the text to speak Specifies the text to speak
.EXAMPLE .EXAMPLE
PS> ./speak-german Hallo PS> ./speak-german.ps1 Hallo
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES .NOTES

View File

@ -6,7 +6,7 @@
.PARAMETER text .PARAMETER text
Specifies the text to speak Specifies the text to speak
.EXAMPLE .EXAMPLE
PS> ./speak-greek "γεια" PS> ./speak-greek.ps1 "γεια"
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES .NOTES

View File

@ -1,12 +1,12 @@
<# <#
.SYNOPSIS .SYNOPSIS
Speaks text with a Hindi text-to-speech voice Speaks text in Hindi
.DESCRIPTION .DESCRIPTION
This PowerShell script speaks the given text with a Hindi text-to-speech (TTS) voice. This PowerShell script speaks the given text with a Hindi text-to-speech (TTS) voice.
.PARAMETER text .PARAMETER text
Specifies the text to speak Specifies the text to speak
.EXAMPLE .EXAMPLE
PS> ./speak-hindi "नमस्ते" PS> ./speak-hindi.ps1 "नमस्ते"
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES .NOTES

View File

@ -6,7 +6,7 @@
.PARAMETER text .PARAMETER text
Specifies the text to speak Specifies the text to speak
.EXAMPLE .EXAMPLE
PS> ./speak-italian Ciao PS> ./speak-italian.ps1 Ciao
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES .NOTES

View File

@ -6,7 +6,7 @@
.PARAMETER text .PARAMETER text
Specifies the text to speak Specifies the text to speak
.EXAMPLE .EXAMPLE
PS> ./speak-japanese "ハロー" PS> ./speak-japanese.ps1 "ハロー"
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES .NOTES

View File

@ -6,7 +6,7 @@
.PARAMETER text .PARAMETER text
Specifies the text to speak Specifies the text to speak
.EXAMPLE .EXAMPLE
PS> ./speak-latin Salve PS> ./speak-latin.ps1 Salve
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES .NOTES

View File

@ -1,12 +1,12 @@
<# <#
.SYNOPSIS .SYNOPSIS
Speaks text with a Mandarin text-to-speech voice Speaks text in Mandarin
.DESCRIPTION .DESCRIPTION
This PowerShell script speaks the given text with a Mandarin text-to-speech (TTS) voice. This PowerShell script speaks the given text with a Mandarin text-to-speech (TTS) voice.
.PARAMETER text .PARAMETER text
Specifies the text to speak Specifies the text to speak
.EXAMPLE .EXAMPLE
PS> ./speak-mandarin "你好" PS> ./speak-mandarin.ps1 "你好"
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES .NOTES

View File

@ -6,7 +6,7 @@
.PARAMETER text .PARAMETER text
Specifies the text to speak Specifies the text to speak
.EXAMPLE .EXAMPLE
PS> ./speak-polish cześć PS> ./speak-polish.ps1 cześć
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES .NOTES

View File

@ -6,7 +6,7 @@
.PARAMETER text .PARAMETER text
Specifies the text to speak Specifies the text to speak
.EXAMPLE .EXAMPLE
PS> ./speak-portuguese Olá PS> ./speak-portuguese.ps1 Olá
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES .NOTES

View File

@ -6,7 +6,7 @@
.PARAMETER text .PARAMETER text
Specifies the text to speak Specifies the text to speak
.EXAMPLE .EXAMPLE
PS> ./speak-spanish Hola PS> ./speak-spanish.ps1 Hola
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES .NOTES

View File

@ -6,7 +6,7 @@
.PARAMETER text .PARAMETER text
Specifies the text to speak Specifies the text to speak
.EXAMPLE .EXAMPLE
PS> ./speak-swedish Hallå PS> ./speak-swedish.ps1 Hallå
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES .NOTES

View File

@ -6,7 +6,7 @@
.PARAMETER text .PARAMETER text
Specifies the text to read Specifies the text to read
.EXAMPLE .EXAMPLE
PS> ./speak-text "Hello World" PS> ./speak-text.ps1 Hi
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES .NOTES

View File

@ -6,7 +6,7 @@
.PARAMETER text .PARAMETER text
Specifies the text to speak Specifies the text to speak
.EXAMPLE .EXAMPLE
PS> ./speak-turkish Merhaba PS> ./speak-turkish.ps1 Merhaba
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES .NOTES

View File

@ -6,7 +6,7 @@
.PARAMETER text .PARAMETER text
Specifies the text to speak Specifies the text to speak
.EXAMPLE .EXAMPLE
PS> ./speak-ukrainian "Привіт" PS> ./speak-ukrainian.ps1 "Привіт"
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES .NOTES