// 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 AdminStrings { private const string prefix = @"osu.Game.Resources.Localisation.Web.Admin"; /// /// "Regenerate" /// public static LocalisableString BeatmapsetsCoversRegenerate => new TranslatableString(getKey(@"beatmapsets.covers.regenerate"), @"Regenerate"); /// /// "Regenerating..." /// public static LocalisableString BeatmapsetsCoversRegenerating => new TranslatableString(getKey(@"beatmapsets.covers.regenerating"), @"Regenerating..."); /// /// "Remove" /// public static LocalisableString BeatmapsetsCoversRemove => new TranslatableString(getKey(@"beatmapsets.covers.remove"), @"Remove"); /// /// "Removing..." /// public static LocalisableString BeatmapsetsCoversRemoving => new TranslatableString(getKey(@"beatmapsets.covers.removing"), @"Removing..."); /// /// "Beatmap covers" /// public static LocalisableString BeatmapsetsCoversTitle => new TranslatableString(getKey(@"beatmapsets.covers.title"), @"Beatmap covers"); /// /// "Manage Beatmap Covers" /// public static LocalisableString BeatmapsetsShowCovers => new TranslatableString(getKey(@"beatmapsets.show.covers"), @"Manage Beatmap Covers"); /// /// "Delete" /// public static LocalisableString ForumForumCoversIndexDelete => new TranslatableString(getKey(@"forum.forum-covers.index.delete"), @"Delete"); /// /// "Forum #{0}: {1}" /// public static LocalisableString ForumForumCoversIndexForumName(LocalisableString id, LocalisableString name) => new TranslatableString(getKey(@"forum.forum-covers.index.forum-name"), @"Forum #{0}: {1}", id, name); /// /// "No cover set" /// public static LocalisableString ForumForumCoversIndexNoCover => new TranslatableString(getKey(@"forum.forum-covers.index.no-cover"), @"No cover set"); /// /// "Save" /// public static LocalisableString ForumForumCoversIndexSubmitSave => new TranslatableString(getKey(@"forum.forum-covers.index.submit.save"), @"Save"); /// /// "Update" /// public static LocalisableString ForumForumCoversIndexSubmitUpdate => new TranslatableString(getKey(@"forum.forum-covers.index.submit.update"), @"Update"); /// /// "Forum Covers List" /// public static LocalisableString ForumForumCoversIndexTitle => new TranslatableString(getKey(@"forum.forum-covers.index.title"), @"Forum Covers List"); /// /// "Default Topic Cover" /// public static LocalisableString ForumForumCoversIndexTypeTitleDefaultTopic => new TranslatableString(getKey(@"forum.forum-covers.index.type-title.default-topic"), @"Default Topic Cover"); /// /// "Forum Cover" /// public static LocalisableString ForumForumCoversIndexTypeTitleMain => new TranslatableString(getKey(@"forum.forum-covers.index.type-title.main"), @"Forum Cover"); /// /// "Log Viewer" /// public static LocalisableString LogsIndexTitle => new TranslatableString(getKey(@"logs.index.title"), @"Log Viewer"); /// /// "Beatmaps" /// public static LocalisableString PagesRootSectionsBeatmapsets => new TranslatableString(getKey(@"pages.root.sections.beatmapsets"), @"Beatmaps"); /// /// "Forum" /// public static LocalisableString PagesRootSectionsForum => new TranslatableString(getKey(@"pages.root.sections.forum"), @"Forum"); /// /// "General" /// public static LocalisableString PagesRootSectionsGeneral => new TranslatableString(getKey(@"pages.root.sections.general"), @"General"); /// /// "This user is currently restricted." /// public static LocalisableString UsersRestrictedBannerTitle => new TranslatableString(getKey(@"users.restricted_banner.title"), @"This user is currently restricted."); /// /// "(only admins can see this)" /// public static LocalisableString UsersRestrictedBannerMessage => new TranslatableString(getKey(@"users.restricted_banner.message"), @"(only admins can see this)"); private static string getKey(string key) => $@"{prefix}:{key}"; } }