wingetautoupdate/Winget-AutoUpdate/functions/Get-NotifLocale.ps1

26 lines
822 B
PowerShell
Raw Normal View History

2022-04-13 16:50:06 +00:00
#Function to get locale file for Notification.
2022-03-14 13:55:02 +00:00
2022-04-13 16:50:06 +00:00
Function Get-NotifLocale {
2022-03-14 13:55:02 +00:00
#Get OS locale
$OSLocale = (Get-Culture).Parent
#Test if OS locale notif file exists
$TestOSLocalPath = "$WorkingDir\locale\$($OSLocale.Name).xml"
#Set OS Local if file exists
2022-06-10 08:26:41 +00:00
if (Test-Path $TestOSLocalPath) {
2022-03-14 13:55:02 +00:00
$LocaleDisplayName = $OSLocale.DisplayName
$LocaleFile = $TestOSLocalPath
}
#Set English if file doesn't exist
2022-06-10 08:26:41 +00:00
else {
2022-03-14 13:55:02 +00:00
$LocaleDisplayName = "English"
$LocaleFile = "$WorkingDir\locale\en.xml"
}
#Get locale XML file content
2022-05-23 07:09:19 +00:00
Write-Log "Notification Level: $($WAUConfig.WAU_NotificationLevel). Notification Language: $LocaleDisplayName" "Cyan"
2022-03-14 13:55:02 +00:00
[xml]$Script:NotifLocale = Get-Content $LocaleFile -Encoding UTF8 -ErrorAction SilentlyContinue
2022-04-13 16:50:06 +00:00
2022-03-14 13:55:02 +00:00
}