enh(powershell/updates): Substituion of special charactere for Fr, Es,… (#4872)
This commit is contained in:
parent
44300357c3
commit
444066f78a
|
@ -49,7 +49,7 @@ Try {
|
|||
|
||||
Foreach ($update in $updates) {
|
||||
$item = @{
|
||||
title = $update.Title;
|
||||
title = $update.Title.Normalize([Text.NormalizationForm]::FormD) -replace "\p{M}", "" -replace "\p{Z}", " ";
|
||||
isMandatory = $update.IsMandatory;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue