core: add description of "command" in /help key
This commit is contained in:
parent
54e5dad740
commit
5c64e36bc0
@ -339,43 +339,44 @@ Dieser Befehl wird sinnvollerweise mittels Tastenbelegungen oder Erweiterungen g
|
||||
resetall -yes [<context>]
|
||||
missing [<context>]
|
||||
|
||||
list: zeigt die aktuelle Tastenbelegungen an (ohne Angabe von Argumente wird diese Liste standardmäßig ausgegeben)
|
||||
listdefault: zeigt die Standardeinstellung der Tastenbelegung an
|
||||
listdiff: zeigt die Unterschiede zwischen der aktuell genutzten Tastaturbelegung und der Standardbelegung an (hinzugefügte/verändert/gelöschte Tastenbelegungen)
|
||||
context: Name des Kontextes ("default" oder "search")
|
||||
bind: belegt eine Taste mit einem Befehl oder zeigt an welcher Befehl auf eine Taste gelegt wurde (für Kontext "default")
|
||||
bindctxt: belegt eine Taste mit einem Befehl oder zeigt an welcher Befehl auf eine Taste gelegt wurde, dies trifft für Kontext definierte Tasten zu
|
||||
unbind: hebt eine Tastenbelegung auf (für Kontext "default")
|
||||
unbindctxt: hebt eine Tastenbelegung für den angegebenen Kontext auf
|
||||
reset: die Tastenbelegung wird für die ausgewählte Taste auf die Standardeinstellung zurück gesetzt (für Kontext "default")
|
||||
resetctxt: die Tastenbelegung wird für die ausgewählte Taste auf die Standardeinstellung zurück gesetzt, dies trifft für den ausgewählten Kontext zu
|
||||
resetall: die Tastenbelegung wird auf die Standardeinstellungen zurück gesetzt. Dies löscht ALLE persönlichen Tastenbelegungen (Vorsicht!)
|
||||
missing: fügt fehlende Tastenbelegungen hinzu (dazu wird die Standardbelegung genutzt). Dies kann sinnvoll sein wenn man auf eine neue WeeChat Version umgestiegen ist
|
||||
list: list all current keys (without argument, this list is displayed)
|
||||
listdefault: list default keys
|
||||
listdiff: list differences between current and default keys (keys added, redefined or deleted)
|
||||
context: name of context ("default" or "search")
|
||||
bind: bind a command to a key or display command bound to key (for context "default")
|
||||
bindctxt: bind a command to a key or display command bound to key, for given context
|
||||
command: command (many commands can be separated by semicolons)
|
||||
unbind: remove a key binding (for context "default")
|
||||
unbindctxt: remove a key binding for given context
|
||||
reset: reset a key to default binding (for context "default")
|
||||
resetctxt: reset a key to default binding, for given context
|
||||
resetall: restore bindings to the default values and delete ALL personal bindings (use carefully!)
|
||||
missing: add missing keys (using default bindings), useful after installing new WeeChat version
|
||||
|
||||
Falls einer Taste ein Befehl zugeordnet werden soll ist es ratsam zuerst mit der Tastenkombination alt+k (oder Esc + k) einen Fangmodus zu aktivieren um damit die neu zu belegende Taste zu greifen. Durch diesen Schritt wird der entsprechende Tasten-Code in die Befehlszeile übernommen.
|
||||
When binding a command to a key, it is recommended to use key alt+k (or Esc then k), and then press the key to bind: this will insert key code in command line.
|
||||
|
||||
Für Kontext "mouse" (Kontext "cursor" ist auch möglich), hat der zu verwendende Schlüssel folgendes Format: "@area:Schlüssel" oder "@area1>area2:Schlussel". "area" kann folgende Werte habe:
|
||||
*: jedweder Bereich des Bildschirms
|
||||
chat: Chatbereich (für jeden Buffer)
|
||||
chat(xxx): Chatbereich für einen Buffer mit dem Namen "xxx" (vollständiger Name mit Erweiterung. Beispiel: chat(perl.iset):)
|
||||
bar(*): beliebige Bar
|
||||
bar(xxx): Bar mit dem Namen "xxx"
|
||||
item(*): beliebiges Bar-Item
|
||||
item(xxx): Bar-Item mit Namen "xxx"
|
||||
Der zu nutzende Schlüssel kann mit '*' beginnen oder enden um mehrere unterschiedliche Mausereignisse auszuwählen.
|
||||
Für den Kontext "mouse" kann ein besonderer Übergabewert für den zu nutzenden Befehl verwendet werden, "hsignal:name". Dieses sendet das hsignal "name" und als Inhalt ein Hashtable als Argument.
|
||||
Ein weiterer Übergabewert ist "-" und kann genutzt werden um einen Schlüssel zu deaktivieren (der Schlüssel wird bei der Durchführung übersprungen).
|
||||
For context "mouse" (possible in context "cursor" too), key has format: "@area:key" or "@area1>area2:key" where area can be:
|
||||
*: any area on screen
|
||||
chat: chat area (any buffer)
|
||||
chat(xxx): char area for buffer with name "xxx" (full name including plugin)
|
||||
bar(*): any bar
|
||||
bar(xxx): bar "xxx"
|
||||
item(*): any bar item
|
||||
item(xxx): bar item "xxx"
|
||||
The key can start or end with '*' to match many mouse events.
|
||||
A special value for command with format "hsignal:name" can be used for context mouse, this will send the hsignal "name" with the focus hashtable as argument.
|
||||
Another special value "-" can be used to disable key (it will be ignored when looking for keys).
|
||||
|
||||
Beispiele:
|
||||
Mit der Tastenkombination "alt-x" wird die Nicklist-Bar an-und aus geschaltet:
|
||||
Examples:
|
||||
key alt-x to toggle nicklist bar:
|
||||
/key bind meta-x /bar toggle nicklist
|
||||
Mit der Tastenkombination "alt-r" wird direkt zum IRC #weechat Buffer gewechselt:
|
||||
key alt-r to jump to #weechat IRC channel:
|
||||
/key bind meta-r /buffer #weechat
|
||||
Die Tastenkombination "alt-r" wird auf die Standardfunktion zurückgesetzt:
|
||||
restore default binding for key alt-r:
|
||||
/key reset meta-r
|
||||
"Tab"-Taste nutzen um im Kontext "search" die Suche innerhalb eines Buffers zu beenden:
|
||||
key "tab" to stop search in buffer:
|
||||
/key bindctxt search ctrl-I /input search_stop
|
||||
Auswahl eines Nicknamens mittels mittlerem Mausknopf zeigt zusätzliche Informationen zu dem Nick an:
|
||||
middle button of mouse on a nick to retrieve info on nick:
|
||||
/key bindctxt mouse @item(buffer_nicklist):button3 /msg nickserv info ${nick}
|
||||
........................................
|
||||
|
||||
|
@ -345,6 +345,7 @@ listdefault: list default keys
|
||||
context: name of context ("default" or "search")
|
||||
bind: bind a command to a key or display command bound to key (for context "default")
|
||||
bindctxt: bind a command to a key or display command bound to key, for given context
|
||||
command: command (many commands can be separated by semicolons)
|
||||
unbind: remove a key binding (for context "default")
|
||||
unbindctxt: remove a key binding for given context
|
||||
reset: reset a key to default binding (for context "default")
|
||||
|
@ -6,7 +6,7 @@
|
||||
complétion: complétion pour l'alias (optionnel, par défaut la complétion se fait avec la commande cible)
|
||||
note: vous pouvez utiliser %%commande pour utiliser la complétion d'une commande existante
|
||||
alias: nom de l'alias (peut démarrer ou se terminer par "*" pour une liste d'alias)
|
||||
commande: nom de la commande avec les paramètres (plusieurs commandes peuvent être séparées par des point-virgules)
|
||||
commande: nom de la commande avec les paramètres (plusieurs commandes peuvent être séparées par des points-virgules)
|
||||
|
||||
Sans paramètre, cette commande liste tous les alias définis.
|
||||
|
||||
|
@ -345,6 +345,7 @@ listdefault: afficher les touches par défaut
|
||||
contexte: nom du contexte ("default" ou "search")
|
||||
bind: associer une commande à une touche ou affiche la commande associée à la touche
|
||||
bindctxt: associer une commande à une touche ou affiche la commande associée à la touche pour le contexte donné
|
||||
commande: commande (plusieurs commandes peuvent êtres séparées par des points-virgules)
|
||||
unbind: supprimer l'association à une touche
|
||||
unbindctxt: supprimer l'association à une touche pour le contexte donné
|
||||
reset: réinitialiser une touche à son association par défaut
|
||||
|
@ -339,43 +339,44 @@ Questo comando viene usato dalla combinazioni tasti o dai plugin.
|
||||
resetall -yes [<contesto>]
|
||||
missing [<contesto>]
|
||||
|
||||
list: elenca tutti i tasti correnti (senza argomento, viene visualizzata questa lista)
|
||||
listdefault: elenca i tasti predefiniti
|
||||
listdiff: elenca le differenze tra tasti attuali e predefiniti (tasti aggiunti, ridefiniti o eliminati)
|
||||
contesto: nome del contesto ("default" oppure "search")
|
||||
bind: associa un comando ad un tasto o visualizza il comando associato al tasto (per il contesto "default")
|
||||
bindctxt: associa un comando ad un tasto o mostra il comando associato al tasto, per il contesto fornito
|
||||
unbind: rimuove una combinazione di tasti (per il contesto "default")
|
||||
unbindctxt: rimuove la combinazione tasti per il contesto fornito
|
||||
reset: ripristina un tasto all'assegnazione predefinita
|
||||
resetctxt: ripristina un tasto alla combinazione predefinita per il contesto fornito
|
||||
resetall: ripristina le combinazioni ai valori predefiniti ed elimina TUTTE le combinazioni personalizzate (usare con cautela!)
|
||||
missing: aggiunge tasti mancanti (usando le combinazioni predefinite), utile dopo l'installazione di una nuova versione di WeeChat
|
||||
list: list all current keys (without argument, this list is displayed)
|
||||
listdefault: list default keys
|
||||
listdiff: list differences between current and default keys (keys added, redefined or deleted)
|
||||
context: name of context ("default" or "search")
|
||||
bind: bind a command to a key or display command bound to key (for context "default")
|
||||
bindctxt: bind a command to a key or display command bound to key, for given context
|
||||
command: command (many commands can be separated by semicolons)
|
||||
unbind: remove a key binding (for context "default")
|
||||
unbindctxt: remove a key binding for given context
|
||||
reset: reset a key to default binding (for context "default")
|
||||
resetctxt: reset a key to default binding, for given context
|
||||
resetall: restore bindings to the default values and delete ALL personal bindings (use carefully!)
|
||||
missing: add missing keys (using default bindings), useful after installing new WeeChat version
|
||||
|
||||
Al momento di associare un comando ad un tasto si raccomanda di usare il tasto alt+k (oppure Esc e k), e digitare il tasto da associare: il codice tasto verrà inserito nella riga di comando.
|
||||
When binding a command to a key, it is recommended to use key alt+k (or Esc then k), and then press the key to bind: this will insert key code in command line.
|
||||
|
||||
Per il contesto "mouse" (possibile anche nel contesto "cursor"), il formato del tasto è: "@area:tasto" oppure "@area1>area2:tasto" dove area può essere:
|
||||
*: qualunque area sullo schermo
|
||||
chat: area di chat (qualunque buffer)
|
||||
chat(xxx): area di chat per il buffer con il nome "xxx" (nome completo includendo il plugin)
|
||||
bar(*): qualunque barra
|
||||
bar(xxx): barra "xxx"
|
||||
item(*): qualunque elemento barra
|
||||
item(xxx): elemento barra "xxx"
|
||||
Il tasto può iniziare o terminare con '*' per corrispondere a più eventi del mouse.
|
||||
Un valore speciale per questo comando con il formato "hsignal:nome" può essere usato per il contesto del mouse, e invierà hsignal "nome" con la tabella hash di focuse come argomento.
|
||||
Può essere usato un altro valore speciale "-" per disabilitare il tasto (verrà ignorato quando si cercano i tasti).
|
||||
For context "mouse" (possible in context "cursor" too), key has format: "@area:key" or "@area1>area2:key" where area can be:
|
||||
*: any area on screen
|
||||
chat: chat area (any buffer)
|
||||
chat(xxx): char area for buffer with name "xxx" (full name including plugin)
|
||||
bar(*): any bar
|
||||
bar(xxx): bar "xxx"
|
||||
item(*): any bar item
|
||||
item(xxx): bar item "xxx"
|
||||
The key can start or end with '*' to match many mouse events.
|
||||
A special value for command with format "hsignal:name" can be used for context mouse, this will send the hsignal "name" with the focus hashtable as argument.
|
||||
Another special value "-" can be used to disable key (it will be ignored when looking for keys).
|
||||
|
||||
Esempi:
|
||||
il tasto alt-x per alternare la barra della nicklist:
|
||||
Examples:
|
||||
key alt-x to toggle nicklist bar:
|
||||
/key bind meta-x /bar toggle nicklist
|
||||
il tasto alt-r per passare al canale IRC #weechat:
|
||||
key alt-r to jump to #weechat IRC channel:
|
||||
/key bind meta-r /buffer #weechat
|
||||
ripristinare la combinazione predefinita per il tasto alt-r:
|
||||
restore default binding for key alt-r:
|
||||
/key reset meta-r
|
||||
il tasto "tab" per fermare la ricerca nel buffer:
|
||||
key "tab" to stop search in buffer:
|
||||
/key bindctxt search ctrl-I /input search_stop
|
||||
il tasto centrale del mouse su un nick per ottenere le informazioni:
|
||||
middle button of mouse on a nick to retrieve info on nick:
|
||||
/key bindctxt mouse @item(buffer_nicklist):button3 /msg nickserv info ${nick}
|
||||
........................................
|
||||
|
||||
|
3
po/cs.po
3
po/cs.po
@ -20,7 +20,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WeeChat 0.3.8-dev\n"
|
||||
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
|
||||
"POT-Creation-Date: 2012-04-11 22:23+0200\n"
|
||||
"POT-Creation-Date: 2012-05-05 19:51+0200\n"
|
||||
"PO-Revision-Date: 2012-02-26 09:16+0100\n"
|
||||
"Last-Translator: Jiri Golembiovsky <golemj@gmail.com>\n"
|
||||
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
|
||||
@ -1457,6 +1457,7 @@ msgid ""
|
||||
"context \"default\")\n"
|
||||
" bindctxt: bind a command to a key or display command bound to key, for "
|
||||
"given context\n"
|
||||
" command: command (many commands can be separated by semicolons)\n"
|
||||
" unbind: remove a key binding (for context \"default\")\n"
|
||||
" unbindctxt: remove a key binding for given context\n"
|
||||
" reset: reset a key to default binding (for context \"default\")\n"
|
||||
|
4
po/de.po
4
po/de.po
@ -23,7 +23,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WeeChat 0.3.7-dev\n"
|
||||
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
|
||||
"POT-Creation-Date: 2012-04-11 22:23+0200\n"
|
||||
"POT-Creation-Date: 2012-05-05 19:51+0200\n"
|
||||
"PO-Revision-Date: 2012-03-27 22:46+0100\n"
|
||||
"Last-Translator: Nils Görs <weechatter@arcor.de>\n"
|
||||
"Language-Team: German <weechatter@arcor.de>\n"
|
||||
@ -1527,6 +1527,7 @@ msgstr ""
|
||||
"<context> <key> || reset <key> || resetctxt <context> <key> || resetall -yes "
|
||||
"[<context>] || missing [<context>]"
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
" list: list all current keys (without argument, this list is "
|
||||
"displayed)\n"
|
||||
@ -1538,6 +1539,7 @@ msgid ""
|
||||
"context \"default\")\n"
|
||||
" bindctxt: bind a command to a key or display command bound to key, for "
|
||||
"given context\n"
|
||||
" command: command (many commands can be separated by semicolons)\n"
|
||||
" unbind: remove a key binding (for context \"default\")\n"
|
||||
" unbindctxt: remove a key binding for given context\n"
|
||||
" reset: reset a key to default binding (for context \"default\")\n"
|
||||
|
4
po/es.po
4
po/es.po
@ -22,7 +22,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WeeChat 0.3.8-dev\n"
|
||||
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
|
||||
"POT-Creation-Date: 2012-05-01 09:25+0200\n"
|
||||
"POT-Creation-Date: 2012-05-05 19:51+0200\n"
|
||||
"PO-Revision-Date: 2012-04-25 19:20-0300\n"
|
||||
"Last-Translator: Elián Hanisch <lambdae2@gmail.com>\n"
|
||||
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
|
||||
@ -1482,6 +1482,7 @@ msgstr ""
|
||||
"resetctxt <contexto> <tecla> || resetall -yes [<contexto>] || missing "
|
||||
"[<contexto>]"
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
" list: list all current keys (without argument, this list is "
|
||||
"displayed)\n"
|
||||
@ -1493,6 +1494,7 @@ msgid ""
|
||||
"context \"default\")\n"
|
||||
" bindctxt: bind a command to a key or display command bound to key, for "
|
||||
"given context\n"
|
||||
" command: command (many commands can be separated by semicolons)\n"
|
||||
" unbind: remove a key binding (for context \"default\")\n"
|
||||
" unbindctxt: remove a key binding for given context\n"
|
||||
" reset: reset a key to default binding (for context \"default\")\n"
|
||||
|
9
po/fr.po
9
po/fr.po
@ -21,8 +21,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WeeChat 0.3.8-dev\n"
|
||||
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
|
||||
"POT-Creation-Date: 2012-04-11 22:23+0200\n"
|
||||
"PO-Revision-Date: 2012-04-11 22:24+0200\n"
|
||||
"POT-Creation-Date: 2012-05-05 19:51+0200\n"
|
||||
"PO-Revision-Date: 2012-05-05 19:52+0200\n"
|
||||
"Last-Translator: Sebastien Helleu <flashcode@flashtux.org>\n"
|
||||
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
|
||||
"Language: French\n"
|
||||
@ -1497,6 +1497,7 @@ msgid ""
|
||||
"context \"default\")\n"
|
||||
" bindctxt: bind a command to a key or display command bound to key, for "
|
||||
"given context\n"
|
||||
" command: command (many commands can be separated by semicolons)\n"
|
||||
" unbind: remove a key binding (for context \"default\")\n"
|
||||
" unbindctxt: remove a key binding for given context\n"
|
||||
" reset: reset a key to default binding (for context \"default\")\n"
|
||||
@ -1550,6 +1551,8 @@ msgstr ""
|
||||
"associée à la touche\n"
|
||||
" bindctxt: associer une commande à une touche ou affiche la commande "
|
||||
"associée à la touche pour le contexte donné\n"
|
||||
" commande: commande (plusieurs commandes peuvent êtres séparées par des "
|
||||
"points-virgules)\n"
|
||||
" unbind: supprimer l'association à une touche\n"
|
||||
" unbindctxt: supprimer l'association à une touche pour le contexte donné\n"
|
||||
" reset: réinitialiser une touche à son association par défaut\n"
|
||||
@ -3730,7 +3733,7 @@ msgstr ""
|
||||
" alias: nom de l'alias (peut démarrer ou se terminer par \"*\" pour une "
|
||||
"liste d'alias)\n"
|
||||
" commande: nom de la commande avec les paramètres (plusieurs commandes "
|
||||
"peuvent être séparées par des point-virgules)\n"
|
||||
"peuvent être séparées par des points-virgules)\n"
|
||||
"\n"
|
||||
"Sans paramètre, cette commande liste tous les alias définis.\n"
|
||||
"\n"
|
||||
|
3
po/hu.po
3
po/hu.po
@ -20,7 +20,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WeeChat 0.3.8-dev\n"
|
||||
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
|
||||
"POT-Creation-Date: 2012-04-11 22:23+0200\n"
|
||||
"POT-Creation-Date: 2012-05-05 19:51+0200\n"
|
||||
"PO-Revision-Date: 2012-02-26 09:16+0100\n"
|
||||
"Last-Translator: Andras Voroskoi <voroskoi@frugalware.org>\n"
|
||||
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
|
||||
@ -1293,6 +1293,7 @@ msgid ""
|
||||
"context \"default\")\n"
|
||||
" bindctxt: bind a command to a key or display command bound to key, for "
|
||||
"given context\n"
|
||||
" command: command (many commands can be separated by semicolons)\n"
|
||||
" unbind: remove a key binding (for context \"default\")\n"
|
||||
" unbindctxt: remove a key binding for given context\n"
|
||||
" reset: reset a key to default binding (for context \"default\")\n"
|
||||
|
4
po/it.po
4
po/it.po
@ -20,7 +20,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WeeChat 0.3.8-dev\n"
|
||||
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
|
||||
"POT-Creation-Date: 2012-04-16 13:45+0200\n"
|
||||
"POT-Creation-Date: 2012-05-05 19:51+0200\n"
|
||||
"PO-Revision-Date: 2012-04-15 17:41+0200\n"
|
||||
"Last-Translator: Marco Paolone <marcopaolone@gmail.com>\n"
|
||||
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
|
||||
@ -1473,6 +1473,7 @@ msgstr ""
|
||||
"unbindctxt <contesto> <chiave> || reset <tasto> || resetctxt <contesto> "
|
||||
"<tasto> || resetall -yes [<contesto>] || missing [<contesto>]"
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
" list: list all current keys (without argument, this list is "
|
||||
"displayed)\n"
|
||||
@ -1484,6 +1485,7 @@ msgid ""
|
||||
"context \"default\")\n"
|
||||
" bindctxt: bind a command to a key or display command bound to key, for "
|
||||
"given context\n"
|
||||
" command: command (many commands can be separated by semicolons)\n"
|
||||
" unbind: remove a key binding (for context \"default\")\n"
|
||||
" unbindctxt: remove a key binding for given context\n"
|
||||
" reset: reset a key to default binding (for context \"default\")\n"
|
||||
|
4
po/ja.po
4
po/ja.po
@ -20,7 +20,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WeeChat 0.3.8-dev\n"
|
||||
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
|
||||
"POT-Creation-Date: 2012-04-11 22:23+0200\n"
|
||||
"POT-Creation-Date: 2012-05-05 19:51+0200\n"
|
||||
"PO-Revision-Date: 2012-02-26 09:16+0100\n"
|
||||
"Last-Translator: \"AYANOKOUZI, Ryuunosuke\" <i38w7i3@yahoo.co.jp>\n"
|
||||
"Language-Team: Japanese\n"
|
||||
@ -1452,6 +1452,7 @@ msgstr ""
|
||||
"<context> <key> || reset <key> || resetctxt <context> <key> || resetall -yes "
|
||||
"[<context>] || missing [<context>]"
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
" list: list all current keys (without argument, this list is "
|
||||
"displayed)\n"
|
||||
@ -1463,6 +1464,7 @@ msgid ""
|
||||
"context \"default\")\n"
|
||||
" bindctxt: bind a command to a key or display command bound to key, for "
|
||||
"given context\n"
|
||||
" command: command (many commands can be separated by semicolons)\n"
|
||||
" unbind: remove a key binding (for context \"default\")\n"
|
||||
" unbindctxt: remove a key binding for given context\n"
|
||||
" reset: reset a key to default binding (for context \"default\")\n"
|
||||
|
4
po/pl.po
4
po/pl.po
@ -21,7 +21,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WeeChat 0.3.8-dev\n"
|
||||
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
|
||||
"POT-Creation-Date: 2012-04-11 22:23+0200\n"
|
||||
"POT-Creation-Date: 2012-05-05 19:51+0200\n"
|
||||
"PO-Revision-Date: 2012-02-26 09:16+0100\n"
|
||||
"Last-Translator: Krzysztof Korościk <soltys@szluug.org>\n"
|
||||
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
|
||||
@ -1488,6 +1488,7 @@ msgstr ""
|
||||
"resetctxt <kontekst> <klawisz> || resetall -yes [<kontekst>] || missing "
|
||||
"[<kontekst>]"
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
" list: list all current keys (without argument, this list is "
|
||||
"displayed)\n"
|
||||
@ -1499,6 +1500,7 @@ msgid ""
|
||||
"context \"default\")\n"
|
||||
" bindctxt: bind a command to a key or display command bound to key, for "
|
||||
"given context\n"
|
||||
" command: command (many commands can be separated by semicolons)\n"
|
||||
" unbind: remove a key binding (for context \"default\")\n"
|
||||
" unbindctxt: remove a key binding for given context\n"
|
||||
" reset: reset a key to default binding (for context \"default\")\n"
|
||||
|
@ -21,7 +21,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WeeChat 0.3.8-dev\n"
|
||||
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
|
||||
"POT-Creation-Date: 2012-04-11 22:23+0200\n"
|
||||
"POT-Creation-Date: 2012-05-05 19:51+0200\n"
|
||||
"PO-Revision-Date: 2012-02-26 09:16+0100\n"
|
||||
"Last-Translator: Sergio Durigan Junior <sergiosdj@gmail.com>\n"
|
||||
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
|
||||
@ -1531,6 +1531,7 @@ msgid ""
|
||||
"context \"default\")\n"
|
||||
" bindctxt: bind a command to a key or display command bound to key, for "
|
||||
"given context\n"
|
||||
" command: command (many commands can be separated by semicolons)\n"
|
||||
" unbind: remove a key binding (for context \"default\")\n"
|
||||
" unbindctxt: remove a key binding for given context\n"
|
||||
" reset: reset a key to default binding (for context \"default\")\n"
|
||||
|
3
po/ru.po
3
po/ru.po
@ -21,7 +21,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WeeChat 0.3.8-dev\n"
|
||||
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
|
||||
"POT-Creation-Date: 2012-04-11 22:23+0200\n"
|
||||
"POT-Creation-Date: 2012-05-05 19:51+0200\n"
|
||||
"PO-Revision-Date: 2012-02-26 09:16+0100\n"
|
||||
"Last-Translator: Aleksey V Zapparov AKA ixti <ixti@member.fsf.org>\n"
|
||||
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
|
||||
@ -1311,6 +1311,7 @@ msgid ""
|
||||
"context \"default\")\n"
|
||||
" bindctxt: bind a command to a key or display command bound to key, for "
|
||||
"given context\n"
|
||||
" command: command (many commands can be separated by semicolons)\n"
|
||||
" unbind: remove a key binding (for context \"default\")\n"
|
||||
" unbindctxt: remove a key binding for given context\n"
|
||||
" reset: reset a key to default binding (for context \"default\")\n"
|
||||
|
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
|
||||
"POT-Creation-Date: 2012-04-11 22:23+0200\n"
|
||||
"POT-Creation-Date: 2012-05-05 19:51+0200\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
@ -1143,6 +1143,7 @@ msgid ""
|
||||
"context \"default\")\n"
|
||||
" bindctxt: bind a command to a key or display command bound to key, for "
|
||||
"given context\n"
|
||||
" command: command (many commands can be separated by semicolons)\n"
|
||||
" unbind: remove a key binding (for context \"default\")\n"
|
||||
" unbindctxt: remove a key binding for given context\n"
|
||||
" reset: reset a key to default binding (for context \"default\")\n"
|
||||
|
@ -5813,6 +5813,8 @@ command_init ()
|
||||
"bound to key (for context \"default\")\n"
|
||||
" bindctxt: bind a command to a key or display command "
|
||||
"bound to key, for given context\n"
|
||||
" command: command (many commands can be separated by "
|
||||
"semicolons)\n"
|
||||
" unbind: remove a key binding (for context "
|
||||
"\"default\")\n"
|
||||
" unbindctxt: remove a key binding for given context\n"
|
||||
|
Loading…
x
Reference in New Issue
Block a user