aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules
diff options
context:
space:
mode:
authorGravatar Kai Wasserbäch2011-05-07 14:58:03 +0000
committerGravatar Kai Wasserbäch2011-05-07 14:58:03 +0000
commit41c26f68cfd68394d31ba0588565b497ebde3084 (patch)
tree43674906de518425f9a9a450e09d313f5ff7c341 /src/modules
parentPorted the pseudo transparency to qt4 api (diff)
downloadKVIrc-41c26f68cfd68394d31ba0588565b497ebde3084.tar.gz
KVIrc-41c26f68cfd68394d31ba0588565b497ebde3084.tar.bz2
KVIrc-41c26f68cfd68394d31ba0588565b497ebde3084.zip
Fixed typos found by Lintian.
This commit fixes: I: kvirc: spelling-error-in-binary usr/bin/kvirc writeable writable I: kvirc: spelling-error-in-binary usr/lib/kvirc/4.1/modules/libkvioptions.so allows to allows one to I: kvirc: spelling-error-in-binary usr/lib/kvirc/4.1/modules/libkvipopupeditor.so allows to allows one to git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@5830 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules')
-rw-r--r--src/modules/file/libkvifile.cpp6
-rw-r--r--src/modules/options/OptionsWidget_notifier.cpp2
-rw-r--r--src/modules/popupeditor/PopupEditorWindow.cpp2
3 files changed, 5 insertions, 5 deletions
diff --git a/src/modules/file/libkvifile.cpp b/src/modules/file/libkvifile.cpp
index c8d9541c8..b0c5c8db1 100644
--- a/src/modules/file/libkvifile.cpp
+++ b/src/modules/file/libkvifile.cpp
@@ -697,7 +697,7 @@ static bool file_kvs_fnc_ps(KviKvsModuleFunctionCall * c)
f: list files[br]
l: list symbolic links[br]
r: list readable files[br]
- w: list writeable files[br]
+ w: list writable files[br]
x: list executable files[br]
h: list hidden files[br]
s: list system files[br]
@@ -1157,7 +1157,7 @@ static bool file_kvs_cmd_writeLines(KviKvsModuleCommandCall * c)
<string> $file.localdir([relative_path:string])
@description:
Returns the path to the KVIrc local data directory.[br]
- The KVIrc local data directory is always writeable and contains
+ The KVIrc local data directory is always writable and contains
the various subdirectories that KVIrc uses internally: audio, avatars,
config, help, incoming, log, modules, msgcolors and pics.[br]
If <relative_path> is passed, then it is appended to the directory path to
@@ -1298,7 +1298,7 @@ static bool file_kvs_fnc_cwd(KviKvsModuleFunctionCall * c)
$file.globaldir
@description:
Returns the path to the KVIrc global data directory.[br]
- The KVIrc local data directory is always readable (but usually not writeable) and contains
+ The KVIrc local data directory is always readable (but usually not writable) and contains
the various subdirectories that KVIrc uses internally: audio, avatars,
config, help, incoming, log, modules, msgcolors and pics.[br]
If <relative_path> is passed, then it is appended to the directory path to
diff --git a/src/modules/options/OptionsWidget_notifier.cpp b/src/modules/options/OptionsWidget_notifier.cpp
index ecddebb70..d21770c65 100644
--- a/src/modules/options/OptionsWidget_notifier.cpp
+++ b/src/modules/options/OptionsWidget_notifier.cpp
@@ -143,7 +143,7 @@ OptionsWidget_notifier::OptionsWidget_notifier(QWidget * parent)
KviBoolSelector * b = addBoolSelector(0,iRow,0,iRow,__tr2qs_ctx("Enable the notifier","options"),KviOption_boolEnableNotifier);
QString szTip = "<center>";
- szTip += __tr2qs_ctx("This is an option for the impatient: it allows to forcibly and permanently disable " \
+ szTip += __tr2qs_ctx("This is an option for the impatient: it allows one to forcibly and permanently disable " \
"the notifier window. Please note that if this option is not activated then " \
"the notifier will NOT popup even if all the other options around specify " \
"to use it in response to particular events. Also note that this option " \
diff --git a/src/modules/popupeditor/PopupEditorWindow.cpp b/src/modules/popupeditor/PopupEditorWindow.cpp
index 0bf8481a8..4550f55c9 100644
--- a/src/modules/popupeditor/PopupEditorWindow.cpp
+++ b/src/modules/popupeditor/PopupEditorWindow.cpp
@@ -258,7 +258,7 @@ SinglePopupEditor::SinglePopupEditor(QWidget * par)
m_pExtNameEditor = new QLineEdit(this);
m_pExtNameEditor->setToolTip(
- __tr2qs_ctx("<center><b>External menu name</b><br>This allows to nest externally defined popup menus. The popup menu with the specified name will be looked up at menu setup time.</center>","editor"));
+ __tr2qs_ctx("<center><b>External menu name</b><br>This allows one to nest externally defined popup menus. The popup menu with the specified name will be looked up at menu setup time.</center>","editor"));
g->addWidget(m_pExtNameEditor,5,1,1,2);
l = new QLabel(__tr2qs_ctx("Item Id:","editor"),this);