aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/options/optw_notify.cpp
diff options
context:
space:
mode:
authorGravatar Alexey Uzhva2008-07-31 23:47:27 +0000
committerGravatar Alexey Uzhva2008-07-31 23:47:27 +0000
commit0433852c16aeff5c4fe0eeea1c39ffd25d85fae3 (patch)
tree6cf213f15223d320c0265865905cfb1b8b5e2406 /src/modules/options/optw_notify.cpp
parentimplemented support for animated avatars (GIF or MNG) and animated fies at wh... (diff)
downloadKVIrc-0433852c16aeff5c4fe0eeea1c39ffd25d85fae3.tar.gz
KVIrc-0433852c16aeff5c4fe0eeea1c39ffd25d85fae3.tar.bz2
KVIrc-0433852c16aeff5c4fe0eeea1c39ffd25d85fae3.zip
some option names tweaks: changed some 'disabledSomething' features to 'enableSomething', option names better describes their actions
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@2147 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/options/optw_notify.cpp')
-rw-r--r--src/modules/options/optw_notify.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/options/optw_notify.cpp b/src/modules/options/optw_notify.cpp
index 052c3cfb1..851815096 100644
--- a/src/modules/options/optw_notify.cpp
+++ b/src/modules/options/optw_notify.cpp
@@ -104,7 +104,7 @@ KviNotifierOptionsWidget::KviNotifierOptionsWidget(QWidget * parent)
{
createLayout();
- KviBoolSelector * b = addBoolSelector(0,0,0,0,__tr2qs_ctx("Forcibly and completely disable the notifier","options"),KviOption_boolForciblyDisableNotifier);
+ KviBoolSelector * b = addBoolSelector(0,0,0,0,__tr2qs_ctx("Enable the notifier","options"),KviOption_boolEnableNotifier);
QString tip = "<center>";
tip += __tr2qs_ctx("This is an option for the impatient: it allows to forcibly and permanently disable " \
"the notifier window. Please note that if this option is activated then " \
@@ -113,8 +113,8 @@ KviNotifierOptionsWidget::KviNotifierOptionsWidget(QWidget * parent)
"will make all the /notifier.* commands fail silently.","options");
tip += "</center>";
mergeTip(b,tip);
- addBoolSelector(0,1,0,1,__tr2qs_ctx("Disable notifier window flashing","options"),KviOption_boolDisableNotifierFlashing);
- addBoolSelector(0,2,0,2,__tr2qs_ctx("Disable notifier window fade effect","options"),KviOption_boolDisableNotifierFadein);
+ addBoolSelector(0,1,0,1,__tr2qs_ctx("Enable notifier window flashing","options"),KviOption_boolNotifierFlashing);
+ addBoolSelector(0,2,0,2,__tr2qs_ctx("Enable notifier window fade effect","options"),KviOption_boolNotifierFading);
addRowSpacer(0,3,0,3);
}