// 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.Localisation { public static class SongSelectStrings { private const string prefix = @"osu.Game.Resources.Localisation.SongSelect"; /// /// "Local" /// public static LocalisableString LocallyModified => new TranslatableString(getKey(@"locally_modified"), @"Local"); /// /// "Has been locally modified" /// public static LocalisableString LocallyModifiedTooltip => new TranslatableString(getKey(@"locally_modified_tooltip"), @"Has been locally modified"); /// /// "Manage collections" /// public static LocalisableString ManageCollections => new TranslatableString(getKey(@"manage_collections"), @"Manage collections"); /// /// "For all difficulties" /// public static LocalisableString ForAllDifficulties => new TranslatableString(getKey(@"for_all_difficulties"), @"For all difficulties"); /// /// "Delete beatmap" /// public static LocalisableString DeleteBeatmap => new TranslatableString(getKey(@"delete_beatmap"), @"Delete beatmap"); /// /// "For selected difficulty" /// public static LocalisableString ForSelectedDifficulty => new TranslatableString(getKey(@"for_selected_difficulty"), @"For selected difficulty"); /// /// "Mark as played" /// public static LocalisableString MarkAsPlayed => new TranslatableString(getKey(@"mark_as_played"), @"Mark as played"); /// /// "Clear all local scores" /// public static LocalisableString ClearAllLocalScores => new TranslatableString(getKey(@"clear_all_local_scores"), @"Clear all local scores"); /// /// "Edit beatmap" /// public static LocalisableString EditBeatmap => new TranslatableString(getKey(@"edit_beatmap"), @"Edit beatmap"); private static string getKey(string key) => $@"{prefix}:{key}"; } }