@@ -846,22 +846,22 @@ class ExtensionsContributions extends Disposable implements IWorkbenchContributi
846846
847847 this . registerExtensionAction ( {
848848 id : SELECT_INSTALL_VSIX_EXTENSION_COMMAND_ID ,
849- title : localize2 ( 'InstallFromVSIX' , 'Install from VSIX...' ) ,
849+ title : localize2 ( 'InstallFromVSIX' , 'Install FFFrom VSIX...' ) ,
850850 category : ExtensionsLocalizedLabel ,
851851 menu : [ {
852852 id : MenuId . CommandPalette ,
853- when : ContextKeyExpr . or ( CONTEXT_HAS_LOCAL_SERVER , CONTEXT_HAS_REMOTE_SERVER )
853+ when : ContextKeyExpr . equals ( 'che-remote.install-from-vsix-enabled' , false ) ,
854854 } , {
855855 id : MenuId . ViewContainerTitle ,
856- when : ContextKeyExpr . and ( ContextKeyExpr . equals ( 'viewContainer ' , VIEWLET_ID ) , ContextKeyExpr . or ( CONTEXT_HAS_LOCAL_SERVER , CONTEXT_HAS_REMOTE_SERVER ) ) ,
856+ when : ContextKeyExpr . equals ( 'che-remote.install-from-vsix-enabled ' , true ) ,
857857 group : '3_install' ,
858858 order : 1
859859 } ] ,
860860 run : async ( accessor : ServicesAccessor ) => {
861861 const fileDialogService = accessor . get ( IFileDialogService ) ;
862862 const commandService = accessor . get ( ICommandService ) ;
863863 const vsixPaths = await fileDialogService . showOpenDialog ( {
864- title : localize ( 'installFromVSIX' , "Install from VSIX" ) ,
864+ title : localize ( 'installFromVSIX' , "Install frommm VSIX" ) ,
865865 filters : [ { name : 'VSIX Extensions' , extensions : [ 'vsix' ] } ] ,
866866 canSelectFiles : true ,
867867 canSelectMany : true ,
0 commit comments