From b6e11d51f4b1e30825454836a5d9a5534e57ac1e Mon Sep 17 00:00:00 2001 From: Ryuunosuke Ayanokouzi Date: Mon, 13 Jan 2014 11:00:26 +0100 Subject: doc: add Japanese plugin API reference, update Japanese translations and docs --- doc/ja/CMakeLists.txt | 12 + doc/ja/Makefile.am | 6 + doc/ja/autogen/plugin_api/completions.txt | 2 +- doc/ja/autogen/plugin_api/hdata.txt | 152 +- doc/ja/autogen/plugin_api/infos.txt | 4 +- doc/ja/autogen/user/aspell_options.txt | 4 +- doc/ja/autogen/user/irc_commands.txt | 88 +- doc/ja/autogen/user/irc_options.txt | 56 +- doc/ja/autogen/user/logger_options.txt | 4 +- doc/ja/autogen/user/relay_options.txt | 24 +- doc/ja/autogen/user/rmodifier_commands.txt | 30 +- doc/ja/autogen/user/script_options.txt | 52 +- doc/ja/autogen/user/weechat_commands.txt | 310 +- doc/ja/autogen/user/weechat_options.txt | 158 +- doc/ja/autogen/user/xfer_options.txt | 20 +- doc/ja/weechat_faq.ja.txt | 2 - doc/ja/weechat_plugin_api.ja.txt | 14513 +++++++++++++++++++++++++++ doc/ja/weechat_user.ja.txt | 42 +- 18 files changed, 14998 insertions(+), 481 deletions(-) create mode 100644 doc/ja/weechat_plugin_api.ja.txt (limited to 'doc') diff --git a/doc/ja/CMakeLists.txt b/doc/ja/CMakeLists.txt index 96d5b1485..610b97d12 100644 --- a/doc/ja/CMakeLists.txt +++ b/doc/ja/CMakeLists.txt @@ -48,6 +48,18 @@ IF(ENABLE_DOC AND SOURCEHIGHLIGHT_FOUND) ADD_CUSTOM_TARGET(doc-user-ja ALL DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/weechat_user.ja.html) INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/weechat_user.ja.html DESTINATION ${SHAREDIR}/doc/${PROJECT_NAME}) + # plugin API reference + ADD_CUSTOM_COMMAND( + OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/weechat_plugin_api.ja.html + COMMAND ${ASCIIDOC_EXECUTABLE} ARGS -a toc -a toclevels=4 -a toc-title='目次' -a revision="${VERSION}" -a stylesheet=${CMAKE_CURRENT_SOURCE_DIR}/../asciidoc.css -f ${CMAKE_CURRENT_SOURCE_DIR}/../asciidoc.conf -n -o ${CMAKE_CURRENT_BINARY_DIR}/weechat_plugin_api.ja.html ${CMAKE_CURRENT_SOURCE_DIR}/weechat_plugin_api.ja.txt + DEPENDS + ${CMAKE_CURRENT_SOURCE_DIR}/weechat_plugin_api.ja.txt + ${CMAKE_CURRENT_SOURCE_DIR}/autogen/plugin_api/*.txt + COMMENT "Building weechat_plugin_api.ja.html" + ) + ADD_CUSTOM_TARGET(doc-plugin-api-ja ALL DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/weechat_plugin_api.ja.html) + INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/weechat_plugin_api.ja.html DESTINATION ${SHAREDIR}/doc/${PROJECT_NAME}) + # scripting guide ADD_CUSTOM_COMMAND( OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/weechat_scripting.ja.html diff --git a/doc/ja/Makefile.am b/doc/ja/Makefile.am index 6b9f24217..6165da021 100644 --- a/doc/ja/Makefile.am +++ b/doc/ja/Makefile.am @@ -23,6 +23,7 @@ EXTRA_DIST = CMakeLists.txt \ weechat.1.ja.txt \ cmdline_options.ja.txt \ weechat_user.ja.txt \ + weechat_plugin_api.ja.txt \ weechat_scripting.ja.txt \ weechat_faq.ja.txt \ weechat_quickstart.ja.txt \ @@ -37,6 +38,7 @@ if MAN endif if DOC doc_targets = weechat_user.ja.html \ + weechat_plugin_api.ja.html \ weechat_scripting.ja.html \ weechat_faq.ja.html \ weechat_quickstart.ja.html \ @@ -56,6 +58,10 @@ weechat.1: weechat.1.ja.txt cmdline_options.ja.txt weechat_user.ja.html: weechat_user.ja.txt cmdline_options.ja.txt $(wildcard autogen/user/*.txt) $(ASCIIDOC) -a toc -a toclevels=4 -a toc-title='目次' -a revision="$(VERSION)" -a stylesheet=$(abs_top_srcdir)/doc/asciidoc.css -f $(abs_top_srcdir)/doc/asciidoc.conf -n -o weechat_user.ja.html $(abs_top_srcdir)/doc/ja/weechat_user.ja.txt +# plugin API reference +weechat_plugin_api.ja.html: weechat_plugin_api.ja.txt $(wildcard autogen/plugin_api/*.txt) + $(ASCIIDOC) -a toc -a toclevels=4 -a toc-title='目次' -a revision="$(VERSION)" -a stylesheet=$(abs_top_srcdir)/doc/asciidoc.css -f $(abs_top_srcdir)/doc/asciidoc.conf -n -o weechat_plugin_api.ja.html $(abs_top_srcdir)/doc/ja/weechat_plugin_api.ja.txt + # scripting guide weechat_scripting.ja.html: weechat_scripting.ja.txt $(ASCIIDOC) -a toc -a toclevels=3 -a toc-title='目次' -a revision="$(VERSION)" -a stylesheet=$(abs_top_srcdir)/doc/asciidoc.css -f $(abs_top_srcdir)/doc/asciidoc.conf -n -o weechat_scripting.ja.html $(abs_top_srcdir)/doc/ja/weechat_scripting.ja.txt diff --git a/doc/ja/autogen/plugin_api/completions.txt b/doc/ja/autogen/plugin_api/completions.txt index 9e12301c4..733d766ed 100644 --- a/doc/ja/autogen/plugin_api/completions.txt +++ b/doc/ja/autogen/plugin_api/completions.txt @@ -22,7 +22,7 @@ | irc | irc_ignores_numbers | 無視エントリの数 -| irc | irc_msg_kick | default kick message +| irc | irc_msg_kick | デフォルトのキックメッセージ | irc | irc_msg_part | IRC チャンネルのデフォルト退出メッセージ diff --git a/doc/ja/autogen/plugin_api/hdata.txt b/doc/ja/autogen/plugin_api/hdata.txt index b36c7dd81..36a56d0bf 100644 --- a/doc/ja/autogen/plugin_api/hdata.txt +++ b/doc/ja/autogen/plugin_api/hdata.txt @@ -1,6 +1,6 @@ * 'guile_callback': スクリプトのコールバック ** プラグイン: guile -** variables: +** 変数: *** 'script' (pointer, hdata: "guile_script") *** 'function' (string) *** 'data' (string) @@ -15,7 +15,7 @@ *** 'next_callback' (pointer, hdata: "guile_callback") * 'guile_script': スクリプトのリスト ** プラグイン: guile -** variables: +** 変数: *** 'filename' (string) *** 'interpreter' (pointer) *** 'name' (string) @@ -29,12 +29,12 @@ *** 'unloading' (integer) *** 'prev_script' (pointer, hdata: "guile_script") *** 'next_script' (pointer, hdata: "guile_script") -** lists: +** リスト: *** 'last_script' *** 'scripts' * 'irc_channel': irc チャンネル ** プラグイン: irc -** variables: +** 変数: *** 'type' (integer) *** 'name' (string) *** 'topic' (string) @@ -63,14 +63,14 @@ *** 'next_channel' (pointer, hdata: "irc_channel") * 'irc_channel_speaking': irc 会話中チャンネル ** プラグイン: irc -** variables: +** 変数: *** 'nick' (string) *** 'time_last_message' (time) *** 'prev_nick' (pointer, hdata: "irc_channel_speaking") *** 'next_nick' (pointer, hdata: "irc_channel_speaking") * 'irc_ignore': irc 無視 ** プラグイン: irc -** variables: +** 変数: *** 'number' (integer) *** 'mask' (string) *** 'regex_mask' (pointer) @@ -78,12 +78,12 @@ *** 'channel' (string) *** 'prev_ignore' (pointer, hdata: "irc_ignore") *** 'next_ignore' (pointer, hdata: "irc_ignore") -** lists: +** リスト: *** 'irc_ignore_list' *** 'last_irc_ignore' * 'irc_nick': irc ニックネーム ** プラグイン: irc -** variables: +** 変数: *** 'name' (string) *** 'host' (string) *** 'prefixes' (string) @@ -94,7 +94,7 @@ *** 'next_nick' (pointer, hdata: "irc_nick") * 'irc_notify': irc 通知 ** プラグイン: irc -** variables: +** 変数: *** 'server' (pointer, hdata: "irc_server") *** 'nick' (string) *** 'check_away' (integer) @@ -105,7 +105,7 @@ *** 'next_notify' (pointer, hdata: "irc_notify") * 'irc_redirect': irc リダイレクト ** プラグイン: irc -** variables: +** 変数: *** 'server' (pointer, hdata: "irc_server") *** 'pattern' (string) *** 'signal' (string) @@ -128,7 +128,7 @@ *** 'next_redirect' (pointer, hdata: "irc_redirect") * 'irc_redirect_pattern': irc リダイレクトパターン ** プラグイン: irc -** variables: +** 変数: *** 'name' (string) *** 'temp_pattern' (integer) *** 'timeout' (integer) @@ -137,12 +137,12 @@ *** 'cmd_extra' (string) *** 'prev_redirect' (pointer, hdata: "irc_redirect_pattern") *** 'next_redirect' (pointer, hdata: "irc_redirect_pattern") -** lists: +** リスト: *** 'irc_redirect_patterns' *** 'last_irc_redirect_pattern' * 'irc_server': irc サーバ ** プラグイン: irc -** variables: +** 変数: *** 'name' (string) *** 'options' (pointer) *** 'temp_server' (integer) @@ -213,12 +213,12 @@ *** 'last_channel' (pointer, hdata: "irc_channel") *** 'prev_server' (pointer, hdata: "irc_server") *** 'next_server' (pointer, hdata: "irc_server") -** lists: +** リスト: *** 'irc_servers' *** 'last_irc_server' * 'lua_callback': スクリプトのコールバック ** プラグイン: lua -** variables: +** 変数: *** 'script' (pointer, hdata: "lua_script") *** 'function' (string) *** 'data' (string) @@ -233,7 +233,7 @@ *** 'next_callback' (pointer, hdata: "lua_callback") * 'lua_script': スクリプトのリスト ** プラグイン: lua -** variables: +** 変数: *** 'filename' (string) *** 'interpreter' (pointer) *** 'name' (string) @@ -247,12 +247,12 @@ *** 'unloading' (integer) *** 'prev_script' (pointer, hdata: "lua_script") *** 'next_script' (pointer, hdata: "lua_script") -** lists: +** リスト: *** 'last_script' *** 'scripts' * 'perl_callback': スクリプトのコールバック ** プラグイン: perl -** variables: +** 変数: *** 'script' (pointer, hdata: "perl_script") *** 'function' (string) *** 'data' (string) @@ -267,7 +267,7 @@ *** 'next_callback' (pointer, hdata: "perl_callback") * 'perl_script': スクリプトのリスト ** プラグイン: perl -** variables: +** 変数: *** 'filename' (string) *** 'interpreter' (pointer) *** 'name' (string) @@ -281,12 +281,12 @@ *** 'unloading' (integer) *** 'prev_script' (pointer, hdata: "perl_script") *** 'next_script' (pointer, hdata: "perl_script") -** lists: +** リスト: *** 'last_script' *** 'scripts' * 'python_callback': スクリプトのコールバック ** プラグイン: python -** variables: +** 変数: *** 'script' (pointer, hdata: "python_script") *** 'function' (string) *** 'data' (string) @@ -301,7 +301,7 @@ *** 'next_callback' (pointer, hdata: "python_callback") * 'python_script': スクリプトのリスト ** プラグイン: python -** variables: +** 変数: *** 'filename' (string) *** 'interpreter' (pointer) *** 'name' (string) @@ -315,12 +315,12 @@ *** 'unloading' (integer) *** 'prev_script' (pointer, hdata: "python_script") *** 'next_script' (pointer, hdata: "python_script") -** lists: +** リスト: *** 'last_script' *** 'scripts' * 'ruby_callback': スクリプトのコールバック ** プラグイン: ruby -** variables: +** 変数: *** 'script' (pointer, hdata: "ruby_script") *** 'function' (string) *** 'data' (string) @@ -335,7 +335,7 @@ *** 'next_callback' (pointer, hdata: "ruby_callback") * 'ruby_script': スクリプトのリスト ** プラグイン: ruby -** variables: +** 変数: *** 'filename' (string) *** 'interpreter' (pointer) *** 'name' (string) @@ -349,12 +349,12 @@ *** 'unloading' (integer) *** 'prev_script' (pointer, hdata: "ruby_script") *** 'next_script' (pointer, hdata: "ruby_script") -** lists: +** リスト: *** 'last_script' *** 'scripts' * 'script_script': リポジトリからのスクリプト ** プラグイン: script -** variables: +** 変数: *** 'name' (string) *** 'name_with_extension' (string) *** 'language' (integer) @@ -378,12 +378,12 @@ *** 'install_order' (integer) *** 'prev_script' (pointer, hdata: "script_script") *** 'next_script' (pointer, hdata: "script_script") -** lists: +** リスト: *** 'last_script_repo' *** 'scripts_repo' * 'tcl_callback': スクリプトのコールバック ** プラグイン: tcl -** variables: +** 変数: *** 'script' (pointer, hdata: "tcl_script") *** 'function' (string) *** 'data' (string) @@ -398,7 +398,7 @@ *** 'next_callback' (pointer, hdata: "tcl_callback") * 'tcl_script': スクリプトのリスト ** プラグイン: tcl -** variables: +** 変数: *** 'filename' (string) *** 'interpreter' (pointer) *** 'name' (string) @@ -412,12 +412,12 @@ *** 'unloading' (integer) *** 'prev_script' (pointer, hdata: "tcl_script") *** 'next_script' (pointer, hdata: "tcl_script") -** lists: +** リスト: *** 'last_script' *** 'scripts' * 'bar': バー ** プラグイン: weechat -** variables: +** 変数: *** 'name' (string) *** 'options' (pointer) *** 'items_count' (integer) @@ -431,24 +431,24 @@ *** 'bar_refresh_needed' (integer) *** 'prev_bar' (pointer, hdata: "bar") *** 'next_bar' (pointer, hdata: "bar") -** lists: +** リスト: *** 'gui_bars' *** 'last_gui_bar' * 'bar_item': バーアイテム ** プラグイン: weechat -** variables: +** 変数: *** 'plugin' (pointer, hdata: "plugin") *** 'name' (string) *** 'build_callback' (pointer) *** 'build_callback_data' (pointer) *** 'prev_item' (pointer, hdata: "bar_item") *** 'next_item' (pointer, hdata: "bar_item") -** lists: +** リスト: *** 'gui_bar_items' *** 'last_gui_bar_item' * 'bar_window': バーウィンドウ ** プラグイン: weechat -** variables: +** 変数: *** 'bar' (pointer, hdata: "bar") *** 'x' (integer) *** 'y' (integer) @@ -473,7 +473,7 @@ *** 'next_bar_window' (pointer, hdata: "bar_window") * 'buffer': バッファ ** プラグイン: weechat -** variables: +** 変数: *** 'plugin' (pointer, hdata: "plugin") *** 'plugin_name_for_upgrade' (string) *** 'number' (integer) @@ -550,22 +550,22 @@ *** 'local_variables' (hashtable) *** 'prev_buffer' (pointer, hdata: "buffer") *** 'next_buffer' (pointer, hdata: "buffer") -** lists: +** リスト: *** 'gui_buffer_last_displayed' *** 'gui_buffers' *** 'last_gui_buffer' -* 'buffer_visited': visited buffer +* 'buffer_visited': 訪問済みバッファ ** プラグイン: weechat -** variables: +** 変数: *** 'buffer' (pointer, hdata: "buffer") *** 'prev_buffer' (pointer, hdata: "buffer_visited") *** 'next_buffer' (pointer, hdata: "buffer_visited") -** lists: +** リスト: *** 'gui_buffers_visited' *** 'last_gui_buffer_visited' * 'completion': 補完する構造 ** プラグイン: weechat -** variables: +** 変数: *** 'buffer' (pointer, hdata: "buffer") *** 'context' (integer) *** 'base_command' (string) @@ -587,14 +587,14 @@ *** 'last_partial_completion' (pointer, hdata: "completion_partial") * 'completion_partial': 部分補完する構造 ** プラグイン: weechat -** variables: +** 変数: *** 'word' (string) *** 'count' (integer) *** 'prev_item' (pointer, hdata: "completion_partial") *** 'next_item' (pointer, hdata: "completion_partial") * 'config_file': 設定ファイル ** プラグイン: weechat -** variables: +** 変数: *** 'plugin' (pointer, hdata: "plugin") *** 'name' (string) *** 'filename' (string) @@ -605,12 +605,12 @@ *** 'last_section' (pointer, hdata: "config_section") *** 'prev_config' (pointer, hdata: "config_file") *** 'next_config' (pointer, hdata: "config_file") -** lists: +** リスト: *** 'config_files' *** 'last_config_file' * 'config_option': 設定オプション ** プラグイン: weechat -** variables: +** 変数: *** 'config_file' (pointer, hdata: "config_file") *** 'section' (pointer, hdata: "config_section") *** 'name' (string) @@ -633,7 +633,7 @@ *** 'next_option' (pointer, hdata: "config_option") * 'config_section': 設定セクション ** プラグイン: weechat -** variables: +** 変数: *** 'config_file' (pointer, hdata: "config_file") *** 'name' (string) *** 'user_can_add_options' (integer) @@ -654,7 +654,7 @@ *** 'next_section' (pointer, hdata: "config_section") * 'filter': フィルタ ** プラグイン: weechat -** variables: +** 変数: *** 'enabled' (integer) *** 'name' (string) *** 'buffer_name' (string) @@ -668,24 +668,24 @@ *** 'regex_message' (pointer) *** 'prev_filter' (pointer, hdata: "filter") *** 'next_filter' (pointer, hdata: "filter") -** lists: +** リスト: *** 'gui_filters' *** 'last_gui_filter' * 'history': バッファのコマンド履歴 ** プラグイン: weechat -** variables: +** 変数: *** 'text' (string) *** 'next_history' (pointer, hdata: "history") *** 'prev_history' (pointer, hdata: "history") -** update allowed: +** アップデート可: *** '__create' *** '__delete' -** lists: +** リスト: *** 'gui_history' *** 'last_gui_history' * 'hotlist': ホットリスト ** プラグイン: weechat -** variables: +** 変数: *** 'priority' (integer) *** 'creation_time.tv_sec' (time) *** 'creation_time.tv_usec' (long) @@ -693,19 +693,19 @@ *** 'count' (integer, array_size: "4") *** 'prev_hotlist' (pointer, hdata: "hotlist") *** 'next_hotlist' (pointer, hdata: "hotlist") -** lists: +** リスト: *** 'gui_hotlist' *** 'last_gui_hotlist' * 'input_undo': 入力行をアンドゥする構造 ** プラグイン: weechat -** variables: +** 変数: *** 'data' (string) *** 'pos' (integer) *** 'prev_undo' (pointer, hdata: "input_undo") *** 'next_undo' (pointer, hdata: "input_undo") * 'key': キー (キーボードショートカット) ** プラグイン: weechat -** variables: +** 変数: *** 'key' (string) *** 'area_type' (pointer) *** 'area_name' (pointer) @@ -714,7 +714,7 @@ *** 'score' (integer) *** 'prev_key' (pointer, hdata: "key") *** 'next_key' (pointer, hdata: "key") -** lists: +** リスト: *** 'gui_default_keys' *** 'gui_default_keys_cursor' *** 'gui_default_keys_mouse' @@ -733,7 +733,7 @@ *** 'last_gui_key_search' * 'layout': レイアウト ** プラグイン: weechat -** variables: +** 変数: *** 'name' (string) *** 'layout_buffers' (pointer, hdata: "layout_buffer") *** 'last_layout_buffer' (pointer, hdata: "layout_buffer") @@ -742,13 +742,13 @@ *** 'internal_id_current_window' (integer) *** 'prev_layout' (pointer, hdata: "layout") *** 'next_layout' (pointer, hdata: "layout") -** lists: +** リスト: *** 'gui_layout_current' *** 'gui_layouts' *** 'last_gui_layout' * 'layout_buffer': バッファレイアウト ** プラグイン: weechat -** variables: +** 変数: *** 'plugin_name' (string) *** 'buffer_name' (string) *** 'number' (integer) @@ -756,7 +756,7 @@ *** 'next_layout' (pointer, hdata: "layout_buffer") * 'layout_window': ウィンドウレイアウト ** プラグイン: weechat -** variables: +** 変数: *** 'internal_id' (integer) *** 'parent_node' (pointer, hdata: "layout_window") *** 'split_pct' (integer) @@ -767,13 +767,13 @@ *** 'buffer_name' (string) * 'line': 1 行の構造 ** プラグイン: weechat -** variables: +** 変数: *** 'data' (pointer, hdata: "line_data") *** 'prev_line' (pointer, hdata: "line") *** 'next_line' (pointer, hdata: "line") * 'line_data': 1 行データ構造 ** プラグイン: weechat -** variables: +** 変数: *** 'buffer' (pointer, hdata: "buffer") *** 'y' (integer) *** 'date' (time) @@ -787,7 +787,7 @@ *** 'prefix' (shared_string) *** 'prefix_length' (integer) *** 'message' (string) -** update allowed: +** アップデート可: *** 'date' (time) *** 'date_printed' (time) *** 'tags_array' (shared_string) @@ -795,7 +795,7 @@ *** 'message' (string) * 'lines': 行を持つ構造 ** プラグイン: weechat -** variables: +** 変数: *** 'first_line' (pointer, hdata: "line") *** 'last_line' (pointer, hdata: "line") *** 'last_read_line' (pointer, hdata: "line") @@ -808,7 +808,7 @@ *** 'prefix_max_length_refresh' (integer) * 'nick': ニックネームリストにあるニックネーム ** プラグイン: weechat -** variables: +** 変数: *** 'group' (pointer, hdata: "nick_group") *** 'name' (shared_string) *** 'color' (shared_string) @@ -819,7 +819,7 @@ *** 'next_nick' (pointer, hdata: "nick") * 'nick_group': ニックネームリストにあるグループ ** プラグイン: weechat -** variables: +** 変数: *** 'name' (shared_string) *** 'color' (shared_string) *** 'visible' (integer) @@ -833,7 +833,7 @@ *** 'next_group' (pointer, hdata: "nick_group") * 'plugin': プラグイン ** プラグイン: weechat -** variables: +** 変数: *** 'filename' (string) *** 'handle' (pointer) *** 'name' (string) @@ -845,22 +845,22 @@ *** 'debug' (integer) *** 'prev_plugin' (pointer, hdata: "plugin") *** 'next_plugin' (pointer, hdata: "plugin") -** lists: +** リスト: *** 'last_weechat_plugin' *** 'weechat_plugins' * 'proxy': プロキシ ** プラグイン: weechat -** variables: +** 変数: *** 'name' (string) *** 'options' (pointer) *** 'prev_proxy' (pointer, hdata: "proxy") *** 'next_proxy' (pointer, hdata: "proxy") -** lists: +** リスト: *** 'last_weechat_proxy' *** 'weechat_proxies' * 'window': ウィンドウ ** プラグイン: weechat -** variables: +** 変数: *** 'number' (integer) *** 'win_x' (integer) *** 'win_y' (integer) @@ -885,13 +885,13 @@ *** 'ptr_tree' (pointer, hdata: "window_tree") *** 'prev_window' (pointer, hdata: "window") *** 'next_window' (pointer, hdata: "window") -** lists: +** リスト: *** 'gui_current_window' *** 'gui_windows' *** 'last_gui_window' * 'window_scroll': ウィンドウ内のスクロール情報 ** プラグイン: weechat -** variables: +** 変数: *** 'buffer' (pointer, hdata: "buffer") *** 'first_line_displayed' (integer) *** 'start_line' (pointer, hdata: "line") @@ -903,12 +903,12 @@ *** 'next_scroll' (pointer, hdata: "window_scroll") * 'window_tree': ウィンドウツリー ** プラグイン: weechat -** variables: +** 変数: *** 'parent_node' (pointer, hdata: "window_tree") *** 'split_pct' (integer) *** 'split_horizontal' (integer) *** 'child1' (pointer, hdata: "window_tree") *** 'child2' (pointer, hdata: "window_tree") *** 'window' (pointer, hdata: "window") -** lists: +** リスト: *** 'gui_windows_tree' diff --git a/doc/ja/autogen/plugin_api/infos.txt b/doc/ja/autogen/plugin_api/infos.txt index b0ae41a5f..470205d80 100644 --- a/doc/ja/autogen/plugin_api/infos.txt +++ b/doc/ja/autogen/plugin_api/infos.txt @@ -42,9 +42,9 @@ | weechat | locale | 翻訳メッセージに利用するロケール | - -| weechat | term_height | height of terminal | - +| weechat | term_height | ターミナルの高さ | - -| weechat | term_width | width of terminal | - +| weechat | term_width | ターミナルの幅 | - | weechat | version | WeeChat のバージョン | - diff --git a/doc/ja/autogen/user/aspell_options.txt b/doc/ja/autogen/user/aspell_options.txt index 983b18957..bc84b6777 100644 --- a/doc/ja/autogen/user/aspell_options.txt +++ b/doc/ja/autogen/user/aspell_options.txt @@ -36,10 +36,10 @@ * [[option_aspell.color.misspelled]] *aspell.color.misspelled* ** 説明: `スペルミスのある単語に付ける色 (入力バー)` ** タイプ: 色 -** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (デフォルト値: `lightred`) +** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、ターミナル色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" (デフォルト値: `lightred`) * [[option_aspell.color.suggestions]] *aspell.color.suggestions* ** 説明: `スペルミスのある単語に対する修正候補に付ける色 (ステータスバー)` ** タイプ: 色 -** 値: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "*" for bold, "!" for reverse, "/" for italic, "_" for underline (デフォルト値: `default`) +** 値: WeeChat の色名 (default、black、(dark)gray、white、(light)red、(light)green、brown、yellow、(light)blue、(light)magenta、(light)cyan) 、ターミナル色番号またはその別名; 色の前に属性を置くことができます (テキスト前景色のみ、背景色は出来ません): 太字は "*"、反転は "!"、イタリックは "/"、下線は "_" (デフォルト値: `default`) diff --git a/doc/ja/autogen/user/irc_commands.txt b/doc/ja/autogen/user/irc_commands.txt index 17909bf95..80dd0e670 100644 --- a/doc/ja/autogen/user/irc_commands.txt +++ b/doc/ja/autogen/user/irc_commands.txt @@ -65,21 +65,21 @@ channel: バン対象チャンネル /connect [...] [-