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/de | |
parent | a9b976274e9cad44151128d8d228e6989ba2f813 (diff) | |
download | weechat-4a41625989e02cd194938e580923b484e0bd4a0f.zip |
irc: add variable "${target}" (target nick) in commands /kick and /kickban
Diffstat (limited to 'doc/de')
-rw-r--r-- | doc/de/includes/autogen_user_commands.de.adoc | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/de/includes/autogen_user_commands.de.adoc b/doc/de/includes/autogen_user_commands.de.adoc index 8c55357e7..4e5babba6 100644 --- a/doc/de/includes/autogen_user_commands.de.adoc +++ b/doc/de/includes/autogen_user_commands.de.adoc @@ -359,9 +359,9 @@ Beispiele: ---- /kick [<channel>] <nick> [<reason>] -channel: Channelname - nick: Nick der rausgeworfen werden soll - reason: Begründung für den Rauswurf (Variablen die genutzt werden können: $nick, $channel und $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: Channelname ---- /kickban [<channel>] <nick> [<reason>] -channel: Channelname - nick: Nickname der rausgeworfen und gebannt werden soll - reason: Begründung weshalb der User rausgeworfen wurde (Variablen die genutzt werden können: $nick, $channel und $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) -Es ist möglich kick/ban mittels einer Maske auszuführen. Der Nick wird aus der Maske heraus gefiltert und durch "*" ersetzt. +It is possible to kick/ban with a mask, nick will be extracted from mask and replaced by "*". -Beispiel: - sperre "*!*@host.com" und kicke dann "toto": +Example: + ban "*!*@host.com" and then kick "toto": /kickban toto!*@host.com ---- |