You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/core/package.nls.json
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -21,6 +21,7 @@
21
21
"AWS.configuration.enableCodeLenses": "Enable SAM hints in source code and template.yaml files",
22
22
"AWS.configuration.description.resources.enabledResources": "AWS resources to display in the 'Resources' portion of the explorer.",
23
23
"AWS.configuration.description.experiments": "Try experimental features and give feedback. Note that experimental features may be removed at any time.\n * `jsonResourceModification` - Enables basic create, update, and delete support for cloud resources via the JSON Resources explorer component.\n * `samSyncCode` - Adds an additional code-only option when synchronizing SAM applications. Code-only synchronizations are faster but can cause drift in the CloudFormation stack. Does nothing when using the legacy SAM deploy feature.\n * `iamPolicyChecks` - Enables IAM Policy Checks feature, allowing users to validate IAM policies against IAM policy grammar, AWS best practices, and specified security standards.",
24
+
"AWS.configuration.description.allowDevCommands": "Amazon Q: Allow Q to run devfile commands",
24
25
"AWS.stepFunctions.asl.format.enable.desc": "Enables the default formatter used with Amazon States Language files",
25
26
"AWS.stepFunctions.asl.maxItemsComputed.desc": "The maximum number of outline symbols and folding regions computed (limited for performance reasons).",
"AWS.amazonq.featureDev.pillText.generateDevFile": "Generate devfile to build code",
327
+
"AWS.amazonq.featureDev.pillText.acceptForProject": "Accept for this project",
328
+
"AWS.amazonq.featureDev.pillText.declineForProject": "Deny for this project",
325
329
"AWS.amazonq.featureDev.answer.generateSuggestion": "Would you like to generate a suggestion for this? You’ll review a file diff before inserting into your project.",
326
330
"AWS.amazonq.featureDev.answer.qGeneratedCode": "The Amazon Q Developer Agent for software development has generated code for you to review",
327
331
"AWS.amazonq.featureDev.answer.howCodeCanBeImproved": "How can I improve the code for your use case?",
328
332
"AWS.amazonq.featureDev.answer.updateCode": "Okay, I updated your code files. Would you like to work on another task?",
329
333
"AWS.amazonq.featureDev.answer.sessionClosed": "Okay, I've ended this chat session. You can open a new tab to chat or start another workflow.",
330
334
"AWS.amazonq.featureDev.answer.newTaskChanges": "What new task would you like to work on?",
335
+
"AWS.amazonq.featureDev.answer.devFileSuggestion": "For future tasks, I can build code while generating to improve accuracy. Just select \"Generate devfile to build code\" option to allow Amazon Q to generate a devfile for you",
336
+
"AWS.amazonq.featureDev.answer.settingUpdated": "Your setting has been updated. Remember you can always change this settings under Amazon Q plugin setting.",
337
+
"AWS.amazonq.featureDev.answer.devFileInRepository": "I noticed that your repository has `devfile.yaml`, would you like to use the auto build feature that will allow Amazon Q feature development agent to build and test your project?",
331
338
"AWS.amazonq.featureDev.placeholder.chatInputDisabled": "Chat input is disabled",
332
339
"AWS.amazonq.featureDev.placeholder.additionalImprovements": "Describe your task or issue in detail",
333
340
"AWS.amazonq.featureDev.placeholder.feedback": "Provide feedback or comments",
exportconstfeatureName='Amazon Q Developer Agent for software development'
16
16
17
+
exportconstgenerateDevFilePrompt=
18
+
'generate a devfile in my repository. Note that you should only use devfile version 2.0.0 and the only supported command is test, so you should bundle all install, build and test commands in "test". also you can use "public.ecr.aws/aws-mde/universal-image:latest" as universal image if you aren\'t sure which image to use. here is an example for a node repository: schemaVersion: 2.0.0 components: - name: dev container: image: public.ecr.aws/aws-mde/universal-image:latest commands: - id: test exec: component: dev commandLine: "npm install && npm run build && npm run test"'
@@ -447,8 +454,8 @@ export class FeatureDevController {
447
454
tabID: tabID,
448
455
message:
449
456
remainingIterations===0
450
-
? 'Would you like me to add this code to your project?'
451
-
: `Would you like me to add this code to your project, or provide feedback for new code? You have ${remainingIterations} out of ${totalIterations} code generations left.`,
457
+
? 'Would you like to add this code to your project?'
458
+
: `Would you like to add this code to your project, or provide feedback for new code? You have ${remainingIterations} out of ${totalIterations} code generations left.`,
452
459
})
453
460
}
454
461
@@ -463,7 +470,7 @@ export class FeatureDevController {
0 commit comments