mirror of
https://github.com/ppy/osu.git
synced 2025-01-13 05:53:10 +08:00
Merge pull request #15253 from Joehuu/fix-missed-toast-shortcut
Fix a missed toast shortcut string not localising correctly
This commit is contained in:
commit
dbb1bafb28
@ -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(
|
||||
|
Loading…
Reference in New Issue
Block a user