diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2014-02-20 11:00:24 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2014-02-20 11:00:24 +0100 |
commit | f376893681a09960e0797dbabee5203b29f2234f (patch) | |
tree | f8bd4e53e0a6fa2faa908bfff62721c65bd8fcd4 /doc | |
parent | 975b9c891209631909ebf6462edb3b072019f2e3 (diff) | |
download | weechat-f376893681a09960e0797dbabee5203b29f2234f.zip |
core: add option "-beep" in command /print
Diffstat (limited to 'doc')
-rw-r--r-- | doc/de/autogen/user/weechat_commands.txt | 60 | ||||
-rw-r--r-- | doc/en/autogen/user/weechat_commands.txt | 6 | ||||
-rw-r--r-- | doc/fr/autogen/user/weechat_commands.txt | 6 | ||||
-rw-r--r-- | doc/it/autogen/user/weechat_commands.txt | 6 | ||||
-rw-r--r-- | doc/ja/autogen/user/weechat_commands.txt | 56 | ||||
-rw-r--r-- | doc/pl/autogen/user/weechat_commands.txt | 60 |
6 files changed, 103 insertions, 91 deletions
diff --git a/doc/de/autogen/user/weechat_commands.txt b/doc/de/autogen/user/weechat_commands.txt index 9da319179..e53b07a31 100644 --- a/doc/de/autogen/user/weechat_commands.txt +++ b/doc/de/autogen/user/weechat_commands.txt @@ -569,39 +569,41 @@ Ohne Angabe eines Arguments werden alle installierten Erweiterungen angezeigt. ---- /print [-buffer <number>|<name>] [-core] [-escape] [-date <date>] [-tags <tags>] [-action|-error|-join|-network|-quit] [<text>] -stdout|-stderr [<text>] - --buffer: Buffer in welchem der Text ausgegeben werden soll (standardmäßig: aktueller Buffer) - -core: Alias für "-buffer core.weechat" --escape: Escapesequenzen werden umgewandelt (zum Beispiel \a, \07, \x07) - -date: Datum der Nachricht, mögliche Formatierung: - -n: 'n' vor dem jetzigen Zeipunkt, in Sekunden - +n: 'n' in Zukunft, in Sekunden - n: 'n' Sekunden seit der Epoche (siehe man time) - date/time (ISO 8601): yyyy-mm-ddThh:mm:ss, Beispiel: 2014-01-19T04:32:55 - time: hh:mm:ss (Beispiel: 04:32:55) - -tags: durch Kommata getrennte Liste von Tags (siehe /help filter für eine Liste von Tags die häufig genutzt werden) - text: Text der ausgegeben werden soll (Präfix und Nachricht muss durch \t getrennt werden) --stdout: Text wird an stdout geschickt (Escapesequenzen werden umgewandelt) --stderr: Text wird an stderr geschickt (Escapesequenzen werden umgewandelt) - -Die Option -action ... -quit nutzt den Präfix der in der Option "weechat.look.prefix_*" definiert ist. - -Folgende Escapesequenzen werden unterstützt: + -beep + +-buffer: the buffer where text is displayed (default: current buffer) + -core: alias of "-buffer core.weechat" +-escape: interpret escaped chars (for example \a, \07, \x07) + -date: message date, format can be: + -n: 'n' seconds before now + +n: 'n' seconds in the future + n: 'n' seconds since the Epoch (see man time) + date/time (ISO 8601): yyyy-mm-ddThh:mm:ss, example: 2014-01-19T04:32:55 + time: hh:mm:ss (example: 04:32:55) + -tags: comma-separated list of tags (see /help filter for a list of tags most commonly used) + text: text to display (prefix and message must be separated by "\t", if text starts with "-", then add a "\" before) +-stdout: display text on stdout (escaped chars are interpreted) +-stderr: display text on stderr (escaped chars are interpreted) + -beep: alias of "-stderr \a" + +The options -action ... -quit use the prefix defined in options "weechat.look.prefix_*". + +Following escaped chars are supported: \" \\ \a \b \e \f \n \r \t \v \0ooo \xhh \uhhhh \Uhhhhhhhh -Beispiele: - zeigt eine Erinnerung, mit Highlight, im Core-Buffer dar: - /print -core -tags notify_highlight Reminder: Milch kaufen - zeigt eine Fehlernachricht im Core-Buffer an: - /print -core -error irgend ein Fehler - zeigt eine Nachricht im Core-Buffer mit dem Präfix "abc" an: - /print -core abc\tmeine Nachricht - es wird eine Nachricht im Channel #weechat ausgegeben: +Examples: + display a reminder on core buffer with a highlight: + /print -core -tags notify_highlight Reminder: buy milk + display an error on core buffer: + /print -core -error Some error here + display message on core buffer with prefix "abc": + /print -core abc\tThe message + display a message on channel #weechat: /print -buffer irc.freenode.#weechat Message on #weechat - gibt einen Schneemann aus (U+2603): + display a snowman (U+2603): /print -escape \u2603 - verschickt Alarm (BEL): - /print -stderr \a + send alert (BEL): + /print -beep ---- [[command_weechat_proxy]] diff --git a/doc/en/autogen/user/weechat_commands.txt b/doc/en/autogen/user/weechat_commands.txt index 320634621..d98943aeb 100644 --- a/doc/en/autogen/user/weechat_commands.txt +++ b/doc/en/autogen/user/weechat_commands.txt @@ -569,6 +569,7 @@ Without argument, this command lists loaded plugins. ---- /print [-buffer <number>|<name>] [-core] [-escape] [-date <date>] [-tags <tags>] [-action|-error|-join|-network|-quit] [<text>] -stdout|-stderr [<text>] + -beep -buffer: the buffer where text is displayed (default: current buffer) -core: alias of "-buffer core.weechat" @@ -580,9 +581,10 @@ Without argument, this command lists loaded plugins. date/time (ISO 8601): yyyy-mm-ddThh:mm:ss, example: 2014-01-19T04:32:55 time: hh:mm:ss (example: 04:32:55) -tags: comma-separated list of tags (see /help filter for a list of tags most commonly used) - text: text to display (prefix and message must be separated by \t) + text: text to display (prefix and message must be separated by "\t", if text starts with "-", then add a "\" before) -stdout: display text on stdout (escaped chars are interpreted) -stderr: display text on stderr (escaped chars are interpreted) + -beep: alias of "-stderr \a" The options -action ... -quit use the prefix defined in options "weechat.look.prefix_*". @@ -601,7 +603,7 @@ Examples: display a snowman (U+2603): /print -escape \u2603 send alert (BEL): - /print -stderr \a + /print -beep ---- [[command_weechat_proxy]] diff --git a/doc/fr/autogen/user/weechat_commands.txt b/doc/fr/autogen/user/weechat_commands.txt index 0c34485ef..cb0f9eeae 100644 --- a/doc/fr/autogen/user/weechat_commands.txt +++ b/doc/fr/autogen/user/weechat_commands.txt @@ -569,6 +569,7 @@ Sans paramètre, cette commande liste les extensions chargées. ---- /print [-buffer <numéro>|<nom>] [-core] [-escape] [-date <date>] [-tags <étiquettes>] [-action|-error|-join|-network|-quit] [<texte>] -stdout|-stderr [<texte>] + -beep -buffer: le tampon où est affiché le texte (par défaut: tampon courant) -core: alias de "-buffer core.weechat" @@ -580,9 +581,10 @@ Sans paramètre, cette commande liste les extensions chargées. date/heure (ISO 8601): yyyy-mm-ddThh:mm:ss, exemple: 2014-01-19T04:32:55 heure: hh:mm:ss (exemple: 04:32:55) -tags: liste d'étiquettes séparées par des virgules (voir /help filter pour une liste des étiquettes couramment utilisées) - texte: texte à afficher (le préfixe et le message doivent être séparés par \t) + texte: texte à afficher (le préfixe et le message doivent être séparés par "\t", si le texte commence par "-", ajoutez "\" avant) -stdout: afficher le texte sur stdout (les caractères échappés sont interprétés) -stderr: afficher le texte sur stderr (les caractères échappés sont interprétés) + -beep: alias de "-stderr \a" Les options -action ... -quit utilisent le préfixe défini dans les options "weechat.look.prefix_*". @@ -601,7 +603,7 @@ Exemples: afficher un bonhomme de neige (U+2603): /print -escape \u2603 envoyer une alerte (BEL): - /print -stderr \a + /print -beep ---- [[command_weechat_proxy]] diff --git a/doc/it/autogen/user/weechat_commands.txt b/doc/it/autogen/user/weechat_commands.txt index e124cd7bf..6d7ed42b6 100644 --- a/doc/it/autogen/user/weechat_commands.txt +++ b/doc/it/autogen/user/weechat_commands.txt @@ -569,6 +569,7 @@ Senza argomento, questo comando elenca i plugin caricati. ---- /print [-buffer <number>|<name>] [-core] [-escape] [-date <date>] [-tags <tags>] [-action|-error|-join|-network|-quit] [<text>] -stdout|-stderr [<text>] + -beep -buffer: the buffer where text is displayed (default: current buffer) -core: alias of "-buffer core.weechat" @@ -580,9 +581,10 @@ Senza argomento, questo comando elenca i plugin caricati. date/time (ISO 8601): yyyy-mm-ddThh:mm:ss, example: 2014-01-19T04:32:55 time: hh:mm:ss (example: 04:32:55) -tags: comma-separated list of tags (see /help filter for a list of tags most commonly used) - text: text to display (prefix and message must be separated by \t) + text: text to display (prefix and message must be separated by "\t", if text starts with "-", then add a "\" before) -stdout: display text on stdout (escaped chars are interpreted) -stderr: display text on stderr (escaped chars are interpreted) + -beep: alias of "-stderr \a" The options -action ... -quit use the prefix defined in options "weechat.look.prefix_*". @@ -601,7 +603,7 @@ Examples: display a snowman (U+2603): /print -escape \u2603 send alert (BEL): - /print -stderr \a + /print -beep ---- [[command_weechat_proxy]] diff --git a/doc/ja/autogen/user/weechat_commands.txt b/doc/ja/autogen/user/weechat_commands.txt index 574035ecb..dbc17ed94 100644 --- a/doc/ja/autogen/user/weechat_commands.txt +++ b/doc/ja/autogen/user/weechat_commands.txt @@ -569,39 +569,41 @@ arguments: ロードするプラグインに与える引数 ---- /print [-buffer <number>|<name>] [-core] [-escape] [-date <date>] [-tags <tags>] [-action|-error|-join|-network|-quit] [<text>] -stdout|-stderr [<text>] - --buffer: テキストを表示するバッファ (デフォルト: 現在のバッファ) - -core: "-buffer core.weechat" のエイリアス --escape: エスケープ文字を解釈 (例えば \a、\07、\x07) - -date: メッセージの日付、フォーマット: - -n: 今から 'n' 秒前 - +n: 今から 'n' 秒後 - n: エポックから 'n' 秒目 (man time を参照) - 日付/時間 (ISO 8601): yyyy-mm-ddThh:mm:ss、例: 2014-01-19T04:32:55 - 時間: hh:mm:ss (example: 04:32:55) - -tags: タグのコンマ区切りリスト (よく使うタグのリストは /help filter を参照) - text: 表示するテキスト (プレフィックスとメッセージは必ず \t で区切ってください) --stdout: 標準出力にテキストを表示 (エスケープ文字を解釈) --stderr: 標準エラー出力にテキストを表示 (エスケープ文字を解釈) - -オプション -action ... -quit をつけた場合、プレフィックスは "weechat.look.prefix_*" で定義されているものになります。 - -以下のエスケープ文字を使うことができます: + -beep + +-buffer: the buffer where text is displayed (default: current buffer) + -core: alias of "-buffer core.weechat" +-escape: interpret escaped chars (for example \a, \07, \x07) + -date: message date, format can be: + -n: 'n' seconds before now + +n: 'n' seconds in the future + n: 'n' seconds since the Epoch (see man time) + date/time (ISO 8601): yyyy-mm-ddThh:mm:ss, example: 2014-01-19T04:32:55 + time: hh:mm:ss (example: 04:32:55) + -tags: comma-separated list of tags (see /help filter for a list of tags most commonly used) + text: text to display (prefix and message must be separated by "\t", if text starts with "-", then add a "\" before) +-stdout: display text on stdout (escaped chars are interpreted) +-stderr: display text on stderr (escaped chars are interpreted) + -beep: alias of "-stderr \a" + +The options -action ... -quit use the prefix defined in options "weechat.look.prefix_*". + +Following escaped chars are supported: \" \\ \a \b \e \f \n \r \t \v \0ooo \xhh \uhhhh \Uhhhhhhhh -例: - コアバッファにハイライトを付けてリマインダを表示: +Examples: + display a reminder on core buffer with a highlight: /print -core -tags notify_highlight Reminder: buy milk - コアバッファにエラーを表示: + display an error on core buffer: /print -core -error Some error here - コアバッファにプレフィックス "abc" を付けてメッセージを表示: - /print -core abc The message - チャンネル #weechat にメッセージを表示: + display message on core buffer with prefix "abc": + /print -core abc\tThe message + display a message on channel #weechat: /print -buffer irc.freenode.#weechat Message on #weechat - 雪だるまを表示 (U+2603): + display a snowman (U+2603): /print -escape \u2603 - 警告を送信 (BEL): - /print -stderr \a + send alert (BEL): + /print -beep ---- [[command_weechat_proxy]] diff --git a/doc/pl/autogen/user/weechat_commands.txt b/doc/pl/autogen/user/weechat_commands.txt index 03f978104..79f6548e7 100644 --- a/doc/pl/autogen/user/weechat_commands.txt +++ b/doc/pl/autogen/user/weechat_commands.txt @@ -569,39 +569,41 @@ Bez argumentów ta komenda wyświetli wszystkie załadowane wtyczki. ---- /print [-buffer <number>|<name>] [-core] [-escape] [-date <date>] [-tags <tags>] [-action|-error|-join|-network|-quit] [<text>] -stdout|-stderr [<text>] - --buffer: bufor, w którym zostanie wyświetlony tekst (domyślnie: obecny bufor) - -core: alias dla bufora "-buffer core.weechat" --escape: interpretuj znaki poprzedzone \ (na przykład \a, \07, \x07) - -date: data wiadomości, możliwe formaty: - -n: 'n' sekund wcześniej - +n: 'n' sekund później - n: 'n' sekund od Epoch (zobacz man time) - data/czas (ISO 8601): yyyy-mm-ddThh:mm:ss, przykład: 2014-01-19T04:32:55 - czas: hh:mm:ss (przykład: 04:32:55) - -tags: oddzielona przecinkami lista tagów (zobacz /help filter w celu wyświetlenia listy najczęstszych tagów) - tekst: tekst do wyświetlenia (prefiks i wiadomość muszą być oddzielone za pomocą \t) --stdout: wyświetl tekst na standardowe wyjście (znaki poprzedzone \ są interpretowane) --stderr: wyświetl tekst na standardowe wyjście błędów (znaki poprzedzone \ są interpretowane) - -Opcje -action ... -quit używają prefiksów zdefiniowanych w opcjach "weechat.look.prefix_*". - -Wspierane znaczniki specjalne: + -beep + +-buffer: the buffer where text is displayed (default: current buffer) + -core: alias of "-buffer core.weechat" +-escape: interpret escaped chars (for example \a, \07, \x07) + -date: message date, format can be: + -n: 'n' seconds before now + +n: 'n' seconds in the future + n: 'n' seconds since the Epoch (see man time) + date/time (ISO 8601): yyyy-mm-ddThh:mm:ss, example: 2014-01-19T04:32:55 + time: hh:mm:ss (example: 04:32:55) + -tags: comma-separated list of tags (see /help filter for a list of tags most commonly used) + text: text to display (prefix and message must be separated by "\t", if text starts with "-", then add a "\" before) +-stdout: display text on stdout (escaped chars are interpreted) +-stderr: display text on stderr (escaped chars are interpreted) + -beep: alias of "-stderr \a" + +The options -action ... -quit use the prefix defined in options "weechat.look.prefix_*". + +Following escaped chars are supported: \" \\ \a \b \e \f \n \r \t \v \0ooo \xhh \uhhhh \Uhhhhhhhh -Przykłady: - wyświetla przypomnienie w buforze głównym z higlightem: - /print -core -tags notify_highlight Reminder: kup mleko - wyświetla błąd w głównym buforze: - /print -core -error Jakiś błąd - wyświetla wiadomość w głównym buforze z prefiksem "abc": - /print -core abc\tWiadomość - wyświetla wiadomość na kanale #weechat: +Examples: + display a reminder on core buffer with a highlight: + /print -core -tags notify_highlight Reminder: buy milk + display an error on core buffer: + /print -core -error Some error here + display message on core buffer with prefix "abc": + /print -core abc\tThe message + display a message on channel #weechat: /print -buffer irc.freenode.#weechat Message on #weechat - wyświetla bałwana (U+2603): + display a snowman (U+2603): /print -escape \u2603 - wysyła alert (BEL): - /print -stderr \a + send alert (BEL): + /print -beep ---- [[command_weechat_proxy]] |