aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/log/libkvilog.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/log/libkvilog.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/log/libkvilog.cpp')
-rw-r--r--src/modules/log/libkvilog.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/modules/log/libkvilog.cpp b/src/modules/log/libkvilog.cpp
index 5a0cb1c49..1789df7ef 100644
--- a/src/modules/log/libkvilog.cpp
+++ b/src/modules/log/libkvilog.cpp
@@ -104,7 +104,7 @@ static bool log_kvs_cmd_start(KviKvsModuleCommandCall * c)
return true;
}
} else {
- c->warning(__tr2qs_ctx("Missing window id after the 'w' switch","log"));
+ c->warning(__tr2qs_ctx("Missing window ID after the 'w' switch","log"));
return true;
}
}
@@ -158,7 +158,7 @@ static bool log_kvs_cmd_stop(KviKvsModuleCommandCall * c)
return true;
}
} else {
- c->warning(__tr2qs_ctx("Missing window id after the 'w' switch","log"));
+ c->warning(__tr2qs_ctx("Missing window ID after the 'w' switch","log"));
return true;
}
}
@@ -208,7 +208,7 @@ static bool log_kvs_cmd_flush(KviKvsModuleCommandCall * c)
return true;
}
} else {
- c->warning(__tr2qs_ctx("Missing window id after the 'w' switch","log"));
+ c->warning(__tr2qs_ctx("Missing window ID after the 'w' switch","log"));
return true;
}
}
@@ -262,7 +262,7 @@ static bool log_kvs_fnc_file(KviKvsModuleFunctionCall * c)
pWnd = g_pApp->findWindow(szWindow);
if(!pWnd)
{
- c->warning(__tr2qs_ctx("Window with id '%1' not found, returning empty string","log").arg(szWindow));
+ c->warning(__tr2qs_ctx("Window with ID '%1' not found, returning empty string","log").arg(szWindow));
return true;
}
}