diff --git a/app/Properties/Strings.Designer.cs b/app/Properties/Strings.Designer.cs index 55c13aef..bf341014 100644 --- a/app/Properties/Strings.Designer.cs +++ b/app/Properties/Strings.Designer.cs @@ -1892,9 +1892,9 @@ namespace GHelper.Properties { /// /// Looks up a localized string similar to Visual Mode. /// - internal static string ViualMode { + internal static string VisualMode { get { - return ResourceManager.GetString("ViualMode", resourceCulture); + return ResourceManager.GetString("VisualMode", resourceCulture); } } diff --git a/app/Properties/Strings.resx b/app/Properties/Strings.resx index ef5f01cd..e4cf0a16 100644 --- a/app/Properties/Strings.resx +++ b/app/Properties/Strings.resx @@ -728,7 +728,7 @@ Do you still want to continue? Vibration Strength - + Visual Mode diff --git a/app/Settings.cs b/app/Settings.cs index 2aa5c24d..b823f6ed 100644 --- a/app/Settings.cs +++ b/app/Settings.cs @@ -268,13 +268,13 @@ namespace GHelper if (isOled) { - labelGammaTitle.Text = Properties.Strings.FlickerFreeDimming + " / " + Properties.Strings.ViualMode; + labelGammaTitle.Text = Properties.Strings.FlickerFreeDimming + " / " + Properties.Strings.VisualMode; VisualiseBrightness(); sliderGamma.ValueChanged += SliderGamma_ValueChanged; sliderGamma.MouseUp += SliderGamma_ValueChanged; } else { - labelGammaTitle.Text = Properties.Strings.ViualMode; + labelGammaTitle.Text = Properties.Strings.VisualMode; } var gamuts = VisualControl.GetGamutModes();