aboutsummaryrefslogtreecommitdiffstats
path: root/src
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
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')
-rw-r--r--src/kvilib/ext/avdevice/videodevice.cpp2
-rw-r--r--src/kvilib/ext/kvi_oggtheora.h2
-rw-r--r--src/kvirc/kvs/kvi_kvs_corefunctions_af.cpp6
-rw-r--r--src/modules/dcc/libkvidcc.cpp10
4 files changed, 10 insertions, 10 deletions
diff --git a/src/kvilib/ext/avdevice/videodevice.cpp b/src/kvilib/ext/avdevice/videodevice.cpp
index 79f36c96e..82d3345ba 100644
--- a/src/kvilib/ext/avdevice/videodevice.cpp
+++ b/src/kvilib/ext/avdevice/videodevice.cpp
@@ -81,7 +81,7 @@ VideoDevice::~VideoDevice()
\brief Sets up the supported video-controls for the current input
Determines which video-controls are supported for the current input,
- reads all needed informations about them and stores the data to the local members
+ reads all needed information about them and stores the data to the local members
*/
void VideoDevice::setupControls()
{
diff --git a/src/kvilib/ext/kvi_oggtheora.h b/src/kvilib/ext/kvi_oggtheora.h
index 081d01e74..49cf58859 100644
--- a/src/kvilib/ext/kvi_oggtheora.h
+++ b/src/kvilib/ext/kvi_oggtheora.h
@@ -66,7 +66,7 @@ class KviDataBuffer;
/**
* \struct KviTheoraGeometry
-* \brief Contains all the needed geometry informations of a theora video stream
+* \brief Contains all the needed geometry information of a theora video stream
*/
typedef struct _KviTheoraGeometry
diff --git a/src/kvirc/kvs/kvi_kvs_corefunctions_af.cpp b/src/kvirc/kvs/kvi_kvs_corefunctions_af.cpp
index f14101c2c..cacc3095b 100644
--- a/src/kvirc/kvs/kvi_kvs_corefunctions_af.cpp
+++ b/src/kvirc/kvs/kvi_kvs_corefunctions_af.cpp
@@ -473,7 +473,7 @@ namespace KviKvsCoreFunctions
@title:
$certificate
@short:
- Returns informations about the local certificate
+ Returns information about the local certificate
@syntax:
<string> $certificate(<query:string>[,<param1:string>])
@description:
@@ -560,7 +560,7 @@ namespace KviKvsCoreFunctions
if(!pCert)
{
- KVSCF_pContext->warning(__tr2qs_ctx("Error retrieving informations from the local certificate","dcc"));
+ KVSCF_pContext->warning(__tr2qs_ctx("Error retrieving information from the local certificate","dcc"));
KVSCF_pRetBuffer->setString("");
return true;
}
@@ -568,7 +568,7 @@ namespace KviKvsCoreFunctions
if(KviSSLMaster::getSSLCertInfo(pCert, szQuery, szParam1, KVSCF_pRetBuffer))
return true;
- KVSCF_pContext->warning(__tr2qs_ctx("Unable to get certificate informations: query not recognized","dcc"));
+ KVSCF_pContext->warning(__tr2qs_ctx("Unable to get certificate information: query not recognized","dcc"));
KVSCF_pRetBuffer->setString("");
return true;
#endif
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;
}