@@ -1556,7 +1556,7 @@ class SessionsViewPane extends ViewPane {
15561556 } ,
15571557 {
15581558 id : 'learn-more' ,
1559- label : nls . localize ( 'chatSessions.learnMoreGHCodingAgent' , "Learn More about GitHub Copilot coding agent" ) ,
1559+ label : nls . localize ( 'chatSessions.learnMoreGHCodingAgent' , "Learn More About GitHub Copilot coding agent" ) ,
15601560 commandId : 'vscode.open' ,
15611561 icon : Codicon . book ,
15621562 args : [ URI . parse ( 'https://aka.ms/coding-agent-docs' ) ]
@@ -1738,16 +1738,16 @@ class ChatSessionsGettingStartedAction extends Action2 {
17381738 label : recommendation . displayName ,
17391739 description : recommendation . description ,
17401740 detail : extensionInstalled
1741- ? nls . localize ( 'chatSessions.extensionAlreadyInstalled' , "Extension already installed" )
1742- : nls . localize ( 'chatSessions.installExtension' , "Installs '{0}' extension " , recommendation . extensionName ) ,
1741+ ? nls . localize ( 'chatSessions.extensionAlreadyInstalled' , "'{0}' is already installed" , recommendation . extensionName )
1742+ : nls . localize ( 'chatSessions.installExtension' , "Installs '{0}'" , recommendation . extensionName ) ,
17431743 extensionId : recommendation . extensionId ,
17441744 disabled : extensionInstalled ,
17451745 } ;
17461746 } ) ;
17471747
17481748 const selected = await quickInputService . pick ( quickPickItems , {
1749- title : nls . localize ( 'chatSessions.selectExtension' , "Select extensions to install " ) ,
1750- placeHolder : nls . localize ( 'chatSessions.pickPlaceholder' , "Choose an extension that adds chat session functionality " ) ,
1749+ title : nls . localize ( 'chatSessions.selectExtension' , "Install Chat Extensions " ) ,
1750+ placeHolder : nls . localize ( 'chatSessions.pickPlaceholder' , "Choose extensions to enhance your chat experience " ) ,
17511751 canPickMany : true ,
17521752 } ) ;
17531753
@@ -1759,7 +1759,7 @@ class ChatSessionsGettingStartedAction extends Action2 {
17591759 if ( ! galleryExtensions ) {
17601760 return ;
17611761 }
1762- await extensionManagementService . installGalleryExtensions ( galleryExtensions . map ( extension => ( { extension, options : { } } ) ) ) ;
1762+ await extensionManagementService . installGalleryExtensions ( galleryExtensions . map ( extension => ( { extension, options : { preRelease : productService . quality !== 'stable' } } ) ) ) ;
17631763 }
17641764}
17651765
0 commit comments