mirror of
https://github.com/ppy/osu.git
synced 2025-01-13 02:32:55 +08:00
Reuse existing
This commit is contained in:
parent
4c341db33f
commit
bb3668c769
@ -34,11 +34,6 @@ namespace osu.Game.Localisation
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public static LocalisableString AccountIsntForMe => new TranslatableString(getKey(@"account_isnt_for_me"), @"I understand. This account isn't for me.");
|
public static LocalisableString AccountIsntForMe => new TranslatableString(getKey(@"account_isnt_for_me"), @"I understand. This account isn't for me.");
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// "email address"
|
|
||||||
/// </summary>
|
|
||||||
public static LocalisableString EmailAddress => new TranslatableString(getKey(@"email_address"), @"email address");
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// "This will be your public presence. No profanity, no impersonation. Avoid exposing your own personal details, too!"
|
/// "This will be your public presence. No profanity, no impersonation. Avoid exposing your own personal details, too!"
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -19,11 +19,6 @@ namespace osu.Game.Localisation
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public static LocalisableString AppearOffline => new TranslatableString(getKey(@"appear_offline"), @"Appear offline");
|
public static LocalisableString AppearOffline => new TranslatableString(getKey(@"appear_offline"), @"Appear offline");
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// "Sign out"
|
|
||||||
/// </summary>
|
|
||||||
public static LocalisableString SignOut => new TranslatableString(getKey(@"sign_out"), @"Sign out");
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// "Signed in"
|
/// "Signed in"
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -87,7 +87,7 @@ namespace osu.Game.Overlays.AccountCreation
|
|||||||
},
|
},
|
||||||
emailTextBox = new OsuTextBox
|
emailTextBox = new OsuTextBox
|
||||||
{
|
{
|
||||||
PlaceholderText = AccountCreationStrings.EmailAddress,
|
PlaceholderText = ModelValidationStrings.UserAttributesUserEmail.ToLower(),
|
||||||
RelativeSizeAxes = Axes.X,
|
RelativeSizeAxes = Axes.X,
|
||||||
TabbableContentContainer = this
|
TabbableContentContainer = this
|
||||||
},
|
},
|
||||||
|
@ -18,7 +18,7 @@ namespace osu.Game.Overlays.Login
|
|||||||
[LocalisableDescription(typeof(LoginPanelStrings), nameof(LoginPanelStrings.AppearOffline))]
|
[LocalisableDescription(typeof(LoginPanelStrings), nameof(LoginPanelStrings.AppearOffline))]
|
||||||
AppearOffline,
|
AppearOffline,
|
||||||
|
|
||||||
[LocalisableDescription(typeof(LoginPanelStrings), nameof(LoginPanelStrings.SignOut))]
|
[LocalisableDescription(typeof(UserVerificationStrings), nameof(UserVerificationStrings.BoxInfoLogoutLink))]
|
||||||
SignOut,
|
SignOut,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user