mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 12:57:36 +08:00
code style format
This commit is contained in:
parent
5cfb89f18a
commit
e26ccf786e
@ -27,7 +27,7 @@ namespace osu.Game.Localisation
|
||||
/// <summary>
|
||||
/// "Show a notification when you receive a private message"
|
||||
/// </summary>
|
||||
public static LocalisableString NotifyOnPM => new TranslatableString(getKey(@"notify_on_pm"), @"Show a notification when you receive a private message");
|
||||
public static LocalisableString NotifyOnPrivateMessage => new TranslatableString(getKey(@"notify_on_private_message"), @"Show a notification when you receive a private message");
|
||||
|
||||
/// <summary>
|
||||
/// "Integrations"
|
||||
@ -57,7 +57,7 @@ namespace osu.Game.Localisation
|
||||
/// <summary>
|
||||
/// "Automatically download beatmaps when spectating"
|
||||
/// </summary>
|
||||
public static LocalisableString AutomaticallyDownload => new TranslatableString(getKey(@"automatically_download"), @"Automatically download beatmaps when spectating");
|
||||
public static LocalisableString AutomaticallyDownloadWhenSpectating => new TranslatableString(getKey(@"automatically_download_when_spectating"), @"Automatically download beatmaps when spectating");
|
||||
|
||||
/// <summary>
|
||||
/// "Show explicit content in search results"
|
||||
|
@ -22,7 +22,7 @@ namespace osu.Game.Localisation
|
||||
/// <summary>
|
||||
/// "Gameplay cursor size"
|
||||
/// </summary>
|
||||
public static LocalisableString CursorSize => new TranslatableString(getKey(@"cursor_size"), @"Gameplay cursor size");
|
||||
public static LocalisableString GameplayCursorSize => new TranslatableString(getKey(@"gameplay_cursor_size"), @"Gameplay cursor size");
|
||||
|
||||
/// <summary>
|
||||
/// "Adjust gameplay cursor size based on current beatmap"
|
||||
|
@ -25,7 +25,7 @@ namespace osu.Game.Overlays.Settings.Sections.Online
|
||||
},
|
||||
new SettingsCheckbox
|
||||
{
|
||||
LabelText = OnlineSettingsStrings.NotifyOnPM,
|
||||
LabelText = OnlineSettingsStrings.NotifyOnPrivateMessage,
|
||||
Current = config.GetBindable<bool>(OsuSetting.NotifyOnPrivateMessage)
|
||||
},
|
||||
};
|
||||
|
@ -31,7 +31,7 @@ namespace osu.Game.Overlays.Settings.Sections.Online
|
||||
},
|
||||
new SettingsCheckbox
|
||||
{
|
||||
LabelText = OnlineSettingsStrings.AutomaticallyDownload,
|
||||
LabelText = OnlineSettingsStrings.AutomaticallyDownloadWhenSpectating,
|
||||
Keywords = new[] { "spectator" },
|
||||
Current = config.GetBindable<bool>(OsuSetting.AutomaticallyDownloadWhenSpectating),
|
||||
},
|
||||
|
@ -76,7 +76,7 @@ namespace osu.Game.Overlays.Settings.Sections
|
||||
new ExportSkinButton(),
|
||||
new SettingsSlider<float, SizeSlider>
|
||||
{
|
||||
LabelText = SkinSettingsStrings.CursorSize,
|
||||
LabelText = SkinSettingsStrings.GameplayCursorSize,
|
||||
Current = config.GetBindable<float>(OsuSetting.GameplayCursorSize),
|
||||
KeyboardStep = 0.01f
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user