// 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 ClientVerificationsStrings { private const string prefix = @"osu.Game.Resources.Localisation.Web.ClientVerifications"; /// /// "Go to dashboard" /// public static LocalisableString CompletedHome => new TranslatableString(getKey(@"completed.home"), @"Go to dashboard"); /// /// "Logout" /// public static LocalisableString CompletedLogout => new TranslatableString(getKey(@"completed.logout"), @"Logout"); /// /// "You can close this tab/window now" /// public static LocalisableString CompletedText => new TranslatableString(getKey(@"completed.text"), @"You can close this tab/window now"); /// /// "osu! client verification has been completed" /// public static LocalisableString CompletedTitle => new TranslatableString(getKey(@"completed.title"), @"osu! client verification has been completed"); /// /// "Click on authorise button below to finish client verification." /// public static LocalisableString CreateConfirm => new TranslatableString(getKey(@"create.confirm"), @"Click on authorise button below to finish client verification."); /// /// "osu! client verification" /// public static LocalisableString CreateTitle => new TranslatableString(getKey(@"create.title"), @"osu! client verification"); private static string getKey(string key) => $@"{prefix}:{key}"; } }