mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 15:07:44 +08:00
Remove localisation for now
This commit is contained in:
parent
3ff0327d91
commit
7354f9e6ba
@ -4,7 +4,6 @@
|
||||
using osu.Framework.Allocation;
|
||||
using osu.Framework.Graphics.Sprites;
|
||||
using osu.Game.Graphics;
|
||||
using osu.Game.Localisation;
|
||||
using osu.Game.Overlays.Notifications;
|
||||
|
||||
namespace osu.Game.Database
|
||||
@ -13,7 +12,7 @@ namespace osu.Game.Database
|
||||
{
|
||||
public TooManyDownloadsNotification(string humanisedModelName)
|
||||
{
|
||||
Text = CommonStrings.TooManyDownloaded(humanisedModelName);
|
||||
Text = $"You have downloaded too many {humanisedModelName}s! Please try again later.";
|
||||
Icon = FontAwesome.Solid.ExclamationCircle;
|
||||
}
|
||||
|
||||
|
@ -54,11 +54,6 @@ namespace osu.Game.Localisation
|
||||
/// </summary>
|
||||
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>
|
||||
/// "Importing..."
|
||||
/// </summary>
|
||||
|
Loading…
Reference in New Issue
Block a user