@@ -487,16 +487,14 @@ export class CommandCenter {
487487 ( _ , token ) => this . git . clone ( url ! , parentPath , token )
488488 ) ;
489489
490- const choices = [ ] ;
491- let message = localize ( 'proposeopen' , "Where would you to open the cloned repository?" ) ;
492- const open = localize ( 'openrepo' , "Current Window" ) ;
493- const openNewWindow = localize ( 'openreponew' , "New Window" ) ;
494- choices . push ( open ) ;
495- choices . push ( openNewWindow ) ;
490+ let message = localize ( 'proposeopen' , "Would you like to open the cloned repository?" ) ;
491+ const open = localize ( 'openrepo' , "Open" ) ;
492+ const openNewWindow = localize ( 'openreponew' , "Open in New Window" ) ;
493+ const choices = [ open , openNewWindow ] ;
496494
497495 const addToWorkspace = localize ( 'add' , "Add to Workspace" ) ;
498496 if ( workspace . workspaceFolders ) {
499- message = localize ( 'proposeopen2' , "Where would you like to open the cloned repository, or add it to the current workspace?" ) ;
497+ message = localize ( 'proposeopen2' , "Would you like to open the cloned repository, or add it to the current workspace?" ) ;
500498 choices . push ( addToWorkspace ) ;
501499 }
502500
@@ -603,20 +601,18 @@ export class CommandCenter {
603601
604602 await this . git . init ( repositoryPath ) ;
605603
606- const choices = [ ] ;
607- let message = localize ( 'proposeopen init' , "Where would you like to open the initialized repository?" ) ;
608- const open = localize ( 'openrepo' , "Current Window" ) ;
609- const openNewWindow = localize ( 'openreponew' , "New Window" ) ;
610- choices . push ( open ) ;
611- choices . push ( openNewWindow ) ;
604+ let message = localize ( 'proposeopen init' , "Would you like to open the initialized repository?" ) ;
605+ const open = localize ( 'openrepo' , "Open" ) ;
606+ const openNewWindow = localize ( 'openreponew' , "Open in New Window" ) ;
607+ const choices = [ open , openNewWindow ] ;
612608
613609 if ( ! askToOpen ) {
614610 return ;
615611 }
616612
617613 const addToWorkspace = localize ( 'add' , "Add to Workspace" ) ;
618614 if ( workspace . workspaceFolders ) {
619- message = localize ( 'proposeopen2 init' , "Where would you like to open the initialized repository, or add it to the current workspace?" ) ;
615+ message = localize ( 'proposeopen2 init' , "Would you like to open the initialized repository, or add it to the current workspace?" ) ;
620616 choices . push ( addToWorkspace ) ;
621617 }
622618
0 commit comments