src/SyntaxErrorI18nDataGetter.ps1

param ($Content,$Localize)

[cultureinfo]::CurrentUICulture = $Localize

$SyntaxErrors = $Tokens = $null
$null = [System.Management.Automation.Language.Parser]::ParseInput($Content, [ref]$Tokens, [ref]$SyntaxErrors)

& $PSScriptRoot/SyntaxErrorDataBuilder.ps1 $SyntaxErrors