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

29 lines
762 B
PowerShell
Raw Permalink Normal View History

2023-03-31 15:56:07 +00:00
#Function to get the locale file for notifications
2022-03-14 13:55:02 +00:00
2022-04-13 16:50:06 +00:00
Function Get-NotifLocale {
2022-10-26 22:49:10 +00:00
2022-03-14 13:55:02 +00:00
#Get OS locale
$OSLocale = (Get-UICulture).Parent
2022-03-14 13:55:02 +00:00
#Test if OS locale notif file exists
2022-10-26 22:49:10 +00:00
$TestOSLocalPath = "$WorkingDir\locale\$($OSLocale.Name).xml"
2022-10-11 08:41:35 +00:00
2022-03-14 13:55:02 +00:00
#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
[xml]$Script:NotifLocale = Get-Content $LocaleFile -Encoding UTF8 -ErrorAction SilentlyContinue
2022-04-13 16:50:06 +00:00
2022-10-11 08:41:35 +00:00
#Rerturn langague display name
Return $LocaleDisplayName
2022-10-26 22:49:10 +00:00
}