mirror of https://github.com/ppy/osu
Merge pull request #10830 from Joehuu/consistent-tournament-strings
Make tournament strings more consistent
This commit is contained in:
commit
86ef73c587
|
@ -83,8 +83,8 @@ private void reload()
|
||||||
},
|
},
|
||||||
new ActionableInfo
|
new ActionableInfo
|
||||||
{
|
{
|
||||||
Label = "Current User",
|
Label = "Current user",
|
||||||
ButtonText = "Change Login",
|
ButtonText = "Change sign-in",
|
||||||
Action = () =>
|
Action = () =>
|
||||||
{
|
{
|
||||||
api.Logout();
|
api.Logout();
|
||||||
|
@ -102,12 +102,12 @@ private void reload()
|
||||||
},
|
},
|
||||||
Value = api?.LocalUser.Value.Username,
|
Value = api?.LocalUser.Value.Username,
|
||||||
Failing = api?.IsLoggedIn != true,
|
Failing = api?.IsLoggedIn != true,
|
||||||
Description = "In order to access the API and display metadata, a login is required."
|
Description = "In order to access the API and display metadata, signing in is required."
|
||||||
},
|
},
|
||||||
new LabelledDropdown<RulesetInfo>
|
new LabelledDropdown<RulesetInfo>
|
||||||
{
|
{
|
||||||
Label = "Ruleset",
|
Label = "Ruleset",
|
||||||
Description = "Decides what stats are displayed and which ranks are retrieved for players",
|
Description = "Decides what stats are displayed and which ranks are retrieved for players.",
|
||||||
Items = rulesets.AvailableRulesets,
|
Items = rulesets.AvailableRulesets,
|
||||||
Current = LadderInfo.Ruleset,
|
Current = LadderInfo.Ruleset,
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue