29 lines
762 B
PowerShell
29 lines
762 B
PowerShell
|
#Function to get the locale file for notifications
|
||
|
|
||
|
Function Get-NotifLocale {
|
||
|
|
||
|
#Get OS locale
|
||
|
$OSLocale = (Get-UICulture).Parent
|
||
|
|
||
|
#Test if OS locale notif file exists
|
||
|
$TestOSLocalPath = "$WorkingDir\locale\$($OSLocale.Name).xml"
|
||
|
|
||
|
#Set OS Local if file exists
|
||
|
if (Test-Path $TestOSLocalPath) {
|
||
|
$LocaleDisplayName = $OSLocale.DisplayName
|
||
|
$LocaleFile = $TestOSLocalPath
|
||
|
}
|
||
|
#Set English if file doesn't exist
|
||
|
else {
|
||
|
$LocaleDisplayName = "English"
|
||
|
$LocaleFile = "$WorkingDir\locale\en.xml"
|
||
|
}
|
||
|
|
||
|
#Get locale XML file content
|
||
|
[xml]$Script:NotifLocale = Get-Content $LocaleFile -Encoding UTF8 -ErrorAction SilentlyContinue
|
||
|
|
||
|
#Rerturn langague display name
|
||
|
Return $LocaleDisplayName
|
||
|
|
||
|
}
|