summaryrefslogtreecommitdiff
path: root/doc/ja
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2014-02-28 15:00:39 +0100
committerSebastien Helleu <flashcode@flashtux.org>2014-02-28 15:00:39 +0100
commitcf48fa4642d1a309de572ba2e5f179a9b081ab0b (patch)
tree8d119657faf0cea7a4c113e5f271d71d68515eae /doc/ja
parent4196dcf7a5a21440974c06107013239245845859 (diff)
downloadweechat-cf48fa4642d1a309de572ba2e5f179a9b081ab0b.zip
irc: evaluate content of server options "username" and "realname"
Diffstat (limited to 'doc/ja')
-rw-r--r--doc/ja/autogen/user/irc_options.txt4
-rw-r--r--doc/ja/autogen/user/weechat_commands.txt48
2 files changed, 26 insertions, 26 deletions
diff --git a/doc/ja/autogen/user/irc_options.txt b/doc/ja/autogen/user/irc_options.txt
index 9bfb33061..94cbc4543 100644
--- a/doc/ja/autogen/user/irc_options.txt
+++ b/doc/ja/autogen/user/irc_options.txt
@@ -534,7 +534,7 @@
** 値: 未制約文字列 (デフォルト値: `""`)
* [[option_irc.server_default.realname]] *irc.server_default.realname*
-** 説明: `サーバで使用するリアルネーム`
+** 説明: `real name to use on server (note: content is evaluated, see /help eval)`
** タイプ: 文字列
** 値: 未制約文字列 (デフォルト値: `""`)
@@ -589,7 +589,7 @@
** 値: on, off (デフォルト値: `on`)
* [[option_irc.server_default.username]] *irc.server_default.username*
-** 説明: `サーバで使用するユーザ名`
+** 説明: `user name to use on server (note: content is evaluated, see /help eval)`
** タイプ: 文字列
** 値: 未制約文字列 (デフォルト値: `""`)
diff --git a/doc/ja/autogen/user/weechat_commands.txt b/doc/ja/autogen/user/weechat_commands.txt
index deecaf9c4..0ab2e2f8d 100644
--- a/doc/ja/autogen/user/weechat_commands.txt
+++ b/doc/ja/autogen/user/weechat_commands.txt
@@ -703,36 +703,36 @@ file: 保存する設定ファイル (拡張子 ".conf" は不要)
set <name> <value>
del <name>
-passphrase: パスフレーズを変更 (パスフレーズがない場合、sec.conf ファイルに平文でデータを保存します)
- -delete: パスフレーズを削除
- decrypt: 暗号化されているデータを復号化 (起動時にパスフレーズが設定されていない場合に起きます)
- -discard: 全ての暗号化データを破棄
- set: 保護データを追加または変更
- del: 保護データを削除
-
-引数がない場合、新しいバッファに保護データを表示します。
-
-パスフレーズを利用する場合 (データが暗号化されている場合)、WeeChat は起動時にパスフレーズを尋ねます。
-環境変数 "WEECHAT_PASSPHRASE" を利用すれば入力を回避できます (WeeChat は /upgrade の時に同じ変数を利用します)。
-
-${sec.data.xxx} の形でフォーマットされた保護データは以下の様に利用できます:
- - コマンドライン引数 "--run-command"
- - weechat.startup.command_{before|after}_plugins オプション
- - プロキシオプション: username、password
- - irc サーバオプション: autojoin、command、password、sasl_{username|password}
- - relay.network.password オプション
- - /eval コマンド。
+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
+
+Without argument, this command displays secured data in a new buffer.
+
+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).
+
+Secured data with format ${sec.data.xxx} can be used in:
+ - command line argument "--run-command"
+ - options weechat.startup.command_{before|after}_plugins
+ - proxy options: username, password
+ - irc server options: autojoin, command, password, sasl_{username|password}, username, realname
+ - option relay.network.password
+ - command /eval.
-例:
- パスフレーズを設定:
+Examples:
+ set a passphrase:
/secure passphrase this is my passphrase
- freenode の SASL パスワードを暗号化:
+ encrypt freenode SASL password:
/secure set freenode mypassword
/set irc.server.freenode.sasl_password "${sec.data.freenode}"
- oftc の nickserv 用パスワードを暗号化:
+ encrypt oftc password for nickserv:
/secure set oftc mypassword
/set irc.server.oftc.command "/msg nickserv identify ${sec.data.oftc}"
- ニックネーム "mynick" を取り戻すためのエイリアス ghost を設定
+ alias to ghost the nick "mynick":
/alias ghost /eval /msg -server freenode nickserv ghost mynick ${sec.data.freenode}
----