Simplified locale support
parent
460446adff
commit
2efadb7745
|
@ -29,12 +29,12 @@ function Init {
|
|||
}
|
||||
|
||||
#Get locale file for Notification
|
||||
#Default en-US
|
||||
$DefaultLocale = "$WorkingDir\locale\en-US.xml"
|
||||
#Default english
|
||||
$DefaultLocale = "$WorkingDir\locale\en.xml"
|
||||
#Get OS locale
|
||||
$Locale = Get-WinSystemLocale
|
||||
$Locale = (Get-Culture).Parent.Name
|
||||
#Test if OS locale config file exists
|
||||
$LocaleFile = "$WorkingDir\locale\$($locale.Name).xml"
|
||||
$LocaleFile = "$WorkingDir\locale\$locale.xml"
|
||||
if(Test-Path $LocaleFile){
|
||||
[xml]$Script:NotifLocale = Get-Content $LocaleFile -Encoding UTF8 -ErrorAction SilentlyContinue
|
||||
$LocaleNotif = "Notification Langugage : $($locale.Name)"
|
||||
|
|
Loading…
Reference in New Issue