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:
parent
80539fefe1
commit
13cb658d29
@ -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";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -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()
|
||||||
{
|
{
|
||||||
|
@ -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()
|
||||||
{
|
{
|
||||||
|
@ -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()
|
||||||
{
|
{
|
||||||
|
@ -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";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -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()
|
||||||
{
|
{
|
||||||
|
@ -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()
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user