mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 06:09:34 +08:00
f87f86e671
Co-authored-by: Bartłomiej Dach <dach.bartlomiej@gmail.com>
115 lines
4.7 KiB
C#
115 lines
4.7 KiB
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 UserInterfaceStrings
|
|
{
|
|
private const string prefix = @"osu.Game.Resources.Localisation.UserInterface";
|
|
|
|
/// <summary>
|
|
/// "User Interface"
|
|
/// </summary>
|
|
public static LocalisableString UserInterfaceSectionHeader => new TranslatableString(getKey(@"user_interface_section_header"), @"User Interface");
|
|
|
|
/// <summary>
|
|
/// "General"
|
|
/// </summary>
|
|
public static LocalisableString GeneralHeader => new TranslatableString(getKey(@"general_header"), @"General");
|
|
|
|
/// <summary>
|
|
/// "Rotate cursor when dragging"
|
|
/// </summary>
|
|
public static LocalisableString CursorRotation => new TranslatableString(getKey(@"cursor_rotation"), @"Rotate cursor when dragging");
|
|
|
|
/// <summary>
|
|
/// "Menu cursor size"
|
|
/// </summary>
|
|
public static LocalisableString MenuCursorSize => new TranslatableString(getKey(@"menu_cursor_size"), @"Menu cursor size");
|
|
|
|
/// <summary>
|
|
/// "Parallax"
|
|
/// </summary>
|
|
public static LocalisableString Parallax => new TranslatableString(getKey(@"parallax"), @"Parallax");
|
|
|
|
/// <summary>
|
|
/// "Hold-to-confirm activation time"
|
|
/// </summary>
|
|
public static LocalisableString HoldToConfirmActivationTime => new TranslatableString(getKey(@"hold_to_confirm_activation_time"), @"Hold-to-confirm activation time");
|
|
|
|
/// <summary>
|
|
/// "Main Menu"
|
|
/// </summary>
|
|
public static LocalisableString MainMenuHeader => new TranslatableString(getKey(@"main_menu_header"), @"Main Menu");
|
|
|
|
/// <summary>
|
|
/// "Interface voices"
|
|
/// </summary>
|
|
public static LocalisableString InterfaceVoices => new TranslatableString(getKey(@"interface_voices"), @"Interface voices");
|
|
|
|
/// <summary>
|
|
/// "osu! music theme"
|
|
/// </summary>
|
|
public static LocalisableString OsuMusicTheme => new TranslatableString(getKey(@"osu_music_theme"), @"osu! music theme");
|
|
|
|
/// <summary>
|
|
/// "Intro sequence"
|
|
/// </summary>
|
|
public static LocalisableString IntroSequence => new TranslatableString(getKey(@"intro_sequence"), @"Intro sequence");
|
|
|
|
/// <summary>
|
|
/// "Background source"
|
|
/// </summary>
|
|
public static LocalisableString BackgroundSource => new TranslatableString(getKey(@"background_source"), @"Background source");
|
|
|
|
/// <summary>
|
|
/// "Seasonal backgrounds"
|
|
/// </summary>
|
|
public static LocalisableString SeasonalBackgrounds => new TranslatableString(getKey(@"seasonal_backgrounds"), @"Seasonal backgrounds");
|
|
|
|
/// <summary>
|
|
/// "Changes to this setting will only apply with an active osu!supporter tag."
|
|
/// </summary>
|
|
public static LocalisableString NotSupporterNote => new TranslatableString(getKey(@"not_supporter_note"), @"Changes to this setting will only apply with an active osu!supporter tag.");
|
|
|
|
/// <summary>
|
|
/// "Song Select"
|
|
/// </summary>
|
|
public static LocalisableString SongSelectHeader => new TranslatableString(getKey(@"song_select_header"), @"Song Select");
|
|
|
|
/// <summary>
|
|
/// "Right mouse drag to absolute scroll"
|
|
/// </summary>
|
|
public static LocalisableString RightMouseScroll => new TranslatableString(getKey(@"right_mouse_scroll"), @"Right mouse drag to absolute scroll");
|
|
|
|
/// <summary>
|
|
/// "Show converted beatmaps"
|
|
/// </summary>
|
|
public static LocalisableString ShowConvertedBeatmaps => new TranslatableString(getKey(@"show_converted_beatmaps"), @"Show converted beatmaps");
|
|
|
|
/// <summary>
|
|
/// "Display beatmaps from"
|
|
/// </summary>
|
|
public static LocalisableString StarsMinimum => new TranslatableString(getKey(@"stars_minimum"), @"Display beatmaps from");
|
|
|
|
/// <summary>
|
|
/// "up to"
|
|
/// </summary>
|
|
public static LocalisableString StarsMaximum => new TranslatableString(getKey(@"stars_maximum"), @"up to");
|
|
|
|
/// <summary>
|
|
/// "Random selection algorithm"
|
|
/// </summary>
|
|
public static LocalisableString RandomSelectionAlgorithm => new TranslatableString(getKey(@"random_selection_algorithm"), @"Random selection algorithm");
|
|
|
|
/// <summary>
|
|
/// "no limit"
|
|
/// </summary>
|
|
public static LocalisableString NoLimit => new TranslatableString(getKey(@"no_limit"), @"no limit");
|
|
|
|
private static string getKey(string key) => $"{prefix}:{key}";
|
|
}
|
|
}
|