From kde-commits Tue Jan 19 08:14:35 2010 From: Laurent Montel Date: Tue, 19 Jan 2010 08:14:35 +0000 To: kde-commits Subject: KDE/kdepim/kresources/groupwise/soap Message-Id: <1263888875.037352.26236.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=126388888128519 SVN commit 1076963 by mlaurent: Add missing i18n M +3 -3 groupwiseserver.cpp --- trunk/KDE/kdepim/kresources/groupwise/soap/groupwiseserver.cpp #1076962:1076963 @@ -1649,13 +1649,13 @@ QString errorMsg = QString::fromLatin1( "Unhandled error type: %1" ).arg( error ); kError() << "slotSocketError: connect failed " << error; if ( error == KTcpSocket::ConnectionRefusedError ) { - errorMsg = QString::fromLatin1( "Connection refused. Check host and port number" ); + errorMsg = i18n( "Connection refused. Check host and port number" ); } if ( error == KTcpSocket::SocketTimeoutError ) { - errorMsg = QString::fromLatin1( "Connection timed out. Check port number" ); + errorMsg = i18n( "Connection timed out. Check port number" ); } if ( error == KTcpSocket::HostNotFoundError ) { - errorMsg = QString::fromLatin1( "Host not found. Check your configuration" ); + errorMsg = i18n( "Host not found. Check your configuration" ); } mErrors.append( i18n("Connect failed: %1.", errorMsg ) ); }