1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-21 01:24:21 +00:00

Projucer: Use sign in/out instead of log in/out

This commit is contained in:
ed 2020-05-29 17:04:29 +01:00
parent 05602341fc
commit 246ace8913
4 changed files with 4 additions and 4 deletions

View file

@ -97,7 +97,7 @@ private:
{
switch (errorCode)
{
case 400: return "Please enter your email and password to log in.";
case 400: return "Please enter your email and password to sign in.";
case 401: return "Your email and password are incorrect.";
case 451: return "Access denied.";
default: return "Something went wrong, please try again.";

View file

@ -257,7 +257,7 @@ private:
MainWindow& mainWindow;
TextEditor emailBox, passwordBox;
ProgressButton logInButton { "Log In" };
ProgressButton logInButton { "Sign In" };
TextButton enableGPLButton { "Enable GPL Mode" };
ShapeButton dismissButton { {},
findColour (treeIconColourId),

View file

@ -1108,7 +1108,7 @@ void ProjucerApplication::getCommandInfo (CommandID commandID, ApplicationComman
result.setInfo ("Disable GPL mode", "Disables GPL mode", CommandCategories::general, 0);
else
result.setInfo (licenseState.isValid() ? String ("Sign out ") + licenseState.username + "..." : String ("Sign in..."),
"Log out of your JUCE account",
"Sign out of your JUCE account",
CommandCategories::general, 0);
break;
}

View file

@ -748,7 +748,7 @@ void Project::updateLicenseWarning()
if (hasIncompatibleLicenseTypeAndSplashScreenSetting())
{
addProjectMessage (ProjectMessages::Ids::incompatibleLicense,
{ { "Log in", [this] { ProjucerApplication::getApp().mainWindowList.getMainWindowForFile (getFile())->showLoginFormOverlay(); } },
{ { "Sign in", [this] { ProjucerApplication::getApp().mainWindowList.getMainWindowForFile (getFile())->showLoginFormOverlay(); } },
{ "Enable splash screen", [this] { displaySplashScreenValue = true; } } });
}
else