Author: snjeza
Date: 2011-10-17 04:51:20 -0400 (Mon, 17 Oct 2011)
New Revision: 35701
Modified:
trunk/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/dialogs/DownloadRuntimeDialog.java
Log:
JBIDE-9368 Dashboard(s) for easy news aggregation, twitter and easy additional/3rd party
plugin installation and project template/creation
Modified:
trunk/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/dialogs/DownloadRuntimeDialog.java
===================================================================
---
trunk/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/dialogs/DownloadRuntimeDialog.java 2011-10-17
07:57:36 UTC (rev 35700)
+++
trunk/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/dialogs/DownloadRuntimeDialog.java 2011-10-17
08:51:20 UTC (rev 35701)
@@ -100,7 +100,7 @@
Label pathLabel = new Label(pathComposite, SWT.NONE);
- pathLabel.setText("Installation directory:");
+ pathLabel.setText("Install folder:");
pathText = new Text(pathComposite, SWT.BORDER);
gd = new GridData(SWT.FILL, SWT.FILL, true, false);
@@ -125,7 +125,7 @@
@Override
public void widgetSelected(SelectionEvent e) {
DirectoryDialog dialog = new DirectoryDialog(getShell());
- dialog.setMessage("Select installation directory");
+ dialog.setMessage("Select install folder");
dialog.setFilterPath(pathText.getText());
final String path = dialog.open();
if (path == null) {
@@ -137,7 +137,7 @@
});
Label destinationLabel = new Label(pathComposite, SWT.NONE);
- destinationLabel.setText("Destination directory:");
+ destinationLabel.setText("Download folder:");
destinationPathText = new Text(pathComposite, SWT.BORDER);
gd = new GridData(SWT.FILL, SWT.FILL, true, false);
@@ -155,7 +155,7 @@
@Override
public void widgetSelected(SelectionEvent e) {
DirectoryDialog dialog = new DirectoryDialog(getShell());
- dialog.setMessage("Select destination directory");
+ dialog.setMessage("Select download folder");
dialog.setFilterPath(destinationPathText.getText());
final String path = dialog.open();
if (path == null) {
Show replies by date