1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 15:07:44 +08:00
osu-lazer/osu.Game/Localisation/ChangelogStrings.cs

20 lines
704 B
C#
Raw Normal View History

2021-07-18 01:35:54 +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 ChangelogStrings
{
private const string prefix = @"osu.Game.Resources.Localisation.Changelog";
/// <summary>
/// "track recent dev updates in the osu! ecosystem"
/// </summary>
public static LocalisableString HeaderDescription => new TranslatableString(getKey(@"header_description"), @"track recent dev updates in the osu! ecosystem");
private static string getKey(string key) => $"{prefix}:{key}";
}
}