aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/dcc/libkvidcc.cpp
diff options
context:
space:
mode:
authorGravatar Kai Wasserbäch2010-11-25 09:41:15 +0000
committerGravatar Kai Wasserbäch2010-11-25 09:41:15 +0000
commitb5ee08bb7eb24dd50dce912bb04c28ef3037bf90 (patch)
tree4288ebbf8a748e52b78547910960682e80931ce3 /src/modules/dcc/libkvidcc.cpp
parentfix for options widget in multi-tabbed page (diff)
downloadKVIrc-b5ee08bb7eb24dd50dce912bb04c28ef3037bf90.tar.gz
KVIrc-b5ee08bb7eb24dd50dce912bb04c28ef3037bf90.tar.bz2
KVIrc-b5ee08bb7eb24dd50dce912bb04c28ef3037bf90.zip
Fix Lintian warnings (spelling-error-in-binary). [Part 1/2]
Lintian found some "informations" which should have been "information", this commit fixes the source files (the next commit contains the updated POT and PO files. Please see <http://lintian.debian.org/manual/> for more information about Lintian. git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@5169 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/dcc/libkvidcc.cpp')
-rw-r--r--src/modules/dcc/libkvidcc.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/modules/dcc/libkvidcc.cpp b/src/modules/dcc/libkvidcc.cpp
index d4dc740ff..79f1727a9 100644
--- a/src/modules/dcc/libkvidcc.cpp
+++ b/src/modules/dcc/libkvidcc.cpp
@@ -2794,7 +2794,7 @@ static bool dcc_kvs_fnc_getSSLCertInfo(KviKvsModuleFunctionCall * c)
{
if(!dcc->isSSL())
{
- c->warning(__tr2qs_ctx("Unable to get SSL informations: DCC session is not using SSL","dcc"));
+ c->warning(__tr2qs_ctx("Unable to get SSL information: DCC session is not using SSL","dcc"));
c->returnValue()->setString("");
return true;
}
@@ -2807,7 +2807,7 @@ static bool dcc_kvs_fnc_getSSLCertInfo(KviKvsModuleFunctionCall * c)
if(!pSlaveThread)
{
- c->warning(__tr2qs_ctx("Unable to get SSL informations: DCC session not initialized yet","dcc"));
+ c->warning(__tr2qs_ctx("Unable to get SSL information: DCC session not initialized yet","dcc"));
c->returnValue()->setString("");
return true;
}
@@ -2815,7 +2815,7 @@ static bool dcc_kvs_fnc_getSSLCertInfo(KviKvsModuleFunctionCall * c)
KviSSL * pSSL = pSlaveThread->getSSL();
if(!pSSL)
{
- c->warning(__tr2qs_ctx("Unable to get SSL informations: SSL non initialized yet in DCC session","dcc"));
+ c->warning(__tr2qs_ctx("Unable to get SSL information: SSL non initialized yet in DCC session","dcc"));
c->returnValue()->setString("");
return true;
}
@@ -2824,7 +2824,7 @@ static bool dcc_kvs_fnc_getSSLCertInfo(KviKvsModuleFunctionCall * c)
if(!pCert)
{
- c->warning(__tr2qs_ctx("Unable to get SSL informations: No peer certificate available","dcc"));
+ c->warning(__tr2qs_ctx("Unable to get SSL information: No peer certificate available","dcc"));
c->returnValue()->setString("");
return true;
}
@@ -2832,7 +2832,7 @@ static bool dcc_kvs_fnc_getSSLCertInfo(KviKvsModuleFunctionCall * c)
if(KviSSLMaster::getSSLCertInfo(pCert, szQuery, szParam1, c->returnValue()))
return true;
- c->warning(__tr2qs_ctx("Unable to get SSL informations: query not recognized","dcc"));
+ c->warning(__tr2qs_ctx("Unable to get SSL information: query not recognized","dcc"));
c->returnValue()->setString("");
return true;
}