diff options
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/alias/alias-info.c | 2 | ||||
-rw-r--r-- | src/plugins/irc/irc-info.c | 2 | ||||
-rw-r--r-- | src/plugins/plugin-api.c | 14 | ||||
-rw-r--r-- | src/plugins/scripts/lua/weechat-lua-api.c | 2 | ||||
-rw-r--r-- | src/plugins/scripts/perl/weechat-perl-api.c | 2 | ||||
-rw-r--r-- | src/plugins/scripts/python/weechat-python-api.c | 2 | ||||
-rw-r--r-- | src/plugins/scripts/ruby/weechat-ruby-api.c | 2 | ||||
-rw-r--r-- | src/plugins/scripts/script.c | 2 | ||||
-rw-r--r-- | src/plugins/scripts/tcl/weechat-tcl-api.c | 2 |
9 files changed, 15 insertions, 15 deletions
diff --git a/src/plugins/alias/alias-info.c b/src/plugins/alias/alias-info.c index 5c5dcf28a..bbeffe1af 100644 --- a/src/plugins/alias/alias-info.c +++ b/src/plugins/alias/alias-info.c @@ -97,6 +97,6 @@ alias_info_init () /* alias infolist hooks */ weechat_hook_infolist ("alias", N_("list of aliases"), N_("alias pointer (optional)"), - N_("alias name (can start or end with \"*\" as joker) (optional)"), + N_("alias name (can start or end with \"*\" as wildcard) (optional)"), &alias_info_get_infolist_cb, NULL); } diff --git a/src/plugins/irc/irc-info.c b/src/plugins/irc/irc-info.c index 710757eb6..54496830b 100644 --- a/src/plugins/irc/irc-info.c +++ b/src/plugins/irc/irc-info.c @@ -426,7 +426,7 @@ irc_info_init () /* infolist hooks */ weechat_hook_infolist ("irc_server", N_("list of IRC servers"), N_("server pointer (optional)"), - N_("server name (can start or end with \"*\" as joker) (optional)"), + N_("server name (can start or end with \"*\" as wildcard) (optional)"), &irc_info_get_infolist_cb, NULL); weechat_hook_infolist ("irc_channel", N_("list of channels for an IRC server"), N_("channel pointer (optional)"), diff --git a/src/plugins/plugin-api.c b/src/plugins/plugin-api.c index 0375cf70d..82ba1a6e7 100644 --- a/src/plugins/plugin-api.c +++ b/src/plugins/plugin-api.c @@ -969,11 +969,11 @@ plugin_api_init () /* WeeChat core infolist hooks */ hook_infolist (NULL, "bar", N_("list of bars"), N_("bar pointer (optional)"), - N_("bar name (can start or end with \"*\" as joker) (optional)"), + N_("bar name (can start or end with \"*\" as wildcard) (optional)"), &plugin_api_infolist_get_internal, NULL); hook_infolist (NULL, "bar_item", N_("list of bar items"), N_("bar item pointer (optional)"), - N_("bar item name (can start or end with \"*\" as joker) (optional)"), + N_("bar item name (can start or end with \"*\" as wildcard) (optional)"), &plugin_api_infolist_get_internal, NULL); hook_infolist (NULL, "bar_window", N_("list of bar windows"), N_("bar window pointer (optional)"), @@ -981,7 +981,7 @@ plugin_api_init () &plugin_api_infolist_get_internal, NULL); hook_infolist (NULL, "buffer", N_("list of buffers"), N_("buffer pointer (optional)"), - N_("buffer name (can start or end with \"*\" as joker) (optional)"), + N_("buffer name (can start or end with \"*\" as wildcard) (optional)"), &plugin_api_infolist_get_internal, NULL); hook_infolist (NULL, "buffer_lines", N_("lines of a buffer"), N_("buffer pointer"), @@ -989,7 +989,7 @@ plugin_api_init () &plugin_api_infolist_get_internal, NULL); hook_infolist (NULL, "filter", N_("list of filters"), NULL, - N_("filter name (can start or end with \"*\" as joker) (optional)"), + N_("filter name (can start or end with \"*\" as wildcard) (optional)"), &plugin_api_infolist_get_internal, NULL); hook_infolist (NULL, "history", N_("history of commands"), N_("buffer pointer (if not set, return global history) (optional)"), @@ -1014,14 +1014,14 @@ plugin_api_init () &plugin_api_infolist_get_internal, NULL); hook_infolist (NULL, "option", N_("list of options"), NULL, - N_("option name (can start or end with \"*\" as joker) (optional)"), + N_("option name (can start or end with \"*\" as wildcard) (optional)"), &plugin_api_infolist_get_internal, NULL); hook_infolist (NULL, "plugin", N_("list of plugins"), N_("plugin pointer (optional)"), - N_("plugin name (can start or end with \"*\" as joker) (optional)"), + N_("plugin name (can start or end with \"*\" as wildcard) (optional)"), &plugin_api_infolist_get_internal, NULL); hook_infolist (NULL, "window", N_("list of windows"), N_("window pointer (optional)"), - N_("window name (can start or end with \"*\" as joker) (optional)"), + N_("window name (can start or end with \"*\" as wildcard) (optional)"), &plugin_api_infolist_get_internal, NULL); } diff --git a/src/plugins/scripts/lua/weechat-lua-api.c b/src/plugins/scripts/lua/weechat-lua-api.c index 5d4f68adc..41b099ce8 100644 --- a/src/plugins/scripts/lua/weechat-lua-api.c +++ b/src/plugins/scripts/lua/weechat-lua-api.c @@ -454,7 +454,7 @@ weechat_lua_api_string_has_highlight (lua_State *L) /* * weechat_lua_api_string_mask_to_regex: convert a mask (string with only - * "*" as joker) to a regex, paying + * "*" as wildcard) to a regex, paying * attention to special chars in a * regex */ diff --git a/src/plugins/scripts/perl/weechat-perl-api.c b/src/plugins/scripts/perl/weechat-perl-api.c index 04c51cb5f..e3a1bc733 100644 --- a/src/plugins/scripts/perl/weechat-perl-api.c +++ b/src/plugins/scripts/perl/weechat-perl-api.c @@ -384,7 +384,7 @@ XS (XS_weechat_api_string_has_highlight) /* * weechat::string_mask_to_regex: convert a mask (string with only "*" as - * joker) to a regex, paying attention to + * wildcard) to a regex, paying attention to * special chars in a regex */ diff --git a/src/plugins/scripts/python/weechat-python-api.c b/src/plugins/scripts/python/weechat-python-api.c index e8da86d78..561bafad5 100644 --- a/src/plugins/scripts/python/weechat-python-api.c +++ b/src/plugins/scripts/python/weechat-python-api.c @@ -396,7 +396,7 @@ weechat_python_api_string_has_highlight (PyObject *self, PyObject *args) /* * weechat_python_api_string_mask_to_regex: convert a mask (string with only - * "*" as joker) to a regex, paying + * "*" as wildcard) to a regex, paying * attention to special chars in a * regex */ diff --git a/src/plugins/scripts/ruby/weechat-ruby-api.c b/src/plugins/scripts/ruby/weechat-ruby-api.c index 34a52de59..67258afa4 100644 --- a/src/plugins/scripts/ruby/weechat-ruby-api.c +++ b/src/plugins/scripts/ruby/weechat-ruby-api.c @@ -462,7 +462,7 @@ weechat_ruby_api_string_has_highlight (VALUE class, VALUE string, /* * weechat_ruby_api_string_mask_to_regex: convert a mask (string with only - * "*" as joker) to a regex, paying + * "*" as wildcard) to a regex, paying * attention to special chars in a * regex */ diff --git a/src/plugins/scripts/script.c b/src/plugins/scripts/script.c index 8d8173a0f..24f7133cf 100644 --- a/src/plugins/scripts/script.c +++ b/src/plugins/scripts/script.c @@ -281,7 +281,7 @@ script_init (struct t_weechat_plugin *weechat_plugin, callback_completion, NULL); weechat_hook_infolist (string, N_("list of scripts"), N_("script pointer (optional)"), - N_("script name (can start or end with \"*\" as joker) (optional)"), + N_("script name (can start or end with \"*\" as wildcard) (optional)"), callback_infolist, NULL); free (string); } diff --git a/src/plugins/scripts/tcl/weechat-tcl-api.c b/src/plugins/scripts/tcl/weechat-tcl-api.c index 9e2688b4c..8430139df 100644 --- a/src/plugins/scripts/tcl/weechat-tcl-api.c +++ b/src/plugins/scripts/tcl/weechat-tcl-api.c @@ -525,7 +525,7 @@ weechat_tcl_api_string_has_highlight (ClientData clientData, /* * weechat_tcl_api_string_mask_to_regex: convert a mask (string with only - * "*" as joker) to a regex, paying + * "*" as wildcard) to a regex, paying * attention to special chars in a * regex */ |