From d0d4c8bc25562ed64b3f52874b063d56b64683ee Mon Sep 17 00:00:00 2001 From: pizzaboxer Date: Tue, 18 Jun 2024 21:42:49 +0100 Subject: [PATCH] Fix progress dialog text --- Bloxstrap/UI/Elements/Bootstrapper/ProgressDialog.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Bloxstrap/UI/Elements/Bootstrapper/ProgressDialog.cs b/Bloxstrap/UI/Elements/Bootstrapper/ProgressDialog.cs index ac5336b..001b31a 100644 --- a/Bloxstrap/UI/Elements/Bootstrapper/ProgressDialog.cs +++ b/Bloxstrap/UI/Elements/Bootstrapper/ProgressDialog.cs @@ -52,7 +52,8 @@ namespace Bloxstrap.UI.Elements.Bootstrapper this.BackColor = Color.FromArgb(25, 27, 29); } - this.labelMessage.Text = Resources.Strings.Common_Cancel; + this.labelMessage.Text = Resources.Strings.Bootstrapper_StylePreview_TextCancel; + this.buttonCancel.Text = Resources.Strings.Common_Cancel; this.IconBox.BackgroundImage = App.Settings.Prop.BootstrapperIcon.GetIcon().GetSized(128, 128).ToBitmap(); SetupDialog();