@@ -210,17 +210,17 @@ function Initialize-LocalizedData {
210210 # by examining if ReportConfig exists and comparing with its language setting
211211 if ($global :ReportConfig -and $global :ReportConfig.Report.Language ) {
212212 if ($Language -eq $global :ReportConfig.Report.Language ) {
213- $LanguageSourceText = " (from report configuration file)"
213+ $LanguageSourceText = " (from report configuration file)"
214214 } else {
215215 # Language differs from config, so it must be from command-line
216- $LanguageSourceText = " (from command-line parameter)"
216+ $LanguageSourceText = " (from command-line parameter)"
217217 }
218218 } elseif ($Language -eq ' en-US' ) {
219219 # Default language
220- $LanguageSourceText = " (fallback to default)"
220+ $LanguageSourceText = " (fallback to default)"
221221 } else {
222222 # Explicitly specified via command-line (no config or config doesn't have language)
223- $LanguageSourceText = " (from command-line parameter)"
223+ $LanguageSourceText = " (from command-line parameter)"
224224 }
225225 }
226226 # Create unique key for this culture fallback scenario
@@ -249,7 +249,7 @@ function Initialize-LocalizedData {
249249 if ($TargetCulture -ne $Culture.Name ) {
250250 Write-Host (" Setting $LanguageType to '{0}' (fallback from '{1}')$LanguageSourceText ." -f $TargetCulture , $Culture.Name ) - ForegroundColor Yellow
251251 } else {
252- Write-Host (" Setting $LanguageType to '{0}' $LanguageSourceText ." -f $TargetCulture ) - ForegroundColor Yellow
252+ Write-Host (" Setting $LanguageType to '{0}'$LanguageSourceText ." -f $TargetCulture ) - ForegroundColor Yellow
253253 }
254254
255255 # Mark this combination as already shown
0 commit comments