1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-10 15:37:20 +08:00

Merge pull request #32262 from GAMIS65/report-button-localisation

Use localisation from osu web for the report button
This commit is contained in:
Joseph Madamba 2025-03-06 14:47:35 -08:00 committed by GitHub
commit 479c73c1ac
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -178,7 +178,7 @@ namespace osu.Game.Overlays.Chat
}
if (!user.Equals(api.LocalUser.Value))
items.Add(new OsuMenuItem("Report", MenuItemType.Destructive, ReportRequested));
items.Add(new OsuMenuItem(UsersStrings.ReportButtonText, MenuItemType.Destructive, ReportRequested));
return items.ToArray();
}