1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-13 19:54:15 +08:00

Rename Localisation.Web.CommonStrings using directives to WebCommonStrings (#37675)

for standartisation purposes
This commit is contained in:
Denis Titovets
2026-05-12 20:00:05 +03:00
committed by GitHub
Unverified
parent 6687cc062d
commit e570f15475
2 changed files with 4 additions and 4 deletions
@@ -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,
},
};
}
@@ -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,
}
}
},