summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2019-02-03 19:02:40 +0100
committerSébastien Helleu <flashcode@flashtux.org>2019-02-03 19:02:40 +0100
commita511771802aec15c9c850a10f55ac422d8ea1e5a (patch)
tree442de02904d2c642afb705283d7ab7a0abfde3b9 /doc
parent4c05648faf11a51de3f8ae91c1f555814bf2902b (diff)
downloadweechat-a511771802aec15c9c850a10f55ac422d8ea1e5a.zip
core: update translations
Diffstat (limited to 'doc')
-rw-r--r--doc/ja/autogen/user/weechat_commands.adoc42
1 files changed, 21 insertions, 21 deletions
diff --git a/doc/ja/autogen/user/weechat_commands.adoc b/doc/ja/autogen/user/weechat_commands.adoc
index bd1350084..80788786b 100644
--- a/doc/ja/autogen/user/weechat_commands.adoc
+++ b/doc/ja/autogen/user/weechat_commands.adoc
@@ -789,37 +789,37 @@ file: 保存する設定ファイル (拡張子 ".conf" は不要)
set <name> <value>
del <name>
-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
+passphrase: パスフレーズを変更 (パスフレーズがない場合、sec.conf ファイルに平文でデータを保存します)
+ -delete: パスフレーズを削除
+ decrypt: 暗号化されているデータを復号化 (起動時にパスフレーズが設定されていない場合に起きます)
+ -discard: 全ての暗号化データを破棄
+ set: 保護データを追加または変更
+ del: 保護データを削除
-Without argument, this command displays secured data in a new buffer.
+引数がない場合、新しいバッファに保護データを表示します。
-Keys on secure buffer:
- alt+v toggle values
+保護バッファ内で利用可能なキー:
+ alt+v 値を切り替えます
-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), or to set option sec.crypt.passphrase_file to read the passphrase from a file (see /help sec.crypt.passphrase_file).
+パスフレーズを利用する場合 (データが暗号化されている場合)、WeeChat は起動時にパスフレーズを尋ねます。
+入力を回避するには、環境変数 "WEECHAT_PASSPHRASE" を利用するか (WeeChat は /upgrade の時に同じ変数を利用します)、sec.crypt.passphrase_file オプションを設定してファイルからパスフレーズを読み込みます (/help sec.crypt.passphrase_file を参照してください)。
-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.
+${sec.data.xxx} の形で書かれた保護データは以下の様に利用できます:
+ - /eval コマンド
+ - コマンドライン引数 "--run-command"
+ - weechat.startup.command_{before|after}_plugins オプション
+ - パスワードや機密データを含むと思われるその他のオプション (例えば、プロキシ、irc サーバ、リレー); 保護データが評価されるかを確認するには各オプションの /help を参照してください。
-Examples:
- set a passphrase:
+例:
+ パスフレーズを設定:
/secure passphrase this is my passphrase
- encrypt freenode SASL password:
+ freenode の SASL パスワードを暗号化:
/secure set freenode mypassword
/set irc.server.freenode.sasl_password "${sec.data.freenode}"
- encrypt oftc password for nickserv:
+ oftc の nickserv 用パスワードを暗号化:
/secure set oftc mypassword
/set irc.server.oftc.command "/msg nickserv identify ${sec.data.oftc}"
- alias to ghost the nick "mynick":
+ ニックネーム "mynick" を取り戻すためのエイリアス ghost を設定
/alias add ghost /eval /msg -server freenode nickserv ghost mynick ${sec.data.freenode}
----