2023-06-18 21:53:49 +08:00
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
2022-05-07 16:17:24 +08:00
// See the LICENCE file in the repository root for full licence text.
using osu.Framework.Localisation ;
namespace osu.Game.Localisation
{
2022-05-12 00:01:33 +08:00
public static class ModSelectOverlayStrings
2022-05-07 16:17:24 +08:00
{
2022-05-12 00:01:33 +08:00
private const string prefix = @"osu.Game.Resources.Localisation.ModSelectOverlay" ;
2022-05-07 16:17:24 +08:00
/// <summary>
/// "Mod Select"
/// </summary>
public static LocalisableString ModSelectTitle = > new TranslatableString ( getKey ( @"mod_select_title" ) , @"Mod Select" ) ;
2024-05-11 20:25:47 +08:00
/// <summary>
/// "{0} mods"
/// </summary>
public static LocalisableString Mods ( int count ) = > new TranslatableString ( getKey ( @"mods" ) , @"{0} mods" , count ) ;
2022-05-07 16:17:24 +08:00
/// <summary>
/// "Mods provide different ways to enjoy gameplay. Some have an effect on the score you can achieve during ranked play. Others are just for fun."
/// </summary>
2024-05-11 20:25:47 +08:00
public static LocalisableString ModSelectDescription = > new TranslatableString ( getKey ( @"mod_select_description" ) ,
@"Mods provide different ways to enjoy gameplay. Some have an effect on the score you can achieve during ranked play. Others are just for fun." ) ;
2022-05-07 16:17:24 +08:00
/// <summary>
/// "Mod Customisation"
/// </summary>
public static LocalisableString ModCustomisation = > new TranslatableString ( getKey ( @"mod_customisation" ) , @"Mod Customisation" ) ;
2022-07-25 05:30:52 +08:00
/// <summary>
/// "Personal Presets"
/// </summary>
public static LocalisableString PersonalPresets = > new TranslatableString ( getKey ( @"personal_presets" ) , @"Personal Presets" ) ;
2022-07-23 03:49:51 +08:00
/// <summary>
/// "Add preset"
/// </summary>
public static LocalisableString AddPreset = > new TranslatableString ( getKey ( @"add_preset" ) , @"Add preset" ) ;
2023-05-04 10:11:19 +08:00
/// <summary>
/// "Use current mods"
/// </summary>
public static LocalisableString UseCurrentMods = > new TranslatableString ( getKey ( @"use_current_mods" ) , @"Use current mods" ) ;
2023-06-18 21:53:49 +08:00
/// <summary>
/// "tab to search..."
/// </summary>
public static LocalisableString TabToSearch = > new TranslatableString ( getKey ( @"tab_to_search" ) , @"tab to search..." ) ;
2023-09-13 19:00:06 +08:00
/// <summary>
/// "Score Multiplier"
/// </summary>
public static LocalisableString ScoreMultiplier = > new TranslatableString ( getKey ( @"score_multiplier" ) , @"Score Multiplier" ) ;
2024-01-31 22:50:43 +08:00
/// <summary>
/// "Ranked"
/// </summary>
public static LocalisableString Ranked = > new TranslatableString ( getKey ( @"ranked" ) , @"Ranked" ) ;
/// <summary>
/// "Performance points can be granted for the active mods."
/// </summary>
public static LocalisableString RankedExplanation = > new TranslatableString ( getKey ( @"ranked_explanation" ) , @"Performance points can be granted for the active mods." ) ;
/// <summary>
/// "Unranked"
/// </summary>
public static LocalisableString Unranked = > new TranslatableString ( getKey ( @"unranked" ) , @"Unranked" ) ;
/// <summary>
/// "Performance points will not be granted due to active mods."
/// </summary>
2024-03-03 03:45:15 +08:00
public static LocalisableString UnrankedExplanation = > new TranslatableString ( getKey ( @"unranked_explanation" ) , @"Performance points will not be granted due to active mods." ) ;
2024-01-31 22:50:43 +08:00
2024-06-23 13:22:13 +08:00
/// <summary>
/// "Customise"
/// </summary>
public static LocalisableString CustomisationPanelHeader = > new TranslatableString ( getKey ( @"customisation_panel_header" ) , @"Customise" ) ;
2022-05-07 16:17:24 +08:00
private static string getKey ( string key ) = > $@"{prefix}:{key}" ;
}
2023-09-13 19:00:06 +08:00
}