From a89a1bc4c8483572ab1fab4b58b4f800d612ee59 Mon Sep 17 00:00:00 2001
From: ann0see <20726856+ann0see@users.noreply.github.com>
Date: Sat, 23 Apr 2022 21:58:54 +0200
Subject: [PATCH] Refactoring: Remove wrong occurances of "URL"
Fixes: https://github.com/jamulussoftware/jamulus/issues/2332
---
src/connectdlg.cpp | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/connectdlg.cpp b/src/connectdlg.cpp
index 855c7099d3..9dd5c59ffb 100644
--- a/src/connectdlg.cpp
+++ b/src/connectdlg.cpp
@@ -84,9 +84,9 @@ CConnectDlg::CConnectDlg ( CClientSettings* pNSetP, const bool bNewShowCompleteR
// server address
QString strServAddrH = "" + tr ( "Server Address" ) + ": " +
- tr ( "If you know the IP address or URL of a server, you can connect to it "
- "using the Server name/Address field. An optional port number can be added after the IP "
- "address or URL using a colon as a separator, e.g. %1. "
+ tr ( "If you know the server address, you can connect to it "
+ "using the Server name/Address field. An optional port number can be added after the server "
+ "address using a colon as a separator, e.g. %1. "
"The field will also show a list of the most recently used server addresses." )
.arg ( QString ( "example.org:%1" ).arg ( DEFAULT_PORT_NUMBER ) );
@@ -94,7 +94,7 @@ CConnectDlg::CConnectDlg ( CClientSettings* pNSetP, const bool bNewShowCompleteR
cbxServerAddr->setWhatsThis ( strServAddrH );
cbxServerAddr->setAccessibleName ( tr ( "Server address edit box" ) );
- cbxServerAddr->setAccessibleDescription ( tr ( "Holds the current server IP address or URL. It also stores old URLs in the combo box list." ) );
+ cbxServerAddr->setAccessibleDescription ( tr ( "Holds the current server address. It also stores old addresses in the combo box list." ) );
UpdateDirectoryServerComboBox();