1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 19:27:24 +08:00

Remove unused translations

This commit is contained in:
Dean Herbert 2023-09-19 17:53:00 +09:00
parent f726c38215
commit cdb5fea513
2 changed files with 0 additions and 24 deletions

View File

@ -54,11 +54,6 @@ namespace osu.Game.Localisation
/// </summary>
public static LocalisableString PreferNoVideo => new TranslatableString(getKey(@"prefer_no_video"), @"Prefer downloads without video");
/// <summary>
/// "Automatically download beatmaps when spectating"
/// </summary>
public static LocalisableString AutomaticallyDownloadWhenSpectating => new TranslatableString(getKey(@"automatically_download_when_spectating"), @"Automatically download beatmaps when spectating");
/// <summary>
/// "Automatically download missing beatmaps"
/// </summary>

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 WebSettingsStrings
{
private const string prefix = @"osu.Game.Resources.Localisation.WebSettings";
/// <summary>
/// "Automatically download missing beatmaps"
/// </summary>
public static LocalisableString AutomaticallyDownloadMissingBeatmaps => new TranslatableString(getKey(@"automatically_download_missing_beatmaps"), @"Automatically download missing beatmaps");
private static string getKey(string key) => $@"{prefix}:{key}";
}
}