Navigation Menu

Skip to content

Commit

Permalink
Translate %%
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Oct 24, 2015
1 parent a3048b0 commit 4ed1c5c
Show file tree
Hide file tree
Showing 3 changed files with 60 additions and 1 deletion.
41 changes: 41 additions & 0 deletions _po/ja/reference/operators/match.po
@@ -0,0 +1,41 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2015-10-24 17:48+0900\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"

msgid ""
"---\n"
"title: \"%% operator\"\n"
"layout: en\n"
"---"
msgstr ""
"---\n"
"title: \"%%演算子\"\n"
"layout: ja\n"
"---"

msgid "# `%%` operator"
msgstr "# `%%`演算子"

msgid "You can do full text search with one keyword by `%%` operator:"
msgstr "`%%`演算子を使うと1つキーワードで全文検索できます。"

msgid ""
"```sql\n"
"SELECT * FROM memos WHERE content %% '全文検索';\n"
"-- id | content\n"
"-- ----+---------------------------------------------------\n"
"-- 2 | Groongaは日本語対応の高速な全文検索エンジンです。\n"
"-- (1 行)\n"
"```"
msgstr ""

msgid ""
"If you want to do full text search with multiple keywords or AND/OR search, us"
"e [`@@` operator](query.html)."
msgstr "複数のキーワードで検索したいときやAND/ORを使った検索をしたいときは[`@@`演算子](query.html)を使います。"
18 changes: 18 additions & 0 deletions ja/reference/operators/match.md
@@ -0,0 +1,18 @@
---
title: "%%演算子"
layout: ja
---

# `%%`演算子

`%%`演算子を使うと1つキーワードで全文検索できます。

```sql
SELECT * FROM memos WHERE content %% '全文検索';
-- id | content
-- ----+---------------------------------------------------
-- 2 | Groongaは日本語対応の高速な全文検索エンジンです。
-- (1 行)
```

複数のキーワードで検索したいときやAND/ORを使った検索をしたいときは[`@@`演算子](query.html)を使います。
2 changes: 1 addition & 1 deletion reference/operators/match.md
Expand Up @@ -15,4 +15,4 @@ SELECT * FROM memos WHERE content %% '全文検索';
-- (1 行)
```

If you want to do full text search with multiple keywords or AND/OR search, use [`%%` operator](query.html).
If you want to do full text search with multiple keywords or AND/OR search, use [`@@` operator](query.html).

0 comments on commit 4ed1c5c

Please sign in to comment.