mirror of
https://github.com/osukey/osukey.git
synced 2025-07-03 01:09:57 +09:00
Fix a missed toast shortcut string not localising correctly
This commit is contained in:
@ -218,7 +218,9 @@ namespace osu.Game.Configuration
|
||||
rawValue: skinName,
|
||||
name: SkinSettingsStrings.SkinSectionHeader,
|
||||
value: skinName,
|
||||
shortcut: $"{GlobalActionKeyBindingStrings.RandomSkin}: {LookupKeyBindings(GlobalAction.RandomSkin)}"
|
||||
shortcut: new TranslatableString(@"_", @"{0}: {1}",
|
||||
GlobalActionKeyBindingStrings.RandomSkin,
|
||||
LookupKeyBindings(GlobalAction.RandomSkin))
|
||||
);
|
||||
}),
|
||||
new TrackedSetting<float>(OsuSetting.UIScale, scale => new SettingDescription(
|
||||
|
Reference in New Issue
Block a user