diff --git a/messages/en-US.json b/messages/en-US.json index 8a1cfc414..d78a71855 100644 --- a/messages/en-US.json +++ b/messages/en-US.json @@ -3542,7 +3542,7 @@ "sshConnecting": "Connecting…", "sshInitializing": "Initializing…", "sshSignInTitle": "Sign in to SSH", - "sshSignInDescription": "Enter your SSH credentials", + "sshSignInDescription": "Enter your SSH credentials to connect", "sshPasswordTab": "Password", "sshPrivateKeyTab": "Private Key", "sshPrivateKeyField": "Private Key", diff --git a/src/app/rdp/RdpClient.tsx b/src/app/rdp/RdpClient.tsx index 562f3ed9e..1c7d77eb9 100644 --- a/src/app/rdp/RdpClient.tsx +++ b/src/app/rdp/RdpClient.tsx @@ -373,11 +373,7 @@ export default function RdpClient({ - - {resourceName - ? `${t("rdpSignInTitle")} - ${resourceName}` - : t("rdpSignInTitle")} - + {t("rdpSignInTitle")} {resourceName ? `${t("rdpSignInDescription")} (${resourceName})` diff --git a/src/app/ssh/SshClient.tsx b/src/app/ssh/SshClient.tsx index 6a3f9c76c..e88b25d01 100644 --- a/src/app/ssh/SshClient.tsx +++ b/src/app/ssh/SshClient.tsx @@ -510,11 +510,7 @@ export default function SshClient({ - - {resourceName - ? `${t("sshSignInTitle")} - ${resourceName}` - : t("sshSignInTitle")} - + {t("sshSignInTitle")} {resourceName ? `${t("sshSignInDescription")} (${resourceName})` diff --git a/src/app/vnc/VncClient.tsx b/src/app/vnc/VncClient.tsx index dc91e05ef..8a580c14a 100644 --- a/src/app/vnc/VncClient.tsx +++ b/src/app/vnc/VncClient.tsx @@ -252,11 +252,7 @@ export default function VncClient({ - - {resourceName - ? `${t("vncTitle")} - ${resourceName}` - : t("vncTitle")} - + {t("vncTitle")} {resourceName ? `${t("vncSignInDescription")} (${resourceName})`