diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2023-11-01 13:21:06 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2023-11-01 13:21:06 +0100 |
commit | 082cbe519bd14453fc4669758a81ff8d9ed6baca (patch) | |
tree | 41011b09c1b90f51cde5f51b074a9fc2ed5d26a5 /doc/it | |
parent | 6d69cde18674105e63b2c85e9a3cd996c8a3a3ea (diff) | |
download | weechat-082cbe519bd14453fc4669758a81ff8d9ed6baca.zip |
irc: add support of RGB colors in messages (issue #2025)
This is made using standard color code '\x04' followed by text color (RGB as
hexadecimal) and optional background (RGB as hexadecimal).
Diffstat (limited to 'doc/it')
-rw-r--r-- | doc/it/weechat_user.it.adoc | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/doc/it/weechat_user.it.adoc b/doc/it/weechat_user.it.adoc index 9e8eb09e5..5a0b426b5 100644 --- a/doc/it/weechat_user.it.adoc +++ b/doc/it/weechat_user.it.adoc @@ -1106,6 +1106,13 @@ opzionale): kbd:[xx], kbd:[,], kbd:[yy] | colore del testo `xx` e di sfondo `yy` (consultare la lista di colori che segue). // TRANSLATION MISSING +| kbd:[Ctrl+c], kbd:[d], + kbd:[xxxxxx] | Text color `xxxxxx` (RGB as hexadecimal, for example `FF0000` for red). +// TRANSLATION MISSING +| kbd:[Ctrl+c], kbd:[d], + kbd:[xxxxxx], kbd:[,], + kbd:[yyyyyy] | Text color `xxxxxx` and background `yyyyyy` (RGB as hexadecimal). +// TRANSLATION MISSING | kbd:[Ctrl+c], kbd:[i] | italic text. | kbd:[Ctrl+c], kbd:[o] | disabilita colori ed attributi. | kbd:[Ctrl+c], kbd:[v] | video inverso (inverte il colore del testo con quello di sfondo). @@ -1113,8 +1120,9 @@ opzionale): |=== [NOTE] -Lo stesso codice (senza numero per kbd:[Ctrl+c], kbd:[c]) può essere usato per -terminare l'attributo. +// TRANSLATION MISSING +The same code (without number for kbd:[Ctrl+c], kbd:[c] and kbd:[Ctrl+c], kbd:[d]) +can be used to stop the attribute. I codici colore per kbd:[Ctrl+c], kbd:[c] sono: @@ -1720,6 +1728,8 @@ They can be changed and new ones can be added with the <<command_weechat_key,/ke | Tasti | Descrizione | Comando | kbd:[Ctrl+c], kbd:[b] | Inserisce il codice per il testo in grassetto. | `+/input insert \x02+` | kbd:[Ctrl+c], kbd:[c] | Inserisce il codice per il testo colorato. | `+/input insert \x03+` +// TRANSLATION MISSING +| kbd:[Ctrl+c], kbd:[d] | Insert code for colored text (RGB color, as hexadecimal). | `+/input insert \x04+` | kbd:[Ctrl+c], kbd:[i] | Inserisce il codice per il testo in corsivo. | `+/input insert \x1D+` | kbd:[Ctrl+c], kbd:[o] | Inserisce il codice per il reset dei colori. | `+/input insert \x0F+` | kbd:[Ctrl+c], kbd:[v] | Inserisce il codice per l'inversione dei colori. | `+/input insert \x16+` |