summaryrefslogtreecommitdiff
path: root/java/src
diff options
context:
space:
mode:
authorBernard Normier <bernard@zeroc.com>2006-12-19 15:17:45 +0000
committerBernard Normier <bernard@zeroc.com>2006-12-19 15:17:45 +0000
commitaef03147363774f93cfd77a5c53b50969ee0a35d (patch)
treebcb516feb9a92988bee173766b258b6c9474a85b /java/src
parentFixed bug #1637 (diff)
downloadice-aef03147363774f93cfd77a5c53b50969ee0a35d.tar.bz2
ice-aef03147363774f93cfd77a5c53b50969ee0a35d.tar.xz
ice-aef03147363774f93cfd77a5c53b50969ee0a35d.zip
Fixed patch-server language
Diffstat (limited to 'java/src')
-rwxr-xr-xjava/src/IceGridGUI/LiveDeployment/Server.java11
1 files changed, 8 insertions, 3 deletions
diff --git a/java/src/IceGridGUI/LiveDeployment/Server.java b/java/src/IceGridGUI/LiveDeployment/Server.java
index 04dcdaab559..c7298ebc24b 100755
--- a/java/src/IceGridGUI/LiveDeployment/Server.java
+++ b/java/src/IceGridGUI/LiveDeployment/Server.java
@@ -299,11 +299,16 @@ class Server extends ListArrayTreeNode
public void patchServer()
{
- int shutdown = JOptionPane.showConfirmDialog(
- getCoordinator().getMainFrame(),
+ String message = _serverDescriptor.applicationDistrib ?
"You are about to install or refresh your"
+ " server distribution and your application distribution onto this node.\n"
- + " Do you want shut down all servers affected by this update?",
+ + "Do you want shut down all servers affected by this update?" :
+ "You are about to install or refresh the distribution for this server\n"
+ + "Do you want to shut down the server for this update?";
+
+ int shutdown = JOptionPane.showConfirmDialog(
+ getCoordinator().getMainFrame(),
+ message,
"Patch Confirmation",
JOptionPane.YES_NO_CANCEL_OPTION);