en-us/strings.psd1
# This is where the strings go, that are written by # Write-PSFMessage, Stop-PSFFunction or the PSFramework validation scriptblocks @{ 'Convert-AzScriptFile.Converting.Error' = 'Error parsing file: {0}' # $filePath 'Convert-AzScriptFile.Converting' = 'Applying {0} changes to file {1}' # $results.Count, $filePath 'Convert-AzScriptFile.ConvertingWriting' = 'Applying {0} changes to file {1}, exporting changes to {2}' # $results.Count, $filePath, $resolvedOutPath 'Convert-AzScriptFile.Danger.Warning' = 'This command is dangerous! Almost all converted commands require manual adjustments after renaming them. Use "Read-AzScriptFile" to do a read-only scan and obtain a list of files and locations before converting them. This command is only there to help with and accelerate the manual migration, it is fundamentally unable to guarantee a functional migration on its own. Best prepare a backup of your code before running this command!' # 'Convert-AzScriptFile.Path.CommandsFound' = 'Found {0} applicable commands in {1}' # @($relevantTokens).Count, $filePath 'Convert-AzScriptFile.Path.NoAzCommand' = 'No applicable commands found in "{0}", skipping file' # $filePath 'Convert-AzScriptFile.Path.NoScript' = 'The specified file is not a recognized script file: {0}' # $filePath 'Convert-AzScriptFile.Path.ResolveError' = 'Unable to resolve the specified path: {0}' # $pathName 'Export-AzScriptReport.NoExcel' = 'The PowerShell module "ImportExcel" was not found on the computer, but is required to write .xslx files. Run "Install-Module ImportExcel -Scope CurrentUser" to install the module or change the extension to ".csv".' # 'Export-AzScriptReport.Export.Failed' = 'Failed to start the export to {0}' # $Path 'Export-AzScriptReport.ExportScript.Failed' = 'Failed to write the converted file for {0}' # $result.Path 'Read-AzScriptFile.Path.CommandsFound' = 'Found {0} applicable commands in {1}' # @($relevantTokens).Count, $filePath 'Read-AzScriptFile.Path.NoAzCommand' = 'No applicable commands found in "{0}", skipping file' # $filePath 'Read-AzScriptFile.Path.NoScript' = 'The specified file is not a recognized script file: {0}' # $filePath 'Read-AzScriptFile.Path.ResolveError' = 'Unable to resolve the specified path: {0}' # $pathName 'Update-AzADMapping.Internet.Error' = 'Error accessing github to download the latest data definitions.' # } |