osu/osu.Game/Localisation/WebSettingsStrings.cs

19 lines
737 B
C#

// 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}";
}
}