From 246ace89132a1a01e5309c489c90c3d4cb02fa84 Mon Sep 17 00:00:00 2001 From: ed Date: Fri, 29 May 2020 17:04:29 +0100 Subject: [PATCH] Projucer: Use sign in/out instead of log in/out --- .../Source/Application/UserAccount/jucer_LicenseQueryThread.h | 2 +- .../Source/Application/UserAccount/jucer_LoginFormComponent.h | 2 +- extras/Projucer/Source/Application/jucer_Application.cpp | 2 +- extras/Projucer/Source/Project/jucer_Project.cpp | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/extras/Projucer/Source/Application/UserAccount/jucer_LicenseQueryThread.h b/extras/Projucer/Source/Application/UserAccount/jucer_LicenseQueryThread.h index 01f3f37196..89a62763fb 100644 --- a/extras/Projucer/Source/Application/UserAccount/jucer_LicenseQueryThread.h +++ b/extras/Projucer/Source/Application/UserAccount/jucer_LicenseQueryThread.h @@ -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."; diff --git a/extras/Projucer/Source/Application/UserAccount/jucer_LoginFormComponent.h b/extras/Projucer/Source/Application/UserAccount/jucer_LoginFormComponent.h index ed2ad91a4e..ae3c2c94c2 100644 --- a/extras/Projucer/Source/Application/UserAccount/jucer_LoginFormComponent.h +++ b/extras/Projucer/Source/Application/UserAccount/jucer_LoginFormComponent.h @@ -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), diff --git a/extras/Projucer/Source/Application/jucer_Application.cpp b/extras/Projucer/Source/Application/jucer_Application.cpp index 27e70aaea9..4e48dfff9e 100644 --- a/extras/Projucer/Source/Application/jucer_Application.cpp +++ b/extras/Projucer/Source/Application/jucer_Application.cpp @@ -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; } diff --git a/extras/Projucer/Source/Project/jucer_Project.cpp b/extras/Projucer/Source/Project/jucer_Project.cpp index 3b2c8cf77e..72c42d19d3 100644 --- a/extras/Projucer/Source/Project/jucer_Project.cpp +++ b/extras/Projucer/Source/Project/jucer_Project.cpp @@ -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