1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-19 09:12:58 +08:00

Remove unused localisation file

This commit is contained in:
Arthur Araujo 2024-03-18 15:59:19 -03:00
parent c23212f4ef
commit f6d7f18f25

View File

@ -1,19 +0,0 @@
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Framework.Localisation;
namespace osu.Game.Localisation
{
public static class CheckUnusedAudioAtEndStrings
{
private const string prefix = @"osu.Game.Resources.Localisation.CheckUnusedAudioAtEnd";
/// <summary>
/// "{0}% of the audio is not mapped."
/// </summary>
public static LocalisableString OfTheAudioIsNot(double percentageLeft) => new TranslatableString(getKey(@"of_the_audio_is_not"), @"{0}% of the audio is not mapped.", percentageLeft);
private static string getKey(string key) => $@"{prefix}:{key}";
}
}