diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2021-05-29 14:26:30 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2021-05-29 14:26:30 +0200 |
commit | 4a41625989e02cd194938e580923b484e0bd4a0f (patch) | |
tree | 46c78a9c0346bb2504916810002d09f3a2b0b27a /doc/ja | |
parent | a9b976274e9cad44151128d8d228e6989ba2f813 (diff) | |
download | weechat-4a41625989e02cd194938e580923b484e0bd4a0f.zip |
irc: add variable "${target}" (target nick) in commands /kick and /kickban
Diffstat (limited to 'doc/ja')
-rw-r--r-- | doc/ja/includes/autogen_user_commands.ja.adoc | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/ja/includes/autogen_user_commands.ja.adoc b/doc/ja/includes/autogen_user_commands.ja.adoc index b4ef5a867..9748e1774 100644 --- a/doc/ja/includes/autogen_user_commands.ja.adoc +++ b/doc/ja/includes/autogen_user_commands.ja.adoc @@ -359,9 +359,9 @@ Examples: ---- /kick [<channel>] <nick> [<reason>] -channel: チャンネル名 - nick: ニックネーム - reason: 理由 (特殊変数 $nick、$channel、$server はそれぞれの値に置換されます) +channel: channel name + nick: nick + reason: reason (evaluated, see /help eval; special variables ${nick} (self nick), ${target} (target nick), ${channel} and ${server} are replaced by their values) ---- [[command_irc_kickban]] @@ -370,14 +370,14 @@ channel: チャンネル名 ---- /kickban [<channel>] <nick> [<reason>] -channel: チャンネル名 - nick: ニックネーム - reason: 理由 (特殊変数 $nick、$channel、$server はそれぞれの値に置換されます) +channel: channel name + nick: nick + reason: reason (evaluated, see /help eval; special variables ${nick} (self nick), ${target} (target nick), ${channel} and ${server} are replaced by their values) -キックと参加禁止にマスクを使うことが可能で、"*" のマスク展開後にマッチするニックネームがこれらの対象になります。 +It is possible to kick/ban with a mask, nick will be extracted from mask and replaced by "*". -例: - "*!*@host.com" を参加禁止して "toto" をキック: +Example: + ban "*!*@host.com" and then kick "toto": /kickban toto!*@host.com ---- |