// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Framework.Localisation; namespace osu.Game.Resources.Localisation.Web { public static class FriendsStrings { private const string prefix = @"osu.Game.Resources.Localisation.Web.Friends"; /// /// "friends" /// public static LocalisableString TitleCompact => new TranslatableString(getKey(@"title_compact"), @"friends"); /// /// "Friend limit reached" /// public static LocalisableString TooMany => new TranslatableString(getKey(@"too_many"), @"Friend limit reached"); /// /// "add friend" /// public static LocalisableString ButtonsAdd => new TranslatableString(getKey(@"buttons.add"), @"add friend"); /// /// "followers" /// public static LocalisableString ButtonsDisabled => new TranslatableString(getKey(@"buttons.disabled"), @"followers"); /// /// "remove friend" /// public static LocalisableString ButtonsRemove => new TranslatableString(getKey(@"buttons.remove"), @"remove friend"); private static string getKey(string key) => $@"{prefix}:{key}"; } }