1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-05 09:13:14 +02:00

doc: fix description of "_chat_bol" and "_chat_eol" in function hook_focus (plugin API reference)

This commit is contained in:
Sébastien Helleu
2020-06-30 21:01:11 +02:00
parent 9510301f46
commit bde4b30021
4 changed files with 12 additions and 8 deletions
+2 -2
View File
@@ -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. |
+2 -2
View File
@@ -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. |
+4 -2
View File
@@ -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. |
+4 -2
View File
@@ -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 | バーの名前 |