From 5bfefcccb86f46f52b50367d488af5f30a148daa Mon Sep 17 00:00:00 2001 From: Tyler Davis Date: Mon, 27 Apr 2020 17:41:44 -0700 Subject: [PATCH] account: Fix tooltip and dialog verbiage (#11132) This commit changes uses of "login" and "logout" to "log in" and "log out" when they are representing a verb. --- .../net/runelite/client/plugins/account/AccountPlugin.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/account/AccountPlugin.java b/runelite-client/src/main/java/net/runelite/client/plugins/account/AccountPlugin.java index 55ab81fbe3..901987356c 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/account/AccountPlugin.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/account/AccountPlugin.java @@ -75,14 +75,14 @@ public class AccountPlugin extends Plugin loginButton = NavigationButton.builder() .tab(false) .icon(LOGIN_IMAGE) - .tooltip("Login to RuneLite") + .tooltip("Log in to RuneLite") .onClick(this::loginClick) .build(); logoutButton = NavigationButton.builder() .tab(false) .icon(LOGOUT_IMAGE) - .tooltip("Logout of RuneLite") + .tooltip("Log out of RuneLite") .onClick(this::logoutClick) .build(); @@ -113,7 +113,7 @@ public class AccountPlugin extends Plugin private void logoutClick() { if (JOptionPane.YES_OPTION == JOptionPane.showConfirmDialog(null, - "Are you sure you want to logout from RuneLite?", "Logout Confirmation", + "Are you sure you want to log out from RuneLite?", "Logout Confirmation", JOptionPane.YES_NO_OPTION)) { executor.execute(sessionManager::logout);