summaryrefslogtreecommitdiff
path: root/doc/ja
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2021-05-13 09:57:50 +0200
committerSébastien Helleu <flashcode@flashtux.org>2021-05-13 09:57:50 +0200
commit33767b22f3e86de1e0fd0595e022cee9bd6c2a30 (patch)
tree123db52a41354137c18eea689c377ad4080991b4 /doc/ja
parent11b311ce2f9fd94dfc269dc419f0a0845be9d140 (diff)
downloadweechat-33767b22f3e86de1e0fd0595e022cee9bd6c2a30.zip
doc: fix translations in Italian and Japanese plugin API reference
Diffstat (limited to 'doc/ja')
-rw-r--r--doc/ja/weechat_plugin_api.ja.adoc12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/ja/weechat_plugin_api.ja.adoc b/doc/ja/weechat_plugin_api.ja.adoc
index fecc08ad7..1fc7105f2 100644
--- a/doc/ja/weechat_plugin_api.ja.adoc
+++ b/doc/ja/weechat_plugin_api.ja.adoc
@@ -15119,10 +15119,10 @@ struct t_gui_completion *completion = weechat_completion_new (weechat_buffer_sea
[source,python]
----
-# prototype
+# プロトタイプ
completion = weechat.completion_new(buffer)
-# example
+# 例
completion = weechat.completion_new(weechat.buffer_search_main())
----
@@ -15168,10 +15168,10 @@ if (weechat_completion_search (completion, "/help filt", 10, 1))
[source,python]
----
-# prototype
+# プロトタイプ
rc = weechat.completion_search(completion, data, position, direction)
-# example
+# 例
completion = weechat.completion_new(weechat.buffer_search_main())
if weechat.completion_search(completion, "/help filt", 10, 1):
# ...
@@ -15302,10 +15302,10 @@ weechat_completion_free (completion);
[source,python]
----
-# prototype
+# プロトタイプ
weechat.completion_free(completion)
-# example
+# 例
weechat.completion_free(completion)
----