diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2020-06-30 21:01:11 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2020-06-30 21:01:11 +0200 |
commit | bde4b30021e6eba03fbe27299a8730fb63083238 (patch) | |
tree | 810b55a32305c474706868f640fb0b70ccc59d7c /doc | |
parent | 9510301f46388556cecc5465c56813c36285ad2c (diff) | |
download | weechat-bde4b30021e6eba03fbe27299a8730fb63083238.zip |
doc: fix description of "_chat_bol" and "_chat_eol" in function hook_focus (plugin API reference)
Diffstat (limited to 'doc')
-rw-r--r-- | doc/en/weechat_plugin_api.en.adoc | 4 | ||||
-rw-r--r-- | doc/fr/weechat_plugin_api.fr.adoc | 4 | ||||
-rw-r--r-- | doc/it/weechat_plugin_api.it.adoc | 6 | ||||
-rw-r--r-- | doc/ja/weechat_plugin_api.ja.adoc | 6 |
4 files changed, 12 insertions, 8 deletions
diff --git a/doc/en/weechat_plugin_api.en.adoc b/doc/en/weechat_plugin_api.en.adoc index fe1c19d37..21916a557 100644 --- a/doc/en/weechat_plugin_api.en.adoc +++ b/doc/en/weechat_plugin_api.en.adoc @@ -12138,10 +12138,10 @@ Content of hashtable sent to callback (keys and values are of type "string"): | _chat_word | Word at (x,y). | "Hello" | "" -| _chat_bol | Beginning of line ⇒ (x-1,y). | +| _chat_bol | Text from beginning of line to (x-1, y). | "He" | "" -| _chat_eol | (x,y) ⇒ end of line. | +| _chat_eol | Text from (x, y) to the end of line. | "llo world!" | "" | _bar_name | Name of bar. | diff --git a/doc/fr/weechat_plugin_api.fr.adoc b/doc/fr/weechat_plugin_api.fr.adoc index 884aa2673..53eaef879 100644 --- a/doc/fr/weechat_plugin_api.fr.adoc +++ b/doc/fr/weechat_plugin_api.fr.adoc @@ -12404,10 +12404,10 @@ valeurs sont de type "string") : | _chat_word | Mot à la position (x,y). | "Hello" | "" -| _chat_bol | Début de ligne ⇒ (x-1,y). | +| _chat_bol | Texte du début de ligne jusqu'à (x-1, y). | "He" | "" -| _chat_eol | (x,y) ⇒ fin de ligne. | +| _chat_eol | Texte de (x, y) jusqu'à la fin de la ligne. | "llo world!" | "" | _bar_name | Nom de la barre. | diff --git a/doc/it/weechat_plugin_api.it.adoc b/doc/it/weechat_plugin_api.it.adoc index aa1709eae..3c1dcf7c9 100644 --- a/doc/it/weechat_plugin_api.it.adoc +++ b/doc/it/weechat_plugin_api.it.adoc @@ -12633,10 +12633,12 @@ Contenuto della tabella hash inviata alla callback (tasti e valori sono di tipo | _chat_word | Parola a (x,y). | "Hello" | "" -| _chat_bol | Inizio della riga ⇒ (x-1,y). | +// TRANSLATION MISSING +| _chat_bol | Text from beginning of line to (x-1, y). | "He" | "" -| _chat_eol | (x,y) ⇒ fine della riga. | +// TRANSLATION MISSING +| _chat_eol | Text from (x, y) to the end of line. | "llo world!" | "" | _bar_name | Nome della barra. | diff --git a/doc/ja/weechat_plugin_api.ja.adoc b/doc/ja/weechat_plugin_api.ja.adoc index 3200d6437..4b043994c 100644 --- a/doc/ja/weechat_plugin_api.ja.adoc +++ b/doc/ja/weechat_plugin_api.ja.adoc @@ -12143,10 +12143,12 @@ info を使う前にエリアが一致していることを確認して下さい | _chat_word | (x,y) の位置にある単語 | "Hello" | "" -| _chat_bol | 行頭から (x-1,y) まで | +// TRANSLATION MISSING +| _chat_bol | Text from beginning of line to (x-1, y). | "He" | "" -| _chat_eol | (x,y) から行末まで | +// TRANSLATION MISSING +| _chat_eol | Text from (x, y) to the end of line. | "llo world!" | "" | _bar_name | バーの名前 | |