1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-03 05:30:11 +08:00

Mark identifiers as verbatim strings

This commit is contained in:
Dean Herbert
2021-07-19 18:15:09 +09:00
Unverified
parent 80539fefe1
commit 13cb658d29
7 changed files with 7 additions and 7 deletions
@@ -10,6 +10,6 @@ namespace osu.Game.Overlays.Profile.Sections
{
public override LocalisableString Title => UsersStrings.ShowExtraMeTitle;
public override string Identifier => "me";
public override string Identifier => @"me";
}
}
@@ -12,7 +12,7 @@ namespace osu.Game.Overlays.Profile.Sections
{
public override LocalisableString Title => UsersStrings.ShowExtraBeatmapsTitle;
public override string Identifier => "beatmaps";
public override string Identifier => @"beatmaps";
public BeatmapsSection()
{
@@ -14,7 +14,7 @@ namespace osu.Game.Overlays.Profile.Sections
{
public override LocalisableString Title => UsersStrings.ShowExtraHistoricalTitle;
public override string Identifier => "historical";
public override string Identifier => @"historical";
public HistoricalSection()
{
@@ -12,7 +12,7 @@ namespace osu.Game.Overlays.Profile.Sections
{
public override LocalisableString Title => UsersStrings.ShowExtraKudosuTitle;
public override string Identifier => "kudosu";
public override string Identifier => @"kudosu";
public KudosuSection()
{
@@ -10,6 +10,6 @@ namespace osu.Game.Overlays.Profile.Sections
{
public override LocalisableString Title => UsersStrings.ShowExtraMedalsTitle;
public override string Identifier => "medals";
public override string Identifier => @"medals";
}
}
@@ -12,7 +12,7 @@ namespace osu.Game.Overlays.Profile.Sections
{
public override LocalisableString Title => UsersStrings.ShowExtraTopRanksTitle;
public override string Identifier => "top_ranks";
public override string Identifier => @"top_ranks";
public RanksSection()
{
@@ -11,7 +11,7 @@ namespace osu.Game.Overlays.Profile.Sections
{
public override LocalisableString Title => UsersStrings.ShowExtraRecentActivityTitle;
public override string Identifier => "recent_activity";
public override string Identifier => @"recent_activity";
public RecentSection()
{