summaryrefslogtreecommitdiff
path: root/doc/ja
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2022-09-17 10:44:21 +0200
committerSébastien Helleu <flashcode@flashtux.org>2022-09-17 10:44:21 +0200
commita99fc17d400b9931bdcbc49c53ab7ea4501a2306 (patch)
tree330f1f22f286343b0daee41781249b5c7e04b797 /doc/ja
parent2b2ba62600562d93f974bf7d0bd9db3b804ee22b (diff)
downloadweechat-a99fc17d400b9931bdcbc49c53ab7ea4501a2306.zip
spell: allow special dict value "-" to disable spell checking on a specific buffer (closes #1699)
Diffstat (limited to 'doc/ja')
-rw-r--r--doc/ja/includes/autogen_user_commands.ja.adoc24
1 files changed, 12 insertions, 12 deletions
diff --git a/doc/ja/includes/autogen_user_commands.ja.adoc b/doc/ja/includes/autogen_user_commands.ja.adoc
index 2638097c4..decabcddf 100644
--- a/doc/ja/includes/autogen_user_commands.ja.adoc
+++ b/doc/ja/includes/autogen_user_commands.ja.adoc
@@ -3063,27 +3063,27 @@ Examples:
----
/spell enable|disable|toggle
listdict
- setdict <dict>[,<dict>...]
+ setdict -|<dict>[,<dict>...]
deldict
addword [<dict>] <word>
- enable: スペルチェックの有効化
- disable: スペルチェックの無効化
- toggle: スペルチェックの有効無効を切り替え
-listdict: インストール済み辞書を表示
- setdict: 現在のバッファ用の辞書を設定 (コンマで区切れば複数の辞書を指定可能)
- deldict: 現在のバッファ用の辞書を削除
- addword: 個人辞書に単語を追加
+ enable: enable spell checker
+ disable: disable spell checker
+ toggle: toggle spell checker
+listdict: show installed dictionaries
+ setdict: set dictionary for current buffer (multiple dictionaries can be separated by a comma, the special value "-" disables spell checking on current buffer)
+ deldict: delete dictionary used on current buffer
+ addword: add a word in personal dictionary
-一部のコマンドを除いて '/' で始まる入力行はチェックされません (/set spell.check.commands を参照してください)。
+Input line beginning with a '/' is not checked, except for some commands (see /set spell.check.commands).
-全てのバッファでスペルチェックを有効化するには、"default_dict" オプションを設定した後に、スペルチェックを有効化してください。例:
+To enable spell checker on all buffers, use option "default_dict", then enable spell checker, for example:
/set spell.check.default_dict "en"
/spell enable
-バーの中にスペル候補リストを表示するには、"spell_suggest" 要素を使ってください。
+To display a list of suggestions in a bar, use item "spell_suggest".
-スペルチェックの有効無効を切り替えるデフォルトのキーは alt-s です。
+Default key to toggle spell checker is alt-s.
----
// end::spell_commands[]