aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Data2017-07-05 02:46:52 +0100
committerGravatar IceN9ne2017-07-04 21:46:52 -0400
commit2e1417eb8376be7b9e681a4113d3727fde4beeaa (patch)
tree91b45d89d507bc2607698d5c581b3e72fdf4f9dc
parentAppVeyor: Deployment server has been removed for Windows builds (diff)
downloadKVIrc-2e1417eb8376be7b9e681a4113d3727fde4beeaa.tar.gz
KVIrc-2e1417eb8376be7b9e681a4113d3727fde4beeaa.tar.bz2
KVIrc-2e1417eb8376be7b9e681a4113d3727fde4beeaa.zip
defscript: add global to option controller titles
* defscript: add global to option controller name should make clearer that this is a global controller thingy. fixes #2202 * defscript: some missed titles * typo * &Option instead
-rw-r--r--data/defscript/actions.kvs6
-rw-r--r--data/defscript/default.kvc6
-rw-r--r--data/defscript/events.kvs4
-rw-r--r--data/defscript/popups.kvs2
4 files changed, 9 insertions, 9 deletions
diff --git a/data/defscript/actions.kvs b/data/defscript/actions.kvs
index 6b0a7d9d7..e99532930 100644
--- a/data/defscript/actions.kvs
+++ b/data/defscript/actions.kvs
@@ -2,11 +2,11 @@
#
# Coding style/curly brackets: Allman style
-action.create -w=xcqd -t=tools ("optionctrlr", $tr("Option Controllers"), $tr("Opens a control dialog for easy CTCP ignore and joins/parts/quits management."), "kvi_bigicon_settings.png", $icon("options"))
+action.create -w=xcqd -t=tools ("optionctrlr", $tr("Global Option Controllers"), $tr("Opens a global control dialog for easy CTCP ignore and joins/parts/quits management."), "kvi_bigicon_settings.png", $icon("options"))
{
#################################################################
# #
- # File : actions.kvs (optionctrlr) v4.1.1.6810 #
+ # File : actions.kvs (optionctrlr) v4.1.1.7125 #
# Creation date : Fri Jul 22 16:57:41 2016 UTC by un1versal #
# #
#################################################################
@@ -38,7 +38,7 @@ action.create -w=xcqd -t=tools ("optionctrlr", $tr("Option Controllers"), $tr("O
# Create the main widget as a dialog
%widget = $new(dialog)
%layout = $new(layout,%widget)
- %widget->$setWindowTitle($tr("Option Controllers - KVIrc"))
+ %widget->$setWindowTitle($tr("Global Option Controllers - KVIrc"))
# Add dialog geometry restrictions.
# Prevent dialog from looking nasty when resized!
diff --git a/data/defscript/default.kvc b/data/defscript/default.kvc
index 476fe40e0..85528ab31 100644
--- a/data/defscript/default.kvc
+++ b/data/defscript/default.kvc
@@ -2,11 +2,11 @@
[KVIrc]
Version=4.1.1
Date=2016-07-20
-ActionVersion=4.1.1.6810
+ActionVersion=4.1.1.7125
AddonVersion=4.1.1
AliasVersion=4.1.1.6923
ClassVersion=4.1.1
-EventVersion=4.1.1.6984
-PopupVersion=4.1.1.6985
+EventVersion=4.1.1.7125
+PopupVersion=4.1.1.7125
RawVersion=4.1.1
ToolbarVersion=4.1.1.6732
diff --git a/data/defscript/events.kvs b/data/defscript/events.kvs
index ce2565a1a..83df813fb 100644
--- a/data/defscript/events.kvs
+++ b/data/defscript/events.kvs
@@ -89,7 +89,7 @@ event(OnChannelWindowCreated,default)
popup.show -p=$0,$1 logging;
}
- button(w,Controllers,$icon("options"),$tr("Option controllers","defscript"))
+ button(w,Controllers,$icon("options"),$tr("Global option controllers","defscript"))
{
action.trigger optionctrlr;
}
@@ -102,7 +102,7 @@ event(OnQueryWindowCreated,default)
popup.show -p=$0,$1 logging;
}
- button(w,Controllers,$icon("options"),$tr("Option controllers","defscript"))
+ button(w,Controllers,$icon("options"),$tr("Global option controllers","defscript"))
{
action.trigger optionctrlr;
}
diff --git a/data/defscript/popups.kvs b/data/defscript/popups.kvs
index 61d31b0ba..358a2a570 100644
--- a/data/defscript/popups.kvs
+++ b/data/defscript/popups.kvs
@@ -742,7 +742,7 @@ defpopup(windowpopup)
separator
- item($tr("&Option Controllers","defscript"),$icon("options"))
+ item($tr("Global &Option Controllers","defscript"),$icon("options"))
{
action.trigger optionctrlr;
}