summaryrefslogtreecommitdiff
path: root/doc/ja
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2021-04-06 18:37:22 +0200
committerSébastien Helleu <flashcode@flashtux.org>2021-04-06 18:37:22 +0200
commitfae9bdf8f8cf51eb07602dc8f6633e380ff94b20 (patch)
tree43bbc457789d6afbdc9414d3dd990032e96c242c /doc/ja
parent3bf585ba04e7ff4a95f739e58503da7af3714bc7 (diff)
downloadweechat-fae9bdf8f8cf51eb07602dc8f6633e380ff94b20.zip
trigger: add variables "${tg_shell_argc}" and "${tg_shell_argvN}" in command trigger evaluated strings (closes #1624)
Diffstat (limited to 'doc/ja')
-rw-r--r--doc/ja/weechat_user.ja.adoc14
1 files changed, 9 insertions, 5 deletions
diff --git a/doc/ja/weechat_user.ja.adoc b/doc/ja/weechat_user.ja.adoc
index da45f5a5c..6cbd19330 100644
--- a/doc/ja/weechat_user.ja.adoc
+++ b/doc/ja/weechat_user.ja.adoc
@@ -4521,14 +4521,18 @@ _weechat_print_ 修飾子では、メッセージタグを使う変数 (下の
[width="100%",cols="3m,2,14",options="header"]
|===
-| 変数 | 型 | 説明
-| buffer | pointer | バッファ
+| 変数 | 型 | 説明
+| buffer | pointer | バッファ
// TRANSLATION MISSING
-| tg_argc | string | The number of arguments (the command itself counts for one).
+| tg_argc | string | The number of arguments (the command itself counts for one).
// TRANSLATION MISSING
-| tg_argvN | string | N 番目の引数 (`+tg_argv0+` is the command itself, the others are command arguments).
+| tg_argvN | string | N 番目の引数 (`+tg_argv0+` is the command itself, the others are command arguments).
// TRANSLATION MISSING
-| tg_argv_eolN | string | N 番目の引数から最後の引数まで (`+tg_argv_eol0+` includes the command itself).
+| tg_argv_eolN | string | N 番目の引数から最後の引数まで (`+tg_argv_eol0+` includes the command itself).
+// TRANSLATION MISSING
+| tg_shell_argc | string | The number of arguments with a split like the shell does (the command itself counts for one).
+// TRANSLATION MISSING
+| tg_shell_argvN | string | Argument #N with a split like the shell does (`+tg_shell_argv0+` is the command itself, the others are command arguments).
|===
[[trigger_data_command_run]]