Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Weiser2017-01-30 16:45:48 +0000
committerStefan Xenos2017-02-06 15:40:20 +0000
commitf550024fd4384948b2d71080a63fe5f392ed6570 (patch)
tree92e1e5a7564d62f7f24369ec827328eb9466c1ea
parentf95ec511ae0580c5f76debff62bcd2f4ed270fc8 (diff)
downloadrt.equinox.p2-f550024fd4384948b2d71080a63fe5f392ed6570.tar.gz
rt.equinox.p2-f550024fd4384948b2d71080a63fe5f392ed6570.tar.xz
rt.equinox.p2-f550024fd4384948b2d71080a63fe5f392ed6570.zip
Bug 511106 - ApplyProfileChangesDialog should use "Restart" instead ofI20170206-2000
"Yes" * changes button label of restart dialog Change-Id: Idcdbf386296e806e4b061bf8712b16062ce85100 Signed-off-by: David Weiser <david.weiser@vogella.com>
-rw-r--r--bundles/org.eclipse.equinox.p2.ui/src/org/eclipse/equinox/internal/p2/ui/dialogs/ApplyProfileChangesDialog.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.equinox.p2.ui/src/org/eclipse/equinox/internal/p2/ui/dialogs/ApplyProfileChangesDialog.java b/bundles/org.eclipse.equinox.p2.ui/src/org/eclipse/equinox/internal/p2/ui/dialogs/ApplyProfileChangesDialog.java
index 9ee371dbb..68fc3d6ad 100644
--- a/bundles/org.eclipse.equinox.p2.ui/src/org/eclipse/equinox/internal/p2/ui/dialogs/ApplyProfileChangesDialog.java
+++ b/bundles/org.eclipse.equinox.p2.ui/src/org/eclipse/equinox/internal/p2/ui/dialogs/ApplyProfileChangesDialog.java
@@ -28,7 +28,7 @@ public class ApplyProfileChangesDialog extends MessageDialog {
public static final int PROFILE_IGNORE = 0;
public static final int PROFILE_APPLYCHANGES = 1;
public static final int PROFILE_RESTART = 2;
- private final static String[] yesNo = new String[] {IDialogConstants.YES_LABEL, IDialogConstants.NO_LABEL};
+ private final static String[] yesNo = new String[] {ProvUIMessages.ApplyProfileChangesDialog_Restart, IDialogConstants.NO_LABEL};
private final static String[] yesNoApply = new String[] {ProvUIMessages.ApplyProfileChangesDialog_Restart, ProvUIMessages.ApplyProfileChangesDialog_NotYet, ProvUIMessages.ApplyProfileChangesDialog_ApplyChanges};
private int returnCode = PROFILE_IGNORE;

Back to the top