From 2beefdfc2ae36c4db1d68ab7fdc02c1d7e65ab7a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Helleu?= Date: Sat, 5 Apr 2014 16:15:43 +0200 Subject: doc: update Japanese auto-generated files --- doc/ja/autogen/plugin_api/completions.txt | 2 +- doc/ja/autogen/user/exec_commands.txt | 92 +++++++++--------- doc/ja/autogen/user/irc_options.txt | 14 +-- doc/ja/autogen/user/trigger_commands.txt | 104 ++++++++++---------- doc/ja/autogen/user/weechat_commands.txt | 154 +++++++++++++++--------------- 5 files changed, 183 insertions(+), 183 deletions(-) (limited to 'doc/ja/autogen') diff --git a/doc/ja/autogen/plugin_api/completions.txt b/doc/ja/autogen/plugin_api/completions.txt index cc982bc25..ed6421fd8 100644 --- a/doc/ja/autogen/plugin_api/completions.txt +++ b/doc/ja/autogen/plugin_api/completions.txt @@ -82,7 +82,7 @@ | trigger | trigger_hooks | トリガに対するフック -| trigger | trigger_hooks_filter | hooks for triggers (for filter in monitor buffer) +| trigger | trigger_hooks_filter | トリガに対するフック (モニタバッファのフィルタ用) | trigger | trigger_names | トリガ diff --git a/doc/ja/autogen/user/exec_commands.txt b/doc/ja/autogen/user/exec_commands.txt index 23231d9a9..049d74388 100644 --- a/doc/ja/autogen/user/exec_commands.txt +++ b/doc/ja/autogen/user/exec_commands.txt @@ -12,54 +12,54 @@ -set -del |-all [...] - -list: list commands - -sh: use the shell to execute the command (WARNING: use this option ONLY if all arguments are safe, see option -nosh) - -nosh: do not use the shell to execute the command (required if the command has some unsafe data, for example the content of a message from another user) (default) - -bg: run process in background: do not display process output neither return code (not compatible with options -o/-n) - -nobg: catch process output and display return code (default) - -stdin: create a pipe for sending data to the process (with /exec -in/-inclose) --nostdin: do not create a pipe for stdin (default) - -buffer: display/send output of command on this buffer (if the buffer is not found, a new buffer with name "exec.exec.xxx" is created) - -l: display locally output of command on buffer (default) - -o: send output of command to the buffer (not compatible with option -bg) - -n: display output of command in a new buffer (not compatible with option -bg) - -nf: display output of command in a new buffer with free content (no word-wrap, no limit on number of lines) (not compatible with option -bg) - -cl: clear the new buffer before displaying output - -nocl: append to the new buffer without clear (default) - -sw: switch to the output buffer (default) - -nosw: don't switch to the output buffer - -ln: display line numbers (default in new buffer only) - -noln: don't display line numbers - -flush: display output of command in real time (default) --noflush: display output of command after its end - -color: action on ANSI colors in output: - ansi: keep ANSI codes as-is - auto: convert ANSI colors to WeeChat/IRC (default) - irc: convert ANSI colors to IRC colors - weechat: convert ANSI colors to WeeChat colors - strip: remove ANSI colors - -rc: display return code (default) - -norc: don't display return code --timeout: set a timeout for the command (in seconds) - -name: set a name for the command (to name it later with /exec) - -pipe: send the output to a WeeChat/plugin command (line by line); if there are spaces in command/arguments, enclose them with double quotes; variable $line is replaced by the line (by default the line is added after the command, separated by a space) (not compatible with options -bg/-o/-n) --hsignal: send the output as a hsignal (to be used for example in a trigger) (not compatible with options -bg/-o/-n) - command: the command to execute; if beginning with "url:", the shell is disabled and the content of URL is downloaded and sent as output - id: command identifier: either its number or name (if set with "-name xxx") - -in: send text on standard input of process --inclose: same as -in, but stdin is closed after (and text is optional: without text, the stdin is just closed) - -signal: send a signal to the process; the signal can be an integer or one of these names: hup, int, quit, kill, term, usr1, usr2 - -kill: alias of "-signal kill" --killall: kill all running processes - -set: set a hook property (see function hook_set in plugin API reference) -property: hook property - value: new value for hook property - -del: delete a terminated command - -all: delete all terminated commands + -list: コマンドをリストアップ + -sh: コマンドを実行する際にシェルを使う (警告: このオプションを使えるのは、全ての引数が安全な場合だけです、オプション -nosh を参照) + -nosh: コマンドを実行する際にシェルを使わない (コマンドに安全でないデータが含まれる場合に必要、例えば他のユーザからのメッセージの内容) (デフォルト) + -bg: プロセスをバックグラウンド実行: プロセスの出力およびリターンコードを表示しない (オプション -o/-n と互換性はありません) + -nobg: プロセスの出力を受け取り、リターンコードを表示する (デフォルト) + -stdin: プロセスにデータを送信するパイプを作成する (/exec -in/-inclose を使う) +-nostdin: 標準入力用にパイプを作成しない (デフォルト) + -buffer: コマンドの出力をこのバッファに表示 / 送信する (バッファが見つからない場合、新しいバッファ "exec.exec.xxx" が作られます) + -l: コマンドの出力をカレントバッファに表示 (デフォルト) + -o: コマンドの出力をカレントバッファに送信 (オプション -bg と互換性はありません) + -n: コマンドの出力を新しいバッファに表示 (オプション -bg と互換性はありません) + -nf: コマンドの出力を自由内容 (禁則処理なし、行数制限なし) の新しいバッファに表示 (オプション -bg と互換性はありません) + -cl: 出力を表示する前に新しいバッファをクリア + -nocl: 新しいバッファをクリアせずに追加 (デフォルト) + -sw: 出力バッファに移動 (デフォルト) + -nosw: 出力バッファに移動しない + -ln: 行数を表示 (新しいバッファに表示する場合はデフォルト) + -noln: 行数を表示しない + -flush: コマンドの出力をすぐに表示 (デフォルト) +-noflush: コマンドの出力をコマンドの終了後に表示 + -color: 出力に含まれる ANSI 色に対する挙動: + ansi: ANSI 色をそのままにする + auto: ANSI 色を WeeChat/IRC 色に変換 (デフォルト) + irc: ANSI 色を IRC 色に変換 + weechat: ANSI 色を WeeChat 色に変換 + strip: ANSI 色を削除 + -rc: リターンコードを表示 (デフォルト) + -norc: リターンコードを表示しない +-timeout: コマンドのタイムアウトを設定 (秒単位) + -name: コマンドの名前を設定 (後から名前を付けるには /exec を使う) + -pipe: WeeChat およびプラグインコマンドに出力を送信 (1 行ごと); コマンドおよび引数に空白が含まれる場合、2 重引用符で囲ってください; 引数 $line はその行で置換されます (デフォルトではコマンドの後ろに空白を付けてから行を追加します) (オプション -bg/-o/-n と互換性はありません) +-hsignal: hsignal として出力を送信 (例えばトリガで使われます) (オプション -bg/-o/-n と互換性はありません) + command: 実行するコマンド; "url:" で始まる場合、シェルは無効化され、URL の内容がダウンロードされ、出力として送信されます + id: コマンド識別子: 番号か名前 ("-name xxx" で設定した場合) のどちらか一方 + -in: プロセスの標準入力にテキストを送信 +-inclose: -in と同じ、ただし使用後に標準入力を閉じる (テキストは任意: テキストが無い場合、標準入力をすぐに閉じる) + -signal: プロセスにシグナルを送信; シグナルは整数値または次の名前の 1 つ: hup、int、quit、kill、term、usr1、usr2 + -kill: "-signal kill" のエイリアス +-killall: 全ての実行中プロセスを kill する + -set: フックプロパティを設定 (プラグイン API リファレンスの hook_set 関数を参照) +property: フックプロパティ + value: フックプロパティの新しい値 + -del: 中断されたコマンドを削除 + -all: 全ての中断されたコマンドを削除 -Default options can be set in the option exec.command.default_options. +オプション exec.command.default_options でデフォルトオプションの設定が可能です。 -Examples: +例: /exec -n ls -l /tmp /exec -n ps xu | grep weechat /exec -n -norc url:http://pastebin.com/raw.php?i=xxxxxxxx diff --git a/doc/ja/autogen/user/irc_options.txt b/doc/ja/autogen/user/irc_options.txt index 9118c420c..6d792fa44 100644 --- a/doc/ja/autogen/user/irc_options.txt +++ b/doc/ja/autogen/user/irc_options.txt @@ -24,7 +24,7 @@ ** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、ターミナル色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" (デフォルト値: `yellow`) * [[option_irc.color.item_nick_modes]] *irc.color.item_nick_modes* -** 説明: `color for nick modes in bar item "input_prompt"` +** 説明: `"input_prompt" バーアイテム内のニックネームモードに付ける色` ** タイプ: 色 ** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、ターミナル色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" (デフォルト値: `default`) @@ -184,7 +184,7 @@ ** 値: on, off (デフォルト値: `on`) * [[option_irc.look.item_channel_modes_hide_args]] *irc.look.item_channel_modes_hide_args* -** 説明: `hide channel modes arguments if at least one of these modes is in channel modes ("*" to always hide all arguments, empty value to never hide arguments); example: "kf" to hide arguments if "k" or "f" are in channel modes` +** 説明: `設定したモードのうち少なくとも 1 つがチャンネルモードに設定されていた場合、チャンネルモード引数を隠す (全ての引数を隠すには "*" を使ってください、値が空の場合は全てのチャンネルモード引数が表示されます); 例: チャンネルモードに "k" または "f" が設定されていた場合にチャンネルモード引数を隠すには "kf" と設定してください` ** タイプ: 文字列 ** 値: 未制約文字列 (デフォルト値: `"k"`) @@ -194,12 +194,12 @@ ** 値: buffer_plugin, buffer_name (デフォルト値: `buffer_plugin`) * [[option_irc.look.item_nick_modes]] *irc.look.item_nick_modes* -** 説明: `display nick modes in bar item "input_prompt"` +** 説明: `"input_prompt" バーアイテムではニックネームモードを表示` ** タイプ: ブール ** 値: on, off (デフォルト値: `on`) * [[option_irc.look.item_nick_prefix]] *irc.look.item_nick_prefix* -** 説明: `display nick prefix in bar item "input_prompt"` +** 説明: `"input_prompt" バーアイテムではニックネームプレフィックスを表示` ** タイプ: ブール ** 値: on, off (デフォルト値: `on`) @@ -359,7 +359,7 @@ ** 値: 0 .. 604800 (デフォルト値: `600`) * [[option_irc.network.ban_mask_default]] *irc.network.ban_mask_default* -** 説明: `default ban mask for commands /ban, /unban and /kickban; variables $nick, $user, $ident and $host are replaced by their values (extracted from "nick!user@host"); $ident is the same as $user if $user does not start with "~", otherwise it is set to "*"; this default mask is used only if WeeChat knows the host for the nick` +** 説明: `/ban、/unban、/kickban コマンドが使うデフォルトの禁止マスク; 変数 $nick、$user、$ident、$host はそれぞれの値に置換 ("nick!user@host" から展開) されます; $user が "~" で始まらない場合 $ident は $user と同じで、それ以外の場合 $ident は "*" になります; 設定したデフォルトマスクはニックネームのホスト名がわかる場合のみ利用されます` ** タイプ: 文字列 ** 値: 未制約文字列 (デフォルト値: `"*!$ident@$host"`) @@ -474,7 +474,7 @@ ** 値: 0 .. 1000000 (デフォルト値: `25`) * [[option_irc.server_default.capabilities]] *irc.server_default.capabilities* -** 説明: `comma-separated list of client capabilities to enable for server if they are available; capabilities supported by WeeChat are: multi-prefix, userhost-in-names, away-notify (example: "multi-prefix,userhost-in-names,away-notify")` +** 説明: `サーバで利用可能ならば有効化する "client capabilities" のコンマ区切りリスト; WeeChat で利用できる機能: multi-prefix、userhost-in-names、away-notify (例: "multi-prefix,userhost-in-names,away-notify")` ** タイプ: 文字列 ** 値: 未制約文字列 (デフォルト値: `""`) @@ -579,7 +579,7 @@ ** 値: 0 .. 2147483647 (デフォルト値: `2048`) * [[option_irc.server_default.ssl_fingerprint]] *irc.server_default.ssl_fingerprint* -** 説明: `SHA1 fingerprint of certificate which is trusted and accepted for the server (it must be exactly 40 hexadecimal digits without separators); many fingerprints can be separated by commas; if this option is set, the other checks on certificates are NOT performed (option "ssl_verify")` +** 説明: `信頼でき、通信を認めるサーバ証明書の SHA1 指紋 (指紋は必ず空白を含まない 40 桁の 16 進数です); 複数の指紋を設定する場合はコンマで区切ってください; このオプションを設定した場合、証明書に対する他の妥当性確認は行われません (オプション "ssl_verify")` ** タイプ: 文字列 ** 値: 未制約文字列 (デフォルト値: `""`) diff --git a/doc/ja/autogen/user/trigger_commands.txt b/doc/ja/autogen/user/trigger_commands.txt index 81fb2a7f2..af4ce9a0e 100644 --- a/doc/ja/autogen/user/trigger_commands.txt +++ b/doc/ja/autogen/user/trigger_commands.txt @@ -15,64 +15,64 @@ default -yes monitor [] - list: list triggers (without argument, this list is displayed) - listfull: list triggers with detailed info for each trigger -listdefault: list default triggers - add: add a trigger - addoff: add a trigger (disabled) - addreplace: add or replace an existing trigger - name: name of trigger - hook: signal, hsignal, modifier, print, command, command_run, timer, config, focus - arguments: arguments for the hook, depending on hook (separated by semicolons): - signal: name(s) of signal (required) - hsignal: name(s) of hsignal (required) - modifier: name(s) of modifier (required) - print: buffer, tags, message, strip colors - command: command (required), description, arguments, description of arguments, completion - command_run: command(s) (required) - timer: interval (required), align on second, max calls - config: name(s) of option (required) - focus: name(s) of area (required) - conditions: evaluated conditions for the trigger - regex: one or more regular expressions to replace strings in variables - command: command to execute (many commands can be separated by ";" -return_code: return code in callback (ok (default), ok_eat, error) - addinput: set input with default arguments to create a trigger - input: set input with the command used to create the trigger - output: send the command to create the trigger on the buffer - recreate: same as "input", with option "addreplace" instead of "add" - set: set an option in a trigger - option: name of option: name, hook, arguments, conditions, regex, command, return_code - (for help on option, you can type: /help trigger.trigger..