2021-08-12 11:40:22 +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 SkinSettingsStrings
{
private const string prefix = @"osu.Game.Resources.Localisation.SkinSettings" ;
/// <summary>
/// "Skin"
/// </summary>
public static LocalisableString SkinSectionHeader = > new TranslatableString ( getKey ( @"skin_section_header" ) , @"Skin" ) ;
2021-10-12 13:42:22 +08:00
/// <summary>
/// "Current skin"
/// </summary>
public static LocalisableString CurrentSkin = > new TranslatableString ( getKey ( @"current_skin" ) , @"Current skin" ) ;
2021-08-12 11:40:22 +08:00
/// <summary>
/// "Skin layout editor"
/// </summary>
public static LocalisableString SkinLayoutEditor = > new TranslatableString ( getKey ( @"skin_layout_editor" ) , @"Skin layout editor" ) ;
/// <summary>
/// "Gameplay cursor size"
/// </summary>
2021-08-14 11:04:38 +08:00
public static LocalisableString GameplayCursorSize = > new TranslatableString ( getKey ( @"gameplay_cursor_size" ) , @"Gameplay cursor size" ) ;
2021-08-12 11:40:22 +08:00
/// <summary>
/// "Adjust gameplay cursor size based on current beatmap"
/// </summary>
public static LocalisableString AutoCursorSize = > new TranslatableString ( getKey ( @"auto_cursor_size" ) , @"Adjust gameplay cursor size based on current beatmap" ) ;
/// <summary>
/// "Beatmap skins"
/// </summary>
public static LocalisableString BeatmapSkins = > new TranslatableString ( getKey ( @"beatmap_skins" ) , @"Beatmap skins" ) ;
/// <summary>
/// "Beatmap colours"
/// </summary>
public static LocalisableString BeatmapColours = > new TranslatableString ( getKey ( @"beatmap_colours" ) , @"Beatmap colours" ) ;
/// <summary>
/// "Beatmap hitsounds"
/// </summary>
public static LocalisableString BeatmapHitsounds = > new TranslatableString ( getKey ( @"beatmap_hitsounds" ) , @"Beatmap hitsounds" ) ;
/// <summary>
/// "Export selected skin"
/// </summary>
public static LocalisableString ExportSkinButton = > new TranslatableString ( getKey ( @"export_skin_button" ) , @"Export selected skin" ) ;
private static string getKey ( string key ) = > $"{prefix}:{key}" ;
}
}