summaryrefslogtreecommitdiff
path: root/doc/ja
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2014-01-13 16:09:01 +0100
committerSebastien Helleu <flashcode@flashtux.org>2014-01-13 16:09:01 +0100
commit31e1b28c9070f19ed6b58cd62d68db3668798818 (patch)
tree9134c161a50b0792d5854193725b048c5334b0a0 /doc/ja
parenta8bb074fe714d62c43b68448dc809dba2c062850 (diff)
downloadweechat-31e1b28c9070f19ed6b58cd62d68db3668798818.zip
core: fix typo in /help weechat.look.highlight_regex
Diffstat (limited to 'doc/ja')
-rw-r--r--doc/ja/autogen/user/weechat_options.txt2
-rw-r--r--doc/ja/weechat_plugin_api.ja.txt5
2 files changed, 4 insertions, 3 deletions
diff --git a/doc/ja/autogen/user/weechat_options.txt b/doc/ja/autogen/user/weechat_options.txt
index 0379377ed..1860c6fb3 100644
--- a/doc/ja/autogen/user/weechat_options.txt
+++ b/doc/ja/autogen/user/weechat_options.txt
@@ -539,7 +539,7 @@
** 値: 未制約文字列 (デフォルト値: `""`)
* [[option_weechat.look.highlight_regex]] *weechat.look.highlight_regex*
-** 説明: `メッセージに含まれるハイライト箇所の有無を判断する POSIX 拡張正規表現、1 回以上マッチすればハイライトされる (英数字、"-"、"_"、"|")、正規表現は大文字小文字を区別しない (最初に "(?-i)" がある場合は区別する)、例: "flashcode|flashy"、"(?-i)FlashCode|flashy"`
+** 説明: `POSIX extended regular expression used to check if a message has highlight or not, at least one match in string must be surrounded by delimiters (chars different from: alphanumeric, "-", "_" and "|"), regular expression is case insensitive (use "(?-i)" at beginning to make it case sensitive), examples: "flashcode|flashy", "(?-i)FlashCode|flashy"`
** タイプ: 文字列
** 値: 未制約文字列 (デフォルト値: `""`)
diff --git a/doc/ja/weechat_plugin_api.ja.txt b/doc/ja/weechat_plugin_api.ja.txt
index 5e875717b..d2d0fa627 100644
--- a/doc/ja/weechat_plugin_api.ja.txt
+++ b/doc/ja/weechat_plugin_api.ja.txt
@@ -1169,10 +1169,11 @@ highlight = weechat.string_has_highlight("my test string", "test,word2") # 1
_WeeChat バージョン 0.3.4 以上で利用可。_
+// TRANSLATION MISSING
POSIX 拡張正規表現を使って、文字列中から正規表現にマッチする部分が 1
つ以上あるか確認。 +
-文字列中から正規表現にマッチする部分が少なくとも 1 つ以上あるためには、マッチ部分は単語文字
-(アルファベット、"-"、"_"、"|") で囲まれていなければなりません。
+For at least one match of regular expression on string, it must be surrounded
+by delimiters (chars different from: alphanumeric, "-", "_" and "|").
プロトタイプ: