aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/addon/AddonFunctions.cpp
diff options
context:
space:
mode:
authorGravatar un1versal2015-12-09 11:58:53 +0000
committerGravatar un1versal2015-12-19 02:40:22 +0000
commit7d4516afc4cd194f9224dcd5e07e0f234c162fdf (patch)
treea1a165c897339fcbd35a27108fe16c999a3041e2 /src/modules/addon/AddonFunctions.cpp
parentMerge pull request #1776 from TheReign/issue_1754_2 (diff)
downloadKVIrc-7d4516afc4cd194f9224dcd5e07e0f234c162fdf.tar.gz
KVIrc-7d4516afc4cd194f9224dcd5e07e0f234c162fdf.tar.bz2
KVIrc-7d4516afc4cd194f9224dcd5e07e0f234c162fdf.zip
src/modules typos: capitalize, formatting, consistency and syntax fixes
Diffstat (limited to 'src/modules/addon/AddonFunctions.cpp')
-rw-r--r--src/modules/addon/AddonFunctions.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/modules/addon/AddonFunctions.cpp b/src/modules/addon/AddonFunctions.cpp
index b8ff5e6a3..0ca479c00 100644
--- a/src/modules/addon/AddonFunctions.cpp
+++ b/src/modules/addon/AddonFunctions.cpp
@@ -51,7 +51,7 @@ namespace AddonFunctions
{
bool notAValidAddonPackage(QString &szError)
{
- szError = __tr2qs_ctx("The selected file does not seem to be a valid KVIrc addon package","addon");
+ szError = __tr2qs_ctx("The selected file doesn't seem to be a valid KVIrc addon package","addon");
return false;
}
@@ -72,7 +72,7 @@ namespace AddonFunctions
if(!r.readHeader(szAddonPackageFileName))
{
szErr = r.lastError();
- szError = QString(__tr2qs_ctx("The selected file does not seem to be a valid KVIrc package: %1","addon")).arg(szErr);
+ szError = QString(__tr2qs_ctx("The selected file doesn't seem to be a valid KVIrc package: %1","addon")).arg(szErr);
return false;
}
@@ -277,14 +277,14 @@ namespace AddonFunctions
QDir addon(szDirPath);
if(!addon.exists())
{
- *pszError = __tr2qs_ctx("The selected directory does not exist.","addon");
+ *pszError = __tr2qs_ctx("The selected directory doesn't exist.","addon");
return false;
}
QFileInfo init(szDirPath + "/install.kvs");
if(!init.exists())
{
- *pszError = __tr2qs_ctx("The initialization script (install.kvs) does not exist.","addon");
+ *pszError = __tr2qs_ctx("The initialization script (install.kvs) doesn't exist.","addon");
return false;
}