aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/file/libkvifile.cpp
diff options
context:
space:
mode:
authorGravatar wodim2011-01-20 16:11:29 +0000
committerGravatar wodim2011-01-20 16:11:29 +0000
commit0bd9e8c873c47015c0fe3c443321ed259539680d (patch)
treeb5254fd570eef7813d150500ea1d2e0e10f26743 /src/modules/file/libkvifile.cpp
parentFixed typo (2nd part), updated spanish translation (diff)
downloadKVIrc-0bd9e8c873c47015c0fe3c443321ed259539680d.tar.gz
KVIrc-0bd9e8c873c47015c0fe3c443321ed259539680d.tar.bz2
KVIrc-0bd9e8c873c47015c0fe3c443321ed259539680d.zip
Fixed typos, updated .po files, updated spanish translation
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@5381 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/file/libkvifile.cpp')
-rw-r--r--src/modules/file/libkvifile.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/file/libkvifile.cpp b/src/modules/file/libkvifile.cpp
index 9bf7c6b26..0f6536e35 100644
--- a/src/modules/file/libkvifile.cpp
+++ b/src/modules/file/libkvifile.cpp
@@ -1401,7 +1401,7 @@ static bool file_kvs_fnc_digest(KviKvsModuleFunctionCall * c)
KVSM_PARAMETERS_BEGIN(c)
KVSM_PARAMETER("data",KVS_PT_NONEMPTYSTRING,0,szFile)
- KVSM_PARAMETER("algorythm",KVS_PT_NONEMPTYSTRING,KVS_PF_OPTIONAL,szAlgo)
+ KVSM_PARAMETER("algorithm",KVS_PT_NONEMPTYSTRING,KVS_PF_OPTIONAL,szAlgo)
KVSM_PARAMETERS_END(c)
KviFileUtils::adjustFilePath(szFile);
@@ -1433,7 +1433,7 @@ static bool file_kvs_fnc_digest(KviKvsModuleFunctionCall * c)
pMD = EVP_get_digestbyname(szAlgo.toUtf8().data());
if(!pMD)
{
- c->warning(__tr2qs("%Q algorytm is not supported"),&szAlgo);
+ c->warning(__tr2qs("%Q algorithm is not supported"),&szAlgo);
return true;
}