forked from aws/aws-toolkit-vscode
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rework credential selection and enable multi-region in the explorer
- Loading branch information
1 parent
5ae6885
commit 3f4d0a5
Showing
31 changed files
with
2,184 additions
and
583 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 |
---|---|---|
@@ -1,7 +1,23 @@ | ||
{ | ||
"AWS.newLambda": "New Lambda Function or Serverless App", | ||
"AWS.deployLambda": "Deploy Lambda Function", | ||
"AWS.invokeLambda": "Invoke Lambda Function", | ||
"AWS.getLambdaConfig": "Get Lambda Function Configuration", | ||
"AWS.getLambdaPolicy": "Get Lambda Function Policy" | ||
"AWS.title": "AWS", | ||
"AWS.configuration.regionDescription": "The regions to query for resources to display in the Explorer.", | ||
"AWS.configuration.profileDescription": "The name of the credential profile to obtain credentials from.", | ||
"AWS.configuration.title": "AWS Configuration", | ||
"AWS.command.login": "Sign in to AWS", | ||
"AWS.command.logout": "Sign out", | ||
"AWS.command.addExplorerRegion": "Add a region to the Explorer", | ||
"AWS.command.removeExplorerRegion": "Remove a region from the Explorer", | ||
"AWS.command.newLambda": "New Lambda Function or Serverless App", | ||
"AWS.command.deployLambda": "Deploy Lambda Function", | ||
"AWS.command.invokeLambda": "Invoke Lambda Function", | ||
"AWS.command.getLambdaConfig": "Get Lambda Function Configuration", | ||
"AWS.command.getLambdaPolicy": "Get Lambda Function Policy", | ||
"AWS.explorerNode.addRegion": "Add a region to view functions...", | ||
"AWS.explorerNode.addRegion.tooltip": "Click to add a region to view functions...", | ||
"AWS.explorerNode.lambda.noFunctions": "..no functions in this region...", | ||
"AWS.explorerNode.signIn": "Sign in to AWS...", | ||
"AWS.explorerNode.signIn.tooltip": "Connect to AWS using a credential profile", | ||
"AWS.lambda.explorerTitle": "Lambda", | ||
"AWS.message.enterProfileName": "Enter the name of the credential profile to use", | ||
"AWS.message.selectRegion": "Select an AWS region" | ||
} |
Oops, something went wrong.