diff options
| author | 2016-05-22 22:43:33 -0400 | |
|---|---|---|
| committer | 2016-05-22 22:46:59 -0400 | |
| commit | 4d188c1afce5f87c4d3c8b7d0b44695324759b10 (patch) | |
| tree | 1601cda040d69b84ba10d8da3c89224de1587205 /src/modules | |
| parent | KviIrcToolbar: add last measured to IRC Ctxt widget (diff) | |
| download | KVIrc-4d188c1afce5f87c4d3c8b7d0b44695324759b10.tar.gz KVIrc-4d188c1afce5f87c4d3c8b7d0b44695324759b10.tar.bz2 KVIrc-4d188c1afce5f87c4d3c8b7d0b44695324759b10.zip | |
wheeeeeeeeee
Diffstat (limited to 'src/modules')
| -rw-r--r-- | src/modules/actioneditor/ActionEditor.cpp | 2 | ||||
| -rw-r--r-- | src/modules/mediaplayer/libkvimediaplayer.cpp | 2 | ||||
| -rw-r--r-- | src/modules/my/Idle_win.cpp | 2 | ||||
| -rw-r--r-- | src/modules/objects/KvsObject_dockWindow.cpp | 2 | ||||
| -rw-r--r-- | src/modules/objects/KvsObject_groupBox.cpp | 4 | ||||
| -rw-r--r-- | src/modules/objects/KvsObject_painter.cpp | 10 | ||||
| -rw-r--r-- | src/modules/options/OptionsWidget_alertsAndHighlighting.cpp | 2 | ||||
| -rw-r--r-- | src/modules/options/OptionsWidget_lag.cpp | 2 | ||||
| -rw-r--r-- | src/modules/options/OptionsWidget_nickserv.cpp | 2 | ||||
| -rw-r--r-- | src/modules/reguser/RegisteredUsersDialog.cpp | 6 | ||||
| -rw-r--r-- | src/modules/url/libkviurl.cpp | 4 |
11 files changed, 19 insertions, 19 deletions
diff --git a/src/modules/actioneditor/ActionEditor.cpp b/src/modules/actioneditor/ActionEditor.cpp index 14c730519..d1347b698 100644 --- a/src/modules/actioneditor/ActionEditor.cpp +++ b/src/modules/actioneditor/ActionEditor.cpp @@ -239,7 +239,7 @@ SingleActionEditor::SingleActionEditor(QWidget * par, ActionEditor * ed) gl->addWidget(m_pConsoleOnlyIfUsersSelectedCheck, 5, 1, 1, 4); m_pWindowChannelCheck = new QCheckBox(__tr2qs_ctx("Enable in channel windows", "editor"), tab); - m_pWindowChannelCheck->setToolTip(__tr2qs_ctx("Check this option if this action should be enabled only when " + m_pWindowChannelCheck->setToolTip(__tr2qs_ctx("Check this option if this action should be enabled only when " "the active window is a channel", "editor")); connect(m_pWindowChannelCheck, SIGNAL(toggled(bool)), this, SLOT(channelQueryOrConsoleWindowCheckToggled(bool))); diff --git a/src/modules/mediaplayer/libkvimediaplayer.cpp b/src/modules/mediaplayer/libkvimediaplayer.cpp index 336aa0cd3..6adcd1d72 100644 --- a/src/modules/mediaplayer/libkvimediaplayer.cpp +++ b/src/modules/mediaplayer/libkvimediaplayer.cpp @@ -743,7 +743,7 @@ MP_KVS_SIMPLE_COMMAND(mute, mute) @description: Returns the MRL of the media currently played by the selected media player interface. The MRL is a standard Media Resource Locator. - Examples of such locators are: + Examples of such locators are: [example] file:///home/myfile.mp3 http://streaming.server.top:123 diff --git a/src/modules/my/Idle_win.cpp b/src/modules/my/Idle_win.cpp index f2eef009c..fe440e9bc 100644 --- a/src/modules/my/Idle_win.cpp +++ b/src/modules/my/Idle_win.cpp @@ -17,7 +17,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ - + #if defined(COMPILE_ON_WINDOWS) || defined(COMPILE_ON_MINGW) #include "Idle.h" diff --git a/src/modules/objects/KvsObject_dockWindow.cpp b/src/modules/objects/KvsObject_dockWindow.cpp index c90cfa27c..79cf0cada 100644 --- a/src/modules/objects/KvsObject_dockWindow.cpp +++ b/src/modules/objects/KvsObject_dockWindow.cpp @@ -52,7 +52,7 @@ !fn: $setAllowedDockAreas(<docks:string>) Sets the allowed main window dock areas for this dock window.[br] <docks> must be a combination of [i]l[/i], [i]r[/i], [i]t[/i], [i]b[/i], [b]f[/b] and [b]m[/b].[br] - [b]l[/b] stands for left dock area, [b]r[/b] stands for right dock area, [b]t[/b] stands for the top dock areas, [b]b[/b] stands for the bottom dock area, + [b]l[/b] stands for left dock area, [b]r[/b] stands for right dock area, [b]t[/b] stands for the top dock areas, [b]b[/b] stands for the bottom dock area, [b]f[/b] stands for [i]floating[/i] and [b]m[/b] for [i]minimized[/i].[br] If a flag is present then the related block area is enabled,otherwise it is disabled. !fn: $dock(<dockarea:string>) diff --git a/src/modules/objects/KvsObject_groupBox.cpp b/src/modules/objects/KvsObject_groupBox.cpp index 7ba81e693..2d6637c66 100644 --- a/src/modules/objects/KvsObject_groupBox.cpp +++ b/src/modules/objects/KvsObject_groupBox.cpp @@ -105,13 +105,13 @@ const int align_cod[] = { %gb->$setAlignment("Left") [comment]# Add the groupbox to the main layout[/comment] %layout->$addWidget(%gb,0,0) - [comment]# Now we create the user field + [comment]# Now we create the user field (labels + lineedit) in a horizontal box[/comment] %hbox=$new(hbox,%gb) %labeluser=$new(label,%hbox) %labeluser->$settext(User: ) %inputuser=$new(lineedit,%hbox) - [comment]# Now we create the password field + [comment]# Now we create the password field (labels + lineedit) in a horizontal box[/comment] %hbox=$new(hbox,%gb) %labelpass=$new(label,%hbox) diff --git a/src/modules/objects/KvsObject_painter.cpp b/src/modules/objects/KvsObject_painter.cpp index 79b9c002a..603181430 100644 --- a/src/modules/objects/KvsObject_painter.cpp +++ b/src/modules/objects/KvsObject_painter.cpp @@ -330,7 +330,7 @@ const char * const brushstyles_tbl[] = { !fn: $scale(<dh:real>,<dw:real>) Scales the coordinate system by <dh>, <dv>. !fn: $setBackgroundMode(<bgMode:enum>) - Sets the background mode of the painter to <bgMode>: + Sets the background mode of the painter to <bgMode>: Valid values are:[br] [pre] - Transparent (that is the default value);[br] @@ -472,7 +472,7 @@ const char * const brushstyles_tbl[] = { { $$->%degree=0; if ($$->%Zoomindex == 99) $$->%Noanim=1 - } + } if ($$->%Noanim != 1) return [comment]#sinusoid animation[/comment] if (($$->%xstart <1) && ($$->%xoffset == -4)) $$->%xoffset=4; @@ -495,11 +495,11 @@ const char * const brushstyles_tbl[] = { privateimpl(%Btn,mousepressevent) { - if ($$->$parent->%nextanim==0) + if ($$->$parent->%nextanim==0) { $$->$parent->%nextanim=1 $$->$settext(Prev) - } + } else { $$->$parent->%nextanim=0 @@ -515,7 +515,7 @@ const char * const brushstyles_tbl[] = { %Hello->$setmaximumheight(600) %Hello->$setminimumheight(600) %Hello->$move(10,10) - %Hello->$show(); + %Hello->$show(); [/example] */ diff --git a/src/modules/options/OptionsWidget_alertsAndHighlighting.cpp b/src/modules/options/OptionsWidget_alertsAndHighlighting.cpp index 7fc7b9dda..6402d7e44 100644 --- a/src/modules/options/OptionsWidget_alertsAndHighlighting.cpp +++ b/src/modules/options/OptionsWidget_alertsAndHighlighting.cpp @@ -72,7 +72,7 @@ OptionsWidget_highlighting::OptionsWidget_highlighting(QWidget * parent) m_pHighlightAllOccurencesRadioButton = new QRadioButton(__tr2qs_ctx("Highlight every occurrence of a word inside text", "options"), gbox); g->addWidget(m_pHighlightAllOccurencesRadioButton, 0, 0, 1, 2); m_pHighlightAllOccurencesRadioButton->setChecked(KVI_OPTION_BOOL(KviOption_boolUseFullWordHighlighting)); - KviTalToolTip::add(m_pHighlightAllOccurencesRadioButton, __tr2qs_ctx("This selection will cause KVIrc to search for the highlighted words or " + KviTalToolTip::add(m_pHighlightAllOccurencesRadioButton, __tr2qs_ctx("This selection will cause KVIrc to search for the highlighted words or " "nicknames inside the whole text. This will also highlight parts of words.<br>" "(e.g. if your nickname is Mark then Markus will be highlighted too).", "options")); diff --git a/src/modules/options/OptionsWidget_lag.cpp b/src/modules/options/OptionsWidget_lag.cpp index 1f9e4557a..b07552cc9 100644 --- a/src/modules/options/OptionsWidget_lag.cpp +++ b/src/modules/options/OptionsWidget_lag.cpp @@ -40,7 +40,7 @@ OptionsWidget_lag::OptionsWidget_lag(QWidget * parent) KviBoolSelector * pUse = addBoolSelector(0, 0, 0, 0, __tr2qs_ctx("Enable lag meter", "options"), KviOption_boolUseLagMeterEngine); mergeTip(pUse, __tr2qs_ctx("This enables the lag meter engine, which checks at regular intervals how much latency the server has.", "options")); KviTalGroupBox * g = addGroupBox(0, 1, 0, 1, Qt::Horizontal, __tr2qs_ctx("Configuration", "options"), KVI_OPTION_BOOL(KviOption_boolUseLagMeterEngine)); - KviUIntSelector * pInterval = addUIntSelector(g, __tr2qs_ctx("Lag meter heartbeat:", "options"), KviOption_uintLagMeterHeartbeat, 2000, 10000, 5000, + KviUIntSelector * pInterval = addUIntSelector(g, __tr2qs_ctx("Lag meter heartbeat:", "options"), KviOption_uintLagMeterHeartbeat, 2000, 10000, 5000, KVI_OPTION_BOOL(KviOption_boolUseLagMeterEngine)); pInterval->setSuffix(__tr2qs_ctx(" msec", "options")); mergeTip(pInterval, __tr2qs_ctx("This option allows you to set the lag meter heartbeat interval.<br>" diff --git a/src/modules/options/OptionsWidget_nickserv.cpp b/src/modules/options/OptionsWidget_nickserv.cpp index e61f16713..6bd197cdc 100644 --- a/src/modules/options/OptionsWidget_nickserv.cpp +++ b/src/modules/options/OptionsWidget_nickserv.cpp @@ -64,7 +64,7 @@ NickServRuleEditor::NickServRuleEditor(QWidget * par, bool bUseServerMaskField) "You can use wildcards for this field, but generally it is a security flaw. " "If you're 100%% sure that NO user on the network can use the nickname \"NickServ\", " "the mask <b>NickServ!*@*</b> may be safe to use in this field.", "options")); - + gl->addWidget(m_pNickServMaskEdit, 1, 1, 1, 3); // gl->addMultiCellWidget(m_pNickServMaskEdit,1,1,1,3); diff --git a/src/modules/reguser/RegisteredUsersDialog.cpp b/src/modules/reguser/RegisteredUsersDialog.cpp index 266150477..f065b470a 100644 --- a/src/modules/reguser/RegisteredUsersDialog.cpp +++ b/src/modules/reguser/RegisteredUsersDialog.cpp @@ -423,9 +423,9 @@ void RegisteredUsersDialog::itemDoubleClicked(QTreeWidgetItem * it, int) void RegisteredUsersDialog::addGroupClicked() { bool ok; - QString text = QInputDialog::getText(this, "Add Group Name - KVIrc", + QString text = QInputDialog::getText(this, "Add Group Name - KVIrc", __tr2qs_ctx("Group name:", "register"), QLineEdit::Normal, QString(), &ok); - + if(ok && !text.isEmpty()) { g_pLocalRegisteredUserDataBase->addGroup(text); @@ -437,7 +437,7 @@ void RegisteredUsersDialog::editGroup(KviRegisteredUserGroup * group) { bool ok; - QString text = QInputDialog::getText(this, "Change Group Name - KVIrc", + QString text = QInputDialog::getText(this, "Change Group Name - KVIrc", __tr2qs_ctx("Group name:", "register"), QLineEdit::Normal, group->name(), &ok); if(ok && !text.isEmpty()) diff --git a/src/modules/url/libkviurl.cpp b/src/modules/url/libkviurl.cpp index be22b7c95..564c041c5 100644 --- a/src/modules/url/libkviurl.cpp +++ b/src/modules/url/libkviurl.cpp @@ -861,13 +861,13 @@ void url_module_config() [b]Window[/b]: window where the URL has been shown last[br] [b]Count[/b]: number of URLs shown[br] [b]Timestamp[/b]: date/time when the URL has been shown first[br] - + Clicking right on the URL column of the list a menu will popup, through it you can remove the selected item, find the URL in the window it appeared last, and say it to: [i]@Console, Channels, Queries, DCC Chats[/i] and [i]User windows[/i].[br] The list is saved to file when you click on the menu item or when you unload the plugin on condition that you have checked the relative checkbox in configuration dialog.[br] - + You can also open the URL in your web browser double clicking on it in the URL list window.[br][br] Mail me if you have any suggestion or you want to notice a bug.[br] |
