1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 19:22:54 +08:00

Mark identifiers as verbatim strings

This commit is contained in:
Dean Herbert 2021-07-19 18:15:09 +09:00
parent 80539fefe1
commit 13cb658d29
7 changed files with 7 additions and 7 deletions

View File

@ -10,6 +10,6 @@ namespace osu.Game.Overlays.Profile.Sections
{ {
public override LocalisableString Title => UsersStrings.ShowExtraMeTitle; public override LocalisableString Title => UsersStrings.ShowExtraMeTitle;
public override string Identifier => "me"; public override string Identifier => @"me";
} }
} }

View File

@ -12,7 +12,7 @@ namespace osu.Game.Overlays.Profile.Sections
{ {
public override LocalisableString Title => UsersStrings.ShowExtraBeatmapsTitle; public override LocalisableString Title => UsersStrings.ShowExtraBeatmapsTitle;
public override string Identifier => "beatmaps"; public override string Identifier => @"beatmaps";
public BeatmapsSection() public BeatmapsSection()
{ {

View File

@ -14,7 +14,7 @@ namespace osu.Game.Overlays.Profile.Sections
{ {
public override LocalisableString Title => UsersStrings.ShowExtraHistoricalTitle; public override LocalisableString Title => UsersStrings.ShowExtraHistoricalTitle;
public override string Identifier => "historical"; public override string Identifier => @"historical";
public HistoricalSection() public HistoricalSection()
{ {

View File

@ -12,7 +12,7 @@ namespace osu.Game.Overlays.Profile.Sections
{ {
public override LocalisableString Title => UsersStrings.ShowExtraKudosuTitle; public override LocalisableString Title => UsersStrings.ShowExtraKudosuTitle;
public override string Identifier => "kudosu"; public override string Identifier => @"kudosu";
public KudosuSection() public KudosuSection()
{ {

View File

@ -10,6 +10,6 @@ namespace osu.Game.Overlays.Profile.Sections
{ {
public override LocalisableString Title => UsersStrings.ShowExtraMedalsTitle; public override LocalisableString Title => UsersStrings.ShowExtraMedalsTitle;
public override string Identifier => "medals"; public override string Identifier => @"medals";
} }
} }

View File

@ -12,7 +12,7 @@ namespace osu.Game.Overlays.Profile.Sections
{ {
public override LocalisableString Title => UsersStrings.ShowExtraTopRanksTitle; public override LocalisableString Title => UsersStrings.ShowExtraTopRanksTitle;
public override string Identifier => "top_ranks"; public override string Identifier => @"top_ranks";
public RanksSection() public RanksSection()
{ {

View File

@ -11,7 +11,7 @@ namespace osu.Game.Overlays.Profile.Sections
{ {
public override LocalisableString Title => UsersStrings.ShowExtraRecentActivityTitle; public override LocalisableString Title => UsersStrings.ShowExtraRecentActivityTitle;
public override string Identifier => "recent_activity"; public override string Identifier => @"recent_activity";
public RecentSection() public RecentSection()
{ {