diff options
author | Bernard Normier <bernard@zeroc.com> | 2006-12-19 15:17:45 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2006-12-19 15:17:45 +0000 |
commit | aef03147363774f93cfd77a5c53b50969ee0a35d (patch) | |
tree | bcb516feb9a92988bee173766b258b6c9474a85b /java/src/IceGridGUI/LiveDeployment/Server.java | |
parent | Fixed bug #1637 (diff) | |
download | ice-aef03147363774f93cfd77a5c53b50969ee0a35d.tar.bz2 ice-aef03147363774f93cfd77a5c53b50969ee0a35d.tar.xz ice-aef03147363774f93cfd77a5c53b50969ee0a35d.zip |
Fixed patch-server language
Diffstat (limited to 'java/src/IceGridGUI/LiveDeployment/Server.java')
-rwxr-xr-x | java/src/IceGridGUI/LiveDeployment/Server.java | 11 |
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); |