// 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 RankingsStrings { private const string prefix = @"osu.Game.Resources.Localisation.Web.Rankings"; /// /// "All" /// public static LocalisableString CountriesAll => new TranslatableString(getKey(@"countries.all"), @"All"); /// /// "Country" /// public static LocalisableString CountriesTitle => new TranslatableString(getKey(@"countries.title"), @"Country"); /// /// "Show" /// public static LocalisableString FilterTitle => new TranslatableString(getKey(@"filter.title"), @"Show"); /// /// "Variant" /// public static LocalisableString FilterVariantTitle => new TranslatableString(getKey(@"filter.variant.title"), @"Variant"); /// /// "spotlights" /// public static LocalisableString TypeCharts => new TranslatableString(getKey(@"type.charts"), @"spotlights"); /// /// "country" /// public static LocalisableString TypeCountry => new TranslatableString(getKey(@"type.country"), @"country"); /// /// "multiplayer" /// public static LocalisableString TypeMultiplayer => new TranslatableString(getKey(@"type.multiplayer"), @"multiplayer"); /// /// "performance" /// public static LocalisableString TypePerformance => new TranslatableString(getKey(@"type.performance"), @"performance"); /// /// "score" /// public static LocalisableString TypeScore => new TranslatableString(getKey(@"type.score"), @"score"); /// /// "End Date" /// public static LocalisableString SpotlightEndDate => new TranslatableString(getKey(@"spotlight.end_date"), @"End Date"); /// /// "Map Count" /// public static LocalisableString SpotlightMapCount => new TranslatableString(getKey(@"spotlight.map_count"), @"Map Count"); /// /// "Participants" /// public static LocalisableString SpotlightParticipants => new TranslatableString(getKey(@"spotlight.participants"), @"Participants"); /// /// "Start Date" /// public static LocalisableString SpotlightStartDate => new TranslatableString(getKey(@"spotlight.start_date"), @"Start Date"); /// /// "Accuracy" /// public static LocalisableString StatAccuracy => new TranslatableString(getKey(@"stat.accuracy"), @"Accuracy"); /// /// "Active Users" /// public static LocalisableString StatActiveUsers => new TranslatableString(getKey(@"stat.active_users"), @"Active Users"); /// /// "Country" /// public static LocalisableString StatCountry => new TranslatableString(getKey(@"stat.country"), @"Country"); /// /// "Play Count" /// public static LocalisableString StatPlayCount => new TranslatableString(getKey(@"stat.play_count"), @"Play Count"); /// /// "Performance" /// public static LocalisableString StatPerformance => new TranslatableString(getKey(@"stat.performance"), @"Performance"); /// /// "Total Score" /// public static LocalisableString StatTotalScore => new TranslatableString(getKey(@"stat.total_score"), @"Total Score"); /// /// "Ranked Score" /// public static LocalisableString StatRankedScore => new TranslatableString(getKey(@"stat.ranked_score"), @"Ranked Score"); /// /// "Avg. Score" /// public static LocalisableString StatAverageScore => new TranslatableString(getKey(@"stat.average_score"), @"Avg. Score"); /// /// "Avg. Perf." /// public static LocalisableString StatAveragePerformance => new TranslatableString(getKey(@"stat.average_performance"), @"Avg. Perf."); /// /// "SS" /// public static LocalisableString Statss => new TranslatableString(getKey(@"stat.ss"), @"SS"); /// /// "S" /// public static LocalisableString Stats => new TranslatableString(getKey(@"stat.s"), @"S"); /// /// "A" /// public static LocalisableString Stata => new TranslatableString(getKey(@"stat.a"), @"A"); private static string getKey(string key) => $@"{prefix}:{key}"; } }