From 46165e540937937d1081c5f9da2298a367685193 Mon Sep 17 00:00:00 2001
From: Sebastião Guerra <sebastiao.luiz.guerra@gmail.com>
Date: Sun, 16 Aug 2026 17:49:12 -0300
Subject: wlassistant: fix malformed rich-text tags
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Signed-off-by: Sebastião Guerra <sebastiao.luiz.guerra@gmail.com>
---
 src/wlassistant.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/wlassistant.cpp b/src/wlassistant.cpp
index fb81d61..11d8b84 100644
--- a/src/wlassistant.cpp
+++ b/src/wlassistant.cpp
@@ -570,7 +570,7 @@ void WirelessAssistant::netConnect()
 	setNetParamsFromList( netList->selectedItem() );
 	//can't connect if WPA needed, and wpa_supplicant and wpa_cli not available
 	if ( NetParams.wpa && !wpaAvailable ) {
-		KMessageBox::error(0, i18n("<qt><p><b>Can not connect to network '%1'.<b></p><p>The network you are trying to connect to requires WPA authentication. The necessary executables <i>wpa_supplicant</i> and <i>wpa_cli</i> could not be found. Install <i>wpa_supplicant</i> and restart Wireless Assistant to connect.</p></qt>").arg(NetParams.essid) );
+		KMessageBox::error(0, i18n("<qt><p><b>Can not connect to network '%1'.</b></p><p>The network you are trying to connect to requires WPA authentication. The necessary executables <i>wpa_supplicant</i> and <i>wpa_cli</i> could not be found. Install <i>wpa_supplicant</i> and restart Wireless Assistant to connect.</p></qt>").arg(NetParams.essid) );
 		timerConnectionCheck->start(WA_CONNECTION_CHECK_INTERVAL); //resume connection checking
 		return;
 	}
@@ -757,7 +757,7 @@ void WirelessAssistant::setConnectedItem( const TQString & netid )
 
 void WirelessAssistant::netDisconnect( const bool & quiet )
 {
-        if ( (quiet) || (KMessageBox::warningContinueCancel(0, i18n("<qt><p>You are about to disconnect from '<b>%1</b>'.</p><p>Would you like to continue?<p></qt>").arg(connectedItem->essid()) )== KMessageBox::Continue ) ) {
+        if ( (quiet) || (KMessageBox::warningContinueCancel(0, i18n("<qt><p>You are about to disconnect from '<b>%1</b>'.</p><p>Would you like to continue?</p></qt>").arg(connectedItem->essid()) )== KMessageBox::Continue ) ) {
                 timerConnectionCheck->stop(); //stop while disconnecting.
 
 		if ( !NetParams.preDisconnectionCommand.isEmpty() ) {
-- 
cgit v1.2.3

