1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-29 14:26:39 +02:00

core, irc, script: fix typos

This commit is contained in:
Sébastien Helleu
2021-05-29 14:33:13 +02:00
parent 4a41625989
commit b21589944e
30 changed files with 326 additions and 239 deletions
+3 -3
View File
@@ -2993,7 +2993,7 @@ IRC_COMMAND_CALLBACK(links)
}
/*
* Callback for command "/list": lists channels and their topic.
* Callback for command "/list": lists channels and their topics.
*/
IRC_COMMAND_CALLBACK(list)
@@ -6735,7 +6735,7 @@ irc_command_init ()
NULL, &irc_command_links, NULL, NULL);
weechat_hook_command (
"list",
N_("list channels and their topic"),
N_("list channels and their topics"),
N_("[-server <server>] [-re <regex>] [<channel>[,<channel>...]] "
"[<target>]"),
N_(" server: send to this server (internal name)\n"
@@ -6965,7 +6965,7 @@ irc_command_init ()
N_("channel: channel name\n"
" nick: nick\n"
" reason: reason (special variables $nick, $channel and $server are "
"replaced by their value)"),
"replaced by their values)"),
"%(irc_channel)|%(nicks) %(nicks)", &irc_command_remove, NULL, NULL);
weechat_hook_command (
"restart",
+7 -7
View File
@@ -2149,7 +2149,7 @@ irc_config_server_new_option (struct t_config_file *config_file,
N_("command(s) to run after connection to server and before "
"auto-join of channels (many commands can be separated by "
"\";\", use \"\\;\" for a semicolon, special variables "
"$nick, $channel and $server are replaced by their value) "
"$nick, $channel and $server are replaced by their values) "
"(note: commands are evaluated, see /help eval; server "
"options are evaluated with ${irc_server.xxx} and "
"${server} is replaced by the server name)"),
@@ -2339,7 +2339,7 @@ irc_config_server_new_option (struct t_config_file *config_file,
"\"/kickban\" "
"(note: content is evaluated, see /help eval; special "
"variables ${nick}, ${channel} and ${server} are replaced "
"by their value)"),
"by their values)"),
NULL, 0, 0,
default_value, value,
null_value_allowed,
@@ -2358,7 +2358,7 @@ irc_config_server_new_option (struct t_config_file *config_file,
N_("default part message (leaving channel) "
"(note: content is evaluated, see /help eval; special "
"variables ${nick}, ${channel} and ${server} are replaced "
"by their value; \"%v\" is replaced by WeeChat version if "
"by their values; \"%v\" is replaced by WeeChat version if "
"there is no ${...} in string)"),
NULL, 0, 0,
default_value, value,
@@ -2378,7 +2378,7 @@ irc_config_server_new_option (struct t_config_file *config_file,
N_("default quit message (disconnecting from server) "
"(note: content is evaluated, see /help eval; special "
"variables ${nick}, ${channel} and ${server} are replaced "
"by their value; \"%v\" is replaced by WeeChat version if "
"by their values; \"%v\" is replaced by WeeChat version if "
"there is no ${...} in string)"),
NULL, 0, 0,
default_value, value,
@@ -2876,7 +2876,7 @@ irc_config_init ()
N_("comma separated list of words to highlight in channel buffers "
"(case insensitive, use \"(?-i)\" at beginning of words to "
"make them case sensitive; special variables $nick, $channel and "
"$server are replaced by their value), these words are added to "
"$server are replaced by their values), these words are added to "
"buffer property \"highlight_words\" only when buffer is created "
"(it does not affect current buffers), an empty string disables "
"default highlight on nick, examples: \"$nick\", \"(?-i)$nick\""),
@@ -2888,7 +2888,7 @@ irc_config_init ()
N_("comma separated list of words to highlight in private buffers "
"(case insensitive, use \"(?-i)\" at beginning of words to "
"make them case sensitive; special variables $nick, $channel and "
"$server are replaced by their value), these words are added to "
"$server are replaced by their values), these words are added to "
"buffer property \"highlight_words\" only when buffer is created "
"(it does not affect current buffers), an empty string disables "
"default highlight on nick, examples: \"$nick\", \"(?-i)$nick\""),
@@ -2900,7 +2900,7 @@ irc_config_init ()
N_("comma separated list of words to highlight in server buffers "
"(case insensitive, use \"(?-i)\" at beginning of words to "
"make them case sensitive; special variables $nick, $channel and "
"$server are replaced by their value), these words are added to "
"$server are replaced by their values), these words are added to "
"buffer property \"highlight_words\" only when buffer is created "
"(it does not affect current buffers), an empty string disables "
"default highlight on nick, examples: \"$nick\", \"(?-i)$nick\""),
+1 -1
View File
@@ -444,7 +444,7 @@ script_config_init ()
script_config_file, ptr_section,
"columns", "string",
N_("format of columns displayed in script buffer: following column "
"identifiers are replaced by their value: %a=author, %d=description, "
"identifiers are replaced by their values: %a=author, %d=description, "
"%D=date added, %e=extension, %l=language, %L=license, %n=name with "
"extension, %N=name, %r=requirements, %s=status, %t=tags, "
"%u=date updated, %v=version, %V=version loaded, %w=min_weechat, "