-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Minor Go string tweaks based on team feedback (#7115)
* Go string tweaks based on team feedback * Make minor version increase sequential (not sprint number)
- Loading branch information
1 parent
294036f
commit b8fa780
Showing
6 changed files
with
28 additions
and
28 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,16 +1,16 @@ | ||
{ | ||
"loc.friendlyName": "Go", | ||
"loc.helpMarkDown": "[More Information](https://go.microsoft.com/fwlink/?linkid=867582)", | ||
"loc.description": "Get, build, test a go application, or run a custom go command.", | ||
"loc.description": "Get, build, or test a Go application, or run a custom Go command.", | ||
"loc.instanceNameFormat": "go $(command)", | ||
"loc.group.displayName.advanced": "Advanced", | ||
"loc.input.label.command": "Command", | ||
"loc.input.help.command": "Select a Go command to run. Select 'Custom' to use a command not listed here.", | ||
"loc.input.label.customCommand": "Custom command", | ||
"loc.input.help.customCommand": "Custom Go command for execution. For example: to execute go version, enter version.", | ||
"loc.input.help.customCommand": "A custom Go command to execute. For example, to execute 'go version', enter 'version'.", | ||
"loc.input.label.arguments": "Arguments", | ||
"loc.input.help.arguments": "Arguments to the selected command. For example, build time arguments for go build command.", | ||
"loc.input.label.workingDirectory": "Working Directory", | ||
"loc.input.help.workingDirectory": "Current working directory where the script is run. Empty is the root of the repo (build) or artifacts (release), which is $(System.DefaultWorkingDirectory)", | ||
"loc.messages.TaskFailedWithError": "Go task failed with error: %s" | ||
"loc.input.help.arguments": "Optional arguments to the selected command. For example, build-time arguments for the 'go build' command.", | ||
"loc.input.label.workingDirectory": "Working directory", | ||
"loc.input.help.workingDirectory": "The working directory where the command will run. When empty, the root of the repository (for builds) or artifacts (for releases) is used, which is the value of '$(System.DefaultWorkingDirectory)'.", | ||
"loc.messages.TaskFailedWithError": "The Go task failed with an error: %s" | ||
} |
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 |
---|---|---|
|
@@ -13,7 +13,7 @@ | |
], | ||
"version": { | ||
"Major": 0, | ||
"Minor": 1, | ||
"Minor": 2, | ||
"Patch": 0 | ||
}, | ||
"runsOn": [ | ||
|
12 changes: 6 additions & 6 deletions
12
Tasks/GoTool/Strings/resources.resjson/en-US/resources.resjson
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 |
---|---|---|
@@ -1,15 +1,15 @@ | ||
{ | ||
"loc.friendlyName": "Go Tool Installer", | ||
"loc.helpMarkDown": "[More Information](https://go.microsoft.com/fwlink/?linkid=867581)", | ||
"loc.description": "Finds or downloads specific version of Go tool into tools cache and adds it to the PATH. Use this task to change the version of Go Lang used in subsequent tasks", | ||
"loc.description": "Finds or downloads a specific version of Go in the tools cache and adds it to the PATH. Use this to set the version of Go used in subsequent tasks.", | ||
"loc.instanceNameFormat": "Use Go $(version)", | ||
"loc.group.displayName.advanced": "Advanced", | ||
"loc.input.label.version": "Version", | ||
"loc.input.help.version": "Go tool version to download and install. Example: 1.9.3", | ||
"loc.input.help.version": "The Go version to download (if necessary) and use. Example: 1.9.3", | ||
"loc.input.label.goPath": "GOPATH", | ||
"loc.input.help.goPath": "Value for the GOPATH environment variable.", | ||
"loc.input.help.goPath": "A custom value for the GOPATH environment variable.", | ||
"loc.input.label.goBin": "GOBIN", | ||
"loc.input.help.goBin": "Value for the GOBIN environment variable.", | ||
"loc.messages.FailedToDownload": "Failed to download version %s. Please verify that the version is valid and resolve any other issues. Error: %s", | ||
"loc.messages.TempDirNotSet": "Expected Agent.TempDirectory to be set" | ||
"loc.input.help.goBin": "A custom value for the GOBIN environment variable.", | ||
"loc.messages.FailedToDownload": "Failed to download Go version %s. Verify that the version is valid and resolve any other issues. Error: %s", | ||
"loc.messages.TempDirNotSet": "The 'Agent.TempDirectory' environment variable was expected to be set." | ||
} |
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