diff options
| author | 2016-05-10 04:21:27 +0100 | |
|---|---|---|
| committer | 2016-05-11 04:08:07 +0100 | |
| commit | d27b1922a6c5f2538c7071386dc854e46e70373b (patch) | |
| tree | a9b3996b7515c51bdd33d5d386e1eab18e201c3f /src/modules/options/OptionsWidget_query.cpp | |
| parent | Fix numbers and strings for several KviOption defines. (#1979) (diff) | |
| download | KVIrc-d27b1922a6c5f2538c7071386dc854e46e70373b.tar.gz KVIrc-d27b1922a6c5f2538c7071386dc854e46e70373b.tar.bz2 KVIrc-d27b1922a6c5f2538c7071386dc854e46e70373b.zip | |
OptionsWidget_*: fix formatting in some tooltips
sneak in consistency + cleanup jobby
Diffstat (limited to 'src/modules/options/OptionsWidget_query.cpp')
| -rw-r--r-- | src/modules/options/OptionsWidget_query.cpp | 36 |
1 files changed, 14 insertions, 22 deletions
diff --git a/src/modules/options/OptionsWidget_query.cpp b/src/modules/options/OptionsWidget_query.cpp index de0fa5a4d..8b39e44ce 100644 --- a/src/modules/options/OptionsWidget_query.cpp +++ b/src/modules/options/OptionsWidget_query.cpp @@ -42,54 +42,46 @@ OptionsWidget_query::OptionsWidget_query(QWidget * parent) g = addGroupBox(0, 0, 1, 0, Qt::Horizontal, __tr2qs_ctx("Open Query for", "options")); b = addBoolSelector(g, __tr2qs_ctx("Private messages", "options"), KviOption_boolCreateQueryOnPrivmsg); mergeTip(b, __tr2qs_ctx("This option enables query window creation " - "when a private message (PRIVMSG) is received.<br>" + "when a private message (PRIVMSG) is received. " "If you disable this, private messages will " - "be shown in the active window or a common channel.", - "options")); + "be shown in the active window or a common channel.", "options")); b = addBoolSelector(g, __tr2qs_ctx("Private notices", "options"), KviOption_boolCreateQueryOnNotice); mergeTip(b, __tr2qs_ctx("This option enables query window creation " - "when a private notice (NOTICE) is received.<br>" + "when a private notice (NOTICE) is received. " "If you disable this, private notices will " - "be shown in the active window or a common channel.", - "options")); + "be shown in the active window or a common channel.", "options")); b = addBoolSelector(0, 1, 1, 1, __tr2qs_ctx("Open incoming query windows without focus", "options"), KviOption_boolCreateIncomingQueriesAsMinimized); mergeTip(b, __tr2qs_ctx("This option prevents incoming " "query windows from diverting application focus.<br>" - "Enable this if you don't like queries " - "popping up while you're typing something in a channel.", - "options")); + "Enable this if you don't like query windows " + "popping up while you're typing something in a channel.", "options")); b = addBoolSelector(0, 2, 1, 2, __tr2qs_ctx("Enable target user tracking", "options"), KviOption_boolEnableQueryTracing); - mergeTip(b, __tr2qs_ctx("This option will enable target user tracking.<br>" + mergeTip(b, __tr2qs_ctx("This option will enable target user tracking. " "Some actions of the target user (e.g. joins and parts) " - "will be displayed in the window.", - "options")); + "will be displayed in the window.", "options")); #if(defined(COMPILE_ON_WINDOWS) || defined(COMPILE_KDE_SUPPORT) || defined(COMPILE_ON_MINGW)) b = addBoolSelector(0, 3, 1, 3, __tr2qs_ctx("Flash system taskbar on new query message", "options"), KviOption_boolFlashQueryWindowOnNewMessages); mergeTip(b, __tr2qs_ctx("This option causes the system taskbar entry for KVIrc to flash when a new query message " - "is received and the KVIrc window is not the active.", - "options")); + "is received and the KVIrc window is not the active.", "options")); #endif b = addBoolSelector(0, 4, 1, 4, __tr2qs_ctx("Popup notifier on new query message", "options"), KviOption_boolPopupNotifierOnNewQueryMessages); mergeTip(b, __tr2qs_ctx("This option causes a small notifier window to pop up " "in the lower right corner of the screen when a new message is received " - "and the KVIrc window is not active.", - "options")); + "and the KVIrc window is not active.", "options")); b = addBoolSelector(0, 5, 1, 5, __tr2qs_ctx("Popup notifier on new notice", "options"), KviOption_boolPopupNotifierOnNewNotices); mergeTip(b, __tr2qs_ctx("This option causes a small notifier window to pop up " "in the lower right corner of the screen when a new notice is received " - "and the KVIrc window is not active.", - "options")); + "and the KVIrc window is not active.", "options")); b = addBoolSelector(0, 6, 1, 6, __tr2qs_ctx("Show information about query target at the top of the query", "options"), KviOption_boolShowExtendedInfoInQueryLabel); - mergeTip(b, __tr2qs_ctx("This option enables query window information " - "label. It can show you known information about query target at the top of the window.<br>" - "Uncheck if you think,that it wastes your query space", - "options")); + mergeTip(b, __tr2qs_ctx("This option enables query window information label. " + "It can show you known information about query target at the top of the window. " + "Uncheck this option, if you think,that it wastes your query space.", "options")); b = addBoolSelector(0, 7, 1, 7, __tr2qs_ctx("Paste last query log", "options"), KviOption_boolPasteLastLogOnQueryJoin); |
