mirror of
https://github.com/ppy/osu.git
synced 2025-01-27 13:23:05 +08:00
Revert blocking password requirement text localisation
This commit is contained in:
parent
874ce4fe71
commit
ed95fb5982
@ -51,17 +51,6 @@ namespace osu.Game.Localisation
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public static LocalisableString MakeSureToGetIt => new TranslatableString(getKey(@"make_sure_to_get_it"), @" Make sure to get it right!");
|
public static LocalisableString MakeSureToGetIt => new TranslatableString(getKey(@"make_sure_to_get_it"), @" Make sure to get it right!");
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// "At least {0}. Choose something long but also something you will remember, like a line from your favourite song."
|
|
||||||
/// </summary>
|
|
||||||
public static LocalisableString PasswordRequirements(string arg0) => new TranslatableString(getKey(@"password_requirements"),
|
|
||||||
@"At least {0}. Choose something long but also something you will remember, like a line from your favourite song.", arg0);
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// "8 characters long"
|
|
||||||
/// </summary>
|
|
||||||
public static LocalisableString CharactersLong => new TranslatableString(getKey(@"characters_long"), @"8 characters long");
|
|
||||||
|
|
||||||
private static string getKey(string key) => $@"{prefix}:{key}";
|
private static string getKey(string key) => $@"{prefix}:{key}";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -139,12 +139,9 @@ namespace osu.Game.Overlays.AccountCreation
|
|||||||
emailAddressDescription.AddText(AccountCreationStrings.EmailUsage);
|
emailAddressDescription.AddText(AccountCreationStrings.EmailUsage);
|
||||||
emailAddressDescription.AddText(AccountCreationStrings.MakeSureToGetIt, cp => cp.Font = cp.Font.With(Typeface.Torus, weight: FontWeight.Bold));
|
emailAddressDescription.AddText(AccountCreationStrings.MakeSureToGetIt, cp => cp.Font = cp.Font.With(Typeface.Torus, weight: FontWeight.Bold));
|
||||||
|
|
||||||
string[] passwordReq = localisationManager.GetLocalisedBindableString(AccountCreationStrings.PasswordRequirements("{}")).Value.Split("{}");
|
passwordDescription.AddText("At least ");
|
||||||
if (passwordReq.Length != 2) passwordReq = AccountCreationStrings.PasswordRequirements("{}").ToString().Split("{}");
|
characterCheckText = passwordDescription.AddText("8 characters long");
|
||||||
|
passwordDescription.AddText(". Choose something long but also something you will remember, like a line from your favourite song.");
|
||||||
passwordDescription.AddText(passwordReq[0]);
|
|
||||||
characterCheckText = passwordDescription.AddText(AccountCreationStrings.CharactersLong);
|
|
||||||
passwordDescription.AddText(passwordReq[1]);
|
|
||||||
|
|
||||||
passwordTextBox.Current.BindValueChanged(_ => updateCharacterCheckTextColour(), true);
|
passwordTextBox.Current.BindValueChanged(_ => updateCharacterCheckTextColour(), true);
|
||||||
characterCheckText.DrawablePartsRecreated += _ => updateCharacterCheckTextColour();
|
characterCheckText.DrawablePartsRecreated += _ => updateCharacterCheckTextColour();
|
||||||
|
Loading…
Reference in New Issue
Block a user