mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2024-11-25 06:16:37 +01:00
CA-341576: Corrected title and button text.
Signed-off-by: Konstantina Chremmou <konstantina.chremmou@citrix.com>
This commit is contained in:
parent
db041099ef
commit
d2ded59b7a
@ -123,9 +123,9 @@ namespace XenAdmin.Wizards.RollingUpgradeWizard.PlanActions
|
||||
Program.Invoke(invokingControl, () =>
|
||||
{
|
||||
using (var dialog = new InformationDialog(string.Format(Messages.ROLLING_UPGRADE_REBOOT_MESSAGE, GetResolvedHost().Name()),
|
||||
new ThreeButtonDialog.TBDButton(Messages.ROLLING_POOL_UPGRADE, DialogResult.OK),
|
||||
new ThreeButtonDialog.TBDButton(Messages.REBOOT, DialogResult.Cancel))
|
||||
{WindowTitle = Messages.SKIP_SERVER})
|
||||
new ThreeButtonDialog.TBDButton(Messages.REBOOT, DialogResult.OK),
|
||||
new ThreeButtonDialog.TBDButton(Messages.SKIP_SERVER, DialogResult.Cancel))
|
||||
{WindowTitle = Messages.ROLLING_POOL_UPGRADE})
|
||||
{
|
||||
if (dialog.ShowDialog(invokingControl) != DialogResult.OK) // Cancel or Unknown
|
||||
{
|
||||
@ -161,9 +161,9 @@ namespace XenAdmin.Wizards.RollingUpgradeWizard.PlanActions
|
||||
Program.Invoke(invokingControl, () =>
|
||||
{
|
||||
using (var dialog = new WarningDialog(string.Format(Messages.ROLLING_UPGRADE_REBOOT_AGAIN_MESSAGE, hostName),
|
||||
new ThreeButtonDialog.TBDButton(Messages.ROLLING_POOL_UPGRADE, DialogResult.OK),
|
||||
new ThreeButtonDialog.TBDButton(Messages.REBOOT_AGAIN_BUTTON_LABEL, DialogResult.Cancel))
|
||||
{WindowTitle = Messages.SKIP_SERVER})
|
||||
new ThreeButtonDialog.TBDButton(Messages.REBOOT_AGAIN_BUTTON_LABEL, DialogResult.OK),
|
||||
new ThreeButtonDialog.TBDButton(Messages.SKIP_SERVER, DialogResult.Cancel))
|
||||
{WindowTitle = Messages.ROLLING_POOL_UPGRADE})
|
||||
{
|
||||
if (dialog.ShowDialog(invokingControl) == DialogResult.OK)
|
||||
return;
|
||||
|
Loading…
Reference in New Issue
Block a user