mirror of
https://github.com/osukey/osukey.git
synced 2025-07-03 01:09:57 +09:00
Localise more toast related strings
This commit is contained in:
39
osu.Game/Localisation/ToastStrings.cs
Normal file
39
osu.Game/Localisation/ToastStrings.cs
Normal file
@ -0,0 +1,39 @@
|
||||
// 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 ToastStrings
|
||||
{
|
||||
private const string prefix = @"osu.Game.Resources.Localisation.Toast";
|
||||
|
||||
/// <summary>
|
||||
/// "no key bound"
|
||||
/// </summary>
|
||||
public static LocalisableString NoKeyBound => new TranslatableString(getKey(@"no_key_bound"), @"no key bound");
|
||||
|
||||
/// <summary>
|
||||
/// "Music Playback"
|
||||
/// </summary>
|
||||
public static LocalisableString MusicPlayback => new TranslatableString(getKey(@"music_playback"), @"Music Playback");
|
||||
|
||||
/// <summary>
|
||||
/// "Pause track"
|
||||
/// </summary>
|
||||
public static LocalisableString PauseTrack => new TranslatableString(getKey(@"pause_track"), @"Pause track");
|
||||
|
||||
/// <summary>
|
||||
/// "Play track"
|
||||
/// </summary>
|
||||
public static LocalisableString PlayTrack => new TranslatableString(getKey(@"play_track"), @"Play track");
|
||||
|
||||
/// <summary>
|
||||
/// "Restart track"
|
||||
/// </summary>
|
||||
public static LocalisableString RestartTrack => new TranslatableString(getKey(@"restart_track"), @"Restart track");
|
||||
|
||||
private static string getKey(string key) => $@"{prefix}:{key}";
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user