Merge pull request #2100 from Joehuu/sign-in-edits

Reword instances of "login" to "sign in"
This commit is contained in:
Dean Herbert
2018-02-22 14:59:42 +09:00
committed by GitHub
4 changed files with 7 additions and 7 deletions

View File

@ -477,7 +477,7 @@ namespace osu.Game.Overlays
if (!api.IsLoggedIn) if (!api.IsLoggedIn)
{ {
target.AddNewMessages(new ErrorMessage("Please login to participate in chat!")); target.AddNewMessages(new ErrorMessage("Please sign in to participate in chat!"));
return; return;
} }

View File

@ -208,7 +208,7 @@ namespace osu.Game.Overlays.Settings.Sections.General
{ {
username = new OsuTextBox username = new OsuTextBox
{ {
PlaceholderText = "Username", PlaceholderText = "Email address",
RelativeSizeAxes = Axes.X, RelativeSizeAxes = Axes.X,
Text = api?.Username ?? string.Empty, Text = api?.Username ?? string.Empty,
TabbableContentContainer = this TabbableContentContainer = this
@ -222,12 +222,12 @@ namespace osu.Game.Overlays.Settings.Sections.General
}, },
new SettingsCheckbox new SettingsCheckbox
{ {
LabelText = "Remember username", LabelText = "Remember email address",
Bindable = config.GetBindable<bool>(OsuSetting.SaveUsername), Bindable = config.GetBindable<bool>(OsuSetting.SaveUsername),
}, },
new SettingsCheckbox new SettingsCheckbox
{ {
LabelText = "Stay logged in", LabelText = "Stay signed in",
Bindable = config.GetBindable<bool>(OsuSetting.SavePassword), Bindable = config.GetBindable<bool>(OsuSetting.SavePassword),
}, },
new SettingsButton new SettingsButton
@ -237,7 +237,7 @@ namespace osu.Game.Overlays.Settings.Sections.General
}, },
new SettingsButton new SettingsButton
{ {
Text = "Register new account", Text = "Register",
//Action = registerLink //Action = registerLink
} }
}; };

View File

@ -133,7 +133,7 @@ namespace osu.Game.Screens.Select.Leaderboards
replacePlaceholder(new MessagePlaceholder(@"No records yet!")); replacePlaceholder(new MessagePlaceholder(@"No records yet!"));
break; break;
case PlaceholderState.NotLoggedIn: case PlaceholderState.NotLoggedIn:
replacePlaceholder(new MessagePlaceholder(@"Please login to view online leaderboards!")); replacePlaceholder(new MessagePlaceholder(@"Please sign in to view online leaderboards!"));
break; break;
case PlaceholderState.NotSupporter: case PlaceholderState.NotSupporter:
replacePlaceholder(new MessagePlaceholder(@"Please invest in a supporter tag to view this leaderboard!")); replacePlaceholder(new MessagePlaceholder(@"Please invest in a supporter tag to view this leaderboard!"));

View File

@ -230,7 +230,7 @@ namespace osu.Game.Tests.Visual
{ {
Anchor = Anchor.TopCentre, Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre, Origin = Anchor.TopCentre,
Text = "Please login to see online scores", Text = "Please sign in to see online scores",
}; };
} }