diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2017-02-18 13:06:15 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2017-02-18 13:06:15 +0100 |
commit | 7fbdc08f3ad50a676c64a00da7cd2010d34fcf6f (patch) | |
tree | 14c5dc3f56986cf763bd5354b1ad6bb47e9516f4 /doc/ja | |
parent | ac007a1efd987bd318cc016cbdcfbe59aadf0dc9 (diff) | |
download | weechat-7fbdc08f3ad50a676c64a00da7cd2010d34fcf6f.zip |
core: update translations and auto-generated doc files
Diffstat (limited to 'doc/ja')
-rw-r--r-- | doc/ja/autogen/user/irc_commands.adoc | 58 |
1 files changed, 34 insertions, 24 deletions
diff --git a/doc/ja/autogen/user/irc_commands.adoc b/doc/ja/autogen/user/irc_commands.adoc index e39a618cf..9d566c330 100644 --- a/doc/ja/autogen/user/irc_commands.adoc +++ b/doc/ja/autogen/user/irc_commands.adoc @@ -16,19 +16,23 @@ target: サーバ名 ---- /allchan [-current] [-exclude=<channel>[,<channel>...]] <command> [<arguments>] + [-current] -include=<channel>[,<channel>...] <command> [<arguments>] - -current: 現在のサーバ上のチャンネルに対してコマンドを実行 - -exclude: 一部のチャンネルを除外 (ワイルドカード "*" を使うことができます) - command: 実行するコマンド -arguments: コマンドの引数 (特殊変数 $nick、$channel、$server はそれぞれの値に置き換えられます) + -current: execute command for channels of current server only + -exclude: exclude some channels (wildcard "*" is allowed) + -include: include only some channels (wildcard "*" is allowed) + command: command to execute +arguments: arguments for command (special variables $nick, $channel and $server are replaced by their value) -例: - 全てのチャンネルに対して '/me is testing' を実行: +Examples: + execute '/me is testing' on all channels: /allchan me is testing - #weechat 以外の全てのチャンネルで 'hello' と発言: + say 'hello' everywhere but not on #weechat: /allchan -exclude=#weechat msg * hello - #weechat と #linux で始まるチャンネルを除く全てのチャンネルで 'hello' と発言: + say 'hello' everywhere but not on #weechat and channels beginning with #linux: /allchan -exclude=#weechat,#linux* msg * hello + say 'hello' on all channels beginning with #linux: + /allchan -include=#linux* msg * hello ---- [[command_irc_allpv]] @@ -36,20 +40,24 @@ arguments: コマンドの引数 (特殊変数 $nick、$channel、$server はそ ---- /allpv [-current] [-exclude=<nick>[,<nick>...]] <command> [<arguments>] + [-current] -include=<nick>[,<nick>...] <command> [<arguments>] - -current: 現在のサーバ上のプライベートバッファに対してコマンドを実行 - -exclude: 一部のニックネームを除外 (ワイルドカード "*" を使うことができます) - command: 実行するコマンド -arguments: コマンドの引数 (特殊変数 $nick、$channel、$server はそれぞれの値に置き換えられます) + -current: execute command for private buffers of current server only + -exclude: exclude some nicks (wildcard "*" is allowed) + -include: include only some nicks (wildcard "*" is allowed) + command: command to execute +arguments: arguments for command (special variables $nick, $channel and $server are replaced by their value) -例: - 全てのプライベートバッファに対して '/me is testing' を実行: +Examples: + execute '/me is testing' on all private buffers: /allpv me is testing - ニックネーム foo を除く全てのプライベートバッファで 'hello' と発言: + say 'hello' everywhere but not for nick foo: /allpv -exclude=foo msg * hello - ニックネーム foo と bar で始まるニックネームを除く全てのチャンネルで 'hello' と発言: + say 'hello' everywhere but not for nick foo and nicks beginning with bar: /allpv -exclude=foo,bar* msg * hello - 全てのプライベートバッファを閉じる: + say 'hello' for all nicks beginning with bar: + /allpv -include=bar* msg * hello + close all private buffers: /allpv close ---- @@ -58,17 +66,19 @@ arguments: コマンドの引数 (特殊変数 $nick、$channel、$server はそ ---- /allserv [-exclude=<server>[,<server>...]] <command> [<arguments>] + -include=<server>[,<server>...] <command> [<arguments>] - -exclude: いくつかのサーバを除外 (ワイルドカード "*" を使うことができます) - command: 実行するコマンド -arguments: コマンドの引数 (特殊変数 $nick、$channel、$server はそれぞれの値に置き換えられます) + -exclude: exclude some servers (wildcard "*" is allowed) + -include: include only some servers (wildcard "*" is allowed) + command: command to execute +arguments: arguments for command (special variables $nick, $channel and $server are replaced by their value) -例: - 全てのサーバでニックネーム変更: +Examples: + change nick on all servers: /allserv nick newnick - 全てのサーバで離席状態を変更: + set away on all servers: /allserv away I'm away - すべてのサーバで自分のニックネームに対して whois を実行: + do a whois on my nick on all servers: /allserv whois $nick ---- |