From e570f154754040fb461a2fdebfbc22bb02501704 Mon Sep 17 00:00:00 2001 From: Denis Titovets Date: Tue, 12 May 2026 20:00:05 +0300 Subject: [PATCH] Rename `Localisation.Web.CommonStrings` using directives to `WebCommonStrings` (#37675) for standartisation purposes --- .../Overlays/BeatmapListing/BeatmapSearchGeneralFilterRow.cs | 4 ++-- osu.Game/Screens/Select/PanelUpdateBeatmapButton.cs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/osu.Game/Overlays/BeatmapListing/BeatmapSearchGeneralFilterRow.cs b/osu.Game/Overlays/BeatmapListing/BeatmapSearchGeneralFilterRow.cs index b62836dfde..64cae18457 100644 --- a/osu.Game/Overlays/BeatmapListing/BeatmapSearchGeneralFilterRow.cs +++ b/osu.Game/Overlays/BeatmapListing/BeatmapSearchGeneralFilterRow.cs @@ -20,7 +20,7 @@ using osu.Game.Resources.Localisation.Web; using osu.Game.Rulesets; using osu.Game.Utils; using osuTK.Graphics; -using CommonStrings = osu.Game.Resources.Localisation.Web.CommonStrings; +using WebCommonStrings = osu.Game.Resources.Localisation.Web.CommonStrings; namespace osu.Game.Overlays.BeatmapListing { @@ -200,7 +200,7 @@ namespace osu.Game.Overlays.BeatmapListing }, new PopupDialogCancelButton { - Text = CommonStrings.ButtonsCancel, + Text = WebCommonStrings.ButtonsCancel, }, }; } diff --git a/osu.Game/Screens/Select/PanelUpdateBeatmapButton.cs b/osu.Game/Screens/Select/PanelUpdateBeatmapButton.cs index fc83fa77ef..957be3a262 100644 --- a/osu.Game/Screens/Select/PanelUpdateBeatmapButton.cs +++ b/osu.Game/Screens/Select/PanelUpdateBeatmapButton.cs @@ -20,7 +20,7 @@ using osu.Game.Online.API; using osu.Game.Overlays; using osuTK; using osuTK.Graphics; -using CommonStrings = osu.Game.Resources.Localisation.Web.CommonStrings; +using WebCommonStrings = osu.Game.Resources.Localisation.Web.CommonStrings; namespace osu.Game.Screens.Select { @@ -112,7 +112,7 @@ namespace osu.Game.Screens.Select Anchor = Anchor.CentreLeft, Origin = Anchor.CentreLeft, Font = OsuFont.Style.Body.With(weight: FontWeight.SemiBold), - Text = CommonStrings.ButtonsUpdate, + Text = WebCommonStrings.ButtonsUpdate, } } },