File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -306,8 +306,8 @@ export class CopilotRemoteAgentManager extends Disposable {
306306 } ;
307307
308308 let autoPushAndCommit = false ;
309- const message = vscode . l10n . t ( 'Copilot coding agent will continue your work in \'{0}\'.' , repoName ) ;
310- const detail = vscode . l10n . t ( 'Your current chat session will end, and its context will be used to continue your work in a new pull request.' ) ;
309+ const message = vscode . l10n . t ( 'Coding agent will continue your work in \'{0}\'.' , repoName ) ;
310+ const detail = vscode . l10n . t ( 'Your current chat session will end, and its context will be used to continue your work in a new branch and pull request.' ) ;
311311 if ( source !== 'prompt' && hasChanges && this . autoCommitAndPushEnabled ( ) ) {
312312 // Pending changes modal
313313 const modalResult = await vscode . window . showInformationMessage (
@@ -342,7 +342,7 @@ export class CopilotRemoteAgentManager extends Disposable {
342342 } else {
343343 // No pending changes modal
344344 const modalResult = await vscode . window . showInformationMessage (
345- source !== 'prompt' ? message : vscode . l10n . t ( 'Copilot coding agent will implement the specification outlined in this prompt file' ) ,
345+ source !== 'prompt' ? message : vscode . l10n . t ( 'Coding agent will implement the specification outlined in this prompt file' ) ,
346346 {
347347 modal : true ,
348348 detail : source !== 'prompt' ? detail : undefined
You can’t perform that action at this time.
0 commit comments