mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 12:17:26 +08:00
24 lines
864 B
C#
24 lines
864 B
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 TouchSettingsStrings
|
|
{
|
|
private const string prefix = @"osu.Game.Resources.Localisation.TouchSettings";
|
|
|
|
/// <summary>
|
|
/// "Touch"
|
|
/// </summary>
|
|
public static LocalisableString Touch => new TranslatableString(getKey(@"touch"), @"Touch");
|
|
|
|
/// <summary>
|
|
/// "Disable taps during gameplay"
|
|
/// </summary>
|
|
public static LocalisableString DisableTapsDuringGameplay => new TranslatableString(getKey(@"disable_taps_during_gameplay"), @"Disable taps during gameplay");
|
|
|
|
private static string getKey(string key) => $@"{prefix}:{key}";
|
|
}
|
|
} |