mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 14:37:25 +08:00
d527eb3d8b
Co-authored-by: Dean Herbert <pe@ppy.sh>
60 lines
2.3 KiB
C#
60 lines
2.3 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 GeneralSettingsStrings
|
|
{
|
|
private const string prefix = @"osu.Game.Resources.Localisation.GeneralSettings";
|
|
|
|
/// <summary>
|
|
/// "General"
|
|
/// </summary>
|
|
public static LocalisableString GeneralSectionHeader => new TranslatableString(getKey(@"general_section_header"), @"General");
|
|
|
|
/// <summary>
|
|
/// "Language"
|
|
/// </summary>
|
|
public static LocalisableString LanguageHeader => new TranslatableString(getKey(@"language_header"), @"Language");
|
|
|
|
/// <summary>
|
|
/// "Language"
|
|
/// </summary>
|
|
public static LocalisableString LanguageDropdown => new TranslatableString(getKey(@"language_dropdown"), @"Language");
|
|
|
|
/// <summary>
|
|
/// "Prefer metadata in original language"
|
|
/// </summary>
|
|
public static LocalisableString PreferOriginalMetadataLanguage => new TranslatableString(getKey(@"prefer_original"), @"Prefer metadata in original language");
|
|
|
|
/// <summary>
|
|
/// "Updates"
|
|
/// </summary>
|
|
public static LocalisableString UpdateHeader => new TranslatableString(getKey(@"update_header"), @"Updates");
|
|
|
|
/// <summary>
|
|
/// "Release stream"
|
|
/// </summary>
|
|
public static LocalisableString ReleaseStream => new TranslatableString(getKey(@"release_stream"), @"Release stream");
|
|
|
|
/// <summary>
|
|
/// "Check for updates"
|
|
/// </summary>
|
|
public static LocalisableString CheckUpdate => new TranslatableString(getKey(@"check_update"), @"Check for updates");
|
|
|
|
/// <summary>
|
|
/// "Open osu! folder"
|
|
/// </summary>
|
|
public static LocalisableString OpenOsuFolder => new TranslatableString(getKey(@"open_osu_folder"), @"Open osu! folder");
|
|
|
|
/// <summary>
|
|
/// "Change folder location..."
|
|
/// </summary>
|
|
public static LocalisableString ChangeFolderLocation => new TranslatableString(getKey(@"change_folder_location"), @"Change folder location...");
|
|
|
|
private static string getKey(string key) => $"{prefix}:{key}";
|
|
}
|
|
}
|