summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2020-06-30 20:54:31 +0200
committerSébastien Helleu <flashcode@flashtux.org>2020-06-30 20:54:31 +0200
commit9510301f46388556cecc5465c56813c36285ad2c (patch)
treec473fd7cf3dcad4f8edd0a5dc3a3d0edbb6e67ef /doc
parentb17e1bcf8902e88e2f9579101c6a1cfa35d5b83d (diff)
downloadweechat-9510301f46388556cecc5465c56813c36285ad2c.zip
doc: harmonize example of pointers in plugin API reference and relay protocol
Diffstat (limited to 'doc')
-rw-r--r--doc/en/weechat_plugin_api.en.adoc24
-rw-r--r--doc/en/weechat_relay_protocol.en.adoc12
-rw-r--r--doc/fr/weechat_plugin_api.fr.adoc24
-rw-r--r--doc/fr/weechat_relay_protocol.fr.adoc12
-rw-r--r--doc/it/weechat_plugin_api.it.adoc30
-rw-r--r--doc/ja/weechat_plugin_api.ja.adoc31
-rw-r--r--doc/ja/weechat_relay_protocol.ja.adoc18
7 files changed, 85 insertions, 66 deletions
diff --git a/doc/en/weechat_plugin_api.en.adoc b/doc/en/weechat_plugin_api.en.adoc
index e9510755b..fe1c19d37 100644
--- a/doc/en/weechat_plugin_api.en.adoc
+++ b/doc/en/weechat_plugin_api.en.adoc
@@ -9560,7 +9560,7 @@ Line data sent to the callback is a hashtable, with following values
| buffer |
Buffer pointer. |
Buffer pointer. |
- `+0x12345678+`
+ `+0x1234abcd+`
| buffer_name |
Buffer name. |
@@ -11506,39 +11506,39 @@ List of modifiers used by WeeChat and plugins:
New content of message.
| [[hook_modifier_bar_condition_yyy]] bar_condition_yyy ^(2)^ |
- String with window pointer ("0x123..") |
+ String with window pointer (eg: "0x1234abcd") |
Empty string. |
"1" to display bar, "0" to hide it.
| [[hook_modifier_history_add]] history_add +
_(WeeChat ≥ 0.3.2)_ |
- String with buffer pointer ("0x123..") |
+ String with buffer pointer (eg: "0x1234abcd") |
Content of command line to add in command history (buffer and global). |
String added to command history.
| [[hook_modifier_input_text_content]] input_text_content |
- String with buffer pointer ("0x123..") |
+ String with buffer pointer (eg: "0x1234abcd") |
Content of command line. |
New content of command line.
| [[hook_modifier_input_text_display]] input_text_display |
- String with buffer pointer ("0x123..") |
+ String with buffer pointer (eg: "0x1234abcd") |
Content of command line, without cursor tag. |
New string, for display only (command line is not changed).
| [[hook_modifier_input_text_display_with_cursor]] input_text_display_with_cursor |
- String with buffer pointer ("0x123..") |
+ String with buffer pointer (eg: "0x1234abcd") |
Content of command line, with cursor tag. |
New string, for display only (command line is not changed).
| [[hook_modifier_input_text_for_buffer]] input_text_for_buffer +
_(WeeChat ≥ 0.3.7)_ |
- String with buffer pointer ("0x123..") |
+ String with buffer pointer (eg: "0x1234abcd") |
Content of command line sent to buffer (text or command). |
New content of command line sent to buffer.
| [[hook_modifier_weechat_print]] weechat_print |
- buffer pointer ("0x123...") + ";" + tags ^(3)^ |
+ buffer pointer (eg: "0x1234abcd") + ";" + tags ^(3)^ |
Message printed. |
New message printed. +
For more information on the hooks called when a line is printed, see
@@ -12078,13 +12078,13 @@ Content of hashtable sent to callback (keys and values are of type "string"):
"button1", "button2-gesture-left", ... |
| _window | Pointer to window. |
- "0x12345678" | ""
+ "0x1234abcd" | ""
| _window_number | Number of window . |
"1" ... "n" | "*"
| _buffer | Pointer to buffer. |
- "0x12345678" | ""
+ "0x1234abcd" | ""
| _buffer_number | Number of buffer. |
"1" ... "n" | "-1"
@@ -12106,7 +12106,7 @@ Content of hashtable sent to callback (keys and values are of type "string"):
| _chat_line | Pointer to line +
_(WeeChat ≥ 1.2)_. |
- "0x12345678" | ""
+ "0x1234abcd" | ""
| _chat_line_x | Column in line ^(3)^. |
"0" ... "n" | "-1"
@@ -12161,7 +12161,7 @@ Content of hashtable sent to callback (keys and values are of type "string"):
| _bar_window | Pointer to bar window +
_(WeeChat ≥ 2.9)_. |
- "0x12345678" | ""
+ "0x1234abcd" | ""
|===
[NOTE]
diff --git a/doc/en/weechat_relay_protocol.en.adoc b/doc/en/weechat_relay_protocol.en.adoc
index 869c66e3b..15c512b58 100644
--- a/doc/en/weechat_relay_protocol.en.adoc
+++ b/doc/en/weechat_relay_protocol.en.adoc
@@ -391,7 +391,7 @@ Arguments:
* _path_: path to a hdata, with format: "hdata:pointer/var/var/.../var", the
last var is the hdata returned:
** _hdata_: name of hdata
-** _pointer_: pointer ("0x12345") or list name (for example: "gui_buffers")
+** _pointer_: pointer (eg: "0x1234abcd") or list name (for example: "gui_buffers")
(count allowed, see below)
** _var_: a variable name in parent hdata (previous name in path)
(count allowed, see below)
@@ -746,7 +746,7 @@ Syntax:
Arguments:
-* _buffer_: pointer (_0x12345_) or full name of buffer (for example:
+* _buffer_: pointer (eg: "0x1234abcd") or full name of buffer (for example:
_core.weechat_ or _irc.freenode.#weechat_)
Examples:
@@ -947,7 +947,7 @@ Syntax:
Arguments:
-* _buffer_: pointer (_0x12345_) or full name of buffer (for example:
+* _buffer_: pointer (eg: "0x1234abcd") or full name of buffer (for example:
_core.weechat_ or _irc.freenode.#weechat_)
* _data_: data to send to buffer: if beginning by `/`, this will be executed as
a command on buffer, otherwise text is sent as input of buffer
@@ -982,7 +982,7 @@ Syntax:
Arguments:
-* _buffer_: pointer (_0x12345_) or full name of buffer (for example:
+* _buffer_: pointer (eg: "0x1234abcd") or full name of buffer (for example:
_core.weechat_ or _irc.freenode.#weechat_)
* _position_: position for completion in string (starts to 0);
if the value is -1, the position is the length of _data_ (so the completion
@@ -1143,7 +1143,7 @@ Syntax:
Arguments:
-* _buffer_: pointer (_0x12345_) or full name of buffer (for example:
+* _buffer_: pointer (eg: "0x1234abcd") or full name of buffer (for example:
_core.weechat_ or _irc.freenode.#weechat_); name "*" can be used to
specify all buffers
* _options_: one of following keywords, separated by commas (default is
@@ -1208,7 +1208,7 @@ Syntax:
Arguments:
-* _buffer_: pointer (_0x12345_) or full name of buffer (for example:
+* _buffer_: pointer (eg: "0x1234abcd") or full name of buffer (for example:
_core.weechat_ or _irc.freenode.#weechat_); name "*" can be used to
specify all buffers
* _options_: one of following keywords, separated by commas (default is
diff --git a/doc/fr/weechat_plugin_api.fr.adoc b/doc/fr/weechat_plugin_api.fr.adoc
index 5bf3393a6..884aa2673 100644
--- a/doc/fr/weechat_plugin_api.fr.adoc
+++ b/doc/fr/weechat_plugin_api.fr.adoc
@@ -9748,7 +9748,7 @@ de hachage, avec les valeurs suivantes (les clés et valeurs sont des chaînes)
| buffer |
Pointeur vers le tampon. |
Pointeur vers le tampon. |
- `+0x12345678+`
+ `+0x1234abcd+`
| buffer_name |
Nom du tampon. |
@@ -11741,42 +11741,42 @@ Liste des modificateurs utilisés par WeeChat et les extensions :
Nouveau contenu du message.
| [[hook_modifier_bar_condition_yyy]] bar_condition_yyy ^(2)^ |
- Chaîne avec un pointeur vers la fenêtre ("0x123..") |
+ Chaîne avec un pointeur vers la fenêtre (par exemple : "0x1234abcd") |
Chaîne vide. |
"1" pour afficher la barre, "0" pour la cacher.
| [[hook_modifier_history_add]] history_add +
_(WeeChat ≥ 0.3.2)_ |
- Chaîne avec un pointeur vers le tampon ("0x123..") |
+ Chaîne avec un pointeur vers le tampon (par exemple : "0x1234abcd") |
Contenu de la ligne de commande à ajouter à l'historique des commandes
(tampon et global). |
Chaîne ajoutée à l'historique des commandes.
| [[hook_modifier_input_text_content]] input_text_content |
- Chaîne avec un pointeur vers le tampon ("0x123..") |
+ Chaîne avec un pointeur vers le tampon (par exemple : "0x1234abcd") |
Contenu de la ligne de commande. |
Nouvelle chaîne pour la ligne de commande.
| [[hook_modifier_input_text_display]] input_text_display |
- Chaîne avec un pointeur vers le tampon ("0x123..") |
+ Chaîne avec un pointeur vers le tampon (par exemple : "0x1234abcd") |
Contenu de la ligne de commande, sans le code du curseur dedans. |
Nouvelle chaîne, pour affichage seulement (la ligne de commande n'est pas
modifiée).
| [[hook_modifier_input_text_display_with_cursor]] input_text_display_with_cursor |
- Chaîne avec un pointeur vers le tampon ("0x123..") |
+ Chaîne avec un pointeur vers le tampon (par exemple : "0x1234abcd") |
Contenu de la ligne de commande, avec le code du curseur dedans. |
Nouvelle chaîne, pour affichage seulement (la ligne de commande n'est pas
modifiée).
| [[hook_modifier_input_text_for_buffer]] input_text_for_buffer +
_(WeeChat ≥ 0.3.7)_ |
- Chaîne avec un pointeur vers le tampon ("0x123..") |
+ Chaîne avec un pointeur vers le tampon (par exemple : "0x1234abcd") |
Contenu de la ligne de commande envoyée au tampon (texte ou commande). |
Nouveau contenu de la ligne de commande envoyée au tampon.
| [[hook_modifier_weechat_print]] weechat_print |
- pointeur vers le tampon ("0x123..") + ";" + étiquettes ^(3)^ |
+ pointeur vers le tampon (par exemple : "0x1234abcd") + ";" + étiquettes ^(3)^ |
Message affiché. |
Nouveau message affiché. +
Pour plus d'informations sur les "hooks" appelés lorsqu'une ligne est affichée,
@@ -12344,13 +12344,13 @@ valeurs sont de type "string") :
"button1", "button2-gesture-left", ... |
| _window | Pointeur vers la fenêtre. |
- "0x12345678" | ""
+ "0x1234abcd" | ""
| _window_number | Numéro de la fenêtre. |
"1" ... "n" | "*"
| _buffer | Pointeur vers le tampon. |
- "0x12345678" | ""
+ "0x1234abcd" | ""
| _buffer_number | Numéro du tampon. |
"1" ... "n" | "-1"
@@ -12372,7 +12372,7 @@ valeurs sont de type "string") :
| _chat_line | Pointeur vers la ligne +
_(WeeChat ≥ 1.2)_. |
- "0x12345678" | ""
+ "0x1234abcd" | ""
| _chat_line_x | Colonne de la ligne ^(3)^. |
"0" ... "n" | "-1"
@@ -12427,7 +12427,7 @@ valeurs sont de type "string") :
| _bar_window | Pointeur vers la fenêtre de barre +
_(WeeChat ≥ 2.9)_. |
- "0x12345678" | ""
+ "0x1234abcd" | ""
|===
[NOTE]
diff --git a/doc/fr/weechat_relay_protocol.fr.adoc b/doc/fr/weechat_relay_protocol.fr.adoc
index 977fa146b..64d139d67 100644
--- a/doc/fr/weechat_relay_protocol.fr.adoc
+++ b/doc/fr/weechat_relay_protocol.fr.adoc
@@ -400,7 +400,7 @@ Paramètres :
* _chemin_ : chemin vers le hdata, avec le format :
"hdata:pointeur/var/var/.../var", la dernière variable est le hdata retourné :
** _hdata_ : nom du hdata
-** _pointeur_ : pointeur ("0x12345") ou nom de liste (par exemple :
+** _pointeur_ : pointeur (par exemple : "0x1234abcd") ou nom de liste (par exemple :
"gui_buffers") (nombre autorisé, voir ci-dessous)
** _var_ : un nom de variable dans le hdata parent (nom précédent dans le
chemin) (nombre autorisé, voir ci-dessous)
@@ -758,7 +758,7 @@ Syntaxe :
Paramètres :
-* _tampon_ : pointeur (_0x12345_) ou nom complet du tampon (par exemple :
+* _tampon_ : pointeur (par exemple : "0x1234abcd") ou nom complet du tampon (par exemple :
_core.weechat_ ou _irc.freenode.#weechat_)
Exemples :
@@ -959,7 +959,7 @@ Syntaxe :
Paramètres :
-* _tampon_ : pointeur (_0x12345_) ou nom complet du tampon (par exemple :
+* _tampon_ : pointeur (par exemple : "0x1234abcd") ou nom complet du tampon (par exemple :
_core.weechat_ ou _irc.freenode.#weechat_)
* _données_ : données à envoyer au tampon : si elles commencent par `/`,
cela sera exécuté comme une commande sur le tampon, sinon le texte est envoyé
@@ -995,7 +995,7 @@ Syntaxe :
Paramètres :
-* _tampon_ : pointeur (_0x12345_) ou nom complet du tampon (par exemple :
+* _tampon_ : pointeur (par exemple : "0x1234abcd") ou nom complet du tampon (par exemple :
_core.weechat_ ou _irc.freenode.#weechat_)
* _position_ : position dans la chaîne pour la complétion (démarre à 0) ;
si la valeur est -1, la position est la longueur de _données_ (donc la
@@ -1156,7 +1156,7 @@ Syntaxe :
Paramètres :
-* _tampon_ : pointeur (_0x12345_) ou nom complet du tampon (par exemple :
+* _tampon_ : pointeur (par exemple : "0x1234abcd") ou nom complet du tampon (par exemple :
_core.weechat_ ou _irc.freenode.#weechat_); le nom "*" peut être utilisé pour
spécifier tous les tampons
* _options_ : un ou plusieurs mots-clés, séparés par des virgules (par défaut
@@ -1224,7 +1224,7 @@ Syntaxe :
Paramètres :
-* _tampon_ : pointeur (_0x12345_) ou nom complet du tampon (par exemple :
+* _tampon_ : pointeur (par exemple : "0x1234abcd") ou nom complet du tampon (par exemple :
_core.weechat_ ou _irc.freenode.#weechat_); le nom "*" peut être utilisé pour
spécifier tous les tampons
* _options_ : un ou plusieurs mots-clés, séparés par des virgules (le défaut est
diff --git a/doc/it/weechat_plugin_api.it.adoc b/doc/it/weechat_plugin_api.it.adoc
index effabdd9e..aa1709eae 100644
--- a/doc/it/weechat_plugin_api.it.adoc
+++ b/doc/it/weechat_plugin_api.it.adoc
@@ -9875,7 +9875,7 @@ Line data sent to the callback is a hashtable, with following values
| buffer |
Buffer pointer. |
Buffer pointer. |
- `+0x12345678+`
+ `+0x1234abcd+`
| buffer_name |
Buffer name. |
@@ -11965,41 +11965,47 @@ List of modifiers used by WeeChat and plugins:
(to fit in 512 bytes by default). |
Nuovo contenuto del messaggio.
+// TRANSLATION MISSING
| [[hook_modifier_bar_condition_yyy]] bar_condition_yyy ^(2)^ |
- Stringa con puntatore alla finestra ("0x123..") |
+ Stringa con puntatore alla finestra (eg: "0x1234abcd") |
Stringa vuota. |
"1" per visualizzare la barra, "0" per nasconderla.
+// TRANSLATION MISSING
| [[hook_modifier_history_add]] history_add +
_(WeeChat ≥ 0.3.2)_ |
- Stringa con puntatore al buffer ("0x123..") |
+ Stringa con puntatore al buffer (eg: "0x1234abcd") |
Contenuto della riga di comando da aggiungere nella cronologia comandi (buffer e globale). |
Stringa aggiunta alla cronologia comandi.
+// TRANSLATION MISSING
| [[hook_modifier_input_text_content]] input_text_content |
- Stringa con puntatore al buffer ("0x123..") |
+ Stringa con puntatore al buffer (eg: "0x1234abcd") |
Contenuto della riga di comando. |
Nuovo contenuto della riga di comando.
+// TRANSLATION MISSING
| [[hook_modifier_input_text_display]] input_text_display |
- Stringa con puntatore al buffer ("0x123..") |
+ Stringa con puntatore al buffer (eg: "0x1234abcd") |
Contenuto della riga di comando, senza tag al cursore. |
Nuova stringa, solo da mostrare (la riga di comando non viene modificata).
+// TRANSLATION MISSING
| [[hook_modifier_input_text_display_with_cursor]] input_text_display_with_cursor |
- Stringa con puntatore al buffer ("0x123..") |
+ Stringa con puntatore al buffer (eg: "0x1234abcd") |
Contenuto della riga di comando, con tag al cursore. |
Nuova stringa, solo da mostrare (la riga di comando non viene modificata).
+// TRANSLATION MISSING
| [[hook_modifier_input_text_for_buffer]] input_text_for_buffer +
_(WeeChat ≥ 0.3.7)_ |
- Stringa con puntatore al buffer ("0x123..") |
+ Stringa con puntatore al buffer (eg: "0x1234abcd") |
Contenuto della riga di comando inviata al buffer (testo o comando). |
Nuovo contenuto della riga di comando inviata al buffer.
// TRANSLATION MISSING
| [[hook_modifier_weechat_print]] weechat_print |
- buffer pointer ("0x123...") + ";" + tags ^(3)^ |
+ buffer pointer (eg: "0x1234abcd") + ";" + tags ^(3)^ |
Messaggio stampato. |
Nuovo messaggio stampato. +
For more information on the hooks called when a line is printed, see
@@ -12566,13 +12572,13 @@ Contenuto della tabella hash inviata alla callback (tasti e valori sono di tipo
"button1", "button2-gesture-left", ... |
| _window | Puntatore alla finestra. |
- "0x12345678" | ""
+ "0x1234abcd" | ""
| _window_number | Numero della finestra. |
"1" ... "n" | "*"
| _buffer | Puntatore al buffer. |
- "0x12345678" | ""
+ "0x1234abcd" | ""
| _buffer_number | Numero del buffer. |
"1" ... "n" | "-1"
@@ -12595,7 +12601,7 @@ Contenuto della tabella hash inviata alla callback (tasti e valori sono di tipo
// TRANSLATION MISSING
| _chat_line | Pointer to line +
_(WeeChat ≥ 1.2)_. |
- "0x12345678" | ""
+ "0x1234abcd" | ""
| _chat_line_x | Colonna nella riga ^(3)^. |
"0" ... "n" | "-1"
@@ -12651,7 +12657,7 @@ Contenuto della tabella hash inviata alla callback (tasti e valori sono di tipo
// TRANSLATION MISSING
| _bar_window | Pointer to bar window +
_(WeeChat ≥ 2.9)_. |
- "0x12345678" | ""
+ "0x1234abcd" | ""
|===
[NOTE]
diff --git a/doc/ja/weechat_plugin_api.ja.adoc b/doc/ja/weechat_plugin_api.ja.adoc
index 6e37c7261..3200d6437 100644
--- a/doc/ja/weechat_plugin_api.ja.adoc
+++ b/doc/ja/weechat_plugin_api.ja.adoc
@@ -9552,7 +9552,7 @@ struct t_hook *weechat_hook_line (const char *buffer_type,
| buffer |
バッファポインタ |
バッファポインタ |
- `+0x12345678+`
+ `+0x1234abcd+`
| buffer_name |
バッファ名 |
@@ -11500,40 +11500,47 @@ WeeChat とプラグインが使う修飾子のリスト:
(自動分割後、自動分割はデフォルトでメッセージを 512 バイト内に収まるように分割します)。|
メッセージの新しい内容
+// TRANSLATION MISSING
| [[hook_modifier_bar_condition_yyy]] bar_condition_yyy ^(2)^ |
- ウィンドウへのポインタの文字列 ("0x123..") |
+ ウィンドウへのポインタの文字列 (eg: "0x1234abcd") |
空文字列 |
バーを表示する場合は "1"、隠す場合は "0"
+// TRANSLATION MISSING
| [[hook_modifier_history_add]] history_add +
_(WeeChat バージョン 0.3.2 以上で利用可)_ |
- バッファへのポインタの文字列 ("0x123..") |
+ バッファへのポインタの文字列 (eg: "0x1234abcd") |
コマンド履歴に追加するコマンドラインの内容 (バッファとグローバル履歴) |
コマンド履歴に追加した文字列
+// TRANSLATION MISSING
| [[hook_modifier_input_text_content]] input_text_content |
- バッファへのポインタの文字列 ("0x123..") |
+ バッファへのポインタの文字列 (eg: "0x1234abcd") |
コマンドラインの内容 |
コマンドラインの新しい内容
+// TRANSLATION MISSING
| [[hook_modifier_input_text_display]] input_text_display |
- バッファへのポインタの文字列 ("0x123..") |
+ バッファへのポインタの文字列 (eg: "0x1234abcd") |
カーソルタグを含まないコマンドラインの内容 |
新しい文字列、表示のみ (コマンドラインは変化しない)
+// TRANSLATION MISSING
| [[hook_modifier_input_text_display_with_cursor]] input_text_display_with_cursor |
- バッファへのポインタの文字列 ("0x123..") |
+ バッファへのポインタの文字列 (eg: "0x1234abcd") |
カーソルタグを含むコマンドラインの内容 |
新しい文字列、表示のみ (コマンドラインは変化しない)
+// TRANSLATION MISSING
| [[hook_modifier_input_text_for_buffer]] input_text_for_buffer +
_(WeeChat バージョン 0.3.7 以上で利用可)_ |
- バッファへのポインタの文字列 ("0x123..") |
+ バッファへのポインタの文字列 (eg: "0x1234abcd") |
バッファに送信するコマンドラインの内容 (テキストまたはコマンド) |
バッファに送信するコマンドラインの新しい内容
+// TRANSLATION MISSING
| [[hook_modifier_weechat_print]] weechat_print |
- buffer pointer ("0x123...") + ";" + tags ^(3)^ |
+ buffer pointer (eg: "0x1234abcd") + ";" + tags ^(3)^ |
表示されたメッセージ |
表示される新しいメッセージ +
行が表示される際に呼び出されるフックについての詳細は
@@ -12076,13 +12083,13 @@ info を使う前にエリアが一致していることを確認して下さい
"button1"、"button2-gesture-left"、... |
| _window | ウィンドウへのポインタ |
- "0x12345678" | ""
+ "0x1234abcd" | ""
| _window_number | ウィンドウの番号 |
"1" ... "n" | "*"
| _buffer | バッファへのポインタ |
- "0x12345678" | ""
+ "0x1234abcd" | ""
| _buffer_number | バッファの番号 |
"1" ... "n" | "-1"
@@ -12104,7 +12111,7 @@ info を使う前にエリアが一致していることを確認して下さい
| _chat_line | 行へのポインタ +
_(WeeChat バージョン 1.2 以上で利用可)_ |
- "0x12345678" | ""
+ "0x1234abcd" | ""
| _chat_line_x | 行中の列番号 ^(3)^ |
"0" ... "n" | "-1"
@@ -12160,7 +12167,7 @@ info を使う前にエリアが一致していることを確認して下さい
// TRANSLATION MISSING
| _bar_window | Pointer to bar window +
_(WeeChat ≥ 2.9)_. |
- "0x12345678" | ""
+ "0x1234abcd" | ""
|===
[NOTE]
diff --git a/doc/ja/weechat_relay_protocol.ja.adoc b/doc/ja/weechat_relay_protocol.ja.adoc
index abfa5a614..f026c97d2 100644
--- a/doc/ja/weechat_relay_protocol.ja.adoc
+++ b/doc/ja/weechat_relay_protocol.ja.adoc
@@ -406,7 +406,8 @@ _hdata_ を要求。
* _path_: hdata へのパス、書式: "hdata:pointer/var/var/.../var"、最後の
var に対応する hdata が返されます:
** _hdata_: hdata の名前
-** _pointer_: ポインタ ("0x12345") またはリスト名 (例: "gui_buffers")
+// TRANSLATION MISSING
+** _pointer_: ポインタ (eg: "0x1234abcd") またはリスト名 (例: "gui_buffers")
(番号も可能、以下を参照)
** _var_: 親 hdata に含まれる変数名 (パスで言う 1 つ前の名前)
(番号も可能、以下を参照)
@@ -764,7 +765,8 @@ inl:
引数:
-* _buffer_: ポインタ (_0x12345_) またはバッファの完全な名前 (例:
+// TRANSLATION MISSING
+* _buffer_: ポインタ (eg: "0x1234abcd") またはバッファの完全な名前 (例:
_core.weechat_ または _irc.freenode.#weechat_)
// TRANSLATION MISSING
@@ -966,7 +968,8 @@ hda:
引数:
-* _buffer_: ポインタ (_0x12345_) またはバッファの完全な名前 (例:
+// TRANSLATION MISSING
+* _buffer_: ポインタ (eg: "0x1234abcd") またはバッファの完全な名前 (例:
_core.weechat_ または _irc.freenode.#weechat_)
* _data_: バッファに送信するデータ: `/`
で始まる場合、バッファ内でコマンドとして実行されます、それ以外の場合、テキストはバッファの入力として送信されます。
@@ -1002,7 +1005,8 @@ a string for a given buffer.
引数:
-* _buffer_: pointer (_0x12345_) or full name of buffer (for example:
+// TRANSLATION MISSING
+* _buffer_: pointer (eg: "0x1234abcd") or full name of buffer (for example:
_core.weechat_ or _irc.freenode.#weechat_)
* _position_: position for completion in string (starts to 0);
if the value is -1, the position is the length of _data_ (so the completion
@@ -1163,7 +1167,8 @@ _WeeChat バージョン 0.4.1 で更新。_
引数:
-* _buffer_: ポインタ (_0x12345_) またはバッファの完全な名前 (例:
+// TRANSLATION MISSING
+* _buffer_: ポインタ (eg: "0x1234abcd") またはバッファの完全な名前 (例:
_core.weechat_ または _irc.freenode.#weechat_);
全てのバッファを指定するには "*" を使ってください
* _options_: 以下に挙げるキーワード、コンマ区切り ("*" に対するデフォルトは
@@ -1229,7 +1234,8 @@ _WeeChat バージョン 0.4.1 で更新。_
引数:
-* _buffer_: ポインタ (_0x12345_) またはバッファの完全な名前 (例:
+// TRANSLATION MISSING
+* _buffer_: ポインタ (eg: "0x1234abcd") またはバッファの完全な名前 (例:
_core.weechat_ または _irc.freenode.#weechat_);
全てのバッファを指定するには "*" を使ってください
* _options_: 以下に挙げるキーワード、コンマ区切り ("*" に対するデフォルトは