2024-05-07 00:10:58 +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 DeleteConfirmationContentStrings
{
private const string prefix = @"osu.Game.Resources.Localisation.DeleteConfirmationContent" ;
/// <summary>
2024-05-07 23:15:49 +08:00
/// "Are you sure you want to delete all beatmaps?"
2024-05-07 00:10:58 +08:00
/// </summary>
2024-05-07 23:15:49 +08:00
public static LocalisableString Beatmaps = > new TranslatableString ( getKey ( @"beatmaps" ) , @"Are you sure you want to delete all beatmaps?" ) ;
2024-05-07 00:10:58 +08:00
/// <summary>
2024-05-07 23:15:49 +08:00
/// "Are you sure you want to delete all beatmaps videos? This cannot be undone!"
2024-05-07 00:10:58 +08:00
/// </summary>
2024-05-07 23:15:49 +08:00
public static LocalisableString BeatmapVideos = > new TranslatableString ( getKey ( @"beatmap_videos" ) , @"Are you sure you want to delete all beatmaps videos? This cannot be undone!" ) ;
2024-05-07 00:10:58 +08:00
/// <summary>
2024-05-07 23:15:49 +08:00
/// "Are you sure you want to delete all skins? This cannot be undone!"
2024-05-07 00:10:58 +08:00
/// </summary>
2024-05-07 23:15:49 +08:00
public static LocalisableString Skins = > new TranslatableString ( getKey ( @"skins" ) , @"Are you sure you want to delete all skins? This cannot be undone!" ) ;
2024-05-07 00:10:58 +08:00
/// <summary>
2024-05-07 23:15:49 +08:00
/// "Are you sure you want to delete all collections? This cannot be undone!"
2024-05-07 00:10:58 +08:00
/// </summary>
2024-05-07 23:15:49 +08:00
public static LocalisableString Collections = > new TranslatableString ( getKey ( @"collections" ) , @"Are you sure you want to delete all collections? This cannot be undone!" ) ;
2024-05-07 00:10:58 +08:00
/// <summary>
2024-05-07 23:15:49 +08:00
/// "Are you sure you want to delete all scores? This cannot be undone!"
2024-05-07 00:10:58 +08:00
/// </summary>
2024-05-16 20:49:56 +08:00
public static LocalisableString Scores = > new TranslatableString ( getKey ( @"scores" ) , @"Are you sure you want to delete all scores? This cannot be undone!" ) ;
2024-05-07 00:10:58 +08:00
/// <summary>
2024-05-07 23:15:49 +08:00
/// "Are you sure you want to delete all mod presets?"
2024-05-07 00:10:58 +08:00
/// </summary>
2024-05-07 23:15:49 +08:00
public static LocalisableString ModPresets = > new TranslatableString ( getKey ( @"mod_presets" ) , @"Are you sure you want to delete all mod presets?" ) ;
2024-05-07 00:10:58 +08:00
private static string getKey ( string key ) = > $@"{prefix}:{key}" ;
}
}