Update motd.ps1

Updating variable
pull/71/head
Ludovic 3 months ago committed by GitHub
parent e8a7882777
commit 78db24d2d0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -4,10 +4,10 @@ $newyeardate = Get-Date -Month 1 -Day 1 -Year (Get-Date).Year -Format "yyyy/MM/d
if ($actualdate -eq $newyeardate) {
$newyeartext = "Happy New Year!"
$Uri1 = "https://translate.googleapis.com/translate_a/single?client=gtx&sl=auto&tl=$($TargetLanguage)&dt=t&q=$newyeartext"
$Response = Invoke-RestMethod -Uri $Uri1 -Method Get
$Translation1 = $Response[0][0][0]
Write-Host $Translation1
$newyearUri = "https://translate.googleapis.com/translate_a/single?client=gtx&sl=auto&tl=$($TargetLanguage)&dt=t&q=$newyeartext"
$Response = Invoke-RestMethod -Uri $newyearUri -Method Get
$newyearTranslation = $Response[0][0][0]
Write-Host $newyearTranslation
}
Write-Host "https://discord.gg/medicat"

Loading…
Cancel
Save