diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2018-11-04 14:43:59 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2018-11-04 14:50:53 +0100 |
commit | cb73c168b544cc32439f59abaadd39945fe4701a (patch) | |
tree | af21378498cdf55b0a2e75be42f493e7e95efc9e /doc/ja | |
parent | dc7d99fa738417b5508845745067862e18a7c963 (diff) | |
download | weechat-cb73c168b544cc32439f59abaadd39945fe4701a.zip |
core: update translations
Diffstat (limited to 'doc/ja')
-rw-r--r-- | doc/ja/autogen/plugin_api/infos.adoc | 4 | ||||
-rw-r--r-- | doc/ja/autogen/user/relay_options.adoc | 12 |
2 files changed, 16 insertions, 0 deletions
diff --git a/doc/ja/autogen/plugin_api/infos.adoc b/doc/ja/autogen/plugin_api/infos.adoc index f73e93237..ad0ce19fd 100644 --- a/doc/ja/autogen/plugin_api/infos.adoc +++ b/doc/ja/autogen/plugin_api/infos.adoc @@ -112,6 +112,10 @@ | weechat | term_width | 端末の幅 | - +| weechat | totp_generate | generate a Time-based One-Time Password (TOTP) | secret (in base32), timestamp (optional, current time by default), number of digits (optional, between 4 and 10, 6 by default) + +| weechat | totp_validate | validate a Time-based One-Time Password (TOTP): 1 if TOTP is correct, otherwise 0 | secret (in base32), one-time password, timestamp (optional, current time by default), number of passwords before/after to test (optional, 0 by default) + | weechat | uptime | WeeChat 連続稼働時間 (書式: "days:hh:mm:ss") | "days" (日数) または "seconds" (秒数) (任意) | weechat | version | WeeChat のバージョン | - diff --git a/doc/ja/autogen/user/relay_options.adoc b/doc/ja/autogen/user/relay_options.adoc index e7ffa36f0..ac2c7184e 100644 --- a/doc/ja/autogen/user/relay_options.adoc +++ b/doc/ja/autogen/user/relay_options.adoc @@ -164,6 +164,18 @@ ** 値: 未制約文字列 ** デフォルト値: `+"NORMAL:-VERS-SSL3.0"+` +* [[option_relay.network.totp_secret]] *relay.network.totp_secret* +** 説明: pass:none[secret for the generation of the Time-based One-Time Password (TOTP), encoded in base32 (only letters and digits from 2 to 7); it is used as second factor in weechat protocol, in addition to the password, which must not be empty (empty value means no TOTP is required) (note: content is evaluated, see /help eval)] +** タイプ: 文字列 +** 値: 未制約文字列 +** デフォルト値: `+""+` + +* [[option_relay.network.totp_window]] *relay.network.totp_window* +** 説明: pass:none[number of Time-based One-Time Passwords to accept before and after the current one: 0 = accept only the current password, 1 = accept one password before, the current, and one after, 2 = accept two passwords before, the current, and two after, ...; a high number reduces the security level (0 or 1 are recommended values)] +** タイプ: 整数 +** 値: 0 .. 256 +** デフォルト値: `+0+` + * [[option_relay.network.websocket_allowed_origins]] *relay.network.websocket_allowed_origins* ** 説明: pass:none[ウェブソケットに使うことを許可する origin の "POSIX 拡張正規表現 (大文字小文字を区別しない、"(?-i)" を先頭に置くと大文字小文字を区別する)、例: "^http://(www\.)?example\.(com|org)"] ** タイプ: 文字列 |