diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2017-02-18 13:06:15 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2017-02-18 13:06:15 +0100 |
commit | 7fbdc08f3ad50a676c64a00da7cd2010d34fcf6f (patch) | |
tree | 14c5dc3f56986cf763bd5354b1ad6bb47e9516f4 /doc/de/autogen | |
parent | ac007a1efd987bd318cc016cbdcfbe59aadf0dc9 (diff) | |
download | weechat-7fbdc08f3ad50a676c64a00da7cd2010d34fcf6f.zip |
core: update translations and auto-generated doc files
Diffstat (limited to 'doc/de/autogen')
-rw-r--r-- | doc/de/autogen/user/irc_commands.adoc | 74 |
1 files changed, 42 insertions, 32 deletions
diff --git a/doc/de/autogen/user/irc_commands.adoc b/doc/de/autogen/user/irc_commands.adoc index 0ac7deee9..8e94738c3 100644 --- a/doc/de/autogen/user/irc_commands.adoc +++ b/doc/de/autogen/user/irc_commands.adoc @@ -16,19 +16,23 @@ target: Servername ---- /allchan [-current] [-exclude=<channel>[,<channel>...]] <command> [<arguments>] + [-current] -include=<channel>[,<channel>...] <command> [<arguments>] - -current: führt einen Befehl aus der an alle Channels des aktuellen Servers gesendet wird - -exclude: dient zum Ausschluss ausgewählter Channels (Platzhalter "*" kann verwendet werden) - command: Befehl der ausgeführt werden soll -arguments: Argumente für Befehl (Variablen die genutzt werden können und durch das Äquivalent ersetzt wird: $nick, $channel und $server) + -current: execute command for channels of current server only + -exclude: exclude some channels (wildcard "*" is allowed) + -include: include only some channels (wildcard "*" is allowed) + command: command to execute +arguments: arguments for command (special variables $nick, $channel and $server are replaced by their value) -Beispiele: - führe den Befehl '/me Ich teste gerade etwas...' für alle Channels aus: - /allchan me Ich teste gerade etwas... - schicke 'Hallo Welt' an jeden Channel, ausgenommen an den #weechat Channel: - /allchan -exclude=#weechat msg * Hallo Welt - schicke 'Hallo Welt' an jeden Channel, ausgenommen an den #weechat Channel und Channels die mit #linux beginnen: - /allchan -exclude=#weechat,#linux* msg * Hallo Welt +Examples: + execute '/me is testing' on all channels: + /allchan me is testing + say 'hello' everywhere but not on #weechat: + /allchan -exclude=#weechat msg * hello + say 'hello' everywhere but not on #weechat and channels beginning with #linux: + /allchan -exclude=#weechat,#linux* msg * hello + say 'hello' on all channels beginning with #linux: + /allchan -include=#linux* msg * hello ---- [[command_irc_allpv]] @@ -36,20 +40,24 @@ Beispiele: ---- /allpv [-current] [-exclude=<nick>[,<nick>...]] <command> [<arguments>] - - -current: führt einen Befehl aus der für alle privaten Buffer, des aktuellen Servers, Anwendung findet - -exclude: dient zum Ausschluss ausgewählter Nicks (Platzhalter "*" kann verwendet werden) - command: Befehl der ausgeführt werden soll -arguments: Argumente für Befehl (Variablen die genutzt werden können und durch das Äquivalent ersetzt wird: $nick, $channel und $server) - -Beispiele: - führe den Befehl '/me Ich teste gerade etwas...' für alle privaten Buffer aus: - /allpv me Ich teste gerade etwas... - schicke 'Hallo' an alle, ausgenommen an Nick foo: - /allpv -exclude=foo msg * Hallo - schicke 'Hallo' an alle, ausgenommen für Nick foo und Nicks die mit bar beginnen: - /allpv -exclude=foo,bar* msg * Hallo - schließe alle privaten Buffer: + [-current] -include=<nick>[,<nick>...] <command> [<arguments>] + + -current: execute command for private buffers of current server only + -exclude: exclude some nicks (wildcard "*" is allowed) + -include: include only some nicks (wildcard "*" is allowed) + command: command to execute +arguments: arguments for command (special variables $nick, $channel and $server are replaced by their value) + +Examples: + execute '/me is testing' on all private buffers: + /allpv me is testing + say 'hello' everywhere but not for nick foo: + /allpv -exclude=foo msg * hello + say 'hello' everywhere but not for nick foo and nicks beginning with bar: + /allpv -exclude=foo,bar* msg * hello + say 'hello' for all nicks beginning with bar: + /allpv -include=bar* msg * hello + close all private buffers: /allpv close ---- @@ -58,17 +66,19 @@ Beispiele: ---- /allserv [-exclude=<server>[,<server>...]] <command> [<arguments>] + -include=<server>[,<server>...] <command> [<arguments>] - -exclude: dient zum Ausschluss ausgewählter Server (Platzhalter "*" kann verwendet werden) - command: Befehl der ausgeführt werden soll -arguments: Argumente für Befehl (Variablen die genutzt werden können und durch das Äquivalent ersetzt wird: $nick, $channel und $server) + -exclude: exclude some servers (wildcard "*" is allowed) + -include: include only some servers (wildcard "*" is allowed) + command: command to execute +arguments: arguments for command (special variables $nick, $channel and $server are replaced by their value) -Beispiele: - ändere den Nick auf allen Servern: +Examples: + change nick on all servers: /allserv nick newnick - setzt den Status, auf allen Servern,auf abwesend: + set away on all servers: /allserv away I'm away - führt ein whois mit meinem nick auf allen Servern aus: + do a whois on my nick on all servers: /allserv whois $nick ---- |