diff options
Diffstat (limited to 'doc/de')
-rw-r--r-- | doc/de/autogen/plugin_api/infos_hashtable.asciidoc | 2 | ||||
-rw-r--r-- | doc/de/autogen/user/irc_options.asciidoc | 5 | ||||
-rw-r--r-- | doc/de/weechat_scripting.de.asciidoc | 21 | ||||
-rw-r--r-- | doc/de/weechat_user.de.asciidoc | 9 |
4 files changed, 34 insertions, 3 deletions
diff --git a/doc/de/autogen/plugin_api/infos_hashtable.asciidoc b/doc/de/autogen/plugin_api/infos_hashtable.asciidoc index d3747f0cb..5824dba3f 100644 --- a/doc/de/autogen/plugin_api/infos_hashtable.asciidoc +++ b/doc/de/autogen/plugin_api/infos_hashtable.asciidoc @@ -6,7 +6,7 @@ |=== | Erweiterung | Name | Beschreibung | Hashtable (Eingabe) | Hashtable (Ausgabe) -| irc | irc_message_parse | Parse eine IRC Nachricht | "message": IRC Nachricht, "server": Servername (optional) | "tags": Tags, "message_without_tags": Nachrichten ohne Tags, "nick": Nick, "host": Host, "command": Befehl, "channel": Channel, "arguments": Argumente (schließt Channel ein), "text": Text (zum Beispiel eine Nachricht von einem User), "pos_text": Index des Textes innerhalb einer Nachricht ("-1" falls Text nicht gefunden wird) +| irc | irc_message_parse | Parse eine IRC Nachricht | "message": IRC Nachricht, "server": Servername (optional) | "tags": tags, "message_without_tags": message without the tags, "nick": nick, "host": host, "command": command, "channel": channel, "arguments": arguments (includes channel), "text": text (for example user message), "pos_command": index of "command" message ("-1" if "command" was not found), "pos_arguments": index of "arguments" message ("-1" if "arguments" was not found), "pos_channel": index of "channel" message ("-1" if "channel" was not found), "pos_text": index of "text" message ("-1" if "text" was not found) | irc | irc_message_split | dient zum Aufteilen einer überlangen IRC Nachricht (in maximal 512 Bytes große Nachrichten) | "message": IRC Nachricht, "server": Servername (optional) | "msg1" ... "msgN": Nachrichten die versendet werden sollen (ohne abschließendes "\r\n"), "args1" ... "argsN": Argumente für Nachrichten, "count": Anzahl der Nachrichten diff --git a/doc/de/autogen/user/irc_options.asciidoc b/doc/de/autogen/user/irc_options.asciidoc index 3eb879948..b4e6a0df4 100644 --- a/doc/de/autogen/user/irc_options.asciidoc +++ b/doc/de/autogen/user/irc_options.asciidoc @@ -392,6 +392,11 @@ ** Typ: Zeichenkette ** Werte: beliebige Zeichenkette (Standardwert: `"*!$ident@$host"`) +* [[option_irc.network.channel_encode]] *irc.network.channel_encode* +** Beschreibung: `decode/encode channel name inside messages using charset options (like it was done in WeeChat <= 1.2); it is recommended to keep that off if you use only UTF-8 in channel names; you can enable this option if you are using an exotic charset like ISO in channel names` +** Typ: boolesch +** Werte: on, off (Standardwert: `off`) + * [[option_irc.network.colors_receive]] *irc.network.colors_receive* ** Beschreibung: `wenn deaktiviert, werden Farben-Codes von eingehenden Nachrichten ignoriert` ** Typ: boolesch diff --git a/doc/de/weechat_scripting.de.asciidoc b/doc/de/weechat_scripting.de.asciidoc index 194254442..ce4a7eaca 100644 --- a/doc/de/weechat_scripting.de.asciidoc +++ b/doc/de/weechat_scripting.de.asciidoc @@ -961,8 +961,24 @@ Das Ergebnis ist eine Hashtabelle mit folgenden Schlüsseln der Text (zum Beispiel eine Nachricht eines Users) | `hello!` +// TRANSLATION MISSING +| pos_command | ≥ 1.3 | + The index of 'command' in message ("-1" if 'command' was not found) | + `47` + +// TRANSLATION MISSING +| pos_arguments | ≥ 1.3 | + The index of 'arguments' in message ("-1" if 'arguments' was not found) | + `55` + +// TRANSLATION MISSING +| pos_channel | ≥ 1.3 | + The index of 'channel' in message ("-1" if 'channel' was not found) | + `55` + +// TRANSLATION MISSING | pos_text | ≥ 1.3 | - der Index des Textes innerhalb der Nachricht ("-1" falls der Text nicht gefunden wurde) | + The index of 'text' in message ("-1" if 'text' was not found) | `65` |=== @@ -981,6 +997,9 @@ dict = weechat.info_get_hashtable( # "channel": "#weechat", # "arguments": "#weechat :hello!", # "text": "hello!", +# "pos_command": "47", +# "pos_arguments": "55", +# "pos_channel": "55", # "pos_text": "65", # } ---- diff --git a/doc/de/weechat_user.de.asciidoc b/doc/de/weechat_user.de.asciidoc index ebe2c6ab2..3ccd5232f 100644 --- a/doc/de/weechat_user.de.asciidoc +++ b/doc/de/weechat_user.de.asciidoc @@ -3323,7 +3323,14 @@ und die Daten in einer Hashtable gesichert: | channel | string | IRC Channel | arguments | string | Argumente des Befehls (Beinhaltet Wert von 'channel') | text | string | Text (zum Beipiel eine Nachricht eines Users) -| pos_text | string | Der Index des Textes in einer Nachricht ("-1" falls Text nicht gefunden wurde) +// TRANSLATION MISSING +| pos_command | string | The index of 'command' in message ("-1" if 'command' was not found) +// TRANSLATION MISSING +| pos_arguments | string | The index of 'arguments' in message ("-1" if 'arguments' was not found) +// TRANSLATION MISSING +| pos_channel | string | The index of 'channel' in message ("-1" if 'channel' was not found) +// TRANSLATION MISSING +| pos_text | string | The index of 'text' in message ("-1" if 'text' was not found) |=== Sofern es sich bei den Daten um einen Pointer handelt, kann die Variable `tg_signal_data` |