-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7ee6e7a
commit e06db28
Showing
8 changed files
with
554 additions
and
168 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,128 @@ | ||
_version = 1 | ||
|
||
[args] | ||
about = "Apply configuration or invoke specific DSC resources" | ||
traceFormat = "Trace format to use" | ||
traceLevel = "Trace level to use" | ||
completer = "Generate a shell completion script" | ||
configAbout = "Apply a configuration document" | ||
parameters = "Parameters to pass to the configuration as JSON or YAML" | ||
parametersFile = "Parameters to pass to the configuration as a JSON or YAML file" | ||
systemRoot = "Specify the operating system root path if not targeting the current running OS" | ||
resourceAbout = "Invoke a specific DSC resource" | ||
schemaAbout = "Get the JSON schema for a DSC type" | ||
schemaType = "The type of DSC schema to get" | ||
outputFormat = "The output format to use" | ||
input = "The input document as JSON or YAML to pass to the configuration or resource" | ||
file = "The path to a file used as input to the configuration or resource. Use '-' for the file to read from STDIN." | ||
whatIf = "Run as a what-if operation instead of executing the configuration or resource" | ||
getAbout = "Retrieve the current configuration" | ||
setAbout = "Set the current configuration" | ||
testAbout = "Test the current configuration" | ||
validateAbout = "Validate the current configuration" | ||
exportAbout = "Export the current configuration" | ||
resolveAbout = "Resolve the current configuration" | ||
listAbout = "List or find resources" | ||
adapter = "Adapter filter to limit the resource search" | ||
description = "Description keyword to search for in the resource description" | ||
tags = "Tag to search for in the resource tags" | ||
resourceGet = "Invoke the get operation to a resource" | ||
getAll = "Get all instances of the resource" | ||
resource = "The name of the resource to invoke" | ||
|
||
[main] | ||
ctrlCReceived = "Ctrl-C received" | ||
failedCtrlCHandler = "Failed to set Ctrl-C handler" | ||
failedReadingParametersFile = "Failed to read parameters file" | ||
generatingCompleter = "Generating completion script for" | ||
readingParametersFile = "Reading parameters from file" | ||
usingDscVersion = "Running DSC version" | ||
foundProcesses = "Found processes" | ||
failedToGetPid = "Could not get current process id" | ||
currentPid = "Current process id" | ||
failedToGetProcess = "Could not get current process" | ||
terminatingSubprocess ="Terminating subprocesses of process" | ||
terminatingProcess = "Terminating process" | ||
failedTerminatingProcess = "Failed to terminate process" | ||
storeMessage = """DSC.exe is a command-line tool and cannot be run directly from the Windows Store or Explorer. | ||
Visit https://aka.ms/dscv3-docs for more information on how to use DSC.exe. | ||
Press any key to close this window""" | ||
|
||
[resolve] | ||
processingInclude = "Processing Include input" | ||
invalidInclude = "Failed to deserialize Include input" | ||
failedToReadFile = "Failed to read file" | ||
failedToOpenFile = "Failed to open included file" | ||
invalidFileContent = "Invalid UTF-8 sequence in included file" | ||
invalidFile = "Failed to read the configuration file as YAML or JSON" | ||
resolvingParameters = "Resolving parameters from file" | ||
failedParseParametersFile = "Failed to parse parameters file to JSON" | ||
failedResolveParametersFile = "Failed to resolve parameters file" | ||
noParametersFile = "No parameters file found" | ||
invalidPath = "Include path must not contain '..'" | ||
failedGetCurrentDirectory = "Failed to get current directory" | ||
|
||
[resource_command] | ||
implementedAs = "implemented as" | ||
invalidOperationOnAdapter = "Can not perform this operation on the adapter itself" | ||
adapterNotFound = "Adapter not found" | ||
setInputEmpty = "Desired input is empty" | ||
testInputEmpty = "Expected input is required" | ||
|
||
[subcommand] | ||
actualStateNotObject = "actual_state is not an object" | ||
unexpectedTestResult = "Unexpected Group TestResult" | ||
message = "message" | ||
currentDirectory = "current directory" | ||
noParameters = "No parameters specified" | ||
parameters = "Parameters specified" | ||
failedConvertJson = "Failed to convert YAML to JSON" | ||
invalidParamters = "Parameters are not valid JSON or YAML" | ||
invalidPath = "Target path does not exist" | ||
failedSetParameters = "Parameter input failure" | ||
invalidInclude = "Failed to deserialize Include input" | ||
failedSerialize = "Failed to convert validation result to JSON" | ||
invalidConfiguration = "Failed to deserialize configuration" | ||
failedSerializeResolve = "Failed to serialize resolve result" | ||
validatingConfiguration = "Validating configuration against schema" | ||
noResources = "Resources not specified" | ||
resourceTypeNotSpecified = "Resource type not specified" | ||
validatingResource = "Validating resource named" | ||
resourceNotFound = "Resource type not found" | ||
resourceImplementsValidate = "Resource implements validation" | ||
noReason = "No reason provided" | ||
resourceValidationFailed = "Resource failed validation" | ||
resourceDoesNotImplementValidate = "Resource does not implement validation, using schema" | ||
noSchemaOrValidate = "Resource does not have a schema nor supports validation" | ||
noManifest = "Resource does not have a manifest" | ||
tableHeader_type = "Type" | ||
tableHeader_kind = "Kind" | ||
tableHeader_version = "Version" | ||
tableheader_capabilities = "Capabilities" | ||
tableHeader_adapter = "RequireAdapter" | ||
tableHeader_description = "Description" | ||
invalidManifest = "Error in manifest for" | ||
|
||
[util] | ||
failedToConvertJsonToString = "Failed to convert JSON to string" | ||
failedToReadTracingSetting = "Could not read 'tracing' setting" | ||
invalidTraceLevel = "Default to 'warn', invalid DSC_TRACE_LEVEL value" | ||
failedToSetTracing = "Unable to set global default tracing subscriber. Tracing is diabled." | ||
validatingSchema = "Validating against schema" | ||
failedToCompileSchema = "JSON Schema Compilation" | ||
validationFailed = "Failed validation" | ||
readingInput = "Reading input from command line parameter" | ||
inputIsFile = "Document provided is a file path, use '--file' instead" | ||
readingInputFromFile = "Reading input from file" | ||
readingInputFromStdin = "Reading input from STDIN" | ||
invalidUtf8 = "Invalid utf-8 input" | ||
failedToReadStdin = "Failed to read input from STDIN" | ||
failedToReadFile = "Failed to read input file" | ||
noInput = "No input provided" | ||
emptyInput = "Empty input provided" | ||
failedToParseInput = "Invalid JSON or YAML" | ||
failedToAbsolutizePath = "Error making config path absolute" | ||
failedToGetParentPath = "Error reading config path parent" | ||
dscConfigRootAlreadySet = "The current value of DSC_CONFIG_ROOT env var will be overridden" | ||
settingDscConfigRoot = "Setting DSC_CONFIG_ROOT env var as" |
Oops, something went wrong.