### Eclipse Workspace Patch 1.0 #P org.eclipse.pde.ui Index: src/org/eclipse/pde/internal/ui/wizards/imports/PluginImportWizard.java =================================================================== RCS file: /cvsroot/eclipse/org.eclipse.pde.ui/src/org/eclipse/pde/internal/ui/wizards/imports/PluginImportWizard.java,v retrieving revision 1.48 diff -u -r1.48 PluginImportWizard.java --- src/org/eclipse/pde/internal/ui/wizards/imports/PluginImportWizard.java 12 Dec 2007 17:06:13 -0000 1.48 +++ src/org/eclipse/pde/internal/ui/wizards/imports/PluginImportWizard.java 12 Dec 2007 17:39:14 -0000 @@ -92,11 +92,11 @@ final IPluginModelBase[] models = getModelsToImport(); boolean launchedConfiguration = areConflictingConfigurations(models); if (launchedConfiguration) { - if (!MessageDialog - .openConfirm(getShell(), PDEUIMessages.PluginImportWizard_runningConfigsTitle, - PDEUIMessages.PluginImportWizard_runningConfigsDesc)) { - return false; - } + MessageDialog dialog = new MessageDialog(getShell(), PDEUIMessages.PluginImportWizard_runningConfigsTitle, null, + PDEUIMessages.PluginImportWizard_runningConfigsDesc, MessageDialog.WARNING, new String[] {IDialogConstants.OK_LABEL, + IDialogConstants.CANCEL_LABEL}, 0); + if(dialog.open() != IDialogConstants.OK_ID) return false; + } doImportOperation(getShell(), page1.getImportType(), models, page2 .forceAutoBuild(), launchedConfiguration); Index: src/org/eclipse/pde/internal/ui/pderesources.properties =================================================================== RCS file: /cvsroot/eclipse/org.eclipse.pde.ui/src/org/eclipse/pde/internal/ui/pderesources.properties,v retrieving revision 1.946 diff -u -r1.946 pderesources.properties --- src/org/eclipse/pde/internal/ui/pderesources.properties 11 Dec 2007 23:52:33 -0000 1.946 +++ src/org/eclipse/pde/internal/ui/pderesources.properties 12 Dec 2007 17:39:14 -0000 @@ -1045,8 +1045,8 @@ PluginSelectionDialog_message = &Select a Plug-in: PluginImportOperation_linking=Linking content... PluginImportOperation_executionEnvironment=Plug-in ''{0}'' requires an ''{1}'' execution environment that is not supported by any of the installed JREs. Import anyway? -PluginImportWizard_runningConfigsDesc=Some of the selected plug-ins my not be imported if they are locked by a running workbench. Do you want to continue? -PluginImportWizard_runningConfigsTitle=Running launch configurations +PluginImportWizard_runningConfigsDesc=One or more applications are currently running. Some of the selected plug-ins may not be imported if they are locked by them. Do you want to continue? +PluginImportWizard_runningConfigsTitle=Running Applications PluginContentPage_appQuestion=Would you like to create a rich client application? PluginContentMergeViewer_title=Plug-in Source Compare PluginDevelopmentPage_equinox=&Show sections specific to the Equinox OSGi framework