2021-09-16 16:02:04 +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 GlobalActionKeyBindingStrings
{
private const string prefix = @"osu.Game.Resources.Localisation.GlobalActionKeyBinding" ;
/// <summary>
/// "Toggle chat overlay"
/// </summary>
public static LocalisableString ToggleChat = > new TranslatableString ( getKey ( @"toggle_chat" ) , @"Toggle chat overlay" ) ;
/// <summary>
/// "Toggle social overlay"
/// </summary>
public static LocalisableString ToggleSocial = > new TranslatableString ( getKey ( @"toggle_social" ) , @"Toggle social overlay" ) ;
/// <summary>
/// "Reset input settings"
/// </summary>
public static LocalisableString ResetInputSettings = > new TranslatableString ( getKey ( @"reset_input_settings" ) , @"Reset input settings" ) ;
/// <summary>
/// "Toggle toolbar"
/// </summary>
public static LocalisableString ToggleToolbar = > new TranslatableString ( getKey ( @"toggle_toolbar" ) , @"Toggle toolbar" ) ;
/// <summary>
/// "Toggle settings"
/// </summary>
public static LocalisableString ToggleSettings = > new TranslatableString ( getKey ( @"toggle_settings" ) , @"Toggle settings" ) ;
/// <summary>
/// "Toggle beatmap listing"
/// </summary>
public static LocalisableString ToggleBeatmapListing = > new TranslatableString ( getKey ( @"toggle_beatmap_listing" ) , @"Toggle beatmap listing" ) ;
/// <summary>
/// "Increase volume"
/// </summary>
public static LocalisableString IncreaseVolume = > new TranslatableString ( getKey ( @"increase_volume" ) , @"Increase volume" ) ;
/// <summary>
/// "Decrease volume"
/// </summary>
public static LocalisableString DecreaseVolume = > new TranslatableString ( getKey ( @"decrease_volume" ) , @"Decrease volume" ) ;
/// <summary>
/// "Toggle mute"
/// </summary>
public static LocalisableString ToggleMute = > new TranslatableString ( getKey ( @"toggle_mute" ) , @"Toggle mute" ) ;
/// <summary>
/// "Skip cutscene"
/// </summary>
public static LocalisableString SkipCutscene = > new TranslatableString ( getKey ( @"skip_cutscene" ) , @"Skip cutscene" ) ;
/// <summary>
/// "Quick retry (hold)"
/// </summary>
public static LocalisableString QuickRetry = > new TranslatableString ( getKey ( @"quick_retry" ) , @"Quick retry (hold)" ) ;
/// <summary>
/// "Take screenshot"
/// </summary>
public static LocalisableString TakeScreenshot = > new TranslatableString ( getKey ( @"take_screenshot" ) , @"Take screenshot" ) ;
/// <summary>
/// "Toggle gameplay mouse buttons"
/// </summary>
public static LocalisableString ToggleGameplayMouseButtons = > new TranslatableString ( getKey ( @"toggle_gameplay_mouse_buttons" ) , @"Toggle gameplay mouse buttons" ) ;
/// <summary>
/// "Back"
/// </summary>
public static LocalisableString Back = > new TranslatableString ( getKey ( @"back" ) , @"Back" ) ;
/// <summary>
/// "Increase scroll speed"
/// </summary>
public static LocalisableString IncreaseScrollSpeed = > new TranslatableString ( getKey ( @"increase_scroll_speed" ) , @"Increase scroll speed" ) ;
/// <summary>
/// "Decrease scroll speed"
/// </summary>
public static LocalisableString DecreaseScrollSpeed = > new TranslatableString ( getKey ( @"decrease_scroll_speed" ) , @"Decrease scroll speed" ) ;
/// <summary>
/// "Select"
/// </summary>
public static LocalisableString Select = > new TranslatableString ( getKey ( @"select" ) , @"Select" ) ;
/// <summary>
/// "Quick exit (hold)"
/// </summary>
public static LocalisableString QuickExit = > new TranslatableString ( getKey ( @"quick_exit" ) , @"Quick exit (hold)" ) ;
/// <summary>
/// "Next track"
/// </summary>
public static LocalisableString MusicNext = > new TranslatableString ( getKey ( @"music_next" ) , @"Next track" ) ;
/// <summary>
/// "Previous track"
/// </summary>
public static LocalisableString MusicPrev = > new TranslatableString ( getKey ( @"music_prev" ) , @"Previous track" ) ;
/// <summary>
/// "Play / pause"
/// </summary>
public static LocalisableString MusicPlay = > new TranslatableString ( getKey ( @"music_play" ) , @"Play / pause" ) ;
/// <summary>
/// "Toggle now playing overlay"
/// </summary>
public static LocalisableString ToggleNowPlaying = > new TranslatableString ( getKey ( @"toggle_now_playing" ) , @"Toggle now playing overlay" ) ;
/// <summary>
/// "Previous selection"
/// </summary>
public static LocalisableString SelectPrevious = > new TranslatableString ( getKey ( @"select_previous" ) , @"Previous selection" ) ;
/// <summary>
/// "Next selection"
/// </summary>
public static LocalisableString SelectNext = > new TranslatableString ( getKey ( @"select_next" ) , @"Next selection" ) ;
2022-05-04 21:46:23 +08:00
/// <summary>
2022-05-05 18:40:44 +08:00
/// "Select previous group"
2022-05-04 21:46:23 +08:00
/// </summary>
2022-05-05 18:40:44 +08:00
public static LocalisableString SelectPreviousGroup = > new TranslatableString ( getKey ( @"select_previous_group" ) , @"Select previous group" ) ;
2022-05-04 21:46:23 +08:00
/// <summary>
2022-05-05 18:40:44 +08:00
/// "Select next group"
2022-05-04 21:46:23 +08:00
/// </summary>
2022-05-05 18:40:44 +08:00
public static LocalisableString SelectNextGroup = > new TranslatableString ( getKey ( @"select_next_group" ) , @"Select next group" ) ;
2022-05-04 21:46:23 +08:00
2021-09-16 16:02:04 +08:00
/// <summary>
/// "Home"
/// </summary>
public static LocalisableString Home = > new TranslatableString ( getKey ( @"home" ) , @"Home" ) ;
/// <summary>
/// "Toggle notifications"
/// </summary>
public static LocalisableString ToggleNotifications = > new TranslatableString ( getKey ( @"toggle_notifications" ) , @"Toggle notifications" ) ;
2022-08-09 14:49:53 +08:00
/// <summary>
2022-08-09 16:09:22 +08:00
/// "Toggle profile"
2022-08-09 14:49:53 +08:00
/// </summary>
2022-08-09 16:09:22 +08:00
public static LocalisableString ToggleProfile = > new TranslatableString ( getKey ( @"toggle_profile" ) , @"Toggle profile" ) ;
2022-08-09 14:49:53 +08:00
2021-09-16 16:02:04 +08:00
/// <summary>
2023-01-11 07:53:41 +08:00
/// "Pause / resume gameplay"
2021-09-16 16:02:04 +08:00
/// </summary>
2023-01-11 07:53:41 +08:00
public static LocalisableString PauseGameplay = > new TranslatableString ( getKey ( @"pause_gameplay" ) , @"Pause / resume gameplay" ) ;
2021-09-16 16:02:04 +08:00
/// <summary>
/// "Setup mode"
/// </summary>
public static LocalisableString EditorSetupMode = > new TranslatableString ( getKey ( @"editor_setup_mode" ) , @"Setup mode" ) ;
/// <summary>
/// "Compose mode"
/// </summary>
public static LocalisableString EditorComposeMode = > new TranslatableString ( getKey ( @"editor_compose_mode" ) , @"Compose mode" ) ;
/// <summary>
/// "Design mode"
/// </summary>
public static LocalisableString EditorDesignMode = > new TranslatableString ( getKey ( @"editor_design_mode" ) , @"Design mode" ) ;
/// <summary>
/// "Timing mode"
/// </summary>
public static LocalisableString EditorTimingMode = > new TranslatableString ( getKey ( @"editor_timing_mode" ) , @"Timing mode" ) ;
2022-06-02 11:27:11 +08:00
/// <summary>
/// "Tap for BPM"
/// </summary>
public static LocalisableString EditorTapForBPM = > new TranslatableString ( getKey ( @"editor_tap_for_bpm" ) , @"Tap for BPM" ) ;
2022-10-24 12:58:11 +08:00
/// <summary>
2022-10-25 10:43:23 +08:00
/// "Clone selection"
2022-10-24 12:58:11 +08:00
/// </summary>
2022-10-25 10:43:23 +08:00
public static LocalisableString EditorCloneSelection = > new TranslatableString ( getKey ( @"editor_clone_selection" ) , @"Clone selection" ) ;
2022-10-24 12:58:11 +08:00
2021-09-20 15:43:15 +08:00
/// <summary>
/// "Cycle grid display mode"
/// </summary>
public static LocalisableString EditorCycleGridDisplayMode = > new TranslatableString ( getKey ( @"editor_cycle_grid_display_mode" ) , @"Cycle grid display mode" ) ;
2021-11-12 13:13:11 +08:00
/// <summary>
/// "Test gameplay"
/// </summary>
public static LocalisableString EditorTestGameplay = > new TranslatableString ( getKey ( @"editor_test_gameplay" ) , @"Test gameplay" ) ;
2021-09-16 16:02:04 +08:00
/// <summary>
/// "Hold for HUD"
/// </summary>
public static LocalisableString HoldForHUD = > new TranslatableString ( getKey ( @"hold_for_hud" ) , @"Hold for HUD" ) ;
/// <summary>
/// "Random skin"
/// </summary>
public static LocalisableString RandomSkin = > new TranslatableString ( getKey ( @"random_skin" ) , @"Random skin" ) ;
/// <summary>
/// "Pause / resume replay"
/// </summary>
public static LocalisableString TogglePauseReplay = > new TranslatableString ( getKey ( @"toggle_pause_replay" ) , @"Pause / resume replay" ) ;
/// <summary>
/// "Toggle in-game interface"
/// </summary>
public static LocalisableString ToggleInGameInterface = > new TranslatableString ( getKey ( @"toggle_in_game_interface" ) , @"Toggle in-game interface" ) ;
/// <summary>
2022-06-07 10:54:31 +08:00
/// "Toggle mod select"
2021-09-16 16:02:04 +08:00
/// </summary>
2022-05-15 01:40:35 +08:00
public static LocalisableString ToggleModSelection = > new TranslatableString ( getKey ( @"toggle_mod_selection" ) , @"Toggle mod select" ) ;
2021-09-16 16:02:04 +08:00
2022-05-15 01:39:54 +08:00
/// <summary>
/// "Deselect all mods"
/// </summary>
public static LocalisableString DeselectAllMods = > new TranslatableString ( getKey ( @"deselect_all_mods" ) , @"Deselect all mods" ) ;
2021-09-16 16:02:04 +08:00
/// <summary>
/// "Random"
/// </summary>
public static LocalisableString SelectNextRandom = > new TranslatableString ( getKey ( @"select_next_random" ) , @"Random" ) ;
/// <summary>
/// "Rewind"
/// </summary>
public static LocalisableString SelectPreviousRandom = > new TranslatableString ( getKey ( @"select_previous_random" ) , @"Rewind" ) ;
/// <summary>
/// "Beatmap Options"
/// </summary>
public static LocalisableString ToggleBeatmapOptions = > new TranslatableString ( getKey ( @"toggle_beatmap_options" ) , @"Beatmap Options" ) ;
/// <summary>
/// "Verify mode"
/// </summary>
public static LocalisableString EditorVerifyMode = > new TranslatableString ( getKey ( @"editor_verify_mode" ) , @"Verify mode" ) ;
/// <summary>
/// "Nudge selection left"
/// </summary>
public static LocalisableString EditorNudgeLeft = > new TranslatableString ( getKey ( @"editor_nudge_left" ) , @"Nudge selection left" ) ;
/// <summary>
/// "Nudge selection right"
/// </summary>
public static LocalisableString EditorNudgeRight = > new TranslatableString ( getKey ( @"editor_nudge_right" ) , @"Nudge selection right" ) ;
2022-01-05 15:46:34 +08:00
/// <summary>
/// "Flip selection horizontally"
/// </summary>
public static LocalisableString EditorFlipHorizontally = > new TranslatableString ( getKey ( @"editor_flip_horizontally" ) , @"Flip selection horizontally" ) ;
/// <summary>
/// "Flip selection vertically"
/// </summary>
public static LocalisableString EditorFlipVertically = > new TranslatableString ( getKey ( @"editor_flip_vertically" ) , @"Flip selection vertically" ) ;
2022-05-03 09:44:55 +08:00
/// <summary>
2022-05-04 15:31:20 +08:00
/// "Increase distance spacing"
2022-05-03 09:44:55 +08:00
/// </summary>
2022-05-04 15:31:20 +08:00
public static LocalisableString EditorIncreaseDistanceSpacing = > new TranslatableString ( getKey ( @"editor_increase_distance_spacing" ) , @"Increase distance spacing" ) ;
2022-05-04 14:00:54 +08:00
/// <summary>
2022-05-04 15:31:20 +08:00
/// "Decrease distance spacing"
2022-05-04 14:00:54 +08:00
/// </summary>
2022-05-04 15:31:20 +08:00
public static LocalisableString EditorDecreaseDistanceSpacing = > new TranslatableString ( getKey ( @"editor_decrease_distance_spacing" ) , @"Decrease distance spacing" ) ;
2022-05-03 09:44:55 +08:00
2023-06-07 16:15:13 +08:00
/// <summary>
/// "Cycle previous beat snap divisor"
/// </summary>
2023-06-08 05:43:21 +08:00
public static LocalisableString EditorCyclePreviousBeatSnapDivisor = > new TranslatableString ( getKey ( @"editor_cycle_previous_beat_snap_divisor" ) , @"Cycle previous beat snap divisor" ) ;
2023-06-07 16:15:13 +08:00
/// <summary>
/// "Cycle next beat snap divisor"
/// </summary>
2023-06-08 05:43:21 +08:00
public static LocalisableString EditorCycleNextBeatSnapDivisor = > new TranslatableString ( getKey ( @"editor_cycle_next_snap_divisor" ) , @"Cycle next beat snap divisor" ) ;
2023-06-07 16:15:13 +08:00
2021-09-16 16:02:04 +08:00
/// <summary>
/// "Toggle skin editor"
/// </summary>
public static LocalisableString ToggleSkinEditor = > new TranslatableString ( getKey ( @"toggle_skin_editor" ) , @"Toggle skin editor" ) ;
2022-07-20 20:05:20 +08:00
/// <summary>
/// "Toggle FPS counter"
/// </summary>
public static LocalisableString ToggleFPSCounter = > new TranslatableString ( getKey ( @"toggle_fps_counter" ) , @"Toggle FPS counter" ) ;
2021-09-16 16:02:04 +08:00
/// <summary>
/// "Previous volume meter"
/// </summary>
public static LocalisableString PreviousVolumeMeter = > new TranslatableString ( getKey ( @"previous_volume_meter" ) , @"Previous volume meter" ) ;
/// <summary>
/// "Next volume meter"
/// </summary>
public static LocalisableString NextVolumeMeter = > new TranslatableString ( getKey ( @"next_volume_meter" ) , @"Next volume meter" ) ;
/// <summary>
/// "Seek replay forward"
/// </summary>
public static LocalisableString SeekReplayForward = > new TranslatableString ( getKey ( @"seek_replay_forward" ) , @"Seek replay forward" ) ;
/// <summary>
/// "Seek replay backward"
/// </summary>
public static LocalisableString SeekReplayBackward = > new TranslatableString ( getKey ( @"seek_replay_backward" ) , @"Seek replay backward" ) ;
/// <summary>
/// "Toggle chat focus"
/// </summary>
public static LocalisableString ToggleChatFocus = > new TranslatableString ( getKey ( @"toggle_chat_focus" ) , @"Toggle chat focus" ) ;
2023-06-19 19:43:33 +08:00
/// <summary>
/// "Save replay"
/// </summary>
public static LocalisableString SaveReplay = > new TranslatableString ( getKey ( @"save_replay" ) , @"Save replay" ) ;
2023-06-20 15:38:30 +08:00
/// <summary>
/// "Export replay"
/// </summary>
public static LocalisableString ExportReplay = > new TranslatableString ( getKey ( @"export_replay" ) , @"Export replay" ) ;
2022-06-07 10:54:31 +08:00
private static string getKey ( string key ) = > $@"{prefix}:{key}" ;
2021-09-16 16:02:04 +08:00
}
}