1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-13 19:27:31 +08:00

Remove localisation for now

This commit is contained in:
Salman Ahmed 2022-08-01 22:05:52 +03:00
parent 3ff0327d91
commit 7354f9e6ba
2 changed files with 1 additions and 7 deletions

View File

@ -4,7 +4,6 @@
using osu.Framework.Allocation; using osu.Framework.Allocation;
using osu.Framework.Graphics.Sprites; using osu.Framework.Graphics.Sprites;
using osu.Game.Graphics; using osu.Game.Graphics;
using osu.Game.Localisation;
using osu.Game.Overlays.Notifications; using osu.Game.Overlays.Notifications;
namespace osu.Game.Database namespace osu.Game.Database
@ -13,7 +12,7 @@ namespace osu.Game.Database
{ {
public TooManyDownloadsNotification(string humanisedModelName) public TooManyDownloadsNotification(string humanisedModelName)
{ {
Text = CommonStrings.TooManyDownloaded(humanisedModelName); Text = $"You have downloaded too many {humanisedModelName}s! Please try again later.";
Icon = FontAwesome.Solid.ExclamationCircle; Icon = FontAwesome.Solid.ExclamationCircle;
} }

View File

@ -54,11 +54,6 @@ namespace osu.Game.Localisation
/// </summary> /// </summary>
public static LocalisableString Downloading => new TranslatableString(getKey(@"downloading"), @"Downloading..."); public static LocalisableString Downloading => new TranslatableString(getKey(@"downloading"), @"Downloading...");
/// <summary>
/// "You have downloaded too many {0}s! Please try again later."
/// </summary>
public static LocalisableString TooManyDownloaded(string humanisedModelName) => new TranslatableString(getKey(@"too_many_downloaded"), @"You have downloaded too many {0}s! Please try again later.", humanisedModelName);
/// <summary> /// <summary>
/// "Importing..." /// "Importing..."
/// </summary> /// </summary>