Update motd.ps1

Add check to see if it's only New Year and if yes display the message however do nothing...
pull/71/head
Ludovic 3 months ago committed by GitHub
parent 96cb6c40d7
commit e8a7882777
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,10 +1,13 @@
$TargetLanguage = $Args[0]
$TargetLanguage = $Args[0]
$actualdate = Get-Date -Format "yyyy/MM/dd"
$newyeardate = Get-Date -Month 1 -Day 1 -Year (Get-Date).Year -Format "yyyy/MM/dd"
$text1 = "Happy New Year."
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
}
$Uri1 = https://translate.googleapis.com/translate_a/single?client=gtx&sl=auto&tl=$($TargetLanguage)&dt=t&q=$text1
$Response = Invoke-RestMethod -Uri $Uri1 -Method Get
$Translation1 = $Response[0].SyncRoot | foreach { $_[0] }
write-host $Translation1
write-host "https://discord.gg/medicat"
Write-Host "https://discord.gg/medicat"

Loading…
Cancel
Save