File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# CHANGELOG
2+ ##
3+ - Fix: Missing localized strings
4+ - Fix: Missing tab completion for modules that register localized strings
5+
26## 0.10.30.165 : 2018-12-01
37 - New: Command Join-PSFPath performs multi-segment path joins and path normalization
48 - New: Command Remove-PSFAlias deletes global aliases
Original file line number Diff line number Diff line change 1- Import-LocalizedString - Path (Resolve-Path " $script :ModuleRoot \en-us\stringsAssembly.psd1" ) - Module PSFramework - Language ' en-US'
2-
1+ # Load English Language Files
2+ foreach ($item in (Resolve-Path " $script :ModuleRoot \en-us\*.psd1" ))
3+ {
4+ Import-LocalizedString - Path $item - Module PSFramework - Language ' en-US'
5+ }
36
47$script :strings = Get-PSFLocalizedString - Module PSFramework
Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ Register-PSFTeppArgumentCompleter -Command Get-PSFLicense -Parameter Filter -Nam
2828
2929# region Localization
3030Register-PSFTeppArgumentCompleter - Command Import-PSFLocalizedString - Parameter Language - Name ' PSFramework-LanguageNames'
31+ Register-PSFTeppArgumentCompleter - Command Get-PSFLocalizedString - Parameter Module - Name ' PSFramework-LocalizedStrings-Modules'
3132Register-PSFTeppArgumentCompleter - Command Get-PSFLocalizedString - Parameter Name - Name ' PSFramework-LocalizedStrings-Names'
3233# endregion Localization
3334
You can’t perform that action at this time.
0 commit comments