2023-01-16 16:55:28 +00: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 SkinEditorStrings
|
|
|
|
|
{
|
|
|
|
|
private const string prefix = @"osu.Game.Resources.Localisation.SkinEditor";
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// "Skin editor"
|
|
|
|
|
/// </summary>
|
|
|
|
|
public static LocalisableString SkinEditor => new TranslatableString(getKey(@"skin_editor"), @"Skin editor");
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// "Components"
|
|
|
|
|
/// </summary>
|
|
|
|
|
public static LocalisableString Components => new TranslatableString(getKey(@"components"), @"Components");
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// "Scene library"
|
|
|
|
|
/// </summary>
|
|
|
|
|
public static LocalisableString SceneLibrary => new TranslatableString(getKey(@"scene_library"), @"Scene library");
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// "Song Select"
|
|
|
|
|
/// </summary>
|
|
|
|
|
public static LocalisableString SongSelect => new TranslatableString(getKey(@"song_select"), @"Song Select");
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// "Gameplay"
|
|
|
|
|
/// </summary>
|
|
|
|
|
public static LocalisableString Gameplay => new TranslatableString(getKey(@"gameplay"), @"Gameplay");
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// "Settings ({0})"
|
|
|
|
|
/// </summary>
|
|
|
|
|
public static LocalisableString Settings(string arg0) => new TranslatableString(getKey(@"settings"), @"Settings ({0})", arg0);
|
|
|
|
|
|
2023-02-01 23:44:00 +00:00
|
|
|
|
/// <summary>
|
2023-02-02 00:01:48 +00:00
|
|
|
|
/// "Currently editing"
|
2023-02-01 23:44:00 +00:00
|
|
|
|
/// </summary>
|
2023-02-26 19:38:50 +00:00
|
|
|
|
public static LocalisableString CurrentlyEditing => new TranslatableString(getKey(@"currently_editing"), @"Currently editing");
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2023-03-03 14:12:20 +00:00
|
|
|
|
/// "Revert to default."
|
2023-02-26 19:38:50 +00:00
|
|
|
|
/// </summary>
|
2023-03-03 14:12:20 +00:00
|
|
|
|
public static LocalisableString RevertToDefaultDescription => new TranslatableString(getKey(@"revert_to_default"), @"Revert to default.");
|
2023-02-26 19:38:50 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
2023-03-03 14:15:14 +00:00
|
|
|
|
/// "Return the skin to its default state"
|
2023-02-26 19:38:50 +00:00
|
|
|
|
/// </summary>
|
2023-03-03 14:15:14 +00:00
|
|
|
|
public static LocalisableString ResetDialogue => new TranslatableString(getKey(@"return_the_skin_to_its"), @"Return the skin to its default state");
|
2023-02-01 23:44:00 +00:00
|
|
|
|
|
2023-01-16 16:55:28 +00:00
|
|
|
|
private static string getKey(string key) => $@"{prefix}:{key}";
|
|
|
|
|
}
|
|
|
|
|
}
|