-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add descriptions for dapr task properties (#23)
* Add descriptions for dapr task properties. * Add descriptions for daprd task properties. * Add description for daprd-down task property. * Update sample JPN localization file.
- Loading branch information
1 parent
4d30b64
commit b030a6f
Showing
4 changed files
with
136 additions
and
46 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,7 +1,48 @@ | ||
{ | ||
"vscode-dapr.applications.invoke-get.title": "(Japanese) Invoke (GET) application method", | ||
"vscode-dapr.applications.invoke-post.title": "(Japanese) Invoke (POST) application method", | ||
"vscode-dapr.applications.publish-message.title": "(Japanese) Publish message to application", | ||
"vscode-dapr.tasks.scaffoldDaprTasks.title": "(Japanese) Scaffold Dapr Tasks", | ||
"vscode-dapr.views.applications.name": "(Japanese) Applications" | ||
"vscode-dapr.applications.invoke-get.title": "Invoke (GET) application method", | ||
"vscode-dapr.applications.invoke-post.title": "Invoke (POST) application method", | ||
"vscode-dapr.applications.publish-message.title": "Publish message to application", | ||
"vscode-dapr.tasks.scaffoldDaprTasks.title": "Scaffold Dapr Tasks", | ||
"vscode-dapr.views.applications.name": "Applications", | ||
|
||
"vscode-dapr.tasks.dapr.properties.appId.description": "An ID for your application, used for service discovery.", | ||
"vscode-dapr.tasks.dapr.properties.appPort.description": "The port your application is listening on.", | ||
"vscode-dapr.tasks.dapr.properties.command.description": "The command and arguments used to start your application.", | ||
"vscode-dapr.tasks.dapr.properties.cwd.description": "The directory in which to start Dapr.", | ||
"vscode-dapr.tasks.dapr.properties.config.description": "The path to the Dapr configuration file.", | ||
"vscode-dapr.tasks.dapr.properties.enableProfiling.description": "Whether to enable pprof profiling via an HTTP endpoint.", | ||
"vscode-dapr.tasks.dapr.properties.grpcPort.description": "The gRPC port for Dapr to listen on.", | ||
"vscode-dapr.tasks.dapr.properties.httpPort.description": "The HTTP port for Dapr to listen on.", | ||
"vscode-dapr.tasks.dapr.properties.image.description": "The image to build the code in (<repository>/<image>).", | ||
"vscode-dapr.tasks.dapr.properties.logLevel.description": "Sets the log verbosity.", | ||
"vscode-dapr.tasks.dapr.properties.maxConcurrency.description": "Controls the concurrency level of the application.", | ||
"vscode-dapr.tasks.dapr.properties.placementHost.description": "The host on which the placement service resides.", | ||
"vscode-dapr.tasks.dapr.properties.profilePort.description": "The port for the profile server to listen on.", | ||
"vscode-dapr.tasks.dapr.properties.protocol.description": "Tells Dapr to use HTTP or gRPC to talk to the application.", | ||
"vscode-dapr.tasks.dapr.properties.redisHost.description": "The host on which the Redis service resides.", | ||
|
||
"vscode-dapr.tasks.daprd.properties.allowedOrigins.description": "Allowed HTTP origins.", | ||
"vscode-dapr.tasks.daprd.properties.alsoLogToStdError.description": "Whether to log to standard error as well as files.", | ||
"vscode-dapr.tasks.daprd.properties.appId.description": "An ID for your application, used for service discovery.", | ||
"vscode-dapr.tasks.daprd.properties.appPort.description": "The port the application is listening on.", | ||
"vscode-dapr.tasks.daprd.properties.componentsPath.description": "Path for the components directory. (Standalone mode only.)", | ||
"vscode-dapr.tasks.daprd.properties.config.description": "Path to the configuration file, or the name of a configuration object.", | ||
"vscode-dapr.tasks.daprd.properties.controlPlaneAddress.description": "Address for the Dapr control plane.", | ||
"vscode-dapr.tasks.daprd.properties.enableProfiling.description": "Whether to enable profiling.", | ||
"vscode-dapr.tasks.daprd.properties.grpcPort.description": "The gRPC port for Dapr to listen on.", | ||
"vscode-dapr.tasks.daprd.properties.httpPort.description": "The HTTP port for Dapr to listen on.", | ||
"vscode-dapr.tasks.daprd.properties.logLevel.description": "Sets the log verbosity.", | ||
"vscode-dapr.tasks.daprd.properties.logBacktraceAt.description": "Emit a stack trace when logging hits line <file>:<line>.", | ||
"vscode-dapr.tasks.daprd.properties.logDir.description": "If set, write log files in this directory.", | ||
"vscode-dapr.tasks.daprd.properties.maxConcurrency.description": "Controls the concurrency level when forwarding requests to user code.", | ||
"vscode-dapr.tasks.daprd.properties.mode.description": "Runtime mode for Dapr.", | ||
"vscode-dapr.tasks.daprd.properties.placementAddress.description": "Address for the Dapr placement service.", | ||
"vscode-dapr.tasks.daprd.properties.profilePort.description": "The port for the profile server.", | ||
"vscode-dapr.tasks.daprd.properties.protocol.description": "Protocol for the application.", | ||
"vscode-dapr.tasks.daprd.properties.sentryAddress.description": "Address for the Sentry CA service", | ||
"vscode-dapr.tasks.daprd.properties.stdErrThreshold.description": "Logs at or above this threshold go to stderr.", | ||
"vscode-dapr.tasks.daprd.properties.vLogLevel.description": "Log level for V logs.", | ||
"vscode-dapr.tasks.daprd.properties.vLogFilters.description": "Comma-separated list of <pattern>=<n> settings for file-filtered logging.", | ||
|
||
"vscode-dapr.tasks.daprd-down.properties.appId.description": "An ID for your application, used for service discovery." | ||
} |
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
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