2023-07-26 12:14:21 +08:00
// 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 OnlinePlayStrings
{
private const string prefix = @"osu.Game.Resources.Localisation.OnlinePlay" ;
/// <summary>
2023-07-26 16:37:55 +08:00
/// "Playlist durations longer than 2 weeks require an active osu!supporter tag."
2023-07-26 12:14:21 +08:00
/// </summary>
2023-07-26 16:37:55 +08:00
public static LocalisableString SupporterOnlyDurationNotice = > new TranslatableString ( getKey ( @"supporter_only_duration_notice" ) , @"Playlist durations longer than 2 weeks require an active osu!supporter tag." ) ;
2023-07-26 12:14:21 +08:00
private static string getKey ( string key ) = > $@"{prefix}:{key}" ;
}
}