summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/de/autogen/plugin_api/hdata.asciidoc2
-rw-r--r--doc/de/autogen/user/alias_commands.asciidoc50
-rw-r--r--doc/de/autogen/user/irc_commands.asciidoc2
-rw-r--r--doc/de/autogen/user/irc_options.asciidoc5
-rw-r--r--doc/de/autogen/user/weechat_commands.asciidoc22
-rw-r--r--doc/de/autogen/user/weechat_options.asciidoc5
-rw-r--r--doc/de/weechat_user.de.asciidoc7
-rw-r--r--doc/en/autogen/plugin_api/hdata.asciidoc2
-rw-r--r--doc/en/autogen/user/irc_options.asciidoc5
-rw-r--r--doc/en/autogen/user/weechat_commands.asciidoc10
-rw-r--r--doc/en/autogen/user/weechat_options.asciidoc5
-rw-r--r--doc/en/weechat_user.en.asciidoc7
-rw-r--r--doc/fr/autogen/plugin_api/hdata.asciidoc2
-rw-r--r--doc/fr/autogen/user/irc_options.asciidoc5
-rw-r--r--doc/fr/autogen/user/weechat_commands.asciidoc8
-rw-r--r--doc/fr/autogen/user/weechat_options.asciidoc5
-rw-r--r--doc/fr/weechat_user.fr.asciidoc7
-rw-r--r--doc/it/autogen/plugin_api/hdata.asciidoc2
-rw-r--r--doc/it/autogen/user/irc_options.asciidoc5
-rw-r--r--doc/it/autogen/user/weechat_commands.asciidoc10
-rw-r--r--doc/it/autogen/user/weechat_options.asciidoc5
-rw-r--r--doc/it/weechat_user.it.asciidoc9
-rw-r--r--doc/ja/autogen/plugin_api/hdata.asciidoc2
-rw-r--r--doc/ja/autogen/user/alias_commands.asciidoc44
-rw-r--r--doc/ja/autogen/user/irc_options.asciidoc5
-rw-r--r--doc/ja/autogen/user/weechat_commands.asciidoc188
-rw-r--r--doc/ja/autogen/user/weechat_options.asciidoc11
-rw-r--r--doc/ja/weechat_plugin_api.ja.asciidoc3
-rw-r--r--doc/ja/weechat_user.ja.asciidoc9
-rw-r--r--doc/pl/autogen/plugin_api/hdata.asciidoc2
-rw-r--r--doc/pl/autogen/user/irc_options.asciidoc5
-rw-r--r--doc/pl/autogen/user/weechat_commands.asciidoc178
-rw-r--r--doc/pl/autogen/user/weechat_options.asciidoc5
-rw-r--r--doc/pl/weechat_user.pl.asciidoc9
34 files changed, 362 insertions, 279 deletions
diff --git a/doc/de/autogen/plugin_api/hdata.asciidoc b/doc/de/autogen/plugin_api/hdata.asciidoc
index 88baeb611..a35fa315f 100644
--- a/doc/de/autogen/plugin_api/hdata.asciidoc
+++ b/doc/de/autogen/plugin_api/hdata.asciidoc
@@ -200,6 +200,7 @@
*** 'away_message' (string)
*** 'away_time' (time)
*** 'lag' (integer)
+*** 'lag_displayed' (integer)
*** 'lag_check_time' (other)
*** 'lag_next_check' (time)
*** 'lag_last_refresh' (time)
@@ -942,6 +943,7 @@
*** 'scrolling' (integer)
*** 'start_col' (integer)
*** 'lines_after' (integer)
+*** 'text_search_start_line' (pointer, hdata: "line")
*** 'prev_scroll' (pointer, hdata: "window_scroll")
*** 'next_scroll' (pointer, hdata: "window_scroll")
* 'window_tree': Baumstruktur der Fenster
diff --git a/doc/de/autogen/user/alias_commands.asciidoc b/doc/de/autogen/user/alias_commands.asciidoc
index 5cc68e3c2..db53666ba 100644
--- a/doc/de/autogen/user/alias_commands.asciidoc
+++ b/doc/de/autogen/user/alias_commands.asciidoc
@@ -3,7 +3,7 @@
// DO NOT EDIT BY HAND!
//
[[command_alias_alias]]
-[command]*`alias`* list, add or remove command aliases::
+[command]*`alias`* auflisten, hinzufügen oder entfernen von Alternativnamen::
----
/alias list [<alias>]
@@ -11,31 +11,31 @@
addcompletion <completion> <alias> [<command>[;<command>...]]
del <alias> [<alias>...]
- list: list aliases (without argument, this list is displayed)
- add: add an alias
-addcompletion: add an alias with a custom completion
- del: delete an alias
- completion: completion for alias: by default completion is done with target command
- note: you can use %%command to use completion of an existing command
- alias: name of alias
- command: command name with arguments (many commands can be separated by semicolons)
+ list: listet Alternativbefehle auf (ohne Angabe von Argumenten wird diese Liste dargestellt)
+ add: fügt einen Alternativbefehl hinzu
+addcompletion: fügt einen Alternativbefehl, mit einer benutzerdefinierten Vervollständigung, hinzu
+ del: entfernt einen Alternativbefehl
+ completion: Vervollständigung für Alternativbefehl: standardmäßig wird die Vervollständigung auf den Zielbefehl angewendet
+ Hinweis: Mit der Variablen "%%command" kann eine Vervollständigung eines vorhandenen Befehls durchgeführt werden
+ alias: Name des Alternativbefehls
+ command: Name des zuzuordnenden Befehls, inklusive Argumenten (mehrere Befehle können durch Semikolon getrennt werden)
-Note: in command, special variables are replaced:
- $n: argument 'n' (between 1 and 9)
- $-m: arguments from 1 to 'm'
- $n-: arguments from 'n' to last
- $n-m: arguments from 'n' to 'm'
- $*: all arguments
- $~: last argument
- $var: where "var" is a local variable of buffer (see /buffer localvar)
- examples: $nick, $channel, $server, $plugin, $name
+Anmerkung: Im Befehl können Variablen genutzt werden, die dann durch den entsprechenden Wert ersetzt werden:
+ $n: Argument 'n' (zwischen 1 und 9)
+ $-m: Argumente von 1 bis 'm'
+ $n-: Argumente von 'n' bis zum letzten Argument
+ $n-m: Argumente von 'n' bis 'm'
+ $*: alle Argumente
+ $~: letztes Argument
+ $var: "var" ist eine lokale Variable für den jeweiligen Buffer (siehe /buffer localvar)
+ Beispiel: $nick, $channel, $server, $plugin, $name
-Examples:
- alias /split to split window horizontally:
- /alias add split /window splith
- alias /hello to say "hello" on all channels but not on #weechat:
- /alias add hello /allchan -exclude=#weechat msg * hello
- alias /forcejoin to send IRC command "forcejoin" with completion of /sajoin:
- /alias addcompletion %%sajoin forcejoin /quote forcejoin
+Beispiele:
+ Alternativbefehl "/split" wird anlegt um ein Fenster horizontal zu teilen:
+ /alias split /window splith
+ Alternativbefehl "/hallo" wird angelegt um in allen Channels, außer im #weechat Channel, den Text "Hallo" auszugeben:
+ /alias hallo /allchan -exclude=#weechat msg * Hallo
+ Alternativbefehl "/forcejoin" wird angelegt um den IRC Befehl "forcejoin" mit einer Vervollständigung von /sajoin auszuführen:
+ /alias -completion %%sajoin forcejoin /quote forcejoin
----
diff --git a/doc/de/autogen/user/irc_commands.asciidoc b/doc/de/autogen/user/irc_commands.asciidoc
index 41f693f7c..c133eff1f 100644
--- a/doc/de/autogen/user/irc_commands.asciidoc
+++ b/doc/de/autogen/user/irc_commands.asciidoc
@@ -104,7 +104,7 @@ Ohne Angabe von Argumenten wird die Ban-Liste für den aktuellen Channel angezei
-nojoin: Channel(s) werden nicht betreten (auch falls die Funktion "autojoin" aktiviert sein sollte)
-switch: wechselt zur nächsten Server-Adresse
-Um eine Verbindung zum Server zu beenden bzw. um Verbindungsversuche zu stoppen, wird der Befehl /disconnect verwendet.
+Um eine Verbindung zum Server, oder Verbindungsversuche, zu beenden wird der Befehl /disconnect verwendet.
Beispiele:
/connect freenode
diff --git a/doc/de/autogen/user/irc_options.asciidoc b/doc/de/autogen/user/irc_options.asciidoc
index 11f6c638b..3eb879948 100644
--- a/doc/de/autogen/user/irc_options.asciidoc
+++ b/doc/de/autogen/user/irc_options.asciidoc
@@ -62,6 +62,11 @@
** Typ: Farbe
** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen (Standardwert: `default`)
+* [[option_irc.color.topic_current]] *irc.color.topic_current*
+** Beschreibung: `Farbe in dem das aktuelle Thema des Channels dargestellt werden soll (wenn ein Channel betreten oder der Befehl /topic genutzt wird)`
+** Typ: Farbe
+** Werte: ein Farbname für WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), eine Terminal-Farbnummer oder ein Alias; Attribute können vor eine Farbe gesetzt werden (gilt ausschließlich für die Textfarbe und nicht für den Hintergrund): "*" für fett, "!" für invertiert, "/" für kursiv, "_" für unterstrichen (Standardwert: `default`)
+
* [[option_irc.color.topic_new]] *irc.color.topic_new*
** Beschreibung: `Farbe in dem das neue Thema des Channels dargestellt werden soll, falls das Thema des Channels geändert wurde`
** Typ: Farbe
diff --git a/doc/de/autogen/user/weechat_commands.asciidoc b/doc/de/autogen/user/weechat_commands.asciidoc
index e8dda258e..c842631c5 100644
--- a/doc/de/autogen/user/weechat_commands.asciidoc
+++ b/doc/de/autogen/user/weechat_commands.asciidoc
@@ -151,7 +151,7 @@ Beispiele:
alias: weist einer Farbzahl einen Namen zu
unalias: entfernt einen Namen
color: Farbnummer (>= 0, maximale Anzahl ist abhängig vom Terminal, üblicherweise 63 oder 255 Farben)
- name: Aliasname für eine Farbe (zum Beispiel: "orange")
+ name: Alternativname für eine Farbe (zum Beispiel: "orange")
reset: setzt alle Farbpaarungen zurück (nützlich falls keine Farbpaarung mehr verfügbar sein sollte und die automatische Reset-Option deaktiviert ist, siehe Einstellung: weechat.look.color_pairs_auto_reset)
term2rgb: konvertiert eine Terminalfarbe (0-255) in eine RGB Farbe
rgb2term: konvertiert eine RGB Farbe in eine Terminalfarbe (0-255)
@@ -418,13 +418,15 @@ Auflistung der möglichen Aktionen:
return: simuliert die "enter" Taste
complete_next: vervollständigt Wort mit nächster Komplettierung
complete_previous: vervollständigt Word mit vorheriger Komplettierung
- search_text: sucht nach Text im Buffer
+ search_text_here: Textsuche ab aktueller Position
+ search_text: Textsuche im Buffer
search_switch_case: schaltet Groß-/Kleinschreibung ein und aus
search_switch_regex: Wechsel des Suchmodus: einfache Textsuche/reguläre Ausdrücke
search_switch_where: wechselt Suche in Nachricht/Präfix
search_previous: sucht vorheriger Zeile
search_next: sucht nächste Zeile
- search_stop: suche stoppen
+ search_stop_here: beendet Suche ab aktueller Position
+ search_stop: suche beenden
delete_previous_char: entfernt vorheriges Zeichen
delete_next_char: entfernt nächstes Zeichen
delete_previous_word: entfernt vorheriges Wort
@@ -621,7 +623,7 @@ Ohne Angabe eines Arguments werden alle installierten Erweiterungen angezeigt.
-beep
-buffer: Buffer in welchem der Text ausgegeben werden soll (standardmäßig: aktueller Buffer)
- -core: Alias für "-buffer core.weechat"
+ -core: Alternativname für "-buffer core.weechat"
-current: Text wird im aktuell genutzten Buffer ausgegeben
-escape: Escapesequenzen werden umgewandelt (zum Beispiel \a, \07, \x07)
-date: Datum der Nachricht, mögliche Formatierung:
@@ -762,12 +764,10 @@ Wird eine Passphrase verwendet (Daten liegen verschlüsselt vor), fragt WeeChat
Es ist möglich eine Umgebungsvariable "WEECHAT_PASSPHRASE" zu setzen um die Eingabeaufforderung beim Programmstart zu vermeiden (diese Variable wird auch von WeeChat beim /upgrade verwendet).
schutzwürdige Daten mit dem Format ${sec.data.xxx} können wie folgt genutzt werden:
+ - Befehl /eval.
- Argument in der Befehlszeile für "--run-command"
- Einstellung weechat.startup.command_{before|after}_plugins
- - Proxy-Optionen: username, password
- - IRC Server Optionen: autojoin, command, password, sasl_{username|password}, Username, Realname
- - Einstellung relay.network.password
- - Befehl /eval.
+ - weitere Optionen die Passwörter oder sensible Daten beinhalten (zum Beispiel: proxy, irc server und relay); nutze /help mit der entsprechenden Option um zu überprüfen ob die Daten evaluiert werden.
Beispiele:
festlegen eine Passphrase:
@@ -778,7 +778,7 @@ Beispiele:
verschlüsselt oftc Passwort für nickserv:
/secure set oftc meinPasswort
/set irc.server.oftc.command "/msg nickserv identify ${sec.data.oftc}"
- alias um den eigenen Nick zu ghosten:
+ Alternativbefehl um den eigenen Nick zu ghosten:
/alias ghost /eval /msg -server freenode nickserv ghost meinNick ${sec.data.freenode}
----
@@ -888,7 +888,7 @@ Es ist möglich die WeeChat-Sitzung auf einem anderen Rechner wiederherzustellen
-o: die Version von WeeChat wird in den aktuellen Buffer ausgegeben (in englischer Sprache)
-ol: die Version von WeeChat wird in den aktuellen Buffer ausgegeben (in der voreingestellten Landessprache)
-Um diesen Befehl in jedem Buffer ausführen zu können, kann der Standardalias /v genutzt werden (andernfalls wird der IRC Befehl /version in einem IRC Buffer ausgeführt).
+Um diesen Befehl in jedem Buffer ausführen zu können, kann der Standardkurzbefehl /v genutzt werden (andernfalls wird der IRC Befehl /version in einem IRC Buffer ausgeführt).
----
[[command_weechat_wait]]
@@ -933,7 +933,7 @@ Beispiele:
scroll_horiz [-window <number>] [+/-]<value>[%]
scroll_up|scroll_down|scroll_top|scroll_bottom|scroll_beyond_end|scroll_previous_highlight|scroll_next_highlight|scroll_unread [-window <number>]
swap [-window <number>] [up|down|left|right]
- zoom[-window <number>]
+ zoom [-window <number>]
bare [<delay>]
list: listet die geöffneten Fenster (ohne Angabe von Argumente wird diese Liste standardmäßig ausgegeben)
diff --git a/doc/de/autogen/user/weechat_options.asciidoc b/doc/de/autogen/user/weechat_options.asciidoc
index 5c1120cb0..ace4a0072 100644
--- a/doc/de/autogen/user/weechat_options.asciidoc
+++ b/doc/de/autogen/user/weechat_options.asciidoc
@@ -717,6 +717,11 @@
** Typ: boolesch
** Werte: on, off (Standardwert: `on`)
+* [[option_weechat.look.key_grab_delay]] *weechat.look.key_grab_delay*
+** Beschreibung: `Standardverzögerung (in Millisekunden) um eine Tasteneingabe zu greifen (Standardtastenbelegung: alt-k); die Verzögerung kann mit dem /input Befehl angepasst werden (siehe /help input)`
+** Typ: integer
+** Werte: 1 .. 10000 (Standardwert: `800`)
+
* [[option_weechat.look.mouse]] *weechat.look.mouse*
** Beschreibung: `Mausunterstützung einschalten`
** Typ: boolesch
diff --git a/doc/de/weechat_user.de.asciidoc b/doc/de/weechat_user.de.asciidoc
index a09fddc8d..ebe2c6ab2 100644
--- a/doc/de/weechat_user.de.asciidoc
+++ b/doc/de/weechat_user.de.asciidoc
@@ -1121,7 +1121,7 @@ Befehl festgelegt werden:
| key[Backsp.] .2+| entfernt in der Befehlszeile das vorherige Zeichen .2+| `/input delete_previous_char`
| key[ctrl-h]
| key[ctrl-k] | entfernt alle Zeichen vom Cursor bis zum Ende der Zeile (Zeichenkette wird in Zwischenablage kopiert) | `/input delete_end_of_line`
-| key[ctrl-r] | Textsuche im Verlaufsspeicher des Buffers (siehe <<key_bindings_search_context,Tasten für Such-Kontext>>) | `/input search_text`
+| key[ctrl-r] | Textsuche im Verlaufsspeicher des Buffers (siehe <<key_bindings_search_context,Tasten für Such-Kontext>>) | `/input search_text_here`
| key[ctrl-t] | Zeichen austauschen | `/input transpose_chars`
| key[ctrl-u] | entfernt alle Zeichen vom Cursor bis zum Anfang der Zeile (Zeichenkette wird in Zwischenablage kopiert) | `/input delete_beginning_of_line`
| key[ctrl-w] | entfernt das Wort links vom Cursor (entferntes Wort wird in Zwischenablage kopiert) | `/input delete_previous_word`
@@ -1182,7 +1182,7 @@ Befehl festgelegt werden:
| key[alt-j,alt-r] | wechselt zum IRC RAW Buffer | `/server raw`
| key[alt-j,alt-s] | wechselt zum IRC Server Buffer | `/server jump`
| key[alt-0...9] | wechselt zum Buffer mit der Nummer (0 = 10) | `/buffer *N`
-| key[alt-j,01...99] | wechselt zum Buffer mit der angegeben Nummer | `/buffer NN`
+| key[alt-j,01...99] | wechselt zum Buffer mit der angegeben Nummer | `/buffer *NN`
| key[alt-l] | schaltet einfachen Anzeigemodus an/aus | `/window bare`
| key[alt-m] | schaltet Mausfunktion ein/aus | `/mouse toggle`
| key[alt-n] | springt zur nächsten Highlight Nachricht | `/window scroll_next_highlight`
@@ -1216,9 +1216,10 @@ in einem Buffer nach einem Text zu suchen).
| key[Tab] | wechselt Suche in: Nachricht (Standard), im Präfix, Präfix + Nachricht | `/input search_switch_where`
| key[↑] | sucht vorheriger Zeile | `/input search_previous`
| key[↓] | sucht nächste Zeile | `/input search_next`
-| key[Enter] .3+| Suche abbrechen .3+| `/input search_stop`
+| key[Enter] .3+| beendet Suche ab aktueller Position .3+| `/input search_stop_here`
| key[ctrl-j]
| key[ctrl-m]
+| key[ctrl-q] | beendet Suche und blättert zum Ende des Buffers | `/input search_stop`
|===
[[key_bindings_cursor_context]]
diff --git a/doc/en/autogen/plugin_api/hdata.asciidoc b/doc/en/autogen/plugin_api/hdata.asciidoc
index f02e4b913..d33d0ecf4 100644
--- a/doc/en/autogen/plugin_api/hdata.asciidoc
+++ b/doc/en/autogen/plugin_api/hdata.asciidoc
@@ -200,6 +200,7 @@
*** 'away_message' (string)
*** 'away_time' (time)
*** 'lag' (integer)
+*** 'lag_displayed' (integer)
*** 'lag_check_time' (other)
*** 'lag_next_check' (time)
*** 'lag_last_refresh' (time)
@@ -942,6 +943,7 @@
*** 'scrolling' (integer)
*** 'start_col' (integer)
*** 'lines_after' (integer)
+*** 'text_search_start_line' (pointer, hdata: "line")
*** 'prev_scroll' (pointer, hdata: "window_scroll")
*** 'next_scroll' (pointer, hdata: "window_scroll")
* 'window_tree': tree of windows
diff --git a/doc/en/autogen/user/irc_options.asciidoc b/doc/en/autogen/user/irc_options.asciidoc
index 94893a3f0..b175c8bc7 100644
--- a/doc/en/autogen/user/irc_options.asciidoc
+++ b/doc/en/autogen/user/irc_options.asciidoc
@@ -62,6 +62,11 @@
** type: color
** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `default`)
+* [[option_irc.color.topic_current]] *irc.color.topic_current*
+** description: `color for current channel topic (when joining a channel or using /topic)`
+** type: color
+** values: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (default value: `default`)
+
* [[option_irc.color.topic_new]] *irc.color.topic_new*
** description: `color for new channel topic (when topic is changed)`
** type: color
diff --git a/doc/en/autogen/user/weechat_commands.asciidoc b/doc/en/autogen/user/weechat_commands.asciidoc
index 90df54cf2..ff48499dc 100644
--- a/doc/en/autogen/user/weechat_commands.asciidoc
+++ b/doc/en/autogen/user/weechat_commands.asciidoc
@@ -418,12 +418,14 @@ list of actions:
return: simulate key "enter"
complete_next: complete word with next completion
complete_previous: complete word with previous completion
+ search_text_here: search text in buffer at current position
search_text: search text in buffer
search_switch_case: switch exact case for search
search_switch_regex: switch search type: string/regular expression
search_switch_where: switch search in messages/prefixes
search_previous: search previous line
search_next: search next line
+ search_stop_here: stop search at current position
search_stop: stop search
delete_previous_char: delete previous char
delete_next_char: delete next char
@@ -762,12 +764,10 @@ When a passphrase is used (data encrypted), it is asked by WeeChat on startup.
It is possible to set environment variable "WEECHAT_PASSPHRASE" to prevent the prompt (this same variable is used by WeeChat on /upgrade).
Secured data with format ${sec.data.xxx} can be used in:
+ - command /eval
- command line argument "--run-command"
- options weechat.startup.command_{before|after}_plugins
- - proxy options: username, password
- - irc server options: autojoin, command, password, sasl_{username|password}, username, realname
- - option relay.network.password
- - command /eval.
+ - other options that may contain a password or sensitive data (for example proxy, irc server and relay); see /help on the options to check if they are evaluated.
Examples:
set a passphrase:
@@ -933,7 +933,7 @@ Examples:
scroll_horiz [-window <number>] [+/-]<value>[%]
scroll_up|scroll_down|scroll_top|scroll_bottom|scroll_beyond_end|scroll_previous_highlight|scroll_next_highlight|scroll_unread [-window <number>]
swap [-window <number>] [up|down|left|right]
- zoom[-window <number>]
+ zoom [-window <number>]
bare [<delay>]
list: list opened windows (without argument, this list is displayed)
diff --git a/doc/en/autogen/user/weechat_options.asciidoc b/doc/en/autogen/user/weechat_options.asciidoc
index d889cd0cc..0a9abdbad 100644
--- a/doc/en/autogen/user/weechat_options.asciidoc
+++ b/doc/en/autogen/user/weechat_options.asciidoc
@@ -717,6 +717,11 @@
** type: boolean
** values: on, off (default value: `on`)
+* [[option_weechat.look.key_grab_delay]] *weechat.look.key_grab_delay*
+** description: `default delay (in milliseconds) to grab a key (using default key alt-k); this delay can be overridden in the /input command (see /help input)`
+** type: integer
+** values: 1 .. 10000 (default value: `800`)
+
* [[option_weechat.look.mouse]] *weechat.look.mouse*
** description: `enable mouse support`
** type: boolean
diff --git a/doc/en/weechat_user.en.asciidoc b/doc/en/weechat_user.en.asciidoc
index 0a2a1709e..d2fc9f32d 100644
--- a/doc/en/weechat_user.en.asciidoc
+++ b/doc/en/weechat_user.en.asciidoc
@@ -1097,7 +1097,7 @@ The notify level for a buffer can be set with command `/buffer`:
| key[Backsp.] .2+| Delete previous char in command line .2+| `/input delete_previous_char`
| key[ctrl-h]
| key[ctrl-k] | Delete from cursor until end of command line (deleted string is copied to clipboard) | `/input delete_end_of_line`
-| key[ctrl-r] | Search for text in buffer history (see <<key_bindings_search_context,keys for search context>>) | `/input search_text`
+| key[ctrl-r] | Search for text in buffer history (see <<key_bindings_search_context,keys for search context>>) | `/input search_text_here`
| key[ctrl-t] | Transpose chars | `/input transpose_chars`
| key[ctrl-u] | Delete from cursor until beginning of command line (deleted string is copied to clipboard) | `/input delete_beginning_of_line`
| key[ctrl-w] | Delete previous word of command line (deleted string is copied to clipboard) | `/input delete_previous_word`
@@ -1158,7 +1158,7 @@ The notify level for a buffer can be set with command `/buffer`:
| key[alt-j,alt-r] | Switch to IRC raw buffer | `/server raw`
| key[alt-j,alt-s] | Switch to IRC server buffer | `/server jump`
| key[alt-0...9] | Switch to buffer by number (0 = 10) | `/buffer *N`
-| key[alt-j,01...99] | Switch to buffer by number | `/buffer NN`
+| key[alt-j,01...99] | Switch to buffer by number | `/buffer *NN`
| key[alt-l] | Toggle bare display on/off | `/window bare`
| key[alt-m] | Toggle mouse | `/mouse toggle`
| key[alt-n] | Scroll to next highlight | `/window scroll_next_highlight`
@@ -1192,9 +1192,10 @@ text in buffer).
| key[Tab] | Switch search in: messages (default), prefixes, prefixes + messages | `/input search_switch_where`
| key[↑] | Search previous line | `/input search_previous`
| key[↓] | Search next line | `/input search_next`
-| key[Enter] .3+| Stop search .3+| `/input search_stop`
+| key[Enter] .3+| Stop search at current position .3+| `/input search_stop_here`
| key[ctrl-j]
| key[ctrl-m]
+| key[ctrl-q] | Stop search and scroll to bottom of buffer | `/input search_stop`
|===
[[key_bindings_cursor_context]]
diff --git a/doc/fr/autogen/plugin_api/hdata.asciidoc b/doc/fr/autogen/plugin_api/hdata.asciidoc
index 751b48545..4a079f0d4 100644
--- a/doc/fr/autogen/plugin_api/hdata.asciidoc
+++ b/doc/fr/autogen/plugin_api/hdata.asciidoc
@@ -200,6 +200,7 @@
*** 'away_message' (string)
*** 'away_time' (time)
*** 'lag' (integer)
+*** 'lag_displayed' (integer)
*** 'lag_check_time' (other)
*** 'lag_next_check' (time)
*** 'lag_last_refresh' (time)
@@ -942,6 +943,7 @@
*** 'scrolling' (integer)
*** 'start_col' (integer)
*** 'lines_after' (integer)
+*** 'text_search_start_line' (pointer, hdata: "line")
*** 'prev_scroll' (pointer, hdata: "window_scroll")
*** 'next_scroll' (pointer, hdata: "window_scroll")
* 'window_tree': arbre des fenêtres
diff --git a/doc/fr/autogen/user/irc_options.asciidoc b/doc/fr/autogen/user/irc_options.asciidoc
index f357b574a..a7e0f4d5b 100644
--- a/doc/fr/autogen/user/irc_options.asciidoc
+++ b/doc/fr/autogen/user/irc_options.asciidoc
@@ -62,6 +62,11 @@
** type: couleur
** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné (valeur par défaut: `default`)
+* [[option_irc.color.topic_current]] *irc.color.topic_current*
+** description: `couleur pour le titre du canal actuel (en rejoignant un canal ou sur /topic)`
+** type: couleur
+** valeurs: un nom de couleur WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), un numéro de couleur du terminal ou un alias ; des attributs sont autorisés avant la couleur (seulement pour la couleur du texte, pas le fond) : "*" pour le gras, "!" pour la vidéo inverse, "/" pour l'italique, "_" pour le souligné (valeur par défaut: `default`)
+
* [[option_irc.color.topic_new]] *irc.color.topic_new*
** description: `couleur pour le nouveau titre du canal (lorsque le titre est changé)`
** type: couleur
diff --git a/doc/fr/autogen/user/weechat_commands.asciidoc b/doc/fr/autogen/user/weechat_commands.asciidoc
index 65132837b..268c50b25 100644
--- a/doc/fr/autogen/user/weechat_commands.asciidoc
+++ b/doc/fr/autogen/user/weechat_commands.asciidoc
@@ -418,12 +418,14 @@ liste des actions :
return : simuler la touche "entrée"
complete_next : compléter le mot avec la complétion suivante
complete_previous : compléter le mot avec la complétion précédente
+ search_text_here : chercher du texte dans le tampon à la position courante
search_text : chercher du texte dans le tampon
search_switch_case : basculer la casse exacte pour la recherche
search_switch_regex : basculer le type de recherche : chaîne/expression régulière
search_switch_where : basculer la recherche dans les messages/préfixes
search_previous : chercher la ligne précédente
search_next : chercher la ligne suivante
+ search_stop_here : arrêter la recherche à la position courante
search_stop : arrêter la recherche
delete_previous_char : effacer le caractère précédent
delete_next_char : effacer le caractère suivant
@@ -762,12 +764,10 @@ Lorsqu'une phrase de chiffrement est utilisée (données chiffrées), elle est d
Il est possible de définir la variable d'environnement WEECHAT_PASSPHRASE pour éviter la demande (cette même variable est utilisée par WeeChat sur le /upgrade).
Les données sécurisées avec le format ${sec.data.xxx} peuvent être utilisées dans :
+ - la commande /eval
- le paramètre de ligne de commande "--run-command"
- les options weechat.startup.command_{before|after}_plugins
- - les options de proxy : username, password
- - les options de serveur irc : autojoin, command, password, sasl_{username|password}, username, realname
- - l'option relay.network.password
- - la commande /eval.
+ - d'autres options qui peuvent contenir un mot de passe ou des données sensibles (par exemple proxy, serveur irc et relay) ; voir /help sur les options pour vérifier si elles sont évaluées.
Exemples :
définir une phrase de chiffrement :
diff --git a/doc/fr/autogen/user/weechat_options.asciidoc b/doc/fr/autogen/user/weechat_options.asciidoc
index f29fb039f..e876a9041 100644
--- a/doc/fr/autogen/user/weechat_options.asciidoc
+++ b/doc/fr/autogen/user/weechat_options.asciidoc
@@ -717,6 +717,11 @@
** type: booléen
** valeurs: on, off (valeur par défaut: `on`)
+* [[option_weechat.look.key_grab_delay]] *weechat.look.key_grab_delay*
+** description: `délai par défaut (en millisecondes) pour capturer une touche (en utilisant la touche par défaut alt-k) ; ce délai peut être remplacé dans la commande /input (voir /help input)`
+** type: entier
+** valeurs: 1 .. 10000 (valeur par défaut: `800`)
+
* [[option_weechat.look.mouse]] *weechat.look.mouse*
** description: `activer le support de la souris`
** type: booléen
diff --git a/doc/fr/weechat_user.fr.asciidoc b/doc/fr/weechat_user.fr.asciidoc
index fa5067a2d..0b902589a 100644
--- a/doc/fr/weechat_user.fr.asciidoc
+++ b/doc/fr/weechat_user.fr.asciidoc
@@ -1127,7 +1127,7 @@ commande `/buffer` :
| key[Backsp.] .2+| Effacer le caractère précédent sur la ligne de commande .2+| `/input delete_previous_char`
| key[ctrl-h]
| key[ctrl-k] | Effacer du curseur jusqu'à la fin de la ligne de commande (la chaîne supprimée est copiée dans le presse-papiers) | `/input delete_end_of_line`
-| key[ctrl-r] | Chercher du texte dans l'historique du tampon (voir <<key_bindings_search_context,les touches pour le contexte de recherche>>) | `/input search_text`
+| key[ctrl-r] | Chercher du texte dans l'historique du tampon (voir <<key_bindings_search_context,les touches pour le contexte de recherche>>) | `/input search_text_here`
| key[ctrl-t] | Inverser deux caractères | `/input transpose_chars`
| key[ctrl-u] | Effacer du curseur jusqu'au début de la ligne de commande (la chaîne supprimée est copiée dans le presse-papiers) | `/input delete_beginning_of_line`
| key[ctrl-w] | Effacer le mot précédent sur la ligne de commande (la chaîne supprimée est copiée dans le presse-papiers) | `/input delete_previous_word`
@@ -1188,7 +1188,7 @@ commande `/buffer` :
| key[alt-j,alt-r] | Sauter au tampon IRC de données brutes | `/server raw`
| key[alt-j,alt-s] | Sauter au tampon IRC du serveur | `/server jump`
| key[alt-0...9] | Sauter au tampon qui porte ce numéro (0 = 10) | `/buffer *N`
-| key[alt-j,01...99] | Sauter au tampon qui porte ce numéro | `/buffer NN`
+| key[alt-j,01...99] | Sauter au tampon qui porte ce numéro | `/buffer *NN`
| key[alt-l] | Activer/désactiver le mode d'affichage dépouillé | `/window bare`
| key[alt-m] | Activer/désactiver la souris | `/mouse toggle`
| key[alt-n] | Se positionner sur le highlight suivant | `/window scroll_next_highlight`
@@ -1222,9 +1222,10 @@ pressé pour chercher du texte dans le tampon).
| key[Tab] | Basculer la recherche dans : les messages (par défaut), les préfixes, les préfixes + messages | `/input search_switch_where`
| key[↑] | Chercher la ligne précédente | `/input search_previous`
| key[↓] | Chercher la ligne suivante | `/input search_next`
-| key[Enter] .3+| Arrêter la recherche .3+| `/input search_stop`
+| key[Enter] .3+| Arrêter la recherche à la position courante .3+| `/input search_stop_here`
| key[ctrl-j]
| key[ctrl-m]
+| key[ctrl-q] | Arrêter la recherche et aller à la fin du tampon | `/input search_stop`
|===
[[key_bindings_cursor_context]]
diff --git a/doc/it/autogen/plugin_api/hdata.asciidoc b/doc/it/autogen/plugin_api/hdata.asciidoc
index 351c4a94e..ece27dfad 100644
--- a/doc/it/autogen/plugin_api/hdata.asciidoc
+++ b/doc/it/autogen/plugin_api/hdata.asciidoc
@@ -200,6 +200,7 @@
*** 'away_message' (string)
*** 'away_time' (time)
*** 'lag' (integer)
+*** 'lag_displayed' (integer)
*** 'lag_check_time' (other)
*** 'lag_next_check' (time)
*** 'lag_last_refresh' (time)
@@ -942,6 +943,7 @@
*** 'scrolling' (integer)
*** 'start_col' (integer)
*** 'lines_after' (integer)
+*** 'text_search_start_line' (pointer, hdata: "line")
*** 'prev_scroll' (pointer, hdata: "window_scroll")
*** 'next_scroll' (pointer, hdata: "window_scroll")
* 'window_tree': albero delle finestre
diff --git a/doc/it/autogen/user/irc_options.asciidoc b/doc/it/autogen/user/irc_options.asciidoc
index c772add5b..af2d8a9a5 100644
--- a/doc/it/autogen/user/irc_options.asciidoc
+++ b/doc/it/autogen/user/irc_options.asciidoc
@@ -62,6 +62,11 @@
** tipo: colore
** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (valore predefinito: `default`)
+* [[option_irc.color.topic_current]] *irc.color.topic_current*
+** descrizione: `color for current channel topic (when joining a channel or using /topic)`
+** tipo: colore
+** valori: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (valore predefinito: `default`)
+
* [[option_irc.color.topic_new]] *irc.color.topic_new*
** descrizione: `colore del nuovo argomento del canale (quando viene cambiato)`
** tipo: colore
diff --git a/doc/it/autogen/user/weechat_commands.asciidoc b/doc/it/autogen/user/weechat_commands.asciidoc
index 7a91d9ad2..6f233801f 100644
--- a/doc/it/autogen/user/weechat_commands.asciidoc
+++ b/doc/it/autogen/user/weechat_commands.asciidoc
@@ -418,12 +418,14 @@ list of actions:
return: simulate key "enter"
complete_next: complete word with next completion
complete_previous: complete word with previous completion
+ search_text_here: search text in buffer at current position
search_text: search text in buffer
search_switch_case: switch exact case for search
search_switch_regex: switch search type: string/regular expression
search_switch_where: switch search in messages/prefixes
search_previous: search previous line
search_next: search next line
+ search_stop_here: stop search at current position
search_stop: stop search
delete_previous_char: delete previous char
delete_next_char: delete next char
@@ -762,12 +764,10 @@ When a passphrase is used (data encrypted), it is asked by WeeChat on startup.
It is possible to set environment variable "WEECHAT_PASSPHRASE" to prevent the prompt (this same variable is used by WeeChat on /upgrade).
Secured data with format ${sec.data.xxx} can be used in:
+ - command /eval
- command line argument "--run-command"
- options weechat.startup.command_{before|after}_plugins
- - proxy options: username, password
- - irc server options: autojoin, command, password, sasl_{username|password}, username, realname
- - option relay.network.password
- - command /eval.
+ - other options that may contain a password or sensitive data (for example proxy, irc server and relay); see /help on the options to check if they are evaluated.
Examples:
set a passphrase:
@@ -933,7 +933,7 @@ Esempi:
scroll_horiz [-window <number>] [+/-]<value>[%]
scroll_up|scroll_down|scroll_top|scroll_bottom|scroll_beyond_end|scroll_previous_highlight|scroll_next_highlight|scroll_unread [-window <number>]
swap [-window <number>] [up|down|left|right]
- zoom[-window <number>]
+ zoom [-window <number>]
bare [<delay>]
list: list opened windows (without argument, this list is displayed)
diff --git a/doc/it/autogen/user/weechat_options.asciidoc b/doc/it/autogen/user/weechat_options.asciidoc
index 52d86902d..1d73f627b 100644
--- a/doc/it/autogen/user/weechat_options.asciidoc
+++ b/doc/it/autogen/user/weechat_options.asciidoc
@@ -717,6 +717,11 @@
** tipo: bool
** valori: on, off (valore predefinito: `on`)
+* [[option_weechat.look.key_grab_delay]] *weechat.look.key_grab_delay*
+** descrizione: `default delay (in milliseconds) to grab a key (using default key alt-k); this delay can be overridden in the /input command (see /help input)`
+** tipo: intero
+** valori: 1 .. 10000 (valore predefinito: `800`)
+
* [[option_weechat.look.mouse]] *weechat.look.mouse*
** descrizione: `abilita il supporto del mouse`
** tipo: bool
diff --git a/doc/it/weechat_user.it.asciidoc b/doc/it/weechat_user.it.asciidoc
index b1f2ce91e..78e95c8f4 100644
--- a/doc/it/weechat_user.it.asciidoc
+++ b/doc/it/weechat_user.it.asciidoc
@@ -1151,7 +1151,7 @@ Il livello di notifica per un buffer può essere impostato con il comando `/buff
| key[Backsp.] .2+| Elimina il carattere precedente nella riga di comando .2+| `/input delete_previous_char`
| key[ctrl-h]
| key[ctrl-k] | Elimina dal cursore fino alla fine della riga di comando (la stringa eliminata viene copiata negli appunti) | `/input delete_end_of_line`
-| key[ctrl-r] | Cerca del testo nella cronologia del buffer (consultare <<key_bindings_search_context,tasti per il contesto search>>) | `/input search_text`
+| key[ctrl-r] | Cerca del testo nella cronologia del buffer (consultare <<key_bindings_search_context,tasti per il contesto search>>) | `/input search_text_here`
| key[ctrl-t] | Inverti caratteri | `/input transpose_chars`
| key[ctrl-u] | Elimina dal cursore fino all'inizio della riga di comando (la stringa eliminata viene copiata negli appunti) | `/input delete_beginning_of_line`
| key[ctrl-w] | Elimina la parola precedente nella riga di comando (la stringa eliminata viene copiata negli appunti) | `/input delete_previous_word`
@@ -1214,7 +1214,7 @@ Il livello di notifica per un buffer può essere impostato con il comando `/buff
| key[alt-j,alt-r] | Passa al buffer raw IRC | `/server raw`
| key[alt-j,alt-s] | Passa al buffer server IRC | `/server jump`
| key[alt-0...9] | Passa al buffer numero (0 = 10) | `/buffer *N`
-| key[alt-j,01...99] | Passa al buffer numero | `/buffer NN`
+| key[alt-j,01...99] | Passa al buffer numero | `/buffer *NN`
// TRANSLATION MISSING
| key[alt-l] | Toggle bare display on/off | `/window bare`
| key[alt-m] | Abilita/disabilita | `/mouse toggle`
@@ -1252,9 +1252,12 @@ key[ctrl-r] per cercare del testo nel buffer).
| key[Tab] | Switch search in: messages (default), prefixes, prefixes + messages | `/input search_switch_where`
| key[↑] | Cerca riga precedente | `/input search_previous`
| key[↓] | Cerca riga successiva | `/input search_next`
-| key[Invio] .3+| Ferma ricerca .3+| `/input search_stop`
+// TRANSLATION MISSING
+| key[Enter] .3+| Stop search at current position .3+| `/input search_stop_here`
| key[ctrl-j]
| key[ctrl-m]
+// TRANSLATION MISSING
+| key[ctrl-q] | Stop search and scroll to bottom of buffer | `/input search_stop`
|===
[[key_bindings_cursor_context]]
diff --git a/doc/ja/autogen/plugin_api/hdata.asciidoc b/doc/ja/autogen/plugin_api/hdata.asciidoc
index 2148bb9f3..ba5d1e309 100644
--- a/doc/ja/autogen/plugin_api/hdata.asciidoc
+++ b/doc/ja/autogen/plugin_api/hdata.asciidoc
@@ -200,6 +200,7 @@
*** 'away_message' (string)
*** 'away_time' (time)
*** 'lag' (integer)
+*** 'lag_displayed' (integer)
*** 'lag_check_time' (other)
*** 'lag_next_check' (time)
*** 'lag_last_refresh' (time)
@@ -942,6 +943,7 @@
*** 'scrolling' (integer)
*** 'start_col' (integer)
*** 'lines_after' (integer)
+*** 'text_search_start_line' (pointer, hdata: "line")
*** 'prev_scroll' (pointer, hdata: "window_scroll")
*** 'next_scroll' (pointer, hdata: "window_scroll")
* 'window_tree': ウィンドウツリー
diff --git a/doc/ja/autogen/user/alias_commands.asciidoc b/doc/ja/autogen/user/alias_commands.asciidoc
index 5cc68e3c2..670aac860 100644
--- a/doc/ja/autogen/user/alias_commands.asciidoc
+++ b/doc/ja/autogen/user/alias_commands.asciidoc
@@ -3,7 +3,7 @@
// DO NOT EDIT BY HAND!
//
[[command_alias_alias]]
-[command]*`alias`* list, add or remove command aliases::
+[command]*`alias`* 別名コマンドのリストアップ、追加、削除::
----
/alias list [<alias>]
@@ -11,31 +11,31 @@
addcompletion <completion> <alias> [<command>[;<command>...]]
del <alias> [<alias>...]
- list: list aliases (without argument, this list is displayed)
- add: add an alias
-addcompletion: add an alias with a custom completion
- del: delete an alias
- completion: completion for alias: by default completion is done with target command
- note: you can use %%command to use completion of an existing command
- alias: name of alias
- command: command name with arguments (many commands can be separated by semicolons)
+ list: 別名をリストアップ (引数を与えなかった場合、このリストが表示されます)
+ add: 別名を追加
+addcompletion: カスタム補完を指定して別名を追加
+ del: 別名を削除
+ completion: 別名の補完: デフォルトでは対象のコマンドに対する補完が行われます
+ 注意: %%command で既存のコマンドに対する補完を利用可能です
+ alias: 別名の名前
+ command: 引数を含めたコマンド名 (セミコロンで分割すれば複数のコマンドを指定できます)
-Note: in command, special variables are replaced:
- $n: argument 'n' (between 1 and 9)
- $-m: arguments from 1 to 'm'
- $n-: arguments from 'n' to last
- $n-m: arguments from 'n' to 'm'
- $*: all arguments
- $~: last argument
- $var: where "var" is a local variable of buffer (see /buffer localvar)
- examples: $nick, $channel, $server, $plugin, $name
+注意: command の中に含まれる特殊変数は置換されます:
+ $n: 'n' 番目の引数 (1 から 9)
+ $-m: 1 から 'm' 番目の引数
+ $n-: 'n' 番目から最後の引数
+ $n-m: 'n' から 'm' 番目の引数
+ $*: 全ての引数
+ $~: 最後の引数
+ $var: ここで "var" とはバッファの局所変数 (/buffer localvar を参照)
+ 例: $nick、$channel、$server、$plugin、$name
-Examples:
- alias /split to split window horizontally:
+例:
+ /split をウィンドウを水平方向に分割する別名と定義:
/alias add split /window splith
- alias /hello to say "hello" on all channels but not on #weechat:
+ /hello を #weechat を除く全てのチャンネルで "hello" と発言する別名と定義:
/alias add hello /allchan -exclude=#weechat msg * hello
- alias /forcejoin to send IRC command "forcejoin" with completion of /sajoin:
+ /forcejoin を /sajoin の補完候補を使い IRC コマンド "forcejoin" を送信する別名と定義:
/alias addcompletion %%sajoin forcejoin /quote forcejoin
----
diff --git a/doc/ja/autogen/user/irc_options.asciidoc b/doc/ja/autogen/user/irc_options.asciidoc
index 8f596f14e..936e0b46f 100644
--- a/doc/ja/autogen/user/irc_options.asciidoc
+++ b/doc/ja/autogen/user/irc_options.asciidoc
@@ -62,6 +62,11 @@
** タイプ: 色
** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、ターミナル色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" (デフォルト値: `default`)
+* [[option_irc.color.topic_current]] *irc.color.topic_current*
+** 説明: `color for current channel topic (when joining a channel or using /topic)`
+** タイプ: 色
+** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、ターミナル色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" (デフォルト値: `default`)
+
* [[option_irc.color.topic_new]] *irc.color.topic_new*
** 説明: `新しいチャンネルトピックの色 (トピックが変更されたとき)`
** タイプ: 色
diff --git a/doc/ja/autogen/user/weechat_commands.asciidoc b/doc/ja/autogen/user/weechat_commands.asciidoc
index 15cb4e350..d6aded45c 100644
--- a/doc/ja/autogen/user/weechat_commands.asciidoc
+++ b/doc/ja/autogen/user/weechat_commands.asciidoc
@@ -414,58 +414,60 @@ value: 表示する履歴エントリの数
----
/input <action> [<arguments>]
-アクションリスト:
- return: "enter" キーをシミュレート
- complete_next: 次の補完候補で単語を補完
- complete_previous: 一つ前の補完候補で単語を補完
- search_text: バッファ内のテキストを検索
- search_switch_case: 完全一致検索に変更
- search_switch_regex: 検索タイプの切り替え: 文字列/正規表現
- search_switch_where: 検索範囲の切り替え: メッセージ/プレフィックス
- search_previous: 一つ前の行を検索
- search_next: 次の行を検索
- search_stop: 検索を終了
- delete_previous_char: 一つ前の文字を削除
- delete_next_char: 次の文字を削除
- delete_previous_word: 一つ前の単語を削除
- delete_next_word: 次の単語を削除
- delete_beginning_of_line: 行の最初からカーソル位置までを削除
- delete_end_of_line: カーソルから行の最後までを削除
- delete_line: 行を削除
- clipboard_paste: クリップボードから貼り付け
- transpose_chars: 2 つの文字を入れ替え
- undo: 最新のコマンドラインアクションまで元に戻す
- redo: 最新のコマンドラインアクションまでやり直す
- move_beginning_of_line: カーソルを行頭に移動
- move_end_of_line: カーソルを行末まで移動
- move_previous_char: カーソルを一つ前の文字に移動
- move_next_char: カーソルを次の文字に移動
- move_previous_word: カーソルを一つ前の単語に移動
- move_next_word: カーソルを次の単語に移動
- history_previous: 現在のバッファ履歴のひとつ前のコマンドを再呼び出し
- history_next: 現在のバッファ履歴の次のコマンドを再呼び出し
- history_global_previous: グローバル履歴の一つ前のコマンドを再呼び出し
- history_global_next: グローバル履歴の次のコマンドを再呼び出し
- jump_smart: 次のアクティブバッファに飛ぶ
- jump_last_buffer_displayed: 表示されている最後のバッファに移動 (最新のバッファ移動の一つ前に表示されていたバッファ)
- jump_previously_visited_buffer: 一つ前に訪れたバッファに移動
- jump_next_visited_buffer: 次に訪れたバッファに移動
- hotlist_clear: ホットリストを消去
- grab_key: キーを横取り (任意引数: 最後の横取りからの遅延時間、デフォルトは 500 ミリ秒)
- grab_key_command: あるコマンドに関連してキーを横取り (任意引数: 最後の横取りからの遅延時間、デフォルトは 500 ミリ秒)
- grab_mouse: grab マウスイベントコードを横取り
- grab_mouse_area: 範囲指定のマウスイベントコードを横取り
- set_unread: 全てのバッファに対して未読マーカーを設定
- set_unread_current_buffer: 現在のバッファに対して未読マーカーを設定
- switch_active_buffer: 次のマージされたバッファに移動
- switch_active_buffer_previous: 一つ前のマージされたバッファに移動
- zoom_merged_buffer: マージされたバッファにズーム
- insert: コマンドラインにテキストを挿入 (エスケープ文字も可、/help print を参照)
- send: バッファにテキストを送信
- paste_start: ペーストの開始 (括弧付きペーストモード)
- paste_stop: ペーストの終了 (括弧付きペーストモード)
-
-これらのコマンドはキーバインドかプラグインで利用できます。
+list of actions:
+ return: simulate key "enter"
+ complete_next: complete word with next completion
+ complete_previous: complete word with previous completion
+ search_text_here: search text in buffer at current position
+ search_text: search text in buffer
+ search_switch_case: switch exact case for search
+ search_switch_regex: switch search type: string/regular expression
+ search_switch_where: switch search in messages/prefixes
+ search_previous: search previous line
+ search_next: search next line
+ search_stop_here: stop search at current position
+ search_stop: stop search
+ delete_previous_char: delete previous char
+ delete_next_char: delete next char
+ delete_previous_word: delete previous word
+ delete_next_word: delete next word
+ delete_beginning_of_line: delete from beginning of line until cursor
+ delete_end_of_line: delete from cursor until end of line
+ delete_line: delete entire line
+ clipboard_paste: paste from clipboard
+ transpose_chars: transpose two chars
+ undo: undo last command line action
+ redo: redo last command line action
+ move_beginning_of_line: move cursor to beginning of line
+ move_end_of_line: move cursor to end of line
+ move_previous_char: move cursor to previous char
+ move_next_char: move cursor to next char
+ move_previous_word: move cursor to previous word
+ move_next_word: move cursor to next word
+ history_previous: recall previous command in current buffer history
+ history_next: recall next command in current buffer history
+ history_global_previous: recall previous command in global history
+ history_global_next: recall next command in global history
+ jump_smart: jump to next buffer with activity
+ jump_last_buffer_displayed: jump to last buffer displayed (before last jump to a buffer)
+ jump_previously_visited_buffer: jump to previously visited buffer
+ jump_next_visited_buffer: jump to next visited buffer
+ hotlist_clear: clear hotlist
+ grab_key: grab a key (optional argument: delay for end of grab, default is 500 milliseconds)
+ grab_key_command: grab a key with its associated command (optional argument: delay for end of grab, default is 500 milliseconds)
+ grab_mouse: grab mouse event code
+ grab_mouse_area: grab mouse event code with area
+ set_unread: set unread marker for all buffers
+ set_unread_current_buffer: set unread marker for current buffer
+ switch_active_buffer: switch to next merged buffer
+ switch_active_buffer_previous: switch to previous merged buffer
+ zoom_merged_buffer: zoom on merged buffer
+ insert: insert text in command line (escaped chars are allowed, see /help print)
+ send: send text to the buffer
+ paste_start: start paste (bracketed paste mode)
+ paste_stop: stop paste (bracketed paste mode)
+
+This command is used by key bindings or plugins.
----
[[command_weechat_key]]
@@ -749,36 +751,34 @@ file: 保存する設定ファイル (拡張子 ".conf" は不要)
set <name> <value>
del <name>
-passphrase: パスフレーズを変更 (パスフレーズがない場合、sec.conf ファイルに平文でデータを保存します)
- -delete: パスフレーズを削除
- decrypt: 暗号化されているデータを復号化 (起動時にパスフレーズが設定されていない場合に起きます)
- -discard: 全ての暗号化データを破棄
- set: 保護データを追加または変更
- del: 保護データを削除
+passphrase: change the passphrase (without passphrase, data is stored as plain text in file sec.conf)
+ -delete: delete passphrase
+ decrypt: decrypt data still encrypted (it happens only if passphrase was not given on startup)
+ -discard: discard all data still encrypted
+ set: add or change secured data
+ del: delete secured data
-引数がない場合、新しいバッファに保護データを表示します。
+Without argument, this command displays secured data in a new buffer.
-パスフレーズを利用する場合 (データが暗号化されている場合)、WeeChat は起動時にパスフレーズを尋ねます。
-環境変数 "WEECHAT_PASSPHRASE" を利用すれば入力を回避できます (WeeChat は /upgrade の時に同じ変数を利用します)。
+When a passphrase is used (data encrypted), it is asked by WeeChat on startup.
+It is possible to set environment variable "WEECHAT_PASSPHRASE" to prevent the prompt (this same variable is used by WeeChat on /upgrade).
-${sec.data.xxx} の形でフォーマットされた保護データは以下の様に利用できます:
- - コマンドライン引数 "--run-command"
- - weechat.startup.command_{before|after}_plugins オプション
- - プロキシオプション: username、password
- - irc サーバオプション: autojoin、command、password、sasl_{username|password}、username、realname
- - relay.network.password オプション
- - /eval コマンド。
+Secured data with format ${sec.data.xxx} can be used in:
+ - command /eval
+ - command line argument "--run-command"
+ - options weechat.startup.command_{before|after}_plugins
+ - other options that may contain a password or sensitive data (for example proxy, irc server and relay); see /help on the options to check if they are evaluated.
-例:
- パスフレーズを設定:
+Examples:
+ set a passphrase:
/secure passphrase this is my passphrase
- freenode の SASL パスワードを暗号化:
+ encrypt freenode SASL password:
/secure set freenode mypassword
/set irc.server.freenode.sasl_password "${sec.data.freenode}"
- oftc の nickserv 用パスワードを暗号化:
+ encrypt oftc password for nickserv:
/secure set oftc mypassword
/set irc.server.oftc.command "/msg nickserv identify ${sec.data.oftc}"
- ニックネーム "mynick" を取り戻すためのエイリアス ghost を設定
+ alias to ghost the nick "mynick":
/alias ghost /eval /msg -server freenode nickserv ghost mynick ${sec.data.freenode}
----
@@ -843,30 +843,30 @@ option: オプションの名前
----
/upgrade [-yes] [<path_to_binary>|-quit]
- -yes: required if option weechat.look.confirm_upgrade is enabled
-path_to_binary: path to WeeChat binary (default is current binary)
- -dummy: do nothing (option used to prevent accidental completion with "-quit")
- -quit: close *ALL* connections, save session and quit WeeChat, which makes possible a delayed restoration (see below)
+ -yes: weechat.look.confirm_upgrade オプションが有効化されていた場合、このオプションは必須です。
+path_to_binary: WeeChat バイナリへのパス (デフォルトは現在のバイナリ)
+ -dummy: 何もしない (補完された "-quit" オプションを不用意に使わないためのオプション)
+ -quit: *すべての*接続を閉じ、セッションを保存して WeeChat を終了。遅延復帰 (詳しくは後述) が可能になります。
-This command upgrades and reloads a running WeeChat session. The new WeeChat binary must have been compiled or installed with a package manager before running this command.
+このコマンドは起動中の WeeChat セッションのアップグレードと再読み込みを行います。このコマンドを実行する前に、新しい WeeChat バイナリをコンパイルするか、パッケージマネージャでインストールしなければいけません。
-Note: SSL connections are lost during upgrade, because reload of SSL sessions is currently not possible with GnuTLS. There is automatic reconnection after upgrade.
+注意: SSL 接続はアップグレード中に破棄されます、これは今のところ GnuTLS では SSL セッションのリロードができないからです。アップグレードの後に自動的に再接続されます。
-Upgrade process has 4 steps:
- 1. save session into files for core and plugins (buffers, history, ..)
- 2. unload all plugins (configuration files (*.conf) are written on disk)
- 3. save WeeChat configuration (weechat.conf)
- 4. execute new WeeChat binary and reload session.
+アップグレードは 4 つの手順を踏みます:
+ 1. コアとプラグイン (バッファ、履歴、...) のセッションをファイルに保存
+ 2. 全てのプラグインをアンロード (設定ファイル (*.conf) はディスクに書き込まれます)
+ 3. WeeChat 設定を保存 (weechat.conf)
+ 4. 新しい WeeChat バイナリを実行してセッションをリロード。<
-With option "-quit", the process is slightly different:
- 1. close *ALL* connections (irc, xfer, relay, ...)
- 2. save session into files (*.upgrade)
- 3. unload all plugins
- 4. save WeeChat configuration
- 5. quit WeeChat
-Then later you can restore session with command: weechat --upgrade
-IMPORTANT: you must restore the session with exactly same configuration (files *.conf).
-It is possible to restore WeeChat session on another machine if you copy the content of directory "~/.weechat".
+オプション "-quit" を使うと、上の挙動が少し変わります:
+ 1. *すべての*接続を閉じる (irc、xfer、relay、...)
+ 2. すべてのセッションをファイルに保存 (*.upgrade)
+ 3. すべてのプラグインをアンロード
+ 4. WeeChat 設定を保存
+ 5. WeeChat を終了
+この後、セッションを回復させるには weechat --upgrade を使ってください。
+重要: 完全に同一の設定で (*.conf ファイルで) セッションを回復させてください。
+"~/.weechat" ディレクトリの内容をコピーすれば異なるマシンで WeeChat のセッションを回復することも可能です。
----
[[command_weechat_uptime]]
@@ -933,7 +933,7 @@ command: 実行するコマンド (コマンドが '/' で始まらない場合
scroll_horiz [-window <number>] [+/-]<value>[%]
scroll_up|scroll_down|scroll_top|scroll_bottom|scroll_beyond_end|scroll_previous_highlight|scroll_next_highlight|scroll_unread [-window <number>]
swap [-window <number>] [up|down|left|right]
- zoom[-window <number>]
+ zoom [-window <number>]
bare [<delay>]
list: 開けられたウィンドウのリストアップ (引数無しの場合、このリストが表示されます)
diff --git a/doc/ja/autogen/user/weechat_options.asciidoc b/doc/ja/autogen/user/weechat_options.asciidoc
index bf592c19d..62afbc156 100644
--- a/doc/ja/autogen/user/weechat_options.asciidoc
+++ b/doc/ja/autogen/user/weechat_options.asciidoc
@@ -533,17 +533,17 @@
** 値: 未制約文字列 (デフォルト値: `""`)
* [[option_weechat.look.command_incomplete]] *weechat.look.command_incomplete*
-** 説明: `セットされた場合、不完全なコマンドと完全なコマンドを両方使えるようになります、例えば /he は /help の意味で使うことができます`
+** 説明: `これを設定した場合、不完全なコマンドと完全なコマンドを両方使えるようになります、例えば /he は /help の意味で使うことができます`
** タイプ: ブール
** 値: on, off (デフォルト値: `off`)
* [[option_weechat.look.confirm_quit]] *weechat.look.confirm_quit*
-** 説明: `セットされた場合、/quit コマンドは "-yes" 引数と共に使われなければいけない (help quit を参照)`
+** 説明: `これを設定した場合、/quit コマンド使う際には必ず "-yes" 引数と共に使う必要があります (help quit 参照)`
** タイプ: ブール
** 値: on, off (デフォルト値: `off`)
* [[option_weechat.look.confirm_upgrade]] *weechat.look.confirm_upgrade*
-** 説明: `if set, /upgrade command must be confirmed with extra argument "-yes" (see /help upgrade)`
+** 説明: `これを設定した場合、/upgrade コマンド使う際には必ず "-yes" 引数と共に使う必要があります (help upgrade 参照)`
** タイプ: ブール
** 値: on, off (デフォルト値: `off`)
@@ -717,6 +717,11 @@
** タイプ: ブール
** 値: on, off (デフォルト値: `on`)
+* [[option_weechat.look.key_grab_delay]] *weechat.look.key_grab_delay*
+** 説明: `default delay (in milliseconds) to grab a key (using default key alt-k); this delay can be overridden in the /input command (see /help input)`
+** タイプ: 整数
+** 値: 1 .. 10000 (デフォルト値: `800`)
+
* [[option_weechat.look.mouse]] *weechat.look.mouse*
** 説明: `マウスサポートの有効化`
** タイプ: ブール
diff --git a/doc/ja/weechat_plugin_api.ja.asciidoc b/doc/ja/weechat_plugin_api.ja.asciidoc
index df591c665..c6b6a011e 100644
--- a/doc/ja/weechat_plugin_api.ja.asciidoc
+++ b/doc/ja/weechat_plugin_api.ja.asciidoc
@@ -7249,9 +7249,8 @@ struct t_hook *weechat_hook_fd (int fd,
* 'fd': ファイルディスクリプタ
* 'flag_read': 1 = 読み込みイベントをキャッチ、0 = 無視
* 'flag_write': 1 = 書き込みイベントをキャッチ、0 = 無視
-// TRANSLATION MISSING
* 'flag_exception': 1 = 例外イベントをキャッチ、0 = 無視
- (_WeeChat ≥ 1.3_: this argument is ignored and not used any more)
+ (_WeeChat バージョン 1.3 以上の場合_: この引数は無視され、使われません)
* 'callback': ファイル (またはソケット) に対してキャッチしたいイベントが発生した場合に実行する関数、
引数と戻り値:
** 'void *data': ポインタ
diff --git a/doc/ja/weechat_user.ja.asciidoc b/doc/ja/weechat_user.ja.asciidoc
index 602102aa7..ee732270d 100644
--- a/doc/ja/weechat_user.ja.asciidoc
+++ b/doc/ja/weechat_user.ja.asciidoc
@@ -1100,7 +1100,7 @@ irc サーバ "freenode" に含まれる全てのバッファに対して設定
| key[Backsp.] .2+| コマンドラインで前の文字を削除 .2+| `/input delete_previous_char`
| key[ctrl-h]
| key[ctrl-k] | コマンドラインでカーソルより後の文字列を削除 (削除された文字列はクリップボードに保存) | `/input delete_end_of_line`
-| key[ctrl-r] | バッファ中の履歴からテキスト検索 (<<key_bindings_search_context,検索モード用のキー>>を参照) | `/input search_text`
+| key[ctrl-r] | バッファ中の履歴からテキスト検索 (<<key_bindings_search_context,検索モード用のキー>>を参照) | `/input search_text_here`
| key[ctrl-t] | 文字の入れ替え | `/input transpose_chars`
| key[ctrl-u] | コマンドラインでカーソルより前の文字列を削除 (削除された文字列はクリップボードに保存) | `/input delete_beginning_of_line`
| key[ctrl-w] | コマンドラインで前の単語を削除 (削除された文字列はクリップボードに保存) | `/input delete_previous_word`
@@ -1161,7 +1161,7 @@ irc サーバ "freenode" に含まれる全てのバッファに対して設定
| key[alt-j,alt-r] | IRC 生バッファに移動 | `/server raw`
| key[alt-j,alt-s] | IRC サーババッファに移動 | `/server jump`
| key[alt-0...9] | 番号のバッファに移動 (0 = 10) | `/buffer *N`
-| key[alt-j,01...99] | 番号のバッファに移動 | `/buffer NN`
+| key[alt-j,01...99] | 番号のバッファに移動 | `/buffer *NN`
| key[alt-l] | 最小限表示の有効無効を切り替え | `/window bare`
| key[alt-m] | マウスの有効無効を切り替え | `/mouse toggle`
| key[alt-n] | 次のハイライトまでスクロール | `/window scroll_next_highlight`
@@ -1195,9 +1195,12 @@ key[ctrl-r] が押された状態) でのみ有効です。
| key[Tab] | 検索範囲: メッセージ (デフォルト)、プレフィックス、プレフィックスとメッセージ | `/input search_switch_where`
| key[↑] | 前のキーワードで検索 | `/input search_previous`
| key[↓] | 次のキーワードで検索 | `/input search_next`
-| key[Enter] .3+| 検索を終了 .3+| `/input search_stop`
+// TRANSLATION MISSING
+| key[Enter] .3+| Stop search at current position .3+| `/input search_stop_here`
| key[ctrl-j]
| key[ctrl-m]
+// TRANSLATION MISSING
+| key[ctrl-q] | Stop search and scroll to bottom of buffer | `/input search_stop`
|===
[[key_bindings_cursor_context]]
diff --git a/doc/pl/autogen/plugin_api/hdata.asciidoc b/doc/pl/autogen/plugin_api/hdata.asciidoc
index cdabbadb8..0723bb4b1 100644
--- a/doc/pl/autogen/plugin_api/hdata.asciidoc
+++ b/doc/pl/autogen/plugin_api/hdata.asciidoc
@@ -200,6 +200,7 @@
*** 'away_message' (string)
*** 'away_time' (time)
*** 'lag' (integer)
+*** 'lag_displayed' (integer)
*** 'lag_check_time' (other)
*** 'lag_next_check' (time)
*** 'lag_last_refresh' (time)
@@ -942,6 +943,7 @@
*** 'scrolling' (integer)
*** 'start_col' (integer)
*** 'lines_after' (integer)
+*** 'text_search_start_line' (pointer, hdata: "line")
*** 'prev_scroll' (pointer, hdata: "window_scroll")
*** 'next_scroll' (pointer, hdata: "window_scroll")
* 'window_tree': drzewo okien
diff --git a/doc/pl/autogen/user/irc_options.asciidoc b/doc/pl/autogen/user/irc_options.asciidoc
index 111e71480..f79bf39a4 100644
--- a/doc/pl/autogen/user/irc_options.asciidoc
+++ b/doc/pl/autogen/user/irc_options.asciidoc
@@ -62,6 +62,11 @@
** typ: kolor
** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie (domyślna wartość: `default`)
+* [[option_irc.color.topic_current]] *irc.color.topic_current*
+** opis: `color for current channel topic (when joining a channel or using /topic)`
+** typ: kolor
+** wartości: nazwa koloru WeeChat (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), numer koloru terminala albo alias; atrybuty dozwolone przed kolorem (tylko dla kolorów testu, nie tła): "*" pogrubienie, "!" odwrócenie, "/" pochylenie, "_" podkreślenie (domyślna wartość: `default`)
+
* [[option_irc.color.topic_new]] *irc.color.topic_new*
** opis: `kolor nowego tematu kanału (kiedy temat został zmieniony)`
** typ: kolor
diff --git a/doc/pl/autogen/user/weechat_commands.asciidoc b/doc/pl/autogen/user/weechat_commands.asciidoc
index 16de1562a..b12cbd464 100644
--- a/doc/pl/autogen/user/weechat_commands.asciidoc
+++ b/doc/pl/autogen/user/weechat_commands.asciidoc
@@ -414,58 +414,60 @@ Wartość: ilość elementów historii do pokazania
----
/input <akcja> [<argumenty>]
-lista akcji:
- return: symuluje klawisz "enter"
- complete_next: dopełnia słowo następnym dopełnieniem
- complete_previous: dopełnia słowo poprzednim dopełnieniem
- search_text: szuka tekstu w buforze
- search_switch_case: przełącza na dokładne dopasowanie przy szukaniu
- search_switch_regex: przełącza typy wyszukiwania ciąg/wyrażenie regularne
- search_switch_where: zmienia miejsce przeszukiwania na wiadomości/przedrostki
- search_previous: szuka poprzednich linii
- search_next: szuka następnych linii
- search_stop: zatrzymuje wyszukiwanie
- delete_previous_char: usuwa poprzedni znak
- delete_next_char: usuwa następny znak
- delete_previous_word: usuwa poprzednie słowo
- delete_next_word: usuwa następne słowo
- delete_beginning_of_line: usuwa od początku linii do kursora
- delete_end_of_line: usuwa od kursora do końca linii
- delete_line: usuwa cała linię
- clipboard_paste: wkleja ze schowka
- transpose_chars: zamienia dwa znaki
- undo: cofa ostatnia akcję w linii poleceń
- redo: ponownie wykonuje cofniętą akcję w linii poleceń
- move_beginning_of_line: przesuwa kursor na początek linii
- move_end_of_line: przesuwa kursor na koniec linii
- move_previous_char: przesuwa kursor do poprzedniego znaku
- move_next_char: przesuwa kursor do następnego znaku
- move_previous_word: przesuwa kursor do poprzedniego słowa
- move_next_word: przesuwa kursor do następnego słowa
- history_previous: przywołuje poprzednia komendę z historii obecnego bufora
- history_next: przywołuje następną komendę z historii obecnego bufora
- history_global_previous: przywołuje poprzednią komendę z globalnej historii
- history_global_next: przywołuje następną komendę z globalnej historii
- jump_smart: przechodzi do następnego bufora z aktywnością
- jump_last_buffer_displayed: przechodzi do ostatnio wyświetlanego bufora (przed ostatnim przeskoczeniem do bufora)
- jump_previously_visited_buffer: przeskakuje do poprzedniego bufora
- jump_next_visited_buffer: przeskakuje to następnego bufora
- hotlist_clear: czyści hotlistę
- grab_key: przechwytuje klawisz (opcjonalny argument: opóźnienie końca przechwycenia, domyślnie jest to 500 milisekund)
- grab_key_command: przechwytuje klawisz z przypisaną komendą(opcjonalny argument: opóźnienie końca przechwycenia, domyślnie jest to 500 milisekund)
- grab_mouse: przechwytuje kod zdarzenia myszy
- grab_mouse_area: przechwytuje kod zdarzenia myszy z obszarem
- set_unread: ustawia znacznik nie przeczytania dla wszystkich buforów
- set_unread_current_buffer: ustawia znacznik nie przeczytania dla obecnego bufora
- switch_active_buffer: przełącza do następnego połączonego buforu
- switch_active_buffer_previous: przełącza do poprzedniego połączonego buforu
- zoom_merged_buffer: zoom na połączony bufor
- insert: wkleja tekst do linii poleceń (dozwolone są wyescapowane znaki, zobacz /help print)
- send: wysyła tekst do bufora
- paste_start: zaczyna wklejanie (tryb z rozpoznawaniem wklejanego tekstu)
- paste_stop: kończy wklejanie (tryb z rozpoznawaniem wklejanego tekstu)
-
-Ta komenda jest używana do przypisywania klawiszy lub przez wtyczki.
+list of actions:
+ return: simulate key "enter"
+ complete_next: complete word with next completion
+ complete_previous: complete word with previous completion
+ search_text_here: search text in buffer at current position
+ search_text: search text in buffer
+ search_switch_case: switch exact case for search
+ search_switch_regex: switch search type: string/regular expression
+ search_switch_where: switch search in messages/prefixes
+ search_previous: search previous line
+ search_next: search next line
+ search_stop_here: stop search at current position
+ search_stop: stop search
+ delete_previous_char: delete previous char
+ delete_next_char: delete next char
+ delete_previous_word: delete previous word
+ delete_next_word: delete next word
+ delete_beginning_of_line: delete from beginning of line until cursor
+ delete_end_of_line: delete from cursor until end of line
+ delete_line: delete entire line
+ clipboard_paste: paste from clipboard
+ transpose_chars: transpose two chars
+ undo: undo last command line action
+ redo: redo last command line action
+ move_beginning_of_line: move cursor to beginning of line
+ move_end_of_line: move cursor to end of line
+ move_previous_char: move cursor to previous char
+ move_next_char: move cursor to next char
+ move_previous_word: move cursor to previous word
+ move_next_word: move cursor to next word
+ history_previous: recall previous command in current buffer history
+ history_next: recall next command in current buffer history
+ history_global_previous: recall previous command in global history
+ history_global_next: recall next command in global history
+ jump_smart: jump to next buffer with activity
+ jump_last_buffer_displayed: jump to last buffer displayed (before last jump to a buffer)
+ jump_previously_visited_buffer: jump to previously visited buffer
+ jump_next_visited_buffer: jump to next visited buffer
+ hotlist_clear: clear hotlist
+ grab_key: grab a key (optional argument: delay for end of grab, default is 500 milliseconds)
+ grab_key_command: grab a key with its associated command (optional argument: delay for end of grab, default is 500 milliseconds)
+ grab_mouse: grab mouse event code
+ grab_mouse_area: grab mouse event code with area
+ set_unread: set unread marker for all buffers
+ set_unread_current_buffer: set unread marker for current buffer
+ switch_active_buffer: switch to next merged buffer
+ switch_active_buffer_previous: switch to previous merged buffer
+ zoom_merged_buffer: zoom on merged buffer
+ insert: insert text in command line (escaped chars are allowed, see /help print)
+ send: send text to the buffer
+ paste_start: start paste (bracketed paste mode)
+ paste_stop: stop paste (bracketed paste mode)
+
+This command is used by key bindings or plugins.
----
[[command_weechat_key]]
@@ -749,37 +751,35 @@ Bez podania argumentu wszystkie pliki (WeeChat oraz wtyczki) zostaną przeładow
set <nazwa> <wartość>
del <nazwa>
-passphrase: zmienia hasło (bez hasła dane są przechowywane w postaci tekstu w pliku sec.conf)
- -delete: kasuje hasło
- decrypt: rozszyfrowuje dane będące ciągle zaszyfrowane (zdarza się to tylko jeśli hasło nie zostało podane przy uruchomieniu)
- -discard: odrzuca wszystkie nadal zaszyfrowane dane
- set: dodaje lub zmienia zaszyfrowane dane
- del: kasuje zaszyfrowane dane
+passphrase: change the passphrase (without passphrase, data is stored as plain text in file sec.conf)
+ -delete: delete passphrase
+ decrypt: decrypt data still encrypted (it happens only if passphrase was not given on startup)
+ -discard: discard all data still encrypted
+ set: add or change secured data
+ del: delete secured data
-Bez argumentu, komenda wyświetli zabezpieczone dane w nowym buforze.
+Without argument, this command displays secured data in a new buffer.
-Jeśli używane jest hasło (dane zaszyfrowane), należy je podać podczas startu WeeChat.
-Jest możliwe ustawienie zmiennej środowiskowej "WEECHAT_PASSPHRASE", aby nie podawać hasła przy uruchomieniu (ta sama zmienna jest używana przez WeeChat podczas wykonywania /upgrade).
+When a passphrase is used (data encrypted), it is asked by WeeChat on startup.
+It is possible to set environment variable "WEECHAT_PASSPHRASE" to prevent the prompt (this same variable is used by WeeChat on /upgrade).
-Zabezpieczone dane w formacie ${sec.data.xxx} można użyć w:
- - argumencie w linii poleceń "--run-command"
- - opcjach weechat.startup.command_{before|after}_plugins
- - opcjach proxy: username, password
- - opcji serwera autojoin, command, password, sasl_{username|password}, username, realname
- - opcji relay.network.password
- - komendzie /eval.
+Secured data with format ${sec.data.xxx} can be used in:
+ - command /eval
+ - command line argument "--run-command"
+ - options weechat.startup.command_{before|after}_plugins
+ - other options that may contain a password or sensitive data (for example proxy, irc server and relay); see /help on the options to check if they are evaluated.
-Przykłady:
- ustawienie hasła:
- /secure passphrase to jest moje hasło
- zaszyfrowanie hasła dla freenode SASL:
- /secure set freenode mojehasło
+Examples:
+ set a passphrase:
+ /secure passphrase this is my passphrase
+ encrypt freenode SASL password:
+ /secure set freenode mypassword
/set irc.server.freenode.sasl_password "${sec.data.freenode}"
- zaszyfrowanie hasła dla nickserva na serwerze oftc:
- /secure set oftc mojehasło
+ encrypt oftc password for nickserv:
+ /secure set oftc mypassword
/set irc.server.oftc.command "/msg nickserv identify ${sec.data.oftc}"
- alias dla polecenia ghost dla nicka "mójnick":
- /alias ghost /eval /msg -server freenode nickserv ghost mójnick ${sec.data.freenode}
+ alias to ghost the nick "mynick":
+ /alias ghost /eval /msg -server freenode nickserv ghost mynick ${sec.data.freenode}
----
[[command_weechat_set]]
@@ -921,20 +921,20 @@ Przykłady:
----
/window list
- -1|+1|b#|up|down|left|right [-window <numer>]
- <numer>
- splith|splitv [-window <numer>] [<pct>]
- resize [-window <numer>] [+/-]<pct>
+ -1|+1|b#|up|down|left|right [-window <number>]
+ <number>
+ splith|splitv [-window <number>] [<pct>]
+ resize [-window <number>] [+/-]<pct>
balance
- merge [-window <numer>] [all]
- page_up|page_down [-window <numer>]
+ merge [-window <number>] [all]
+ page_up|page_down [-window <number>]
refresh
- scroll [-window <numer>] [+/-]<wartość>[s|m|h|d|M|y]
- scroll_horiz [-window <numer>] [+/-]<wartość>[%]
- scroll_up|scroll_down|scroll_top|scroll_bottom|scroll_beyond_end|scroll_previous_highlight|scroll_next_highlight|scroll_unread [-window <numer>]
- swap [-window <numer>] [up|down|left|right]
- zoom[-window <numer>]
- bare [<opóźnienie>]
+ scroll [-window <number>] [+/-]<value>[s|m|h|d|M|y]
+ scroll_horiz [-window <number>] [+/-]<value>[%]
+ scroll_up|scroll_down|scroll_top|scroll_bottom|scroll_beyond_end|scroll_previous_highlight|scroll_next_highlight|scroll_unread [-window <number>]
+ swap [-window <number>] [up|down|left|right]
+ zoom [-window <number>]
+ bare [<delay>]
list: lista otwartych okien (bez argumentu wyświetlana jest ta lista)
-1: skok do poprzedniego okna
diff --git a/doc/pl/autogen/user/weechat_options.asciidoc b/doc/pl/autogen/user/weechat_options.asciidoc
index 68a21d2af..ac6aed789 100644
--- a/doc/pl/autogen/user/weechat_options.asciidoc
+++ b/doc/pl/autogen/user/weechat_options.asciidoc
@@ -717,6 +717,11 @@
** typ: bool
** wartości: on, off (domyślna wartość: `on`)
+* [[option_weechat.look.key_grab_delay]] *weechat.look.key_grab_delay*
+** opis: `default delay (in milliseconds) to grab a key (using default key alt-k); this delay can be overridden in the /input command (see /help input)`
+** typ: liczba
+** wartości: 1 .. 10000 (domyślna wartość: `800`)
+
* [[option_weechat.look.mouse]] *weechat.look.mouse*
** opis: `włącza wsparcie dla myszy`
** typ: bool
diff --git a/doc/pl/weechat_user.pl.asciidoc b/doc/pl/weechat_user.pl.asciidoc
index 7ae55d5a8..7901e1064 100644
--- a/doc/pl/weechat_user.pl.asciidoc
+++ b/doc/pl/weechat_user.pl.asciidoc
@@ -1112,7 +1112,7 @@ Poziom powiadomień dla bufora może zostać ustawiony za pomocą komendy `/buff
| key[Backsp.] .2+| Usuń poprzedni znak w linii poleceń .2+| `/input delete_previous_char`
| key[ctrl-h]
| key[ctrl-k] | Usuń od znacznika kursora do końca linii poleceń (usuwany ciąg jest kopiowany do schowka) | `/input delete_end_of_line`
-| key[ctrl-r] | Wyszukaj tekst w historii bufora (zobacz <<key_bindings_search_context,skróty dla kontekstu wyszukiwania>>) | `/input search_text`
+| key[ctrl-r] | Wyszukaj tekst w historii bufora (zobacz <<key_bindings_search_context,skróty dla kontekstu wyszukiwania>>) | `/input search_text_here`
| key[ctrl-t] | Przestaw znaki | `/input transpose_chars`
| key[ctrl-u] | Usuń od znaku kursora do początku linii poleceń (usuwany ciąg jest kopiowany do schowka) | `/input delete_beginning_of_line`
| key[ctrl-w] | Usuń poprzednie słowo w linii poleceń (usuwany ciąg jest kopiowany do schowka) | `/input delete_previous_word`
@@ -1173,7 +1173,7 @@ Poziom powiadomień dla bufora może zostać ustawiony za pomocą komendy `/buff
| key[alt-j,alt-r] | Przełącz na bufor IRC raw | `/server raw`
| key[alt-j,alt-s] | Przełącz na bufor serwera IRC | `/server jump`
| key[alt-0...9] | Przełącz na bufor za pomocą liczb (0 = 10) | `/buffer *N`
-| key[alt-j,01...99] | Przełącz na bufor za pomocą liczb | `/buffer NN`
+| key[alt-j,01...99] | Przełącz na bufor za pomocą liczb | `/buffer *NN`
| key[alt-l] | Przełącz tryb niesformatowanego wyświetlania | `/window bare`
| key[alt-m] | Przełącz obsługę myszy | `/mouse toggle`
| key[alt-n] | Przewiń do następnego powiadomienia | `/window scroll_next_highlight`
@@ -1207,9 +1207,12 @@ zostanie wciśnięta w buforze tekstowym).
| key[Tab] | Przełącz miejsce wyszukiwania: wiadomości (domyślne), prefiksy, prefiksy + wiadmości | `/input search_switch_where`
| key[↑] | Poprzednie wystąpienie | `/input search_previous`
| key[↓] | Następne wystąpienie | `/input search_next`
-| key[Enter] .3+| Zakończ wyszukiwanie .3+| `/input search_stop`
+// TRANSLATION MISSING
+| key[Enter] .3+| Stop search at current position .3+| `/input search_stop_here`
| key[ctrl-j]
| key[ctrl-m]
+// TRANSLATION MISSING
+| key[ctrl-q] | Stop search and scroll to bottom of buffer | `/input search_stop`
|===
[[key_bindings_cursor_context]]