1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-15 00:27:47 +08:00

Rename mouse button string to Disable clicks during gameplay

This commit is contained in:
Susko3 2023-11-05 12:43:14 +01:00
parent 86fb33cb90
commit fa1d1df594
4 changed files with 6 additions and 6 deletions

View File

@ -70,7 +70,7 @@ namespace osu.Android
}, },
new SettingsCheckbox new SettingsCheckbox
{ {
LabelText = MouseSettingsStrings.DisableMouseButtons, LabelText = MouseSettingsStrings.DisableClicksDuringGameplay,
Current = osuConfig.GetBindable<bool>(OsuSetting.MouseDisableButtons), Current = osuConfig.GetBindable<bool>(OsuSetting.MouseDisableButtons),
}, },
}); });

View File

@ -40,14 +40,14 @@ namespace osu.Game.Localisation
public static LocalisableString DisableMouseWheelVolumeAdjust => new TranslatableString(getKey(@"disable_mouse_wheel_volume_adjust"), @"Disable mouse wheel adjusting volume during gameplay"); public static LocalisableString DisableMouseWheelVolumeAdjust => new TranslatableString(getKey(@"disable_mouse_wheel_volume_adjust"), @"Disable mouse wheel adjusting volume during gameplay");
/// <summary> /// <summary>
/// "Volume can still be adjusted using the mouse wheel by holding "Alt"" /// "Volume can still be adjusted using the mouse wheel by holding &quot;Alt&quot;"
/// </summary> /// </summary>
public static LocalisableString DisableMouseWheelVolumeAdjustTooltip => new TranslatableString(getKey(@"disable_mouse_wheel_volume_adjust_tooltip"), @"Volume can still be adjusted using the mouse wheel by holding ""Alt"""); public static LocalisableString DisableMouseWheelVolumeAdjustTooltip => new TranslatableString(getKey(@"disable_mouse_wheel_volume_adjust_tooltip"), @"Volume can still be adjusted using the mouse wheel by holding ""Alt""");
/// <summary> /// <summary>
/// "Disable mouse buttons during gameplay" /// "Disable clicks during gameplay"
/// </summary> /// </summary>
public static LocalisableString DisableMouseButtons => new TranslatableString(getKey(@"disable_mouse_buttons"), @"Disable mouse buttons during gameplay"); public static LocalisableString DisableClicksDuringGameplay => new TranslatableString(getKey(@"disable_clicks"), @"Disable clicks during gameplay");
/// <summary> /// <summary>
/// "Enable high precision mouse to adjust sensitivity" /// "Enable high precision mouse to adjust sensitivity"

View File

@ -75,7 +75,7 @@ namespace osu.Game.Overlays.Settings.Sections.Input
}, },
new SettingsCheckbox new SettingsCheckbox
{ {
LabelText = MouseSettingsStrings.DisableMouseButtons, LabelText = MouseSettingsStrings.DisableClicksDuringGameplay,
Current = osuConfig.GetBindable<bool>(OsuSetting.MouseDisableButtons) Current = osuConfig.GetBindable<bool>(OsuSetting.MouseDisableButtons)
}, },
}; };

View File

@ -19,7 +19,7 @@ namespace osu.Game.Screens.Play.PlayerSettings
{ {
mouseButtonsCheckbox = new PlayerCheckbox mouseButtonsCheckbox = new PlayerCheckbox
{ {
LabelText = MouseSettingsStrings.DisableMouseButtons LabelText = MouseSettingsStrings.DisableClicksDuringGameplay
} }
}; };
} }