diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2019-09-22 20:41:00 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2019-09-22 20:41:00 +0200 |
commit | 39b6fb61370de2591146460bd5414955a234801e (patch) | |
tree | 2b3ee2cfff024cbc3455ae68d38166a04ed20f6c /doc/ja/autogen/user | |
parent | 12ee9cb75cb49528ab58cf9b821112fab9dcb82f (diff) | |
download | weechat-39b6fb61370de2591146460bd5414955a234801e.zip |
irc: remove option irc.network.channel_encode, add server option "charset_message" (closes #832)
This new option controls which part of the IRC message is decoded/encoded to
the target charset, and the new default behavior is to decode/encode the whole
IRC message (behavior in WeeChat >= 1.3 was to decode/encode only the text by
default).
Diffstat (limited to 'doc/ja/autogen/user')
-rw-r--r-- | doc/ja/autogen/user/irc_options.adoc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/ja/autogen/user/irc_options.adoc b/doc/ja/autogen/user/irc_options.adoc index afb8cb037..e89043d25 100644 --- a/doc/ja/autogen/user/irc_options.adoc +++ b/doc/ja/autogen/user/irc_options.adoc @@ -446,12 +446,6 @@ ** 値: 未制約文字列 ** デフォルト値: `+"*!$ident@$host"+` -* [[option_irc.network.channel_encode]] *irc.network.channel_encode* -** 説明: pass:none[文字セットオプションを使ってメッセージに含まれるチャンネル名をデコードおよびエンコードする; チャンネル名に UTF-8 を使っている場合のみこれを無効化しておくことをおすすめします; チャンネル名に ISO などの文字セットを使っている場合にはこれを有効化します] -** タイプ: ブール -** 値: on, off -** デフォルト値: `+off+` - * [[option_irc.network.colors_receive]] *irc.network.colors_receive* ** 説明: pass:none[オフの場合、到着メッセージに含まれる色コードを無視] ** タイプ: ブール @@ -596,6 +590,12 @@ ** 値: 未制約文字列 ** デフォルト値: `+""+` +* [[option_irc.server_default.charset_message]] *irc.server_default.charset_message* +** 説明: pass:none[part of the IRC message (received or sent) which is decoded/encoded to the target charset; message = the whole IRC message (default), channel = starting from the channel name only (if found, with fallback on text), text = starting from the text only (you should try this value if you have issues with the channel name encoding)] +** タイプ: 整数 +** 値: message, channel, text +** デフォルト値: `+message+` + * [[option_irc.server_default.command]] *irc.server_default.command* ** 説明: pass:none[サーバに接続した後、チャンネルに自動参加する前に実行するコマンド (";" で分けて 複数のコマンドを列挙できます、セミコロンは "\;" のように使ってください、特殊変数 $nick、$channel、$server はそれぞれの値に置換されます) (注意: 値は評価されます、/help eval を参照してください; ここで ${irc_server.xxx} はサーバオプション、${server} はサーバ名を意味します)] ** タイプ: 文字列 |