[Groonga-commit] groonga/groonga at 94b14e6 [master] doc: drop message hash from po files

Back to archive index

HAYASHI Kentaro null+****@clear*****
Thu Jan 23 19:01:31 JST 2014


HAYASHI Kentaro	2014-01-23 19:01:31 +0900 (Thu, 23 Jan 2014)

  New Revision: 94b14e679d7309614ce265ccf2332d6489ac7439
  https://github.com/groonga/groonga/commit/94b14e679d7309614ce265ccf2332d6489ac7439

  Message:
    doc: drop message hash from po files

  Modified files:
    doc/locale/en/LC_MESSAGES/characteristic.po
    doc/locale/en/LC_MESSAGES/community.po
    doc/locale/en/LC_MESSAGES/contribution.po
    doc/locale/en/LC_MESSAGES/development.po
    doc/locale/en/LC_MESSAGES/geolocation_search.po
    doc/locale/en/LC_MESSAGES/index.po
    doc/locale/en/LC_MESSAGES/install.po
    doc/locale/en/LC_MESSAGES/limitations.po
    doc/locale/en/LC_MESSAGES/news.po
    doc/locale/en/LC_MESSAGES/reference.po
    doc/locale/en/LC_MESSAGES/server.po
    doc/locale/en/LC_MESSAGES/spec.po
    doc/locale/en/LC_MESSAGES/suggest.po
    doc/locale/en/LC_MESSAGES/troubleshooting.po
    doc/locale/en/LC_MESSAGES/tutorial.po

  Modified: doc/locale/en/LC_MESSAGES/characteristic.po (+0 -28)
===================================================================
--- doc/locale/en/LC_MESSAGES/characteristic.po    2014-01-23 18:04:29 +0900 (ed8015b)
+++ doc/locale/en/LC_MESSAGES/characteristic.po    2014-01-23 19:01:31 +0900 (3fad70e)
@@ -17,15 +17,12 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-# 63fab5f3d33041a4ba618b631bb8d0fd
 msgid "Characteristics of Groonga"
 msgstr "Characteristics of Groonga"
 
-# 8120f98617654b0999d36c596d52f1cd
 msgid "Groonga overview"
 msgstr "Groonga overview"
 
-# ae7af580d375488ea48a4359c796bd27
 msgid ""
 "Groonga is a fast and accurate full text search engine based on inverted "
 "index. One of the characteristics of Groonga is that a newly registered "
@@ -39,7 +36,6 @@ msgstr ""
 "without read locks. These characteristics result in superior performance on "
 "real-time applications."
 
-# c0e6e594a48a4b059d2abd0184a0a2af
 msgid ""
 "Groonga is also a column-oriented database management system (DBMS). "
 "Compared with well-known row-oriented systems, such as MySQL and PostgreSQL, "
@@ -51,7 +47,6 @@ msgstr ""
 "column-oriented systems are more suited for aggregate queries. Due to this "
 "advantage, Groonga can cover weakness of row-oriented systems."
 
-# 85a1009d75324723860c6dd72c305690
 msgid ""
 "The basic functions of Groonga are provided in a C library. Also, libraries "
 "for using Groonga in other languages, such as Ruby, are provided by related "
@@ -65,11 +60,9 @@ msgstr ""
 "and PostgreSQL. These libraries and storage engines allow any application to "
 "use Groonga. See `usage examples <http://groonga.org/users/>`_."
 
-# eef0f14116cd439ba8222ea400f60738
 msgid "Full text search and Instant update"
 msgstr "Full text search and Instant update"
 
-# 833bdd1c8c704ab68e99b538a9e9f9b4
 msgid ""
 "In widely used DBMSs, updates are immediately processed, for example, a "
 "newly registered record appears in the result of the next query. In "
@@ -83,7 +76,6 @@ msgstr ""
 "because it is difficult to dynamically update inverted indexes, the "
 "underlying data structure."
 
-# 024a202c55314acd9d7c099f783845d1
 msgid ""
 "Groonga also uses inverted indexes but supports instant updates. In "
 "addition, Groonga allows you to search documents even when updating the "
@@ -99,11 +91,9 @@ msgstr ""
 "performance because it divides a large task, inverted index merging, into "
 "smaller tasks."
 
-# 5d77a0d14c064792b1422483d15edfea
 msgid "Column store and aggregate query"
 msgstr "Column store and aggregate query"
 
-# fa9e65a3f9eb4e8dbfc699a0b6c471cc
 msgid ""
 "People can collect more than enough data in the Internet era. However, it is "
 "difficult to extract informative knowledge from a large database, and such a "
@@ -117,7 +107,6 @@ msgstr ""
 "search refinement by date, time and location may reveal hidden patterns. "
 "Aggregate queries are useful to perform this kind of tasks."
 
-# c19396a765b04ef8a04f708bdad52ec0
 msgid ""
 "An aggregate query groups search results by specified column values and then "
 "counts the number of records in each group. For example, an aggregate query "
@@ -137,7 +126,6 @@ msgstr ""
 "column allows visualization of changes over time in specific location. Thus "
 "refinement and aggregation are important to perform data mining."
 
-# 66049cae53ce4920a63bc716f538dbc5
 msgid ""
 "A column-oriented architecture allows Groonga to efficiently process "
 "aggregate queries because a column-oriented database, which stores records "
@@ -153,11 +141,9 @@ msgstr ""
 "records by row, has to access neighbor columns, even though those columns "
 "are not required."
 
-# 39aa87ab85294b0585b9464fb73fc275
 msgid "Inverted index and tokenizer"
 msgstr "Inverted index and tokenizer"
 
-# 45bde1a4562b4df6ac9cb9aa2f16af18
 msgid ""
 "An inverted index is a traditional data structure used for large-scale full "
 "text search. A search engine based on inverted index extracts index terms "
@@ -173,7 +159,6 @@ msgstr ""
 "index terms play an important role in full text search and thus the way of "
 "extracting index terms is a key to a better search engine."
 
-# cda3f2d428ac4e15b6dd1014d338976f
 msgid ""
 "A tokenizer is a module to extract index terms. A Japanese full text search "
 "engine commonly uses a word-based tokenizer (hereafter referred to as a word "
@@ -195,7 +180,6 @@ msgstr ""
 "perfect search result. The best choice depends on the application in "
 "practice."
 
-# 399d371c07764ee9b5dc76894babc4f5
 msgid ""
 "Groonga supports both word and n-gram tokenizers. The simplest built-in "
 "tokenizer uses spaces as word delimiters. Built-in n-gram tokenizers (n = 1, "
@@ -213,11 +197,9 @@ msgstr ""
 "develop your own tokenizer, such as a tokenizer based on another part-of-"
 "speech tagger or a named-entity recognizer."
 
-# 99f1dd56fbbe4199b728eee272b74a4d
 msgid "Sharable storage and read lock-free"
 msgstr "Sharable storage and read lock-free"
 
-# fd22338109904cceb10654f17c3db3fd
 msgid ""
 "Multi-core processors are mainstream today and the number of cores per "
 "processor is increasing. In order to exploit multiple cores, executing "
@@ -229,7 +211,6 @@ msgstr ""
 "multiple queries in parallel or dividing a query into sub-queries for "
 "parallel processing is becoming more important."
 
-# 39108b4f40fd4b38ad4fbf5b7e53e525
 msgid ""
 "A database of Groonga can be shared with multiple threads/processes. Also, "
 "multiple threads/processes can execute read queries in parallel even when "
@@ -249,11 +230,9 @@ msgstr ""
 "database can receive read queries through the built-in HTTP server of "
 "Groonga while accepting update queries through MySQL."
 
-# 47daa45655f34eeb9b77f4863177915b
 msgid "Geo-location (latitude and longitude) search"
 msgstr "Geo-location (latitude and longitude) search"
 
-# 11de0e50526d4ca686798e43b8e5f1b1
 msgid ""
 "Location services are getting more convenient because of mobile devices with "
 "GPS. For example, if you are going to have lunch or dinner at a nearby "
@@ -265,7 +244,6 @@ msgstr ""
 "restaurant, a local search service for restaurants may be very useful, and "
 "for such services, fast geo-location search is becoming more important."
 
-# 237b97a668b14f30aaa4fe3e413f1a9d
 msgid ""
 "Groonga provides inverted index-based fast geo-location search, which "
 "supports a query to find points in a rectangle or circle. Groonga gives high "
@@ -277,11 +255,9 @@ msgstr ""
 "priority to points near the center of an area. Also, Groonga supports "
 "distance measurement and you can sort points by distance from any point."
 
-# ab5490312b5640848fd88a8d52f33300
 msgid "Groonga library"
 msgstr "Groonga library"
 
-# 7493245bfdd2448bbb2168c29927de56
 msgid ""
 "The basic functions of Groonga are provided in a C library and any "
 "application can use Groonga as a full text search engine or a column-"
@@ -295,11 +271,9 @@ msgstr ""
 "Ruby, are provided in related projects. See `related projects <http://"
 "groonga.org/related-projects.html>`_ for details."
 
-# aa61d8e85dba495c8f6f2b7e305c0d06
 msgid "Groonga server"
 msgstr "Groonga server"
 
-# 745c97df3e31432cba426eda820b3dec
 msgid ""
 "Groonga provides a built-in server command which supports HTTP, the "
 "memcached binary protocol and the Groonga Query Transfer Protocol (GQTP). "
@@ -308,11 +282,9 @@ msgid ""
 "available even on a server that does not allow you to install new libraries."
 msgstr ""
 
-# bdeeaedd1de6476a9fff475fea4258f4
 msgid "Groonga storage engine"
 msgstr "Groonga storage engine"
 
-# a74721095b4a42ed84335d3aab088dda
 msgid ""
 "Groonga works not only as an independent column-oriented DBMS but also as "
 "storage engines of well-known DBMSs. For example, `mroonga <http://mroonga."

  Modified: doc/locale/en/LC_MESSAGES/community.po (+0 -14)
===================================================================
--- doc/locale/en/LC_MESSAGES/community.po    2014-01-23 18:04:29 +0900 (94d4e2a)
+++ doc/locale/en/LC_MESSAGES/community.po    2014-01-23 19:01:31 +0900 (353152d)
@@ -17,11 +17,9 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-# 98df3bbf31654e2b98d3862f413f066d
 msgid "Community"
 msgstr "Community"
 
-# d945d7b1453f4747b12943ebbd15b4a8
 msgid ""
 "There are some places for sharing Groonga information. We welcome you to "
 "join our community."
@@ -29,19 +27,15 @@ msgstr ""
 "There are some places for sharing Groonga information. We welcome you to "
 "join our community."
 
-# 5b3632c05b8847dca82be2e4aac6ef21
 msgid "Mailing List"
 msgstr "Mailing List"
 
-# d63b2c210bdc49f5b8e2608df3bc4b49
 msgid "There are mailing lists for discussion about Groonga."
 msgstr "There are mailing lists for discussion about Groonga."
 
-# 40f74a6d1d80428ab1431417b8954cf2
 msgid "For English speakers"
 msgstr ""
 
-# 09ee087cd5d24a4db848133fe0fcb384
 msgid ""
 "`groonga-talk �� lists.sourceforge.net <http://lists.sourceforge.net/mailman/"
 "listinfo/groonga-talk>`_"
@@ -49,11 +43,9 @@ msgstr ""
 "`groonga-talk �� lists.sourceforge.net <http://lists.sourceforge.net/mailman/"
 "listinfo/groonga-talk>`_"
 
-# 161e80986d65492da085c5b80d58f2b5
 msgid "For Japanese speakers"
 msgstr ""
 
-# 432a3768c7ed4dffa7cf3195b892a906
 msgid ""
 "`groonga-dev �� lists.sourceforge.jp <http://lists.sourceforge.jp/mailman/"
 "listinfo/groonga-dev>`_"
@@ -61,31 +53,25 @@ msgstr ""
 "`groonga-dev �� lists.sourceforge.jp <http://lists.sourceforge.jp/mailman/"
 "listinfo/groonga-dev>`_"
 
-# c6728510c9794221b51cc01cb4b954e2
 msgid "Twitter"
 msgstr ""
 
-# ca52d6f15abc4d59be26fccd7edf77eb
 msgid ""
 "`@groonga <https://twitter.com/groonga/>`_ tweets Groonga related "
 "information."
 msgstr ""
 
-# 991209fd288941c6a35aff931acb2d3f
 msgid ""
 "Please follow the account to get the latest Groonga related information!"
 msgstr ""
 
-# 1c5a3a3309584c9eac26437cee4b5202
 msgid "Facebook"
 msgstr ""
 
-# 99a356bc6dba45d5b0a31be7e38f1615
 msgid ""
 "`Groonga page on Facebook <http://www.facebook.com/groonga>`_ shares Groonga "
 "related information."
 msgstr ""
 
-# ed467ee4ec1b4d77b6f253b7d40a90c9
 msgid "Please like the page to get the latest Groonga related information!"
 msgstr ""

  Modified: doc/locale/en/LC_MESSAGES/contribution.po (+0 -478)
===================================================================
--- doc/locale/en/LC_MESSAGES/contribution.po    2014-01-23 18:04:29 +0900 (dbfcad0)
+++ doc/locale/en/LC_MESSAGES/contribution.po    2014-01-23 19:01:31 +0900 (e3666c3)
@@ -17,11 +17,9 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-# 673b9fd60f2246e78e00f79d63dbdfc0
 msgid "How to contribute to groonga"
 msgstr "How to contribute to groonga"
 
-# 05c285fc9c2f4e13b30d5cd4e876d0de
 msgid ""
 "We welcome your contributions to the groonga project. There are many ways to "
 "contribute, such as using groonga, introduction to others, etc. For example, "
@@ -35,80 +33,61 @@ msgstr ""
 "Coding and documentation are also welcome for groonga and its related "
 "projects."
 
-# 7f35526bb683452ea9e4fb3cd8149e17
 msgid "As a user:"
 msgstr ""
 
-# 6d182801f1e44dfd9041b516643550cd
 msgid "If you are interested in groonga, please read this document and try it."
 msgstr ""
 "If you are interested in groonga, please read this document and try it."
 
-# 444ed91249a94068b945c2a1a36a3228
 msgid "As a spokesman:"
 msgstr ""
 
-# 70327910e5d6460da01bc9353c25497e
 msgid "Please introduce groonga to your friends and colleagues."
 msgstr "Please introduce groonga to your friends and colleagues."
 
-# 8c9cadbb55a0434f913434d9aa471f68
 msgid "As a developer: Bug report, development and documentation"
 msgstr ""
 
-# ffd5f6258f9046ff8469062adc07c5d4
 msgid "This section describes the details."
 msgstr "This section describes the details."
 
-# f64c9ea82c1d4d18a19b789dbc6af50f
 msgid "groonga開発者向け情報"
 msgstr "groonga開発者向け情報"
 
-# 83496e5be24b492bb87d9a5a80f6b59d
 msgid "Groonga 通信アーキテクチャ"
 msgstr ""
 
-# 9af85985293b422895b04fa918ea0c41
 msgid "GQTPでのアーキテクチャ"
 msgstr ""
 
-# 9ea163f2925c4d278bbd15f9b484dca9
 msgid "comが外部からの接続を受け付ける。"
 msgstr "comが外部からの接続を受け付ける。"
 
-# 4544d74ea8ac420bbc9c99916e851f5d
 msgid "comは1スレッド。"
 msgstr "comは1スレッド。"
 
-# 5400fd10e4884a12994d224e9f6de440
 msgid "comがedgeを作る。"
 msgstr "comがedgeを作る。"
 
-# 6678e2fcd72b4c7f90835f009fd88a4f
 msgid "edgeは接続と1対1対応。"
 msgstr "edgeは接続と1対1対応。"
 
-# 7f78b29dbcd140238a0f9e334ab17051
 msgid "edgeはctxを含む。"
 msgstr "edgeはctxを含む。"
 
-# 6274f65bec114df8a6b1bbc6e0dd1792
 msgid "workerはthreadと1対1対応。"
 msgstr "workerはthreadと1対1対応。"
 
-# ed0c820f4f29474793832dd31d377a5d
 msgid "workerは上限が個定数。"
 msgstr "workerは上限が個定数。"
 
-# f440ed516721448abfe1c0f68a1c424c
 msgid "workerは、1つのedgeと結びつくことができる。"
 msgstr "workerは、1つのedgeと結びつくことができる。"
 
-# 9e63f32e4bb44bc49e97a28d5fe7e2d8
 msgid "edgeごとにqueueを持つ。"
 msgstr "edgeごとにqueueを持つ。"
 
-# 1d233295e2d9419d92c9052ac202dab8
 msgid ""
 "msgはcomによって、edgeのqueueにenqueueされる。 edgeがworkerに結びついていない"
 "ときは、同時に、ctx_newというqueueに、msgをenqueueした対象のedgeをenqueueす"
@@ -118,72 +97,55 @@ msgstr ""
 "ときは、同時に、ctx_newというqueueに、msgをenqueueした対象のedgeをenqueueす"
 "る。"
 
-# 3308f9d597804444a856937eeb3c206c
 msgid "ユーザーと協力して開発をうまく進めていくための指針"
 msgstr ""
 
-# 3b8038251cf0494ea534f6d1476ca052
 msgid ""
 "Groongaを使ってくれているユーザーと協力して 開発をうまく進めていくためにこう"
 "するといい、という事柄をまとめました。 まとめておくと、新しく開発に加わる人と"
 "も共有することができます。"
 msgstr ""
 
-# 7181b3d1f1ca407d876cb847ed7c9158
 msgid "twitter編"
 msgstr ""
 
-# 53db90eafc214de28a5a4f88b8236b34
 msgid ""
 "Groongaを使ってもらえるようにtwitterのアカウントGroongaを取得して 日々、リ"
 "リースの案内をしたり、ユーザーサポートをしたりしています。"
 msgstr ""
 
-# c71fe805d45a49d59256fbee76fc2b86
 msgid ""
 "リリースの案内に利用する場合には、やりとりを考えなくて良いですが、 複数人によ"
 "るサポートをGroongaで行う場合に、どうサポートするのが 良いのか/どうしてそうす"
 "るのかという共通認識を持っていないと一貫性のないサポートとなってしま います。"
 msgstr ""
 
-# c0e9eb9609f74ec5939bc6192f900249
 msgid ""
 "twitterでサポートされている安心感からGroongaユーザーの拡大に繋げる ことができ"
 "るようにサポートの際に気をつけることをまとめます。"
 msgstr ""
 
-# 71f2886b709e44619780ef74220c84ac
 msgid "過去のツイートはおさらいしておく"
 msgstr ""
 
-# be9d99575ade42fe93473f5830ca5995
-# 1b701c2226fb48c38004b55d422e8a18
-# e773665246b74dddbedf5cd6e6b1047b
 msgid "理由"
 msgstr ""
 
-# 57459c057dd848c99c6a8f80004c163d
 msgid ""
 "自分がツイートした内容を把握していない返信をされたら普通いい気はしません。"
 msgstr ""
 
-# 3a5c89887fa14d89bfbf50d9d1239f4d
-# 81fcbc8e4d7842cdb8804f01fd5a7d12
-# b90597191b3c4373b8ba1887a2526f4d
 msgid "対応"
 msgstr ""
 
-# 3a86239fcb474ed28a3920f68d65fd0e
 msgid ""
 "過去のツイートをおさらいし、こうすれば良いという提案をできるのが望ましいで"
 "す。::"
 msgstr ""
 
-# d6a7b5c09fbe4a428f8b0e42cee468cc
 msgid "こちらから情報を提供する"
 msgstr ""
 
-# 90966e73c2d247b1ae71e0563370173e
 msgid ""
 "困っているユーザーが複数回ツイートして限られたなかで情報を提供してくれている"
 "ことがあります。 その限られたツイートから解決方法が見つかればユーザーにとって"
@@ -191,61 +153,49 @@ msgid ""
 "ん確認する作業が必要になります。"
 msgstr ""
 
-# 5a873d2c5d3042a7bc54f708bb326c9a
 msgid ""
 "最初に声をかけるときに解決策を1つか2つ提案できると望ましいです。ユーザーにあ"
 "まり負担を感じさせないようにすると良いです。::"
 msgstr ""
 
-# 6af7e1a3fb9f4e2298088a797e3b5818
 msgid "twitterでのやりとりはできるだけ他の場所(例えばredmine)へと誘導しない"
 msgstr ""
 
-# 3ba1c4133bb141d09b0f6cff9b18e0f4
 msgid ""
 "twitterは気軽につぶやけることが重要なので、気軽にできないことを相手に要求する"
 "と萎縮されてしまう可能性があります。"
 msgstr ""
 
-# b6fab4f664344e41b36bf1aa1b41160f
 msgid ""
 "いきなりredmineでバグ報告をお願いすると、しりごみしてしまうかも知れません。::"
 msgstr ""
 
-# 2678ce0ff696455abe14bc4428053b95
 msgid ""
 "Groonga関連で気軽につぶやけないとなると開発者は困っている人を見つけられない"
 "し、利用者は困ったままとなるので、双方にとって嬉しくない状態になっ てしまいま"
 "す。"
 msgstr ""
 
-# a6ee5a2f95904557b465185677d1777f
 msgid "twitterでやりとりを完結できるようにします。"
 msgstr ""
 
-# 0dc485211d4945378b4de38d453d7661
 msgid "ドキュメント作成"
 msgstr "ドキュメント作成"
 
-# 6b9609d859a042a28a3b1a9936401815
 msgid "Sphinxのインストール"
 msgstr "Sphinxのインストール"
 
-# 9050e822e6914578aa9110f06509c513
 msgid ""
 "Groongaのドキュメントは、Sphinxというツールを用いて作成されています。Sphinxは"
 "以下のように導入します。::"
 msgstr ""
 
-# fd45424c87d44c16a27957782e136e75
 msgid "htmlの作成"
 msgstr "htmlの作成"
 
-# 8616d19da2dc4e1b917da84c4a4c90b7
 msgid "以下のコマンドでhtmlが作成されます。::"
 msgstr "以下のコマンドでhtmlが作成されます。::"
 
-# 8d4e2300b2fc488fbd3297674f1e7dbf
 msgid ""
 "This document is also ditributed in forms of release source archive and "
 "updated time to time. If you want to refer latest documentation in source "
@@ -253,52 +203,41 @@ msgid ""
 "com/groonga/groonga/tree/master/doc/source)."
 msgstr ""
 
-# e1e9872bf31d4c428864aaa3a2869a4c
-# 62dcfa5796a642dda7bade7db0ae3170
 msgid "pdfの作成"
 msgstr "pdfの作成"
 
-# f935bdc93ed040f2bdaaa10f7baa5b3b
 msgid ""
 "Groongaのドキュメントは、pdf出力することもできます。rst2pdfと、IPAフォント"
 "(IPA Gothic/IPAexGothic)が必要となります。"
 msgstr ""
 
-# efde2d7e5d5541e59884a0b6fcfecbdc
 msgid "rst2pdfのインストール"
 msgstr "rst2pdfのインストール"
 
-# f0bf4a8ebf58472193bc825cee8c4974
 msgid "以下のようにしてインストールできます。::"
 msgstr "以下のようにしてインストールできます。::"
 
-# d894374c5817453f878e48f04ee93c5b
 msgid "以下のコマンドでpdfが作成されます。::"
 msgstr "以下のコマンドでpdfが作成されます。::"
 
-# 242237af0d58495680ca97e8404842c9
 msgid "クエリの実現"
 msgstr "クエリの実現"
 
-# cc257e8385714d34a921d5fb4989efa9
 msgid ""
 "Groongaのデータベースには大量のデータを格納し、その中から必要な部分を高速に取"
 "り出すことができます。必要な部分をGroongaのデータベースに問い合わせるためのク"
 "エリの表現と実行に関して、Groongaは複数の手段を用意しています。"
 msgstr ""
 
-# 486436ec58534fe8912569eb50f2ef28
 msgid "クエリ実行のためのインタフェース"
 msgstr "クエリ実行のためのインタフェース"
 
-# eea2f22c4eb34d7490e0f410c0f23650
 msgid ""
 "Groongaは低機能で単純なライブラリインタフェースから、高機能で複雑なコマンドイ"
 "ンタフェースまでいくつかの階層的なインタフェースをユーザプログラムに提供して"
 "います。"
 msgstr ""
 
-# 04258f61c4cc491f827254e2ca9eca95
 msgid ""
 "クエリ実行のためのインタフェースも階層的なインタフェースのそれぞれに対応する"
 "形で用意されています。以下に低レイヤなインタフェースから順に説明します。"
@@ -306,11 +245,9 @@ msgstr ""
 "クエリ実行のためのインタフェースも階層的なインタフェースのそれぞれに対応する"
 "形で用意されています。以下に低レイヤなインタフェースから順に説明します。"
 
-# ad47940eee3a4a4ba63d2e9297a26595
 msgid "DB_API"
 msgstr "DB_API"
 
-# 9ed360784e0447b69bf9a14257119d63
 msgid ""
 "DB_APIは、Groongaデータベースを操作するための一群のC言語向けAPI関数を提供しま"
 "す。DB_APIはデータベースを構成する個々の部分に対する単純な操作関数を提供しま"
@@ -319,11 +256,9 @@ msgid ""
 "て実現されています。"
 msgstr ""
 
-# ebde5661b3314128a3152c5aed5a3a31
 msgid "grn_expr"
 msgstr "grn_expr"
 
-# f272cd7c4b444f7d86ecac8f376dcc8a
 msgid ""
 "grn_exprは、Groongaデータベースに対する検索処理や更新処理のための条件を表現す"
 "るためのデータ構造で、複数の条件を再帰的に組み合わせてより複雑な条件を表現す"
@@ -331,11 +266,9 @@ msgid ""
 "grn_table_select()関数を使用します。"
 msgstr ""
 
-# 295cbdb0889344c294289213d6aab013
 msgid "Groonga実行ファイル"
 msgstr ""
 
-# 744344176846463784eb3c42e0fcef88
 msgid ""
 "Groongaデータベースを操作するためのコマンドインタープリタです。渡されたコマン"
 "ドを解釈し、実行結果を返します。コマンドの実処理はC言語で記述されます。ユーザ"
@@ -346,11 +279,9 @@ msgid ""
 "す。"
 msgstr ""
 
-# 720bb64cbe1a48a0b0344c70e16945a3
 msgid "grn_exprで表現できるクエリ"
 msgstr "grn_exprで表現できるクエリ"
 
-# c66c2d74b95e467193d5f7fef006c2b6
 msgid ""
 "grn_exprは代入や関数呼び出しのような様々な操作を表現できますが、この中で検索"
 "クエリを表現するgrn_exprのことを特に条件式とよびます。条件式を構成する個々の"
@@ -362,11 +293,9 @@ msgstr ""
 "要素を関係式と呼びます。条件式は一個以上の関係式か、あるいは条件式を論理演算"
 "子で結合したものです。"
 
-# bbf1eed3bb894ce7acbe3d8f4c0eb925
 msgid "論理演算子は、以下の3種類があります。 ::"
 msgstr "論理演算子は、以下の3種類があります。 ::"
 
-# dcda2f6355eb4acab76872e019e2bda3
 msgid ""
 "関係式は、下記の11種類が用意されています。また、ユーザが定義した関数を新たな"
 "関係式として使うこともできます。 ::"
@@ -374,11 +303,9 @@ msgstr ""
 "関係式は、下記の11種類が用意されています。また、ユーザが定義した関数を新たな"
 "関係式として使うこともできます。 ::"
 
-# 1bc9de7d89864218bb9288ccd6618ac7
 msgid "grn_table_select()"
 msgstr "grn_table_select()"
 
-# 0e7ff26d873e4a7db7cf79a05de885d3
 msgid ""
 "grn_table_select()関数は、grn_exprで表現された検索クエリを実行するときに使い"
 "ます。引数として、検索対象となるテーブル、クエリを表すgrn_expr、検索結果を格"
@@ -390,7 +317,6 @@ msgstr ""
 "納するテーブル、それに検索にマッチしたレコードを検索結果にどのように反映する"
 "かを指定する演算子を渡します。演算子と指定できるのは下記の4種類です。 ::"
 
-# 4dd950ba488e4dd4a901aad1d81fc482
 msgid ""
 "GRN_OP_ORは、検索対象テーブルの中からクエリにマッチするレコードを検索結果テー"
 "ブルに加えます。GRN_OP_OR以外の演算子は、検索結果テーブルが空でない場合にだけ"
@@ -406,7 +332,6 @@ msgstr ""
 "るレコードを取り除きます。GRN_OP_ADJUSTは、検索結果テーブルの中でクエリにマッ"
 "チするレコードに対してスコア値の更新のみを行います。"
 
-# 9f9985a1fa694160adf944b43db818b6
 msgid ""
 "grn_table_select()は、データベース上に定義されたテーブルや索引などを組み合わ"
 "せて可能な限り高速に指定されたクエリを実行しようとします。"
@@ -414,11 +339,9 @@ msgstr ""
 "grn_table_select()は、データベース上に定義されたテーブルや索引などを組み合わ"
 "せて可能な限り高速に指定されたクエリを実行しようとします。"
 
-# 9614e2245b194f19ad35df621eb3fa8e
 msgid "関係式"
 msgstr "関係式"
 
-# 1f5a3c7f825542f595b35d32d5fac45d
 msgid ""
 "関係式は、検索しようとしているデータが満たすべき条件を、指定した値の間の関係"
 "として表現します。いずれの関係式も、その関係が成り立ったときに評価される"
@@ -432,59 +355,45 @@ msgstr ""
 "callbackが与えられず、argのみが数値で与えられた場合はスコア値の係数とみなされ"
 "ます。主な関係式について説明します。"
 
-# 3c48d82b7bd441788cf54ea1661e0c56
 msgid "equal(v1, v2, arg, callback)"
 msgstr "equal(v1, v2, arg, callback)"
 
-# 57ee49782b14478d8b0714b8d479ea9b
 msgid "v1の値とv2の値が等しいことを表します。"
 msgstr "v1の値とv2の値が等しいことを表します。"
 
-# 7bf60aa9c43f42c7bd80bbd579f076d2
 msgid "not_equal(v1, v2, arg, callback)"
 msgstr "not_equal(v1, v2, arg, callback)"
 
-# e2250b81d9164916abd305812120fcbd
 msgid "v1の値とv2の値が等しくないことを表します。"
 msgstr "v1の値とv2の値が等しくないことを表します。"
 
-# b7cf479afb304ff2b17ea0730b33c11f
 msgid "less(v1, v2, arg, callback)"
 msgstr "less(v1, v2, arg, callback)"
 
-# 71bb2ec813cf49c5bf404286dc7d5044
 msgid "v1の値がv2の値よりも小さいことを表します。"
 msgstr "v1の値がv2の値よりも小さいことを表します。"
 
-# 7f33dd6db951494f9c8225f1db481ed4
 msgid "greater(v1, v2, arg, callback)"
 msgstr "greater(v1, v2, arg, callback)"
 
-# 657e1080079148a88464bb4e45297137
 msgid "v1の値がv2の値よりも大きいことを表します。"
 msgstr "v1の値がv2の値よりも大きいことを表します。"
 
-# 6f958ef03dc541d3a32eca4253ce4f39
 msgid "less_equal(v1, v2, arg, callback)"
 msgstr "less_equal(v1, v2, arg, callback)"
 
-# 138543814ca246df98500376a73dce47
 msgid "v1の値がv2の値と等しいか小さいことを表します。"
 msgstr "v1の値がv2の値と等しいか小さいことを表します。"
 
-# 76973745c8614adb84edee4903b8cedb
 msgid "greater_equal(v1, v2, arg, callback)"
 msgstr "greater_equal(v1, v2, arg, callback)"
 
-# 8b86eb2297774727a5efcbb0bc46b8c1
 msgid "v1の値がv2の値と等しいか大きいことを表します。"
 msgstr "v1の値がv2の値と等しいか大きいことを表します。"
 
-# c0ea7574f24746ae80ee7f2dbd123dc2
 msgid "contain(v1, v2, mode, arg, callback)"
 msgstr "contain(v1, v2, mode, arg, callback)"
 
-# f81615afb6484829b7320600a0a2f59c
 msgid ""
 "v1の値がv2の値を含んでいることを表します。また、v1の値が要素に分解されると"
 "き、それぞれの要素に対して二つ目の要素が一致するためのmodeとして下記のいずれ"
@@ -494,11 +403,9 @@ msgstr ""
 "き、それぞれの要素に対して二つ目の要素が一致するためのmodeとして下記のいずれ"
 "かを指定することができます。"
 
-# 055e5ef7b5e4489784db47b4e6a5b5db
 msgid "near(v1, v2, arg, callback)"
 msgstr "near(v1, v2, arg, callback)"
 
-# 02311089ad7348cebf702f815ffe2ac1
 msgid ""
 "v1の値の中に、v2の値の要素が接近して含まれていることを表します。(v2には値の配"
 "列を渡します)"
@@ -506,43 +413,33 @@ msgstr ""
 "v1の値の中に、v2の値の要素が接近して含まれていることを表します。(v2には値の配"
 "列を渡します)"
 
-# 26eadc4d8a3048eb9f581c28bbf69a6d
 msgid "similar(v1, v2, arg, callback)"
 msgstr "similar(v1, v2, arg, callback)"
 
-# acd10aeb2414498c9f3028bdeae9bb08
 msgid "v1の値とv2の値が類似していることを表します。"
 msgstr "v1の値とv2の値が類似していることを表します。"
 
-# 1b5b4112cbf2436aafdeb00027692f5b
 msgid "prefix(v1, v2, arg, callback)"
 msgstr "prefix(v1, v2, arg, callback)"
 
-# ddda8d17d3db4a93bca0ee19d822e948
 msgid "v1の値がv2の値に対して前方一致することを表します。"
 msgstr "v1の値がv2の値に対して前方一致することを表します。"
 
-# f6cd75a664704f8e97481589e95b08e3
 msgid "suffix(v1, v2, arg, callback)"
 msgstr "suffix(v1, v2, arg, callback)"
 
-# f138754c3e214aa8a0747a18084c4194
 msgid "v1の値がv2の値に対して後方一致することを表します。"
 msgstr "v1の値がv2の値に対して後方一致することを表します。"
 
-# b89f859b797c4ca9a7c0a42742b293cb
 msgid "クエリの実例"
 msgstr "クエリの実例"
 
-# 6e601e5986004b1f83b65fca6dda54d0
 msgid "grn_exprを使って様々な検索クエリを表現することができます。"
 msgstr "grn_exprを使って様々な検索クエリを表現することができます。"
 
-# e3807248dc974826a47e38754bca3c10
 msgid "検索例1"
 msgstr "検索例1"
 
-# 7374d07592e940cd957991cd3a222874
 msgid ""
 "tableのcolumnの値がstringを含むレコードをresultに返します。columnの値"
 "が'needle in haystack'であるレコードr1と、columnの値が'haystack'であるレコー"
@@ -554,11 +451,9 @@ msgstr ""
 "ドr2がtableに登録されていたとき、stringに'needle'を指定したなら、レコードr1の"
 "みがヒットします。"
 
-# 32add94803c04886ad60ea3bcbd12800
 msgid "検索例2"
 msgstr "検索例2"
 
-# a16489c7079f48c387761274afe5472a
 msgid ""
 "tableのcolumn1の値がstringにexactモードでヒットするレコードについて得られるス"
 "コア値にscore1を積算してresultにセットします。次に、resultにセットされたレ"
@@ -570,11 +465,9 @@ msgstr ""
 "コードのうち、column2の値がstringにexactモードでヒットするレコードについて"
 "は、得られたスコア値にscore2を積算したものを、元のスコア値に加えます。"
 
-# a4e358231b1c40149440507aeaae78e7
 msgid "検索例3"
 msgstr "検索例3"
 
-# 16443fc46bed4156b3f6c8e805211f16
 msgid ""
 "tableのcolumn1の値がstringにexactモードでヒットするレコードについて得られるス"
 "コア値にscore1を積算してresultにセットします。得られた検索結果数がt1よりも小"
@@ -586,11 +479,9 @@ msgstr ""
 "さい場合は、partialモードで再度検索し、ヒットしたレコードについて得られるスコ"
 "ア値にscore2を積算してresultに追加します。"
 
-# 120580e12d134b8bb464a6396faffb16
 msgid "検索例4"
 msgstr "検索例4"
 
-# 41164d0bee354240915e68cbb7fd32d6
 msgid ""
 "tableのcolumnの値がstringに含まれるレコードをresultに返します。 columnの値"
 "が'needle'であるレコードr1と、columnの値が'haystack'であるレコードr2がtableに"
@@ -602,83 +493,64 @@ msgstr ""
 "登録されていたとき、stringに'hay in haystack'を指定したなら、レコードr2のみが"
 "ヒットします。"
 
-# cc3f281219d741e482d118f0c4277b24
 msgid "リリース手順"
 msgstr "リリース手順"
 
-# 4ad1f9b451964542af332559d40d186a
 msgid "前提条件"
 msgstr ""
 
-# 7795165785ac4fc7a7de5a31da2c484e
-# b25a9264a8864d59aabce088719387a2
 msgid "リリース手順の前提条件は以下の通りです。"
 msgstr ""
 
-# a38ce836b1bd4ce8b542ce239d745bc3
 msgid "ビルド環境は Ubuntu 12.04 LTS(Precise Pangolin)"
 msgstr ""
 
-# 436293cd19604721b2f7edde7b10039e
 msgid "コマンドラインの実行例はzsh"
 msgstr ""
 
-# d211a324b87a4777a07d7eb8aff148fb
 msgid "作業ディレクトリ例は以下を使用します。"
 msgstr ""
 
-# 2d66cf2f6a6c4d47b2185fd3467c9612
 msgid "GROONGA_DIR=$HOME/work/groonga"
 msgstr ""
 
-# d9a97e1f5d33479b932d1877a26ad124
 msgid "GROONGA_CLONE_DIR=$HOME/work/groonga/groonga.clean"
 msgstr ""
 
-# 95fd6b4853914fcab7055d2c47fb9679
 msgid "GROONGA_GITHUB_COM_PATH=$HOME/work/groonga/groonga.github.com"
 msgstr ""
 
-# 5a81f38dda09496ab5b7f3a0338747eb
 msgid "CUTTER_DIR=$HOME/work/cutter"
 msgstr ""
 
-# 1f5b5a4f2c76499eae23c9a60c8f12c6
 msgid "CUTTER_SOURCE_PATH=$HOME/work/cutter/cutter"
 msgstr ""
 
-# a13d68aca81a4dcea8f539015af3a9f0
 msgid "ビルド環境の準備"
 msgstr "ビルド環境の準備"
 
-# ea33a32a0a2744949aa4df5ec1f05455
 msgid ""
 "以下にGroongaのリリース作業を行うために事前にインストール しておくべきパッ"
 "ケージを示します。"
 msgstr ""
 
-# e7f26393835749c9b7f396f2aa986276
 msgid ""
 "なお、ビルド環境としては Ubuntu 12.04 LTS(Precise Pangolin)を前提として説明し"
 "ているため、その他の環境では適宜読み替えて下さい。::"
 msgstr ""
 
-# 0edb2de25f1d4cabb4d676633e2c2b76
 msgid ""
 "rinseのバージョンが古いとCentOS 5/6パッケージのビルドを行うことができませ"
 "ん。 別途debパッケージを以下のコマンドを実行して最新版をインストールしま"
 "す。::"
 msgstr ""
 
-# f53d8a09d9c9425fb5213421913a73ef
 msgid "また、rubyのrakeパッケージを以下のコマンドによりインストールします。::"
 msgstr "また、rubyのrakeパッケージを以下のコマンドによりインストールします。::"
 
-# 1e810446ae8a475ea1d047d8bc2a4681
 msgid "パッケージ署名用秘密鍵のインポート"
 msgstr "パッケージ署名用秘密鍵のインポート"
 
-# 7d0e9e23727e4d1dacef9e3e5d59bcfa
 msgid ""
 "リリース作業ではRPMパッケージに対する署名を行います。 その際、パッケージ署名"
 "用の鍵が必要です。"
@@ -686,314 +558,251 @@ msgstr ""
 "リリース作業ではRPMパッケージに対する署名を行います。 その際、パッケージ署名"
 "用の鍵が必要です。"
 
-# 4efc1e694f564a25aacf26324ae00667
 msgid ""
 "Groongaプロジェクトでは署名用の鍵をリリース担当者の公開鍵で暗号化してリポジト"
 "リのpackages/ディレクトリ以下へと登録しています。"
 msgstr ""
 
-# b3bde0b34aaa4042b8e0589d5c70a5a6
 msgid ""
 "リリース担当者はリポジトリに登録された秘密鍵を復号した後に鍵のインポートを以"
 "下のコマンドにて行います。::"
 msgstr ""
 
-# 6336e3a04a3a4a36a63ae8720d002cc4
 msgid ""
 "鍵のインポートが正常終了すると gpg --list-keys でGroongaの署名用の鍵を確認す"
 "ることができます。::"
 msgstr ""
 
-# 3894070c7f8a42b9b3b26b188f4a8cd2
 msgid ""
 "鍵をインポートしただけでは使用することができないため、インポートした鍵に対し"
 "てtrust,signを行う必要があります。"
 msgstr ""
 
-# db75f4b9662f4bc0977f5c384486fc6f
 msgid "以下のコマンドを実行して署名を行います。(途中の選択肢は省略)::"
 msgstr "以下のコマンドを実行して署名を行います。(途中の選択肢は省略)::"
 
-# baa04dab4ca2405fad6c694984a95d64
 msgid ""
 "この作業は、新規にリリースを行うことになった担当者やパッケージに署名する鍵に"
 "変更があった場合などに行います。"
 msgstr ""
 
-# 64e73095244148cebcf36fd1d39bd04f
 msgid "リリース作業用ディレクトリの作成"
 msgstr "リリース作業用ディレクトリの作成"
 
-# c5ec824044a5437191c64ddc75cbabd9
 msgid ""
 "Groongaのリリース作業ではリリース専用の環境下(コンパイルフラグ)でビルドする必"
 "要があります。"
 msgstr ""
 
-# 8edc156e2c7445d48ad4d21144e27ba5
 msgid ""
 "リリース時と開発時でディレクトリを分けずに作業することもできますが、誤ったコ"
 "ンパイルフラグでリリースしてしまう危険があります。"
 msgstr ""
 
-# 5c99fbf172014e479f988587fd7877c1
 msgid ""
 "そのため、以降の説明では$GROONGA_DIR以下のディレクトリにリリース用の作業ディ"
 "レクトリ(groonga.clean)としてソースコードをcloneしたものとして説明します。"
 msgstr ""
 
-# 5417299acd884254bed56b8e67eb725c
 msgid ""
 "リリース用のクリーンな状態でソースコードを取得するために$GROONGA_DIRにて以下"
 "のコマンドを実行します。::"
 msgstr ""
 
-# 31495e18059544c19cd75670745f756e
 msgid "この作業はリリース作業ごとに行います。"
 msgstr ""
 
-# aa91d8fdc8194c0484f682f175787163
 msgid "変更点のまとめ"
 msgstr "変更点のまとめ"
 
-# cca5b504d07240efb9466eef853f53dd
 msgid ""
 "前回リリース時からの変更点を$GROONGA_CLONE_DIR/doc/source/news.txtにまとめま"
 "す。 ここでまとめた内容についてはリリースアナウンスにも使用します。"
 msgstr ""
 
-# 61bfca942bb74bfcb06b92de6a25a17c
 msgid "前回リリースからの変更履歴を参照するには以下のコマンドを実行します。::"
 msgstr "前回リリースからの変更履歴を参照するには以下のコマンドを実行します。::"
 
-# d1bf17b58cae4060b623a79865f54d27
 msgid ""
 "ログを^commitで検索しながら、以下の基準を目安として変更点を追記していきます。"
 msgstr ""
 
-# 74d9691af46041a485873cee10d5c1f7
 msgid "含めるもの"
 msgstr "含めるもの"
 
-# 7fe4043e3c9342b69281ae9d17368703
 msgid "ユーザへ影響するような変更"
 msgstr "ユーザへ影響するような変更"
 
-# d79a94a29c60439ea66729cff6567b60
 msgid "互換性がなくなるような変更"
 msgstr "互換性がなくなるような変更"
 
-# 84bdaab79c0948d28b8392917e5a1168
 msgid "含めないもの"
 msgstr "含めないもの"
 
-# 053eb5f0847f486f93efb86e46d99c41
 msgid "内部的な変更(変数名の変更やらリファクタリング)"
 msgstr "内部的な変更(変数名の変更やらリファクタリング)"
 
-# 4342167d8f8147c3b7482f05da10245e
 msgid "Groongaのウェブサイトの取得"
 msgstr ""
 
-# 295d3383846f47b18f3852799da8d527
 msgid ""
 "GroongaのウェブサイトのソースはGroonga同様にgithubにリポジトリを置いていま"
 "す。"
 msgstr ""
 
-# b00c903bcbcd4b0484ed67a6b889693e
 msgid ""
 "リリース作業では後述するコマンド(make update-latest-release)にてトップページ"
 "のバージョンを置き換えることができるようになっています。"
 msgstr ""
 
-# d27d1d6e5f984eb5a34e62f805c78003
 msgid ""
 "Groongaのウェブサイトのソースコードを$GROONGA_GITHUB_COM_PATHとして取得するた"
 "めには、$GROONGA_DIRにて以下のコマンドを実行します。::"
 msgstr ""
 
-# f315d0b8c41344c7a1ce1a64a583185a
 msgid ""
 "これで、$GROONGA_GITHUB_COM_PATHにgroonga.github.comのソースを取得できます。"
 msgstr ""
 
-# 92872acccf8f407fa21dbe129e68668a
 msgid "cutterのソースコード取得"
 msgstr ""
 
-# 41947c5e86024f70974672a7cfb8436a
 msgid "Groongaのリリース作業では、cutterに含まれるスクリプトを使用しています。"
 msgstr ""
 
-# 70ce72b50fae4f9c8970dc6989478ca0
 msgid ""
 "そこであらかじめ用意しておいた$HOME/work/cutterディレクトリにてcutterのソース"
 "コードを以下のコマンドにて取得します。::"
 msgstr ""
 
-# 69a448456c11493ab6d49d75a08021f2
 msgid "これで、$CUTTER_SOURCE_PATHディレクトリにcutterのソースを取得できます。"
 msgstr ""
 
-# 5e90d2a4fa59473ab2359a76e3c78799
 msgid "configureスクリプトの生成"
 msgstr "configureスクリプトの生成"
 
-# ea66170f5a2f4553b5022699beb622f8
 msgid ""
 "Groongaのソースコードをcloneした時点ではconfigureスクリプトが含まれておらず、"
 "そのままmakeコマンドにてビルドすることができません。"
 msgstr ""
 
-# deff708c75464d6c83c4afc09c150f1e
 msgid "$GROONGA_CLONE_DIRにてautogen.shを以下のように実行します。::"
 msgstr ""
 
-# 13e19221770a462a9e81b901f869d205
 msgid "このコマンドの実行により、configureスクリプトが生成されます。"
 msgstr "このコマンドの実行により、configureスクリプトが生成されます。"
 
-# aa1e3a006f8f43068476241d87c8dc79
 msgid "configureスクリプトの実行"
 msgstr "configureスクリプトの実行"
 
-# f4b42f72b13e49a3aad1e8fdabe68a4c
 msgid "Makefileを生成するためにconfigureスクリプトを実行します。"
 msgstr "Makefileを生成するためにconfigureスクリプトを実行します。"
 
-# ae986b6ddbc146f08287aec36df21811
 msgid ""
 "リリース用にビルドするためには以下のオプションを指定してconfigureを実行しま"
 "す。::"
 msgstr ""
 
-# 2e4cfc0dd9d84a75a33f7a117749aa2d
 msgid ""
 "configureオプションである--with-groonga-github-com-pathにはGroongaのウェブサ"
 "イトのリポジトリをcloneした場所を指定します。"
 msgstr ""
 
-# 42728221a73443d8b122c506d5727dde
 msgid ""
 "configureオプションである--with-cutter-source-pathにはcutterのソースをcloneし"
 "た場所を指定します。"
 msgstr ""
 
-# 1686b9c4ad74424ba785c8beff11cf07
 msgid ""
 "以下のようにGroongaのソースコードをcloneした先からの相対パスを指定することも"
 "できます。::"
 msgstr ""
 
-# 15f46356a0f14e59ab4c05e9c59ab0d4
 msgid ""
 "あらかじめpackagesユーザでpackages.groonga.orgにsshログインできることを確認し"
 "ておいてください。"
 msgstr ""
 
-# 53ef2567e911475492f6ef32884e7f86
 msgid "ログイン可能であるかの確認は以下のようにコマンドを実行して行います。::"
 msgstr "ログイン可能であるかの確認は以下のようにコマンドを実行して行います。::"
 
-# cb68c44c28ef4bb19334e1359b376925
 msgid "make update-latest-releaseの実行"
 msgstr "make update-latest-releaseの実行"
 
-# 2d3b1a50f2054622baa321021faa7317
 msgid ""
 "make update-latest-releaseコマンドでは、OLD_RELEASE_DATEに前回のリリースの日"
 "付を、NEW_RELEASE_DATEに次回リリースの日付を指定します。"
 msgstr ""
 
-# 4dce61be2ef24ffe8ed123ed8a2c2902
 msgid "2.0.2のリリースを行った際は以下のコマンドを実行しました。:: ::"
 msgstr "2.0.2のリリースを行った際は以下のコマンドを実行しました。:: ::"
 
-# e700569b930c4de5bf48696ec7498ab8
 msgid ""
 "これにより、clone済みのGroongaのWebサイトのトップページのソース(index.html,"
 "ja/index.html)やRPMパッケージのspecファイルのバージョン表記などが更新されま"
 "す。"
 msgstr ""
 
-# 7129eb5186fa4349adf15298b9b6c4fc
 msgid "make update-filesの実行"
 msgstr "make update-filesの実行"
 
-# 62a32e5dc375465f9a5926f2c8230135
 msgid ""
 "ロケールメッセージの更新や変更されたファイルのリスト等を更新するために以下の"
 "コマンドを実行します。::"
 msgstr ""
 
-# 8fce60d5efd14ea9a5ecfc311816f2d0
 msgid ""
 "make update-filesを実行すると新規に追加されたファイルなどが各種.amファイルへ"
 "とリストアップされます。"
 msgstr ""
 
-# b75aeda1e953472b87b10928abeef513
 msgid "リリースに必要なファイルですので漏れなくコミットします。"
 msgstr "リリースに必要なファイルですので漏れなくコミットします。"
 
-# 8de228e7d5554af094482c46391c7177
 msgid "make update-poの実行"
 msgstr "make update-poの実行"
 
-# c795c6681afa4298ac3324f6296ff371
 msgid ""
 "ドキュメントの最新版と各国語版の内容を同期するために、poファイルの更新を以下"
 "のコマンドにて実行します。::"
 msgstr ""
 
-# 7cfaead98b3a4bf4b59b442375c08b6b
 msgid ""
 "make update-poを実行すると、doc/locale/ja/LC_MESSAGES以下の各種.poファイルが"
 "更新されます。"
 msgstr ""
 
-# f3435a87241f4413ad193d25fcadc21b
 msgid "poファイルの翻訳"
 msgstr "poファイルの翻訳"
 
-# 51e40bb1ca0249b4899fc408521daf08
 msgid "make update-poコマンドの実行により更新した各種.poファイルを翻訳します。"
 msgstr ""
 "make update-poコマンドの実行により更新した各種.poファイルを翻訳します。"
 
-# 714a193d8f8c4f0db01d6fb8dda69d73
 msgid "翻訳結果をHTMLで確認するために、以下のコマンドを実行します。::"
 msgstr "翻訳結果をHTMLで確認するために、以下のコマンドを実行します。::"
 
-# b16c81740f374f8f89daa4a84c23140b
 msgid "確認が完了したら、翻訳済みpoファイルをコミットします。"
 msgstr "確認が完了したら、翻訳済みpoファイルをコミットします。"
 
-# f753108e35404faca0119bd6dc5457dc
 msgid "リリースタグの設定"
 msgstr ""
 
-# f6abd668ad0040e7bc7c5e2f00b7def4
 msgid "リリース用のタグを打つには以下のコマンドを実行します。::"
 msgstr ""
 
-# fc6fd8594b1c4168aa00ffda6475b8db
 msgid "リリース用アーカイブファイルの作成"
 msgstr "リリース用アーカイブファイルの作成"
 
-# 3bc690cd4411430797bffce00a8f2fb6
 msgid ""
 "リリース用のソースアーカイブファイルを作成するために以下のコマンドを"
 "$GROONGA_CLONE_DIRにて実行します。::"
 msgstr ""
 
-# dc11b8e582224a46b01059d241e2d2be
 msgid ""
 "これにより$GROONGA_CLONE_DIR/groonga-(バージョン).tar.gzが作成されます。"
 msgstr ""
 
-# f0204572d9fb4582ac8c59d90f272203
 msgid ""
 "タグを打つ前にmake distを行うとversionが古いままになることがあります。 すると"
 "groonga --versionで表示されるバージョン表記が更新されないので注意が必要で"
@@ -1001,82 +810,66 @@ msgid ""
 "確認するのが望ましいです。"
 msgstr ""
 
-# c616a2de986841b8a6255575b4d4d6d1
 msgid "パッケージのビルド"
 msgstr "パッケージのビルド"
 
-# 27733f1464df4b61ad28aef121bdba4a
 msgid ""
 "リリース用のアーカイブファイルができたので、パッケージ化する作業を行います。"
 msgstr ""
 
-# 3054ca4a3f4843e6b054c4fee17d37d6
 msgid "パッケージ化作業は以下の3種類を対象に行います。"
 msgstr "パッケージ化作業は以下の3種類を対象に行います。"
 
-# cfa9ad0607b649eebbdcc228147df3e2
 msgid "Debian系(.deb)"
 msgstr "Debian系(.deb)"
 
-# 8e6c003a3376436e8115bfbbbe30fcb8
 msgid "Red Hat系(.rpm)"
 msgstr "Red Hat系(.rpm)"
 
-# 232a4a72bb2846888addcac42a71d2a6
 msgid "Windows系(.exe,.zip)"
 msgstr "Windows系(.exe,.zip)"
 
-# 98613a55ad184deea0efbf9dbda7196d
 msgid "パッケージのビルドではいくつかのサブタスクから構成されています。"
 msgstr "パッケージのビルドではいくつかのサブタスクから構成されています。"
 
-# 201e7ba912bd4186b04ca9351d4337be
 msgid "ビルド用パッケージのダウンロード"
 msgstr "ビルド用パッケージのダウンロード"
 
-# 9409a24759cf46aebe4fc227526f931a
 msgid ""
 "debパッケージのビルドに必要なパッケージをダウンロードするには以下のコマンドを"
 "実行します。::"
 msgstr ""
 
-# 8c5de91d049a4954b61c48c05d516158
 msgid ""
 "これにより、lucid以降の関連する.debパッケージやソースアーカイブなどがカレント"
 "ディレクトリ以下へとダウンロードされます。"
 msgstr ""
 
-# 83e63865eea0420f9b8c4f086ab0748c
 msgid ""
 "rpmパッケージのビルドに必要なパッケージをダウンロードするには以下のコマンドを"
 "実行します。::"
 msgstr ""
 
-# 15c9774b419f4066aae1691f5585ca43
 msgid ""
 "これにより、GroongaやMySQLのRPM/SRPMパッケージなどがカレントディレクトリ以下"
 "へとダウンロードされます。"
 msgstr ""
 
-# 815f081d45e4443693b4523b5e5459aa
 msgid ""
 "windowsパッケージのビルドに必要なパッケージをダウンロードするには以下のコマン"
 "ドを実行します。::"
 msgstr ""
 
-# 15c9774b419f4066aae1691f5585ca43
 msgid ""
 "これにより、Groongaのインストーラやzipアーカイブがカレントディレクトリ以下へ"
 "とダウンロードされます。"
 msgstr ""
 
-# bf26c2c4e9a3456c8ee6ffde646cd3fb
 msgid ""
 "sourceパッケージに必要なものをダウンロードするには以下のコマンドを実行しま"
 "す。::"
 msgstr ""
 
-# 15c9774b419f4066aae1691f5585ca43
 msgid ""
 "これにより過去にリリースしたソースアーカイブ(.tar.gz)が packages/source/files"
 "ディレクトリ以下へとダウンロードされます。"
@@ -1084,79 +877,60 @@ msgstr ""
 "これにより過去にリリースしたソースアーカイブ(.tar.gz)が packages/source/files"
 "ディレクトリ以下へとダウンロードされます。"
 
-# de9a0d8decd64202a0965db6cdd5f265
 msgid "Debian系パッケージのビルド"
 msgstr "Debian系パッケージのビルド"
 
-# 0e7463a32bc84154ae6dba67b8ac6528
 msgid ""
 "Groongaのpackages/aptサブディレクトリに移動して、以下のコマンドを実行しま"
 "す。::"
 msgstr ""
 
-# ab1a5de7d54e4a81997ea226542209ee
-# 4af10504f00a4cd39be585e44ed38809
 msgid ""
 "make build PALALLEL=yesコマンドを実行すると、ディストリビューションのリリース"
 "とアーキテクチャの組み合わせでビルドを平行して行うことができます。"
 msgstr ""
 
-# 7795165785ac4fc7a7de5a31da2c484e
-# b25a9264a8864d59aabce088719387a2
 msgid "現在サポートされているのは以下の通りです。"
 msgstr "現在サポートされているのは以下の通りです。"
 
-# 49f7aa8b16704e10b36382aa1fd5a401
 msgid "squeeze i386/amd64"
 msgstr "squeeze i386/amd64"
 
-# d05723ff45924710bf001be0b67d1fac
 msgid "wheezy i386/amd64"
 msgstr "wheezy i386/amd64"
 
-# caacfbab4b16434bbb82fedcbd9cfd75
 msgid "unstable i386/amd64"
 msgstr "unstable i386/amd64"
 
-# 39a15dedcfd04c48b8b84f8f5534cd52
 msgid "lucid i386/amd64"
 msgstr "lucid i386/amd64"
 
-# 0df8b0c9ea614edc92cccc21f2728948
 msgid "natty i386/amd64"
 msgstr "natty i386/amd64"
 
-# 3692fb874d024625854a8ae2388e0259
 msgid "oneiric i386/amd64"
 msgstr "oneiric i386/amd64"
 
-# bc1b8eeeca674848ab1638c92521d822
 msgid "precise i386/amd64"
 msgstr "precise i386/amd64"
 
-# caacfbab4b16434bbb82fedcbd9cfd75
 msgid "quantal i386/amd64"
 msgstr ""
 
-# d095caa060ea4366bf32e57a5fbfeeb6
 msgid ""
 "正常にビルドが終了すると$GROONGA_CLONE_DIR/packages/apt/repositories配下に."
 "debパッケージが生成されます。"
 msgstr ""
 
-# 0c3d3ce03807437a993014249610954c
 msgid ""
 "make build ではまとめてビルドできないこともあります。 その場合にはディストリ"
 "ビューションごとやアーキテクチャごとなど、個別にビルドすることで問題が発生し"
 "ている箇所を切り分ける必要があります。"
 msgstr ""
 
-# d1da7562169c4bd1bbd05ef17e613f50
 msgid "生成したパッケージへの署名を行うには以下のコマンドを実行します。::"
 msgstr "生成したパッケージへの署名を行うには以下のコマンドを実行します。::"
 
-# f6abd668ad0040e7bc7c5e2f00b7def4
-# f6abd668ad0040e7bc7c5e2f00b7def4
 msgid ""
 "リリース対象のファイルをリポジトリに反映するには以下のコマンドを実行しま"
 "す。::"
@@ -1164,83 +938,65 @@ msgstr ""
 "リリース対象のファイルをリポジトリに反映するには以下のコマンドを実行しま"
 "す。::"
 
-# f27aeeafe4994df5ace3ec82710d6741
 msgid "リポジトリにGnuPGで署名を行うために以下のコマンドを実行します。::"
 msgstr "リポジトリにGnuPGで署名を行うために以下のコマンドを実行します。::"
 
-# 9b7decd28ed04017a67766b5005ded96
 msgid "Red Hat系パッケージのビルド"
 msgstr "Red Hat系パッケージのビルド"
 
-# cc9e92f8089340ceb8c7efb17ea5370b
 msgid ""
 "Groongaのpackages/yumサブディレクトリに移動して、以下のコマンドを実行しま"
 "す。::"
 msgstr ""
 
-# 5d084d3408f74d8bb24b420e8c02f4ea
 msgid "centos-5 i386/x86_64"
 msgstr "centos-5 i386/x86_64"
 
-# e88f4b40684a445590cdb055f8fa998a
 msgid "centos-6 i386/x86_64"
 msgstr "centos-6 i386/x86_64"
 
-# 4e805b0b228e46219652e6a7cccf116b
 msgid "fedora-17 i386/x86_64"
 msgstr ""
 
-# dee89fa78e184e08bdf62728fd7c4b33
 msgid ""
 "ビルドが正常終了すると$GROONGA_CLONE_DIR/packages/yum/repositories配下にRPM"
 "パッケージが生成されます。"
 msgstr ""
 
-# f368bb7e75e64b5dbb0a7712bbf96d24
 msgid "repositories/yum/centos/5/i386/Packages"
 msgstr ""
 
-# 770cf89ef0574420b71fc51520e5c772
 msgid "repositories/yum/centos/5/x86_64/Packages"
 msgstr ""
 
-# b425de75d8944543b95c62b1d90daf03
 msgid "repositories/yum/centos/6/i386/Packages"
 msgstr ""
 
-# 6fe7b2a739804a36bcd76314bfac1096
 msgid "repositories/yum/centos/6/x86_64/Packages"
 msgstr ""
 
-# 75d3004a997f4898b3a148423055c8f0
 msgid "repositories/yum/fedora/17/i386/Packages"
 msgstr ""
 
-# e255e985dd144068a6fc18f24fdcd214
 msgid "repositories/yum/fedora/17/x86_64/Packages"
 msgstr ""
 
-# f6abd668ad0040e7bc7c5e2f00b7def4
 msgid "リリース対象のRPMに署名を行うには以下のコマンドを実行します。::"
 msgstr "リリース対象のRPMに署名を行うには以下のコマンドを実行します。::"
 
-# f27fa6e5dd3143ea91526b6c2747b0e6
 msgid "Windows用パッケージのビルド"
 msgstr "Windows用パッケージのビルド"
 
-# 70bc065ea3ed46199e71da5424ae38ca
 msgid ""
 "packages/windowsサブディレクトリに移動して、以下のコマンドを実行します。::"
 msgstr ""
 "packages/windowsサブディレクトリに移動して、以下のコマンドを実行します。::"
 
-# 1cee33944be346fcab7a67037e81852b
 msgid ""
 "make releaseを実行することでbuildからuploadまで一気に実行することができます"
 "が、途中で失敗することもあるので順に実行することをおすすめします。"
 msgstr ""
 
-# e1c8876d7822458598d54f4112874964
 msgid ""
 "make buildでクロスコンパイルを行います。 正常に終了するとdist-x64/dist-x86"
 "ディレクトリ以下にx64/x86バイナリを作成します。"
@@ -1248,7 +1004,6 @@ msgstr ""
 "make buildでクロスコンパイルを行います。 正常に終了するとdist-x64/dist-x86"
 "ディレクトリ以下にx64/x86バイナリを作成します。"
 
-# 9039093927564ef89542e46454d78fbe
 msgid ""
 "make packageが正常に終了するとzipアーカイブをfilesディレクトリ以下に作成しま"
 "す。"
@@ -1256,83 +1011,65 @@ msgstr ""
 "make packageが正常に終了するとzipアーカイブをfilesディレクトリ以下に作成しま"
 "す。"
 
-# 5254a292c4da4acd88b9fa6c347fdb23
 msgid ""
 "make installerが正常に終了するとWindowsインストーラをfilesディレクトリ以下に"
 "作成します。"
 msgstr ""
 
-# a935d20b3aec440299e41f4df31ff062
 msgid "パッケージの動作確認"
 msgstr "パッケージの動作確認"
 
-# 4cc29ccd275d4c21bdddb190ab024949
 msgid "ビルドしたパッケージに対しリリース前の動作確認を行います。"
 msgstr "ビルドしたパッケージに対しリリース前の動作確認を行います。"
 
-# 7b0596f513b5469da0f20d95ba7b8633
 msgid ""
 "Debian系もしくはRed Hat系の場合には本番環境へとアップロードする前にローカルの"
 "aptないしyumのリポジトリを参照して正常に更新できることを確認します。"
 msgstr ""
 
-# 03792e6f99484829966bbc5b9e66032b
 msgid ""
 "ここでは以下のようにrubyを利用してリポジトリをwebサーバ経由で参照できるように"
 "します。::"
 msgstr ""
 
-# 019a5b00ace8477a8814cf8f63629fe7
 msgid "grntestの準備"
 msgstr "grntestの準備"
 
-# f5103d9298a3467e9a42ef9bd4063e51
 msgid ""
 "grntestを実行するためにはGroongaのテストデータとgrntestのソースが必要です。"
 msgstr ""
 
-# 92c37f02c724440194916f8466315071
 msgid "まずGroongaのソースを任意のディレクトリへと展開します。::"
 msgstr ""
 
-# 403e191c522c4bdab4075514e49320f8
 msgid ""
 "次にGroongaのtest/functionディレクトリ以下にgrntestのソースを展開します。 つ"
 "まりtest/function/grntestという名前でgrntestのソースを配置します。::"
 msgstr ""
 
-# 67c176fb4c1f448181e49fd9e761200d
 msgid "grntestの実行方法"
 msgstr "grntestの実行方法"
 
-# e7637b0ee186407881b2bf12013e40ee
 msgid ""
 "grntestではGroongaコマンドを明示的にしていすることができます。 後述のパッケー"
 "ジごとのgrntestによる動作確認では以下のようにして実行します。::"
 msgstr ""
 
-# de2f92191e5046a3adde485a3f30110b
 msgid "最後にgrntestによる実行結果が以下のようにまとめて表示されます。::"
 msgstr "最後にgrntestによる実行結果が以下のようにまとめて表示されます。::"
 
-# 8051daf751e74242ac9349424e5b29b7
 msgid "grntestでエラーが発生しないことを確認します。"
 msgstr "grntestでエラーが発生しないことを確認します。"
 
-# 8d73bc7315af403b958322e31aeb4354
 msgid "Debian系の場合"
 msgstr "Debian系の場合"
 
-# c61795a0e6774770b6da51b45063e12b
 msgid "Debian系の場合の動作確認手順は以下の通りとなります。"
 msgstr "Debian系の場合の動作確認手順は以下の通りとなります。"
 
-# 3060f6adfa014726926e68205662080d
 msgid "旧バージョンをchroot環境へとインストールする"
 msgstr "旧バージョンをchroot環境へとインストールする"
 
-# 65f6fca292d14ab89aa0b36df4e8833c
-# 65f6fca292d14ab89aa0b36df4e8833c
 msgid ""
 "chroot環境の/etc/hostsを書き換えてpackages.groonga.orgがホストを 参照するよう"
 "に変更する"
@@ -1340,136 +1077,100 @@ msgstr ""
 "chroot環境の/etc/hostsを書き換えてpackages.groonga.orgがホストを 参照するよう"
 "に変更する"
 
-# a0002d0ee4684e52a4ece5395320fec1
 msgid ""
 "ホストでwebサーバを起動してドキュメントルートをビルド環境のもの "
 "(repositories/apt/packages)に設定する"
 msgstr ""
 
-# e007c6d9dbab4296a1103a0046de8971
-# e007c6d9dbab4296a1103a0046de8971
 msgid "アップグレード手順を実行する"
 msgstr "アップグレード手順を実行する"
 
-# f5f0497cde354ca4b16b1ef2d3d06652
-# f5f0497cde354ca4b16b1ef2d3d06652
-# f5f0497cde354ca4b16b1ef2d3d06652
 msgid ""
 "grntestのアーカイブを展開してインストールしたバージョンでテストを実 行する"
 msgstr ""
 "grntestのアーカイブを展開してインストールしたバージョンでテストを実 行する"
 
-# 67c176fb4c1f448181e49fd9e761200d
-# 67c176fb4c1f448181e49fd9e761200d
-# 67c176fb4c1f448181e49fd9e761200d
 msgid "grntestの正常終了を確認する"
 msgstr "grntestの正常終了を確認する"
 
-# ef6fad7b052e4877a4f9a5e9233e3cfe
 msgid "Red Hat系の場合"
 msgstr "Red Hat系の場合"
 
-# c61795a0e6774770b6da51b45063e12b
 msgid "Red Hat系の場合の動作確認手順は以下の通りとなります。"
 msgstr "Red Hat系の場合の動作確認手順は以下の通りとなります。"
 
-# 7a2756638c2a4b3b8cf0fe9cfd4846fd
 msgid "旧バージョンをchroot環境へとインストール"
 msgstr "旧バージョンをchroot環境へとインストール"
 
-# 65f6fca292d14ab89aa0b36df4e8833c
-# 65f6fca292d14ab89aa0b36df4e8833c
 msgid ""
 "chroot環境の/etc/hostsを書き換えてpackages.groonga.orgがホストを参照するよう"
 "に変更する"
 msgstr ""
 
-# d12568770163465994210e15514ba0d9
 msgid ""
 "ホストでwebサーバを起動してドキュメントルートをビルド環境のもの(packages/yum/"
 "repositories)に設定する"
 msgstr ""
 
-# f5f0497cde354ca4b16b1ef2d3d06652
-# f5f0497cde354ca4b16b1ef2d3d06652
-# f5f0497cde354ca4b16b1ef2d3d06652
 msgid ""
 "grntestのアーカイブを展開してインストールしたバージョンでテストを実行する"
 msgstr ""
 
-# 6c620611d89a4354b335a44e3958e320
 msgid "Windows向けの場合"
 msgstr "Windows向けの場合"
 
-# e195388654da487f9592dc7439cd206b
 msgid "新規インストール/上書きインストールを行う"
 msgstr "新規インストール/上書きインストールを行う"
 
-# 44401c93a479422595a8b1f43c7e1e4c
 msgid "zipアーカイブも同様にしてgrntestを実行し動作確認を行います。"
 msgstr "zipアーカイブも同様にしてgrntestを実行し動作確認を行います。"
 
-# e57ff3516c8b43bb8fe89a18c92cdce5
 msgid "リリースアナウンスの作成"
 msgstr "リリースアナウンスの作成"
 
-# d21507a8440f4faabafa37f89ca677eb
 msgid "リリースの際にはリリースアナウンスを流して、Groongaを広く通知します。"
 msgstr ""
 
-# 82409fc7834943ec941945060c8fa3aa
 msgid ""
 "news.txtに変更点をまとめましたが、それを元にリリースアナウンスを作成します。"
 msgstr ""
 
-# ae36269e7f514dceb733805d36f5b85b
 msgid "リリースアナウンスには以下を含めます。"
 msgstr "リリースアナウンスには以下を含めます。"
 
-# 67040ed31af84f99ad319314c236a4ec
 msgid "インストール方法へのリンク"
 msgstr "インストール方法へのリンク"
 
-# c0aa746ecdcf4828ae4349953300b14e
 msgid "リリースのトピック紹介"
 msgstr "リリースのトピック紹介"
 
-# c6da6787cf404a9ba3480f9d5bf8c0eb
 msgid "リリース変更点へのリンク"
 msgstr "リリース変更点へのリンク"
 
-# 6d7ae8a4db50456ca2ab09b1af8f44db
 msgid "リリース変更点(news.txtの内容)"
 msgstr "リリース変更点(news.txtの内容)"
 
-# dd9fe40cbb0e4f78aff019034d8dbd53
 msgid ""
 "リリースのトピック紹介では、これからGroongaを使う人へアピールする点や既存の"
 "バージョンを利用している人がアップグレードする際に必要な情報を提供します。"
 msgstr ""
 
-# 8ac5330d46864e979f18cfed926fa07c
 msgid ""
 "非互換な変更が含まれるのであれば、回避方法等の案内を載せることも重要です。"
 msgstr ""
 
-# d21507a8440f4faabafa37f89ca677eb
 msgid "参考までに過去のリリースアナウンスへのリンクを以下に示します。"
 msgstr "参考までに過去のリリースアナウンスへのリンクを以下に示します。"
 
-# 2858de4869fd4c5786da7471929d86db
 msgid "[Groonga-talk] [ANN] Groonga 2.0.2"
 msgstr ""
 
-# 2060e8b9c1ee4d1e96911149ddeb859d
 msgid "http://sourceforge.net/mailarchive/message.php?msg_id=29195195"
 msgstr "http://sourceforge.net/mailarchive/message.php?msg_id=29195195"
 
-# 9070a269eae4415fb25fbd6dba3b0a70
 msgid "[groonga-dev,00794] [ANN] Groonga 2.0.2"
 msgstr ""
 
-# c1c7213e4edd47a981c886eff5ca37c0
 msgid ""
 "http://sourceforge.jp/projects/groonga/lists/archive/dev/2012-April/000794."
 "html"
@@ -1477,332 +1178,262 @@ msgstr ""
 "http://sourceforge.jp/projects/groonga/lists/archive/dev/2012-April/000794."
 "html"
 
-# 8cdf23421f774ca8a404a1fa0efda0a6
 msgid "パッケージのアップロード"
 msgstr "パッケージのアップロード"
 
-# 4e5d09c1d65c414dae5e589b8c5e3907
 msgid ""
 "動作確認が完了し、Debian系、Red Hat系、Windows向け、ソースコードそれぞれにお"
 "いてパッケージやアーカイブのアップロードを行います。"
 msgstr ""
 
-# 579122e08e3044729852fd37139b4725
 msgid "Debian系のパッケージのアップロードには以下のコマンドを実行します。::"
 msgstr "Debian系のパッケージのアップロードには以下のコマンドを実行します。::"
 
-# 713e203e6f96476fa12ff4f239a817ab
 msgid "Red Hat系のパッケージのアップロードには以下のコマンドを実行します。::"
 msgstr "Red Hat系のパッケージのアップロードには以下のコマンドを実行します。::"
 
-# 33f4b580ab8f427daeee6713de3beb6a
 msgid "Windows向けのパッケージのアップロードには以下のコマンドを実行します。::"
 msgstr ""
 "Windows向けのパッケージのアップロードには以下のコマンドを実行します。::"
 
-# e55b85a320d5482b9856f0c8a88f526a
 msgid "ソースアーカイブのアップロードには以下のコマンドを実行します。::"
 msgstr "ソースアーカイブのアップロードには以下のコマンドを実行します。::"
 
-# d8ef078dbf6a448fb11baae709f292c5
 msgid ""
 "アップロードが正常終了すると、リリース対象のリポジトリデータやパッケージ、"
 "アーカイブ等がpackages.groonga.orgへと反映されます。"
 msgstr ""
 
-# 573930c22f104589894568eea7c1c7c9
 msgid "blogroonga(ブログ)の更新"
 msgstr "blogroonga(ブログ)の更新"
 
-# fb7cb991cc1f4f2d9ffa9bd4cfd721df
 msgid ""
 "http://groonga.org/blog/ および http://groonga.org/blog/ にて公開されているリ"
 "リース案内を作成します。"
 msgstr ""
 
-# 10d35a5fc6ed49d185a29abe0c60116c
 msgid "基本的にはリリースアナウンスの内容をそのまま記載します。"
 msgstr "基本的にはリリースアナウンスの内容をそのまま記載します。"
 
-# d3479b2f1a27465cbd26fd582faa9395
 msgid "cloneしたWebサイトのソースに対して以下のファイルを新規追加します。"
 msgstr "cloneしたWebサイトのソースに対して以下のファイルを新規追加します。"
 
-# fd101f243ec74ead8782759306d0e2d0
 msgid "groonga.github.com/en/_post/(リリース日)-release.textile"
 msgstr "groonga.github.com/en/_post/(リリース日)-release.textile"
 
-# f4bc7c7d22f4423f99a4ace1701ce743
 msgid "groonga.github.com/ja/_post/(リリース日)-release.textile"
 msgstr "groonga.github.com/ja/_post/(リリース日)-release.textile"
 
-# 46b2c412af1d4a5a834fad408dfc2791
 msgid ""
 "編集した内容をpushする前に確認したい場合にはjekyllおよびRedClothが必要です。 "
 "インストールするには以下のコマンドを実行します。::"
 msgstr ""
 
-# 35b84aae67854369b9679cea3808b590
 msgid ""
 "jekyllのインストールを行ったら、以下のコマンドでローカルにwebサーバを起動しま"
 "す。::"
 msgstr ""
 
-# b4663f5a662f44af90adf5237892fe55
 msgid ""
 "あとはブラウザにてhttp://localhost:4000にアクセスして内容に問題がないかを確認"
 "します。"
 msgstr ""
 
-# f2d9ae317a6649379dbe67911556d50c
 msgid ""
 "記事を非公開の状態でアップロードするには.textileファイルのpublished:をfalseに"
 "設定します。::"
 msgstr ""
 
-# 8cdf23421f774ca8a404a1fa0efda0a6
 msgid "ドキュメントのアップロード"
 msgstr "ドキュメントのアップロード"
 
-# 4881d71d294644a780f0e869787951be
 msgid ""
 "doc/source以下のドキュメントを更新、翻訳まで完了している状態で、ドキュメント"
 "のアップロード作業を行います。"
 msgstr ""
 
-# 488a22db1da845439bb2af68136bdb87
 msgid "そのためにはまず以下のコマンドを実行します。::"
 msgstr "そのためにはまず以下のコマンドを実行します。::"
 
-# 66f71915232c431b813e0391b5c767ea
 msgid ""
 "これによりcloneしておいたgroonga.github.comのdoc/locale以下に更新したドキュメ"
 "ントがコピーされます。"
 msgstr ""
 
-# 9b52fbdd1c9f4db2848a9079f167a427
 msgid ""
 "生成されているドキュメントに問題のないことを確認できたら、コミット、pushして"
 "groonga.orgへと反映します。"
 msgstr ""
 
-# 5c9a71800b2d4c4f8d3d69bd416faa11
 msgid "Homebrewの更新"
 msgstr ""
 
-# 22a5ca91cf5849f4876843cc627a7b69
 msgid ""
 "OS Xでのパッケージ管理方法として `Homebrew <http://brew.sh/>`_ があります。"
 msgstr ""
 
-# 5480dfacd2834de79b20f87744b6d429
 msgid ""
 "Groongaを簡単にインストールできるようにするために、Homebrewへpull requestを送"
 "ります。"
 msgstr ""
 
-# 3e3275f80f6143fdb6dd83385535962c
 msgid "https://github.com/mxcl/homebrew"
 msgstr ""
 
-# 25482ad4d62b4e13b0b43836bcc0eaec
 msgid ""
 "すでにGroongaのFormulaは取り込まれているので、リリースのたびにFormulaの内容を"
 "更新する作業を実施します。"
 msgstr ""
 
-# 835939c405b84c958962239027661916
 msgid "Groonga 3.0.6のときは以下のように更新してpull requestを送りました。"
 msgstr ""
 
-# ee0dce743b46474aa308a17e74286467
 msgid "https://github.com/mxcl/homebrew/pull/21456/files"
 msgstr ""
 
-# c1eed974bcf44b50921227fbfaed76bd
 msgid ""
 "上記URLを参照するとわかるようにソースアーカイブのurlとsha1チェックサムを更新"
 "します。"
 msgstr ""
 
-# f753108e35404faca0119bd6dc5457dc
 msgid "リリースアナウンス"
 msgstr "リリースアナウンス"
 
-# 9d31b02e3b0645fea0c1dff19ab3f7bc
 msgid "作成したリリースアナウンスをメーリングリストへと流します。"
 msgstr "作成したリリースアナウンスをメーリングリストへと流します。"
 
-# 1686dc403ed74f68a80bd6715b45cd44
 msgid "groonga-dev groonga-dev �� lists.sourceforge.jp"
 msgstr "groonga-dev groonga-dev �� lists.sourceforge.jp"
 
-# bdc472794b294f7fa1af12d285fc7b8f
 msgid "Groonga-talk groonga-talk �� lists.sourceforge.net"
 msgstr "Groonga-talk groonga-talk �� lists.sourceforge.net"
 
-# 62e92e03ba5846e7a21b5d836578b98f
 msgid "freecode.comへリリース情報を登録"
 msgstr ""
 
-# 7de98cbc0c2e4d48ac6e61f7e90d2512
 msgid "Groongaプロジェクトではfreecode.comでもリリース情報を発信しています。"
 msgstr ""
 
-# 7795165785ac4fc7a7de5a31da2c484e
-# b25a9264a8864d59aabce088719387a2
 msgid "freecode.comのプロジェクトページは以下の通りです。"
 msgstr ""
 
-# 442ff041a31b4816b20f31d97c2e8bdf
 msgid "https://freecode.com/projects/groonga"
 msgstr ""
 
-# 5b07f1e393494bb5801dc46d240f70c9
 msgid ""
 "プロジェクトの管理メニューから「Submit a release」をクリックし、 新規リリース"
 "情報を登録します。"
 msgstr ""
 
-# 9c0001242a36411296cf23fb6cd6997a
 msgid "https://freecode.com/projects/groonga/releases/new"
 msgstr ""
 
-# 4219976bebf44d9cad3da2fa3462ea72
 msgid ""
 "投稿した内容に対するレビューが運営側で実施されるので、反映されるまでしばらく"
 "時間がかかります。"
 msgstr ""
 
-# f753108e35404faca0119bd6dc5457dc
 msgid "Twitterでリリースアナウンスをする"
 msgstr ""
 
-# 325471715bcf4d6e9cdb2fa66913407b
 msgid ""
 "blogroongaのリリースエントリには「リンクをあなたのフォロワーに共有する」ため"
 "のツイートボタンがあるので、そのボタンを使ってリリースアナウンスします。(画面"
 "下部に配置されている)"
 msgstr ""
 
-# a499540db0af4488b8a9345c476ac8b5
 msgid ""
 "このボタンを経由する場合、ツイート内容に自動的にリリースタイトル(「groonga "
 "2.0.8リリース」など)とblogroongaのリリースエントリのURLが挿入されます。"
 msgstr ""
 
-# 807b1879c8cd409c9dd6c96ec4dd1414
 msgid ""
 "この作業はblogroongaの英語版、日本語版それぞれで行います。 あらかじめgroonga"
 "アカウントでログインしておくとアナウンスを円滑に行うことができます。"
 msgstr ""
 
-# 0537316593a04d11b0284b85dd47237f
 msgid "以上でリリース作業は終了です。"
 msgstr "以上でリリース作業は終了です。"
 
-# f753108e35404faca0119bd6dc5457dc
 msgid "リリース後にやること"
 msgstr ""
 
-# 9d31b02e3b0645fea0c1dff19ab3f7bc
 msgid "リリースアナウンスを流し終えたら、次期バージョンの開発が始まります。"
 msgstr ""
 
-# 9553ca35b76c409f8d11d7052636e9ee
-# 9553ca35b76c409f8d11d7052636e9ee
 msgid "Groonga プロジェクトの新規バージョン追加"
 msgstr ""
 
-# bbcc72281006426da8f8dabd182e4b2f
 msgid "Groonga のbase_versionの更新"
 msgstr ""
 
-# 0360117ae4ca44ac8c21b1d0ff36ce19
 msgid ""
 "`Groonga プロジェクトの設定ページ <http://redmine.groonga.org/projects/"
 "groonga/settings>`_ にて新規バージョンを追加します。(例: release-2.0.6)"
 msgstr ""
 
-# 573930c22f104589894568eea7c1c7c9
 msgid "Groonga バージョン更新"
 msgstr ""
 
-# 488a22db1da845439bb2af68136bdb87
 msgid "$GROONGA_CLONE_DIRにて以下のコマンドを実行します。::"
 msgstr ""
 
-# 4ade501742734636a8e7aba334f1edfa
 msgid ""
 "これにより$GROONGA_CLONE_DIR/base_versionが更新されるのでコミットしておきま"
 "す。"
 msgstr ""
 
-# 71e741d3a96040c5a638e49aca786115
 msgid "base_versionはtar.gzなどのリリース用のファイル名で使用します。"
 msgstr ""
 
-# 75a828b356b8438e99134accfe5bcf62
 msgid "ビルド時のTIPS"
 msgstr "ビルド時のTIPS"
 
-# 897e399c3f064a77bd7a34f70a1cfa22
 msgid "ビルドを並列化したい"
 msgstr "ビルドを並列化したい"
 
-# 54585f1a8eed476e97cc0d842920f566
 msgid ""
 "make build PALALLES=yesを指定するとchroot環境で並列にビルドを 実行できます。"
 msgstr ""
 "make build PALALLES=yesを指定するとchroot環境で並列にビルドを 実行できます。"
 
-# 52c1140b79f942fb91428e7ce10b0bfe
 msgid "特定の環境向けのみビルドしたい"
 msgstr "特定の環境向けのみビルドしたい"
 
-# 88a16095a2bf4c6c9e2c16ece78f4715
 msgid ""
 "Debian系の場合、CODES,ARCHITECTURESオプションを明示的に指定することで、特定の"
 "リリース、アーキテクチャのみビルドすることができます。"
 msgstr ""
 
-# f37d2393e4dc437084cf0bf9ed252367
 msgid "squeezeのi386のみビルドしたい場合には以下のコマンドを実行します。::"
 msgstr "squeezeのi386のみビルドしたい場合には以下のコマンドを実行します。::"
 
-# 2b7f1236226e4a329dba4ef5609bd72b
 msgid ""
 "buildコマンド以外でも build-package-deb build-repository-debなどのサブタスク"
 "でもARCHITECTURES,CODES指定は有効です。"
 msgstr ""
 
-# aa72178533184b64889e3c7a6c3ad5fe
 msgid ""
 "Red Hat系の場合、ARCHITECTURES,DISTRIBUTIONSオプションを明示的に指定すること"
 "で、特定のリリース、アーキテクチャのみビルドすることができます。"
 msgstr ""
 
-# 7f836d59d71d420381a7dbb6739dc026
 msgid "fedoraのi386のみビルドしたい場合には以下のコマンドを実行します。::"
 msgstr "fedoraのi386のみビルドしたい場合には以下のコマンドを実行します。::"
 
-# 09db01dadfd940f491d48fedd2696cd4
 msgid ""
 "buildコマンド以外でも build-in-chroot build-repository-rpmなどのサブタスクで"
 "もARCHITECTURES,DISTRIBUTIONSの指定は有効です。"
 msgstr ""
 
-# 88a16095a2bf4c6c9e2c16ece78f4715
 msgid ""
 "centosの場合、CENTOS_VERSIONSを指定することで特定のバージョンのみビルドするこ"
 "とができます。"
 msgstr ""
 
-# af7c72d306a64401ae285ad64022762a
 msgid "パッケージの署名用のパスフレーズを知りたい"
 msgstr "パッケージの署名用のパスフレーズを知りたい"
 
-# ac14fc4342d74338a71babbb2f539e8e
 msgid ""
 "パッケージの署名に必要な秘密鍵のパスフレーズについては リリース担当者向けの秘"
 "密鍵を復号したテキストの1行目に記載してあります。"
@@ -1810,56 +1441,45 @@ msgstr ""
 "パッケージの署名に必要な秘密鍵のパスフレーズについては リリース担当者向けの秘"
 "密鍵を復号したテキストの1行目に記載してあります。"
 
-# 072a48c84af14f499ed0a991c740dac7
 msgid "バージョンを明示的に指定してドキュメントを生成したい"
 msgstr ""
 
-# aa45cd5e3f004f8e9726918967b16cce
 msgid ""
 "リリース後にドキュメントの一部を差し替えたい場合、特に何も指定しないと生成し"
 "たHTMLに埋め込まれるバージョンが「v3.0.1-xxxxxドキュメント」となってしまうこ"
 "とがあります。gitでのコミット時ハッシュの一部が使われるためです。"
 msgstr ""
 
-# 4ad9208c77ae424ab0ca79abab0f341b
 msgid ""
 "これを回避するには、以下のようにDOCUMENT_VERSIONやDOCUMENT_VERSION_FULLを明示"
 "的に指定します。::"
 msgstr ""
 
-# e7cad227571246439ec899d8bed75819
 msgid "Repository"
 msgstr ""
 
-# d1273affb1324f02a8a6700bf18eab13
 msgid ""
 "There is `the repository of groonga on GitHub <https://github.com/groonga/"
 "groonga>`_. If you want to check-out groonga, type the below command::"
 msgstr ""
 
-# 2cdf2f634a8d4666a98718840a700eb5
 msgid ""
 "There is `the list of related projects of groonga <https://github.com/"
 "groonga>`_ (grntest, fluent-plugin-groonga and so on)."
 msgstr ""
 
-# 4b083450fc7e4d48988c29b8ba6ca536
 msgid "テスト方法"
 msgstr "テスト方法"
 
-# 8b8749f455b94bbbbb567f003d8ab373
 msgid "テスト環境の構築"
 msgstr "テスト環境の構築"
 
-# 92872acccf8f407fa21dbe129e68668a
 msgid "Cutterのインストール"
 msgstr "Cutterのインストール"
 
-# e45345721ef04cc9a9736f7edbddf971
 msgid "Groongaは、テストのフレームワークとして Cutter_ を用いています。"
 msgstr ""
 
-# f91728fb10be4a20a1d2de0fd09983a8
 msgid ""
 "Cutterのインストール方法は プラットフォーム毎のCutterのインストール方法_ をご"
 "覧下さい。"
@@ -1867,11 +1487,9 @@ msgstr ""
 "Cutterのインストール方法は プラットフォーム毎のCutterのインストール方法_ をご"
 "覧下さい。"
 
-# 6643b72c7f20495cb3c2245760bd88de
 msgid "lcovのインストール"
 msgstr "lcovのインストール"
 
-# 2948a80cc7244a42bee1508fd1a22cbe
 msgid ""
 "カバレッジ情報を計測するためには、lcov 1.6以上が必要です。DebianやUbuntuでは"
 "以下のようにしてインストールできます。::"
@@ -1879,11 +1497,9 @@ msgstr ""
 "カバレッジ情報を計測するためには、lcov 1.6以上が必要です。DebianやUbuntuでは"
 "以下のようにしてインストールできます。::"
 
-# 7fa46c3b38d94872b73c17ec1b2c5b67
 msgid "clangのインストール"
 msgstr "clangのインストール"
 
-# 1a8cb531035346629c09f98caa342b50
 msgid ""
 "ソースコードの静的解析を行うためには、clang(scan-build)をインストールする必要"
 "があります。DebianやUbuntuでは以下のようにしてインストールできます。::"
@@ -1891,11 +1507,9 @@ msgstr ""
 "ソースコードの静的解析を行うためには、clang(scan-build)をインストールする必要"
 "があります。DebianやUbuntuでは以下のようにしてインストールできます。::"
 
-# 0ab99c6684f54aa0b4327bae0861f808
 msgid "libmemcachedのインストール"
 msgstr "libmemcachedのインストール"
 
-# 2baf63abe8b849fc8b49a5c5de16ef5d
 msgid ""
 "memcachedのバイナリプロトコルのテストを動作させるためには、libmemcachedの導入"
 "が必要です。squeeze以降のDebianやKarmic以降のUubntuでは以下の用にしてインス"
@@ -1905,20 +1519,15 @@ msgstr ""
 "が必要です。squeeze以降のDebianやKarmic以降のUubntuでは以下の用にしてインス"
 "トールできます。::"
 
-# 17f7de8600ea439a9c48356222386f58
 msgid "テストの動作"
 msgstr "テストの動作"
 
-# c35038e4b8204a6b8ea8f40b0f176908
-# 65fe5b9e1b5549f290b2006dd7ab2822
 msgid "Groongaのトップディレクトリで、以下のコマンドを実行します。::"
 msgstr ""
 
-# 470e9ddeb4714ee99dc2a4519be51017
 msgid "カバレッジ情報"
 msgstr "カバレッジ情報"
 
-# 9005416d60674caabcfc348f60839de5
 msgid ""
 "すると、coverageディレクトリ以下に、カバレッジ情報が入ったhtmlが出力されま"
 "す。"
@@ -1926,7 +1535,6 @@ msgstr ""
 "すると、coverageディレクトリ以下に、カバレッジ情報が入ったhtmlが出力されま"
 "す。"
 
-# 5611a90c53c14344851703d37db73df4
 msgid ""
 "カバレッジには、Lines/Functions/Branchesの3つの対象があります。それぞれ、行/"
 "関数/分岐に対応します。Functionsがもっとも重要な対象です。すべての関数がテス"
@@ -1936,7 +1544,6 @@ msgstr ""
 "関数/分岐に対応します。Functionsがもっとも重要な対象です。すべての関数がテス"
 "トされるようになっていることを心がけてください。"
 
-# 973865ad01e24005ac3b7c1875e24cef
 msgid ""
 "テストがカバーしていない部分の編集は慎重に行ってください。また、テストがカ"
 "バーしている部分を増やすことも重要です。"
@@ -1944,11 +1551,9 @@ msgstr ""
 "テストがカバーしていない部分の編集は慎重に行ってください。また、テストがカ"
 "バーしている部分を増やすことも重要です。"
 
-# 2917c2728bdd435795d615947f968640
 msgid "様々なテスト"
 msgstr "様々なテスト"
 
-# b3486046072e446aacdb1d7c4d7382e6
 msgid ""
 "テストは、test/unitディレクトリにおいて、./run-test.shを実行することによって"
 "も行えます。run-test.shはいくつかのオプションをとります。詳細は、./run-test."
@@ -1958,28 +1563,20 @@ msgstr ""
 "も行えます。run-test.shはいくつかのオプションをとります。詳細は、./run-test."
 "sh --helpを実行しヘルプをご覧ください。"
 
-# 9e577e20dc494e6da6bd03c387ff1d7a
 msgid "特定のテスト関数のみテストする"
 msgstr "特定のテスト関数のみテストする"
 
-# 60802ff660cd4468990c727f960a5e0a
 msgid ""
 "特定のテスト関数(Cutterではテストと呼ぶ)のみをテストすることができます。"
 msgstr ""
 "特定のテスト関数(Cutterではテストと呼ぶ)のみをテストすることができます。"
 
-# 59b6de2f60454c3aae00c427941676de
-# ca5fa53e39d442188da9857d4e529160
-# 2ddb58c962ae40418ecf61251241c69e
-# 7102d631f5024e9b9db1387bfe4c73bd
 msgid "実行例::"
 msgstr "実行例::"
 
-# 851c6ad895c345c3ba3271068b95fb51
 msgid "特定のテストファイルのみテストする"
 msgstr "特定のテストファイルのみテストする"
 
-# 4107e354dc884d93994db0618fe690c1
 msgid ""
 "特定のテストファイル(Cutterではテストケースと呼ぶ)のみテストすることができま"
 "す。"
@@ -1987,11 +1584,9 @@ msgstr ""
 "特定のテストファイル(Cutterではテストケースと呼ぶ)のみテストすることができま"
 "す。"
 
-# 27260f3e9a99431ab7f64817d0481ac9
 msgid "不正メモリアクセス・メモリリーク検出"
 msgstr "不正メモリアクセス・メモリリーク検出"
 
-# f8a12b4487664cc1a539c28911b3f223
 msgid ""
 "環境変数CUTTER_CHECK_LEAKをyesと設定すると、valgrindを用いて不正メモリアクセ"
 "スやメモリリークを検出しつつ、テストを動作させることができます。"
@@ -1999,16 +1594,12 @@ msgstr ""
 "環境変数CUTTER_CHECK_LEAKをyesと設定すると、valgrindを用いて不正メモリアクセ"
 "スやメモリリークを検出しつつ、テストを動作させることができます。"
 
-# c43b7df4310a441494cb16b71c69f1f1
-# 15c70a7b6641427fbae99728049f4064
 msgid "run-test.shのみならず、make checkでも利用可能です。"
 msgstr "run-test.shのみならず、make checkでも利用可能です。"
 
-# 49b8a65bed0348348abc86e8bd826fa4
 msgid "デバッガ上でのテスト実行"
 msgstr "デバッガ上でのテスト実行"
 
-# c5a68df5adc14dd7a1d9c8cd0262bbe6
 msgid ""
 "環境変数CUTTER_DEBUGをyesと設定すると、テストが実行できる環境が整ったgdbが実"
 "行されます。gdb上でrunを行うと、テストの実行が開始されます。"
@@ -2016,11 +1607,9 @@ msgstr ""
 "環境変数CUTTER_DEBUGをyesと設定すると、テストが実行できる環境が整ったgdbが実"
 "行されます。gdb上でrunを行うと、テストの実行が開始されます。"
 
-# 2b2f6803b8614335a569a1965cf5b205
 msgid "静的解析"
 msgstr "静的解析"
 
-# 5c1fed7a6f584af8985efaa02e407d30
 msgid ""
 "scan-buildを用いて、ソースコードの静的解析を行うことができます。scan_buildと"
 "いうディレクトリに解析結果のhtmlが出力されます。::"
@@ -2028,23 +1617,18 @@ msgstr ""
 "scan-buildを用いて、ソースコードの静的解析を行うことができます。scan_buildと"
 "いうディレクトリに解析結果のhtmlが出力されます。::"
 
-# f118798f7be74707894e9c1fcc0b9905
 msgid "configureは1度のみ実行する必要があります。"
 msgstr "configureは1度のみ実行する必要があります。"
 
-# c668f29a3ed34213900ab09bd920a363
 msgid "How to contribute in documentation topics"
 msgstr "How to contribute in documentation topics"
 
-# aedd4ed2a12049f6ae4118051673e898
 msgid "We use Sphinx_ for documentation tool."
 msgstr "We use Sphinx_ for documentation tool."
 
-# 3fada492fc6a45f3b8d36221ef8c090a
 msgid "C API"
 msgstr "C API"
 
-# b6f557b55a7744da9fc45b51b2685f9b
 msgid ""
 "We still have C API documentation in include/groonga.h. But we want to move "
 "them into doc/source/c-api/\\*.txt. We welcome to you help us by moving C "
@@ -2054,15 +1638,12 @@ msgstr ""
 "them into doc/source/c-api/\\*.txt. We welcome to you help us by moving C "
 "API documentation."
 
-# 1e69529ab48d4622ad1954fce0546c0f
 msgid "We will use `the C domain markup`_ of Sphinx."
 msgstr "We will use `the C domain markup`_ of Sphinx."
 
-# 02bd5e2f99cf4b4b9d9905ee201c43d5
 msgid "I18N"
 msgstr "I18N"
 
-# 4d4a636698c14fb4aee6678ff5690400
 msgid ""
 "We only had documentation in Japanese.  We start to support I18N "
 "documentation by gettext based `Sphinx I18N feature`_. We'll use English as "
@@ -2074,7 +1655,6 @@ msgstr ""
 "base language and translate English into other languages such as Japanese. "
 "We'll put all documentations into doc/source/ and process them by Sphinx."
 
-# 812879adf4f84b44b103f2e956bd1f85
 msgid ""
 "But we still use Japanese in doc/source/ for now. We need to translate "
 "Japanese documentation in doc/source/ into English. We welcome to you help "
@@ -2084,47 +1664,36 @@ msgstr ""
 "Japanese documentation in doc/source/ into English. We welcome to you help "
 "us by translating documentation."
 
-# bf62ce2ac5104fa68afef347c18f71c0
 msgid "Translation flow"
 msgstr "Translation flow"
 
-# 166cd9f3f4e544b8b85fe28e2db52ff6
 msgid "After doc/source/\\*.txt are updated, we can start translation."
 msgstr "After doc/source/\\*.txt are updated, we can start translation."
 
-# c6f110ff36db4bf6ad8025be313a6b30
 msgid "Here is a translation flow:"
 msgstr "Here is a translation flow:"
 
-# 7218275896a94d3baa52d27bff52c5f9
 msgid "Clone groonga repository."
 msgstr "Clone groonga repository."
 
-# a90c04e3da2e4fc49b89aa742fc63aaa
 msgid "Update .po files."
 msgstr "Update .po files."
 
-# 022d863d34914a54916f58dbfca0e41d
 msgid "Edit .po files."
 msgstr "Edit .po files."
 
-# 5e4b3db78a7043989ae2ea657f6ea9cd
 msgid "Generate HTML files."
 msgstr "Generate HTML files."
 
-# 5c0f4697eee446deb1450b8f99bb4357
 msgid "Confirm HTML output."
 msgstr "Confirm HTML output."
 
-# 80c5ebf3bf2c450c9d68de3fc28f5fcd
 msgid "Repeat 2.-4. until you get good result."
 msgstr "Repeat 2.-4. until you get good result."
 
-# da1492e175d44011b594e71666119bff
 msgid "Send your works to us!"
 msgstr "Send your works to us!"
 
-# 07fb8aac23f945b19c47765c11e97445
 msgid ""
 "Here are command lines to do the above flow. Following sections describes "
 "details."
@@ -2132,11 +1701,9 @@ msgstr ""
 "Here are command lines to do the above flow. Following sections describes "
 "details."
 
-# f162f607d3924ba198517aaaab66d759
 msgid "How to clone groonga repository"
 msgstr "How to clone groonga repository"
 
-# 24a1db0c21384f4f885dff126be290d8
 msgid ""
 "First, please fork groonga repository on GitHub. You just access https://"
 "github.com/groonga/groonga and press `Fork` button. Now you can clone your "
@@ -2146,15 +1713,12 @@ msgstr ""
 "github.com/groonga/groonga and press `Fork` button. Now you can clone your "
 "groonga repository::"
 
-# 5eebd8fd8af143f8994d40fd040abad7
 msgid "Then you need to configure your cloned repository::"
 msgstr "Then you need to configure your cloned repository::"
 
-# 9a3c8d38e7b94cb2a5a1e2b673dee5a0
 msgid "The above steps are just needed at the first setup."
 msgstr "The above steps are just needed at the first setup."
 
-# b656d0b21f6c4cb1ae6ca79db87c445d
 msgid ""
 "If you have troubles on the above steps, you can use source files available "
 "on http://packages.groonga.org/source/groonga/ ."
@@ -2162,11 +1726,9 @@ msgstr ""
 "If you have troubles on the above steps, you can use source files available "
 "on http://packages.groonga.org/source/groonga/ ."
 
-# b1fae76c8be74db995184bc4a2c57a89
 msgid "How to update .po files"
 msgstr "How to update .po files"
 
-# 4af379266a6c47598cba4e05f66fb345
 msgid ""
 "You can update .po files by running `make update` on doc/locale/${LANGUAGE}/"
 "LC_MESSAGES. (Please substitute `${LANGUAGE}` with your language code such "
@@ -2176,11 +1738,9 @@ msgstr ""
 "LC_MESSAGES. (Please substitute `${LANGUAGE}` with your language code such "
 "as 'ja'.)::"
 
-# e99e2b0511f94978b5a459eb38a80ea1
 msgid "How to edit .po"
 msgstr "How to edit .po"
 
-# 3dbae275e8404d03b06d2e4257fcb8f3
 msgid ""
 "There are some tools to edit .po files. .po files are just text. So you can "
 "use your favorite editor. Here is a specialized editor for .po file edit "
@@ -2190,35 +1750,27 @@ msgstr ""
 "use your favorite editor. Here is a specialized editor for .po file edit "
 "list."
 
-# 3083a5c2823148bab482b8cc733a1d85
 msgid "Emacs's po-mode_"
 msgstr ""
 
-# 889b9f235d2a47378161b27acba626ce
 msgid "It is bundled in gettext."
 msgstr "It is bundled in gettext."
 
-# 41fe7e5d5a4947dbba7c181a51a8c0bf
 msgid "It is a .po editor and works on many platform."
 msgstr "It is a .po editor and works on many platform."
 
-# bc09e13cfeff483281af6bc347b5120a
 msgid "Poedit_"
 msgstr ""
 
-# c9e06e70349c4a078d2821963b71ee5e
 msgid "It is also a .po editor and is implemented as Eclipse plugin."
 msgstr "It is also a .po editor and is implemented as Eclipse plugin."
 
-# 5d648cc6ec084e44877706c2b9dd758d
 msgid "gted"
 msgstr ""
 
-# 08365072bba64f8dae8f47d4bdaa7d48
 msgid "How to generate HTML files"
 msgstr "How to generate HTML files"
 
-# 0f75788660304307868a457f3e258603
 msgid ""
 "You can generate HTML files with updated .po files by running `make html` on "
 "doc/locale/${LANGUAGE}. (Please substitute `${LANGUAGE}` with your language "
@@ -2228,7 +1780,6 @@ msgstr ""
 "doc/locale/${LANGUAGE}. (Please substitute `${LANGUAGE}` with your language "
 "code such as 'ja'.)::"
 
-# a8935621bcdd479f94936e2d752f2d54
 msgid ""
 "You can also generate HTML files for all languages by running `make html` on "
 "doc/locale::"
@@ -2236,7 +1787,6 @@ msgstr ""
 "You can also generate HTML files for all languages by running `make html` on "
 "doc/locale::"
 
-# df45d4216c8a4cce8c784245b771fc3e
 msgid ""
 ".mo files are updated automatically by `make html`. So you don't care about ."
 "mo files."
@@ -2244,11 +1794,9 @@ msgstr ""
 ".mo files are updated automatically by `make html`. So you don't care about ."
 "mo files."
 
-# 5815412887414550bc4a9e802575e325
 msgid "How to confirm HTML output"
 msgstr "How to confirm HTML output"
 
-# 647399860d6040029a0ca7ccf146a593
 msgid ""
 "HTML files are generated in doc/locale/${LANGUAGE}/html/. (Please substitute "
 "`${LANGUAGE}` with your language code such as 'ja'.) You can confirm HTML "
@@ -2258,11 +1806,9 @@ msgstr ""
 "`${LANGUAGE}` with your language code such as 'ja'.) You can confirm HTML "
 "output by your favorite browser::"
 
-# 0ddde6f85ffe4135bf7f683bdb49895a
 msgid "How to send your works"
 msgstr "How to send your works"
 
-# d89be1b6abd94657993672e739db0903
 msgid ""
 "We can receive your works via pull request on GitHub or E-mail attachment "
 "patch or .po files themselves."
@@ -2270,15 +1816,12 @@ msgstr ""
 "We can receive your works via pull request on GitHub or E-mail attachment "
 "patch or .po files themselves."
 
-# 349904977a4f42269edbd56151d93e65
 msgid "How to send pull request"
 msgstr "How to send pull request"
 
-# b732d3ee5988414bb6abb6216ee641e4
 msgid "Here are command lines to send pull request::"
 msgstr "Here are command lines to send pull request::"
 
-# e5d2386e4a1a4dbaa0105cd089a71852
 msgid ""
 "Now you can send pull request on GitHub. You just access your repository "
 "page on GitHub and press `Pull Request` button."
@@ -2286,19 +1829,15 @@ msgstr ""
 "Now you can send pull request on GitHub. You just access your repository "
 "page on GitHub and press `Pull Request` button."
 
-# 349904977a4f42269edbd56151d93e65
 msgid "`Help.GitHub - Sending pull requests`_."
 msgstr ""
 
-# c24814c76c004a41b86f5c67217b02b5
 msgid "How to send patch"
 msgstr "How to send patch"
 
-# b5d338326de94915b8892c3002679c52
 msgid "Here are command lines to create patch::"
 msgstr "Here are command lines to create patch::"
 
-# 8899991704dd429d9533ebf7f61b18d5
 msgid ""
 "You can find 000X-YYY.patch files in the current directory. Please send "
 "those files to us!"
@@ -2306,16 +1845,12 @@ msgstr ""
 "You can find 000X-YYY.patch files in the current directory. Please send "
 "those files to us!"
 
-# 911d4aef014a4dc9a6bd8ee9327d30d2
-# e704be885daa47a4b459fa77d306bff5
 msgid ":doc:`/community` describes our contact information."
 msgstr ""
 
-# ee1b6997084142ec8c8a644e3b096c0a
 msgid "How to send .po files"
 msgstr "How to send .po files"
 
-# 8fc0ce2f3ca54527aad4b75961b3bac8
 msgid ""
 "Please archive doc/locale/${LANGUAGE}/LC_MESSAGES/ (Please substitute `"
 "${LANGUAGE}` with your language code such as 'ja'.) and send it to us! We "
@@ -2325,45 +1860,33 @@ msgstr ""
 "${LANGUAGE}` with your language code such as 'ja'.) and send it to us! We "
 "extract and merge them to the groonga repository."
 
-# ab54eb3b5a4c490ca0856ce2b8d64625
 msgid "How to add new language"
 msgstr "How to add new language"
 
-# a36ad77dcadf47b5a84553dcdfb0eee2
 msgid "Here are command lines to add new translation language::"
 msgstr "Here are command lines to add new translation language::"
 
-# 1308f2bee1c34c95b8ce84f6e7ab3df6
 msgid "Please substitute `${LANGUAGE}` with your language code such as 'ja'."
 msgstr "Please substitute `${LANGUAGE}` with your language code such as 'ja'."
 
-# e462c8ac202a495bacac5254ba5919fd
 msgid "`Codes for the Representation of Names of Languages`_."
 msgstr ""
 
-# 8bd09434d0ff4572b7b7ab7d96350725
 msgid "How to report a bug"
 msgstr "How to report a bug"
 
-# 601644ffca2b417d9eb7681958381778
 msgid "There are two ways to report a bug:"
 msgstr "There are two ways to report a bug:"
 
-# 3caddae54b91448c97ead27ffb1b7b25
-# 728a8bb307a54b138b11299a457381cd
 msgid "Submit a bug to the issue tracker"
 msgstr "Submit a bug to the issue tracker"
 
-# 5eb5415b71fc4da4a40a501a8b0fef6c
-# fcc6665c4bb3490aa2874126a431c777
 msgid "Report a bug to the mailing list"
 msgstr "Report a bug to the mailing list"
 
-# b4dc8bd14c3d43109cd295cbf0cedbaa
 msgid "You can use either way It makes no difference to us."
 msgstr "You can use either way It makes no difference to us."
 
-# 614504722edd4f97808d28227ed6edd2
 msgid ""
 "Groonga project has two issue tracking systems, `Redmine <http://redmine."
 "groonga.org/projects/groonga/issues>`_ and `GitHub issue tracker <https://"
@@ -2375,7 +1898,6 @@ msgstr ""
 "github.com/groonga/groonga/issues>`_.  Redmine is for Japanese and GitHub "
 "issue tracker is for English. You can use one of them to report a bug."
 
-# 43e9e60c186845b4b4440ed8b147ce54
 msgid ""
 "Groonga project has :doc:`/community` for discussing about groonga. Please "
 "send a mail that describes a bug."

  Modified: doc/locale/en/LC_MESSAGES/development.po (+0 -22)
===================================================================
--- doc/locale/en/LC_MESSAGES/development.po    2014-01-23 18:04:29 +0900 (c9656f7)
+++ doc/locale/en/LC_MESSAGES/development.po    2014-01-23 19:01:31 +0900 (e47efe6)
@@ -17,22 +17,18 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-# e4b1529814434d149d64d6fd54c470b3
 msgid "Development"
 msgstr "Development"
 
-# 7e2f0106b0bc46228d5d824089c31711
 msgid ""
 "This section describes about developing with groonga. You may develop an "
 "application that uses groonga as its database, a library that uses "
 "libgroonga, language bindings of libgroonga and so on."
 msgstr ""
 
-# f92355c60edf4146a3a587c3c579dda4
 msgid "Travis CI"
 msgstr "Travis CI"
 
-# 25df3388c3e84f2f9420698df843e947
 msgid ""
 "This section describes about using groonga on `Travis CI <http://travis-ci."
 "org/>`_. Travis CI is a hosted continuous integration service for the open "
@@ -42,7 +38,6 @@ msgstr ""
 "org/>`_. Travis CI is a hosted continuous integration service for the open "
 "source community."
 
-# 5f1724f322df4a1596e1b980eb69b632
 msgid ""
 "You can use Travis CI for your open source software. This section only "
 "describes about groonga related configuration. See `Travis CI: Documentation "
@@ -52,11 +47,9 @@ msgstr ""
 "describes about groonga related configuration. See `Travis CI: Documentation "
 "<http://about.travis-ci.org/docs/>`_ about general Travis CI."
 
-# eca4c0ed9cb649be805c3122ecbfa047
 msgid "Configuration"
 msgstr "Configuration"
 
-# 3c2876acdfa94e50846d681d3c6cc5d0
 msgid ""
 "Travis CI is running on 64-bit Ubuntu 12.04 LTS Server Edition. (See `Travis "
 "CI: About Travis CI Environment <http://about.travis-ci.org/docs/user/ci-"
@@ -68,7 +61,6 @@ msgstr ""
 "environment/>`_.)  You can use apt-line for Ubuntu 12.04 LTS provided by "
 "groonga project to install groonga on Travis CI."
 
-# 8bbd47f3a4b14f4f88fd06001615f178
 msgid ""
 "You can custom build lifecycle by ``.travis.yml``. (See `Travis CI: "
 "Conifugration your Travis CI build with .travis.yml <http://about.travis-ci."
@@ -84,12 +76,10 @@ msgstr ""
 "a language that is supported by Travis CI such as Ruby. You should use "
 "``install`` otherwise."
 
-# 9c9851b190b1429a9187cfb763ae6895
 msgid "Add the following ``before_install`` configuration to ``.travis.yml``::"
 msgstr ""
 "Add the following ``before_install`` configuration to ``.travis.yml``::"
 
-# c4d9d05b6bc041099821f7b090325508
 msgid ""
 "If you need to use ``install`` hook instead of ``before_install``, you just "
 "substitute ``before_install:`` with ``install:``."
@@ -97,29 +87,23 @@ msgstr ""
 "If you need to use ``install`` hook instead of ``before_install``, you just "
 "substitute ``before_install:`` with ``install:``."
 
-# 3fbdee4e2e6f4dc7b408b1c8c00462b3
 msgid "With the above configuration, you can use groonga for your build."
 msgstr "With the above configuration, you can use groonga for your build."
 
-# 92f4cffc16fa44ec962865a1ed860c6b
 msgid "Examples"
 msgstr "Examples"
 
-# ec42e535eb7e46cebd1e1f3ba0f96078
 msgid "Here are open source softwares that use groonga on Travis CI:"
 msgstr "Here are open source softwares that use groonga on Travis CI:"
 
-# e3f6c37f09f74bc48d77a1fb93a4fb40
 msgid ""
 "`rroonga <http://groonga.rubyforge.org/#about-rroonga>`_ (Ruby bindings)"
 msgstr ""
 "`rroonga <http://groonga.rubyforge.org/#about-rroonga>`_ (Ruby bindings)"
 
-# 9aa8193a1cb94f43bf94cc8f00b3923c
 msgid "`rroonga on Travis CI <http://travis-ci.org/#!/ranguba/rroonga>`_"
 msgstr "`rroonga on Travis CI <http://travis-ci.org/#!/ranguba/rroonga>`_"
 
-# 6fba380db8d54b84874e43327f98169c
 msgid ""
 "`.travis.yml for rroonga <https://github.com/ranguba/rroonga/blob/master/."
 "travis.yml>`_"
@@ -127,15 +111,12 @@ msgstr ""
 "`.travis.yml for rroonga <https://github.com/ranguba/rroonga/blob/master/."
 "travis.yml>`_"
 
-# f1d45822063b4290bc75a36c078e4c4e
 msgid "`nroonga <http://nroonga.github.com/>`_ (node.js bindings)"
 msgstr "`nroonga <http://nroonga.github.com/>`_ (node.js bindings)"
 
-# 39c1c9cdc89d4dc6893ccf5fcba7dfc8
 msgid "`nroonga on Travis CI <http://travis-ci.org/#!/nroonga/nroonga>`_"
 msgstr "`nroonga on Travis CI <http://travis-ci.org/#!/nroonga/nroonga>`_"
 
-# c462ecb93a604e29a6b7bf71e4432d02
 msgid ""
 "`.travis.yml for nroonga <https://github.com/nroonga/nroonga/blob/master/."
 "travis.yml>`_"
@@ -143,19 +124,16 @@ msgstr ""
 "`.travis.yml for nroonga <https://github.com/nroonga/nroonga/blob/master/."
 "travis.yml>`_"
 
-# 446c60fdc918441b9a7d29fa29530438
 msgid ""
 "`logaling-command <http://logaling.github.com/>`_ (A glossary management "
 "command line tool)"
 msgstr ""
 
-# 9aa8193a1cb94f43bf94cc8f00b3923c
 msgid ""
 "`logaling-command on Travis CI <http://travis-ci.org/#!/logaling/logaling-"
 "command>`_"
 msgstr ""
 
-# 6fba380db8d54b84874e43327f98169c
 msgid ""
 "`.travis.yml for logaling-command <https://github.com/logaling/logaling-"
 "command/blob/master/.travis.yml>`_"

  Modified: doc/locale/en/LC_MESSAGES/geolocation_search.po (+0 -18)
===================================================================
--- doc/locale/en/LC_MESSAGES/geolocation_search.po    2014-01-23 18:04:29 +0900 (c5e8f21)
+++ doc/locale/en/LC_MESSAGES/geolocation_search.po    2014-01-23 19:01:31 +0900 (9ed2059)
@@ -17,11 +17,9 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-# 2fb9f02e343f4b82bfce830bfb2a96f6
 msgid "Geolocation Search"
 msgstr "Geolocation Search"
 
-# 3a028cc7907140eea914e982a2a49b66
 msgid ""
 "Groonga supports geolocation search. It uses index for search. It means that "
 "you can search by geolocation fast like fulltext search."
@@ -29,11 +27,9 @@ msgstr ""
 "Groonga supports geolocation search. It uses index for search. It means that "
 "you can search by geolocation fast like fulltext search."
 
-# 595347d236434d879677f84cc4c42dbf
 msgid "Supported features"
 msgstr "Supported features"
 
-# 893f6d34a8304028b4f02db01583631a
 msgid ""
 "Groonga supports only point as data type. Line, surface and so on aren't "
 "supported yet. Here is a feature list:"
@@ -41,25 +37,20 @@ msgstr ""
 "Groonga supports only point as data type. Line, surface and so on aren't "
 "supported yet. Here is a feature list:"
 
-# 42e76ab0a8ee44f88a7bd0363134fca4
 msgid "Groonga can store a point to a column."
 msgstr "Groonga can store a point to a column."
 
-# e3373e25870743f49862bacb3cf8a4a8
 msgid ""
 "Groonga can search records that have a point in the specified rectangle."
 msgstr ""
 "Groonga can search records that have a point in the specified rectangle."
 
-# c111f9b4b7b14989ba84933fe014ee59
 msgid "Groonga can search records that have a point in the specified circle."
 msgstr "Groonga can search records that have a point in the specified circle."
 
-# 2b2377a525c84d9abce8d09c77077695
 msgid "Groonga can calculate distance between two points."
 msgstr "Groonga can calculate distance between two points."
 
-# d227160f47ef4f1bbd1c959745f51b29
 msgid ""
 "Groonga can sort records by distance from the specified point in ascending "
 "order."
@@ -67,15 +58,12 @@ msgstr ""
 "Groonga can sort records by distance from the specified point in ascending "
 "order."
 
-# 41cec27a8cf7430bb094999f427ee421
 msgid "Here are use cases for groonga's geolocation search:"
 msgstr "Here are use cases for groonga's geolocation search:"
 
-# bd8b003692d14e4b86ae60ef2147b2b3
 msgid "You list McDonald's around a station."
 msgstr "You list McDonald's around a station."
 
-# 953d74c99a434b52a7c9888ed16cdfb4
 msgid ""
 "You list KFS around the current location sort by distance from the current "
 "location in ascending order with distance."
@@ -83,11 +71,9 @@ msgstr ""
 "You list KFS around the current location sort by distance from the current "
 "location in ascending order with distance."
 
-# 64a32d53a55f4b50b504692ecdff6d0e
 msgid "Here are not use cases:"
 msgstr "Here are not use cases:"
 
-# d993182babec4dfbab32760baffdf7c1
 msgid ""
 "You search McDonald's in a city. (Groonga doesn't support geolocation search "
 "by a shape except a rectangle and a circle.)"
@@ -95,7 +81,6 @@ msgstr ""
 "You search McDonald's in a city. (Groonga doesn't support geolocation search "
 "by a shape except a rectangle and a circle.)"
 
-# f2a7040b783a4de2b1c40ce395ee47bd
 msgid ""
 "You store a region instead of a point as a lake record. (A column can't has "
 "geolocation data except a point.)"
@@ -103,12 +88,10 @@ msgstr ""
 "You store a region instead of a point as a lake record. (A column can't has "
 "geolocation data except a point.)"
 
-# e19671658b67461ea8e3fe4e627eb20e
 msgid "The following figures show about groonga's geolocation search features."
 msgstr ""
 "The following figures show about groonga's geolocation search features."
 
-# 364f4683406b430db173b6896139f06a
 msgid ""
 "Here is a figure that only has records. A black point describes a record. "
 "The following figures shows how records are treated."
@@ -116,6 +99,5 @@ msgstr ""
 "Here is a figure that only has records. A black point describes a record. "
 "The following figures shows how records are treated."
 
-# fc470c47528a40f8a33b63f4a709d8d3
 msgid "Coming soon..."
 msgstr "Coming soon..."

  Modified: doc/locale/en/LC_MESSAGES/index.po (+0 -5)
===================================================================
--- doc/locale/en/LC_MESSAGES/index.po    2014-01-23 18:04:29 +0900 (4bc773d)
+++ doc/locale/en/LC_MESSAGES/index.po    2014-01-23 19:01:31 +0900 (a5756f3)
@@ -17,22 +17,17 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-# 0429e62490fa4e4d99ddbd3ccdd0ab58
 msgid "groonga documentation"
 msgstr "groonga documentation"
 
-# bdf94bc753e74171a0e1f171d3eb5322
 msgid ":doc:`news`"
 msgstr ":doc:`news`"
 
-# 7a50acfe86d1429f9185bb5737388a3e
 msgid ":ref:`genindex`"
 msgstr ":ref:`genindex`"
 
-# ac699e10a3df408caa3cc7f645b42e0a
 msgid ":ref:`modindex`"
 msgstr ":ref:`modindex`"
 
-# 8f96e6490e024a1981f8acece6bcc598
 msgid ":ref:`search`"
 msgstr ":ref:`search`"

  Modified: doc/locale/en/LC_MESSAGES/install.po (+0 -346)
===================================================================
--- doc/locale/en/LC_MESSAGES/install.po    2014-01-23 18:04:29 +0900 (6a82083)
+++ doc/locale/en/LC_MESSAGES/install.po    2014-01-23 19:01:31 +0900 (e582aa8)
@@ -17,11 +17,9 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-# ce5a1582048f4f51ac69236aa73d7696
 msgid "Install"
 msgstr "Install"
 
-# 81666e32902a44f193d3b18db08ddb8e
 msgid ""
 "This section describes how to install groonga on each environment. There are "
 "packages for major platforms. It's recommended that you use package instead "
@@ -33,13 +31,6 @@ msgstr ""
 "of building groonga by yourself. But don't warry. There is a document about "
 "building groonga from source."
 
-# 46c1b874ec974dd7b6e08732ecc00a26
-# e1b7c0a3a1194c97bbf80d83a53a6c2d
-# 69d4b79983904d929eff7cee259872aa
-# 1d5d3c315bb744f1924bc0caad8d2bbc
-# 4f13cc39a09a416488b16e6f902c1c15
-# f2441b177ffc4ec2b628862c2868fbdb
-# 95d9b289ae314ee5915f51994ced7d7c
 msgid ""
 "We distribute both 32-bit and 64-bit packages but we strongly recommend a 64-"
 "bit package for server. You should use a 32-bit package just only for tests "
@@ -51,11 +42,9 @@ msgstr ""
 "or development. You will encounter an out of memory error with a 32-bit "
 "package even if you just process medium size data."
 
-# b0beba5a1f3a4fa68f37ddb8f772c1d2
 msgid "CentOS"
 msgstr "CentOS"
 
-# 98032bd4d33548938c17d75fd2ac72cb
 msgid ""
 "This section describes how to install groonga related RPM packages on "
 "CentOS. You can install them by ``yum``."
@@ -63,42 +52,12 @@ msgstr ""
 "This section describes how to install groonga related RPM packages on "
 "CentOS. You can install them by ``yum``."
 
-# b7e4b91c595146d0a7112249d319793b
 msgid "CentOS 5"
 msgstr "CentOS 5"
 
-# f437b1eeea9a4208ae224f5d520c8599
-# c9ee7d183bfe49ca83d8aec682921801
-# 60732f6f6892407ebe4f9b956dea6520
-# afc77dfd9316415cafd1c9230116b7c1
-# b1758f6804454414a52714b2699c9189
-# 970d23fbff9844c68b5c7c9e83c48845
-# 6ce3383d0a4244529bb6f9786ada66ce
-# abf8a57e9a104bf6878b3acce84eee2a
-# 3d0a21b3b1054a6db9ebaf6681295ae0
-# c975db63204b4f1d9c7ee6bc8341f1cf
-# c975db63204b4f1d9c7ee6bc8341f1cf
-# c975db63204b4f1d9c7ee6bc8341f1cf
-# 8da254ac49894d9a9eedbbb254426874
-# 0f17ebdc776148e79f81aac2750504a9
-# aba67f3d06cc4f8196a563fbc15ab353
-# 58c64614be224fdaa26d426fb4045205
-# 5e49f7613072461cbf7cec607fb23e77
-# faa86f15967d4eaeb8a59605d382560d
-# 3435714dfd5e4d38a9bb58457ae42bf9
 msgid "Install::"
 msgstr "Install::"
 
-# 8ae0ee0368f647a4860befcc7c31f4fe
-# a7d99bdb45f643cea57cb4177bb4ee49
-# bc95b9f019434e2e9c8e91b31533a77f
-# ec2b1ad73d0f4be086ce95be5f7c8de3
-# c6c9ef210b4b48c58162a3542f0c95f1
-# 899ae35bba8f48899331a6d0e4a7a2e9
-# 42badd06fcae440d86e6c10fd5dba997
-# ba5804921057426fae906eab3342c78a
-# 2a8c06e784af43e4bee68f39d365e851
-# 385abfe0e4484587915e778b3800712d
 msgid ""
 "If you want to use `MeCab <http://mecab.sourceforge.net/>`_ as a tokenizer, "
 "install groonga-tokenizer-mecab package."
@@ -106,54 +65,24 @@ msgstr ""
 "If you want to use `MeCab <http://mecab.sourceforge.net/>`_ as a tokenizer, "
 "install groonga-tokenizer-mecab package."
 
-# 79553514d3da449ebbf935f9b2d8906f
-# 745b0d34490c411e860cefb7e1d15122
-# f91a62276f8b4b79a953c8da1ed0322c
-# c75c38b85cda4e0f82d6535c534550b8
-# 57a57b03e6ae43378c0a62d275639b23
-# 6b38f1d2be1b4b14b5617744b61044d3
-# 65db53cde686446cb3529f2dd133e634
-# c663300f123f4443b4cdb39e0ded6163
-# 95b8f06adfc2445e904aaa382c9fbe80
-# 9fa39341dae24920a8904be4e859dd5f
 msgid "Install groonga-tokenizer-mecab package::"
 msgstr "Install groonga-tokenizer-mecab package::"
 
-# 165f32e7ea4f4d2abfa0c131ad20f7bb
-# f3ef7e2edec24ab282711924bcab7c67
-# d2b6a5c640d94b67ac54df52f8f8394a
 msgid "Then install MeCab dictionary. (mecab-ipadic or mecab-jumandic)"
 msgstr ""
 
-# 44a519b91c9542bda1bd2738b3d773eb
-# f55e71a7eeca40378731edf25f13e8a6
-# 288792b7c236488caeb4b34d19e71f67
 msgid "Install IPA dictionary::"
 msgstr ""
 
-# 497453ef75be43e3a0e4ada887231d22
-# 62682399770a49e89b6953d106546a94
-# f3bfd9523e44447a962f921c0fd2ee0e
 msgid "Or install Juman dictionary::"
 msgstr ""
 
-# e0f8e8bd06bb46409e3f44888b6fba98
-# 250429312eb54d66817caa9c20dc7ef2
-# 9ef67a80246f44c198853999d2321061
-# 9d294448ed8a4b2180843a650ff43524
-# 6fdc138c9f154d68b08855422eb74129
-# ecacd8cf83244d46ad7d0eeef6207579
-# 92c632ba2d794c03be66f8638678f484
-# 11c53a90fbad4f8ba3b8e0682384643a
-# d9b7ac32948b4de0b83f219b19bb4fac
-# e66af84810354698a6644ff338210539
 msgid ""
 "There is a package that provides `Munin <http://munin-monitoring.org/>`_ "
 "plugins. If you want to monitor Groonga status by Munin, install groonga-"
 "munin-plugins package."
 msgstr ""
 
-# 037127012750439fbef51ef7b76815f7
 msgid ""
 "Groonga-munin-plugins package requires munin-node package that isn't "
 "included in the official CentOS repository. You need to enable `Repoforge "
@@ -165,66 +94,30 @@ msgstr ""
 "(RPMforge) <http://repoforge.org/>`_ repository or `EPEL <http://"
 "fedoraproject.org/wiki/EPEL>`_ repository to install it by ``yum``."
 
-# e221ed33239a4d7daba1b73851506a10
 msgid "Enable Repoforge (RPMforge) repository on i386 environment::"
 msgstr "Enable Repoforge (RPMforge) repository on i386 environment::"
 
-# 86cb8e2ab2f44493a84ce4868083f310
 msgid "Enable Repoforge (RPMforge) repository on x86_64 environment::"
 msgstr "Enable Repoforge (RPMforge) repository on x86_64 environment::"
 
-# d3ac8966909a42e7b7529f565900806d
-# 0dce5cb16732407a8f744070319f3b84
 msgid "Enable EPEL repository on any environment::"
 msgstr "Enable EPEL repository on any environment::"
 
-# db74ebc6d29f4a76bc19b1246b17a047
-# eaa350249e74450da83b55bd72db7920
-# c22560e1fb3c471b9eb932406d43f082
-# 3491028690054d08953f41428f1c64b5
-# b33e1ba48f20490780852f564fc5c5f5
-# e6ea3554156a4952875b192053ed47ff
-# 8ff3e039118c48a78c55218afcf58540
-# 9736aa2d003f4bb4b4698df783504c65
-# 72d180993fa44a5c9975ee28b59bb850
-# 088540eb40474b34a88bb12ea391e6c6
 msgid "Install groonga-munin-plugins package::"
 msgstr "Install groonga-munin-plugins package::"
 
-# e0f8e8bd06bb46409e3f44888b6fba98
-# 250429312eb54d66817caa9c20dc7ef2
-# 9ef67a80246f44c198853999d2321061
-# 9d294448ed8a4b2180843a650ff43524
-# 6fdc138c9f154d68b08855422eb74129
-# ecacd8cf83244d46ad7d0eeef6207579
-# 92c632ba2d794c03be66f8638678f484
-# 11c53a90fbad4f8ba3b8e0682384643a
-# d9b7ac32948b4de0b83f219b19bb4fac
-# e66af84810354698a6644ff338210539
 msgid ""
 "There is a package that provides MySQL compatible normalizer as Groonga "
 "plugins. If you want to use that one, install groonga-normalizer-mysql "
 "package."
 msgstr ""
 
-# 79553514d3da449ebbf935f9b2d8906f
-# 745b0d34490c411e860cefb7e1d15122
-# f91a62276f8b4b79a953c8da1ed0322c
-# c75c38b85cda4e0f82d6535c534550b8
-# 57a57b03e6ae43378c0a62d275639b23
-# 6b38f1d2be1b4b14b5617744b61044d3
-# 65db53cde686446cb3529f2dd133e634
-# c663300f123f4443b4cdb39e0ded6163
-# 95b8f06adfc2445e904aaa382c9fbe80
-# 9fa39341dae24920a8904be4e859dd5f
 msgid "Install groonga-normalizer-mysql package::"
 msgstr ""
 
-# 6b342329b45840a68bc861aaf7d49b0a
 msgid "CentOS 6"
 msgstr "CentOS 6"
 
-# 7e5a331cd41c4a0991a52c090b6a4dcc
 msgid ""
 "Groonga-munin-plugins package requires munin-node package that isn't "
 "included in the official CentOS repository. You need to enable `EPEL <http://"
@@ -234,94 +127,38 @@ msgstr ""
 "included in the official CentOS repository. You need to enable `EPEL <http://"
 "fedoraproject.org/wiki/EPEL>`_ repository to install it by ``yum``."
 
-# 0e7f2b6d2cac42ce971ee9b11e36a92a
-# f58489c1a3304bc5bbaba4320865522d
-# 327871e0e67a428fa4106f23ee6c056b
-# 8022e4c0bc2b44e28fa6fa0e2eaf0681
-# 45e677df4dd2400d8f057b35e3161604
-# 81d520b6f6304f3089b1f8525030dc82
-# 6dbe6580cf604af38351363b378f6d40
 msgid "Build from source"
 msgstr "Build from source"
 
-# 4a03da3920614107a55fed4942bdb66d
-# 086f7458c2334665965796a64842dac3
-# d6160ce7ff6a4f1a98ee9cda9559def0
-# 85948f2410a645d1b75e38b7ccdd87fb
-# 133fbfb38d284e48887b4275f4ae3de6
 msgid "Install required packages to build groonga::"
 msgstr "Install required packages to build groonga::"
 
-# ab83d63fddfd47aaaef39d48cc6ae88b
-# 7ab19882f40846d5b3366366e9448db1
-# 4f46ed376832463e869314e85ca884af
-# d85fabdee74a4e0682a5febc3f6ecb56
-# 2e8ca4ff722a4ea3a87ab7d747236fec
-# 7d18e6ca13674a5691f9e161f70f494b
 msgid "Download source::"
 msgstr "Download source::"
 
-# 6ca01a3a215a4cb09aa46ca5567ff107
-# 85d1d4b4a11549fcb4c59e969c80bc3d
-# 5164750331874b8d9dab3c1a501c0f22
-# b7aa9c07577e45dd9fa6614b522dc4d6
-# d14e1922ad544ade9efe5a17578cfa6b
 msgid "Configure (see :ref:`source-configure` about ``configure`` options)::"
 msgstr "Configure (see :ref:`source-configure` about ``configure`` options)::"
 
-# b305b634d3f54db0b1ca59ab3ea97657
-# 016409a61ceb45169ffc5444505773c9
-# 5135a8cfefde48b8a449553ea26310db
-# d0515d547d334445b868f8e302144dbd
-# 96d76e9f1400419ba107717d28d3d54b
-# 6a6b260a72724a1282902e93f3acc1c8
 msgid "Build::"
 msgstr "Build::"
 
-# 1becec2af6da4b148f06d86745f32ce9
 msgid "Debian GNU/Linux"
 msgstr "Debian GNU/Linux"
 
-# 297b5385bbea42d4aef29f1d74688b5e
 msgid ""
 "This section describes how to install Groonga related deb packages on Debian "
 "GNU/Linux. You can install them by ``apt``."
 msgstr ""
 
-# 2ef83626aca84b7b9e5bedb95cbd86d2
 msgid "wheezy"
 msgstr "wheezy"
 
-# 50be7c1a609e4bfe936cd01ebc24b4b7
-# 3b2ecd16d25a4aeaa49ca362b496454d
-# eba2f512f92546cea851acc8898f3fc9
-# b2be87140a6049cea63ab1abe32f1e47
-# 73eca8c3d130407893bb314a2816c342
-# 7c4b2a2fadd84f0c9446823ac8e51dcd
-# bb4153c41f7e4f25abcf5b4aa7865dbd
 msgid "Add the Groonga apt repository."
 msgstr ""
 
-# 60b083084f0a449f9fd927f49f307fd7
-# 7cca3374e3e143d48355d2f3b8afdf08
-# ea12916e8c484b8d8b15deda19f06c36
-# aebe4d5b9d074036b514b44f73d26a45
-# 9f68655dcf904963a0eaaf3d242603b0
-# 8bd96b92b308450fa8d711b63d5cb0dd
-# 0f61ea1f32f64d49bce1e94af192a598
 msgid "/etc/apt/sources.list.d/groonga.list::"
 msgstr "/etc/apt/sources.list.d/groonga.list::"
 
-# e0f8e8bd06bb46409e3f44888b6fba98
-# 250429312eb54d66817caa9c20dc7ef2
-# 9ef67a80246f44c198853999d2321061
-# 9d294448ed8a4b2180843a650ff43524
-# 6fdc138c9f154d68b08855422eb74129
-# ecacd8cf83244d46ad7d0eeef6207579
-# 92c632ba2d794c03be66f8638678f484
-# 11c53a90fbad4f8ba3b8e0682384643a
-# d9b7ac32948b4de0b83f219b19bb4fac
-# e66af84810354698a6644ff338210539
 msgid ""
 "There is a package that provides `Munin <http://munin-monitoring.org/>`_ "
 "plugins. If you want to monitor groonga status by Munin, install groonga-"
@@ -331,45 +168,24 @@ msgstr ""
 "plugins. If you want to monitor groonga status by Munin, install groonga-"
 "munin-plugins package."
 
-# e0f8e8bd06bb46409e3f44888b6fba98
-# 250429312eb54d66817caa9c20dc7ef2
-# 9ef67a80246f44c198853999d2321061
-# 9d294448ed8a4b2180843a650ff43524
-# 6fdc138c9f154d68b08855422eb74129
-# ecacd8cf83244d46ad7d0eeef6207579
-# 92c632ba2d794c03be66f8638678f484
-# 11c53a90fbad4f8ba3b8e0682384643a
-# d9b7ac32948b4de0b83f219b19bb4fac
-# e66af84810354698a6644ff338210539
 msgid ""
 "There is a package that provides MySQL compatible normalizer as groonga "
 "plugins. If you want to use that one, install groonga-normalizer-mysql "
 "package."
 msgstr ""
 
-# 53e4d94f56574c4fbe4d0fb58a1b5f2f
 msgid "jessie"
 msgstr ""
 
-# 50be7c1a609e4bfe936cd01ebc24b4b7
-# 3b2ecd16d25a4aeaa49ca362b496454d
-# eba2f512f92546cea851acc8898f3fc9
-# b2be87140a6049cea63ab1abe32f1e47
-# 73eca8c3d130407893bb314a2816c342
-# 7c4b2a2fadd84f0c9446823ac8e51dcd
-# bb4153c41f7e4f25abcf5b4aa7865dbd
 msgid "Add the groonga apt repository."
 msgstr "Add the groonga apt repository."
 
-# 74877f0da12340938457eb4f52cbf90a
 msgid "sid"
 msgstr "sid"
 
-# 2293d519a57d42f195ec5cd8118dfbc3
 msgid "Fedora"
 msgstr "Fedora"
 
-# bd4f3f3bf15a49fcb73e57ccf6c76d64
 msgid ""
 "This section describes how to install groonga related RPM packages on "
 "Fedora. You can install them by ``yum``."
@@ -377,7 +193,6 @@ msgstr ""
 "This section describes how to install groonga related RPM packages on "
 "Fedora. You can install them by ``yum``."
 
-# 7ac6dd63f5c04699aea7b17f9063d5a2
 msgid ""
 "Since Groonga 3.0.2 release, Groonga related RPM pakcages are in the "
 "official Fedora yum repository (Fedora 18). So you can use them instead of "
@@ -388,22 +203,18 @@ msgid ""
 "official Fedora yum repository in the future."
 msgstr ""
 
-# 2293d519a57d42f195ec5cd8118dfbc3
 msgid "Fedora 20"
 msgstr ""
 
-# e3f85dda4774400ca89c4bf075e9066d
 msgid ""
 "Note that additional packages such as ``groonga-normalizer-mysql``, ``mecab-"
 "dic`` and ``mecab-jumandic`` packages require to install ``groonga-release`` "
 "package which provides the groonga yum repository beforehand::"
 msgstr ""
 
-# 802a7c53c7f24630bb3d666c9e423d15
 msgid "Mac OS X"
 msgstr "Mac OS X"
 
-# 33310205edbb42b1a97eb179706495a4
 msgid ""
 "This section describes how to install groonga on Mac OS X. You can install "
 "groonga by `MacPorts <http://www.macports.org/>`_ or `Homebrew <http://mxcl."
@@ -413,23 +224,18 @@ msgstr ""
 "groonga by `MacPorts <http://www.macports.org/>`_ or `Homebrew <http://mxcl."
 "github.com/homebrew/>`_."
 
-# 4fb446c69efa4b539029ce4702a933ec
 msgid "MacPorts"
 msgstr "MacPorts"
 
-# 794634aeb06e43359a4ddd0622cf167a
 msgid "Homebrew"
 msgstr "Homebrew"
 
-# 141772b447f6468ba28bd8c2120be3ec
 msgid "Install `Xcode <https://developer.apple.com/xcode/>`_."
 msgstr "Install `Xcode <https://developer.apple.com/xcode/>`_."
 
-# b15838ef920c4069b98654568b5cc9ac
 msgid "Others"
 msgstr "Others"
 
-# bdd32fff222441809e6ed4f2bdfff3d7
 msgid ""
 "This section describes how to install groonga from source on UNIX like "
 "environment."
@@ -437,7 +243,6 @@ msgstr ""
 "This section describes how to install groonga from source on UNIX like "
 "environment."
 
-# adfe3cb6a3ca472baa6405bf15b660aa
 msgid ""
 "To get more detail about installing groonga from source on the specific "
 "environment, find the document for the specific environment from :doc:`/"
@@ -447,11 +252,9 @@ msgstr ""
 "environment, find the document for the specific environment from :doc:`/"
 "install`."
 
-# bbc82fb328884e88a6d3f6b080729e22
 msgid "Dependencies"
 msgstr "Dependencies"
 
-# 9639f7da41084751982a0cfd112a1635
 msgid ""
 "Groonga doesn't require any special libraries but requires some tools for "
 "build."
@@ -459,27 +262,21 @@ msgstr ""
 "Groonga doesn't require any special libraries but requires some tools for "
 "build."
 
-# ceb3f344f07f402aa6f0ae8927bd76f1
 msgid "Tools"
 msgstr "Tools"
 
-# 7049ffba29b643eb8c9994136d935070
 msgid "Here are required tools:"
 msgstr "Here are required tools:"
 
-# 27ecd81df31449049eb663f11aaa22f5
 msgid "``wget``, ``curl`` or Web browser for downloading source archive"
 msgstr "``wget``, ``curl`` or Web browser for downloading source archive"
 
-# 02710278d1a34680bf1b5db6a4240a5d
 msgid "``tar`` and ``gzip`` for extracting source archive"
 msgstr "``tar`` and ``gzip`` for extracting source archive"
 
-# 6f415343c03d4606810eab6ef1db2cfb
 msgid "shell (many shells such as ``dash``, ``bash`` and ``zsh`` will work)"
 msgstr "shell (many shells such as ``dash``, ``bash`` and ``zsh`` will work)"
 
-# c9a97b8ee5704b8bbf41c5febc850f1f
 msgid ""
 "C compiler and C++ compiler (``gcc`` and ``g++`` are supported but other "
 "compilers may work)"
@@ -487,16 +284,13 @@ msgstr ""
 "C compiler and C++ compiler (``gcc`` and ``g++`` are supported but other "
 "compilers may work)"
 
-# aa9ce43f296244c0b930bae5164eb508
 msgid "``make`` (GNU make is supported but other make like BSD make will work)"
 msgstr ""
 "``make`` (GNU make is supported but other make like BSD make will work)"
 
-# a842f98317694de693bddd89381935c1
 msgid "You must get them ready."
 msgstr "You must get them ready."
 
-# e9cc5ed5b59f4183bd58617924c2c7c6
 msgid ""
 "You can use `CMake <http://www.cmake.org/>`_ instead of shell but this "
 "document doesn't describe about building with CMake."
@@ -504,11 +298,9 @@ msgstr ""
 "You can use `CMake <http://www.cmake.org/>`_ instead of shell but this "
 "document doesn't describe about building with CMake."
 
-# ec79768e3d094ac59f2c6596b8f942c0
 msgid "Here are optional tools:"
 msgstr "Here are optional tools:"
 
-# 3405c0c4e1364d97922cfb4ded3ca911
 msgid ""
 "`pkg-config <http://www.freedesktop.org/wiki/Software/pkg-config>`_ for "
 "detecting libraries"
@@ -516,23 +308,18 @@ msgstr ""
 "`pkg-config <http://www.freedesktop.org/wiki/Software/pkg-config>`_ for "
 "detecting libraries"
 
-# 266beb99f44e4e0e96189f5751cad6c1
 msgid "`sudo <http://www.gratisoft.us/sudo/>`_ for installing built groonga"
 msgstr "`sudo <http://www.gratisoft.us/sudo/>`_ for installing built groonga"
 
-# 701fd95e06da4a80ae7e8d3c3fefe877
 msgid "You must get them ready if you want to use optional libraries."
 msgstr "You must get them ready if you want to use optional libraries."
 
-# 99e3c9a1ece844bda1954f88bc36526f
 msgid "Libraries"
 msgstr "Libraries"
 
-# 3818ffe3714c455783103b95786371cc
 msgid "All libraries are optional. Here are optional libraries:"
 msgstr "All libraries are optional. Here are optional libraries:"
 
-# f339e121e9224c27b66151c06964c44f
 msgid ""
 "`MeCab <http://mecab.sourceforge.net/>`_ for tokenizing full-text search "
 "target document by morphological analysis"
@@ -540,7 +327,6 @@ msgstr ""
 "`MeCab <http://mecab.sourceforge.net/>`_ for tokenizing full-text search "
 "target document by morphological analysis"
 
-# 07e1773e89f64ae1b19b73853d68ef11
 msgid ""
 "`KyTea <http://www.phontron.com/kytea/>`_ for tokenizing full-text search "
 "target document by morphological analysis"
@@ -548,15 +334,12 @@ msgstr ""
 "`KyTea <http://www.phontron.com/kytea/>`_ for tokenizing full-text search "
 "target document by morphological analysis"
 
-# 2829a05ca49a44e3a0de8b3af2adc636
 msgid "`ZeroMQ <http://www.zeromq.org/>`_ for :doc:`/suggest`"
 msgstr "`ZeroMQ <http://www.zeromq.org/>`_ for :doc:`/suggest`"
 
-# bee922c74866423eb95006fd46a4525e
 msgid "`libevent <http://libevent.org/>`_ for :doc:`/suggest`"
 msgstr "`libevent <http://libevent.org/>`_ for :doc:`/suggest`"
 
-# cba505dfa0d44490b84f768004c00102
 msgid ""
 "`MessagePack <http://msgpack.org/>`_ for supporting MessagePack output and :"
 "doc:`/suggest`"
@@ -564,7 +347,6 @@ msgstr ""
 "`MessagePack <http://msgpack.org/>`_ for supporting MessagePack output and :"
 "doc:`/suggest`"
 
-# ccf01c48bdca47e4a00eabc81b2d044a
 msgid ""
 "`libedit <http://www.thrysoee.dk/editline/>`_ for command line editing in :"
 "doc:`/reference/executables/groonga`"
@@ -572,11 +354,9 @@ msgstr ""
 "`libedit <http://www.thrysoee.dk/editline/>`_ for command line editing in :"
 "doc:`/reference/executables/groonga`"
 
-# fcb3b02cbb5046ff81b8e03397058779
 msgid "`zlib <http://zlib.net/>`_ for compressing column value"
 msgstr "`zlib <http://zlib.net/>`_ for compressing column value"
 
-# 37a484f2252348f8b858230769d8cb6c
 msgid ""
 "`LZO <http://www.oberhumer.com/opensource/lzo/>`_ for compressing column "
 "value"
@@ -584,7 +364,6 @@ msgstr ""
 "`LZO <http://www.oberhumer.com/opensource/lzo/>`_ for compressing column "
 "value"
 
-# d437301e684c4a5e8a47c3eb13027281
 msgid ""
 "If you want to use those all or some libraries, you need to install them "
 "before installing groonga."
@@ -592,13 +371,11 @@ msgstr ""
 "If you want to use those all or some libraries, you need to install them "
 "before installing groonga."
 
-# d011cbc73f394fa3af99f30476cde52a
 msgid ""
 "Groonga uses GNU build system. So the following is the simplest build steps::"
 msgstr ""
 "Groonga uses GNU build system. So the following is the simplest build steps::"
 
-# 1e7c5c2dc83644e8a4ecbd84f787b9e7
 msgid ""
 "After the above steps, :doc:`/reference/executables/groonga` is found in ``/"
 "usr/local/bin/groonga``."
@@ -606,7 +383,6 @@ msgstr ""
 "After the above steps, :doc:`/reference/executables/groonga` is found in ``/"
 "usr/local/bin/groonga``."
 
-# a6d2bc8e98c844678621cfa3f962f4c5
 msgid ""
 "The default build will work well but you can customize groonga at "
 "``configure`` step."
@@ -614,15 +390,12 @@ msgstr ""
 "The default build will work well but you can customize groonga at "
 "``configure`` step."
 
-# 276d51ae33094174ad7ba796692aa360
 msgid "The following describes details about each step."
 msgstr "The following describes details about each step."
 
-# 340023d6797b4e039988a4d37e0588b3
 msgid "``configure``"
 msgstr "``configure``"
 
-# 5ea7da2b611342489ac7cbadb7f02688
 msgid ""
 "First, you need to run ``configure``. Here are important ``configure`` "
 "options:"
@@ -630,11 +403,9 @@ msgstr ""
 "First, you need to run ``configure``. Here are important ``configure`` "
 "options:"
 
-# 499b3692996642b4a60101d87f7be633
 msgid "``--prefix=PATH``"
 msgstr "``--prefix=PATH``"
 
-# 1f2a25fc00ae4c77854e9432f89c82bf
 msgid ""
 "Specifies the install base directory. Groonga related files are installed "
 "under ``${PATH}/`` directory."
@@ -642,7 +413,6 @@ msgstr ""
 "Specifies the install base directory. Groonga related files are installed "
 "under ``${PATH}/`` directory."
 
-# 9ccaa975959f4a1f9ca5c558c8ec173d
 msgid ""
 "The default is ``/usr/local``. In this case, :doc:`/reference/executables/"
 "groonga` is installed into ``/usr/local/bin/groonga``."
@@ -650,7 +420,6 @@ msgstr ""
 "The default is ``/usr/local``. In this case, :doc:`/reference/executables/"
 "groonga` is installed into ``/usr/local/bin/groonga``."
 
-# 1094f6f30d1c4db680d6a39e6887d5cf
 msgid ""
 "Here is an example that installs groonga into ``~/local`` for an user use "
 "instead of system wide use::"
@@ -658,11 +427,9 @@ msgstr ""
 "Here is an example that installs groonga into ``~/local`` for an user use "
 "instead of system wide use::"
 
-# eb338ffe309a45ba8797b24fa52300ae
 msgid "``--localstatedir=PATH``"
 msgstr "``--localstatedir=PATH``"
 
-# 43fdca86e4144246b4e71a06405240a7
 msgid ""
 "Specifies the base directory to place modifiable file such as log file, PID "
 "file and database files. For example, log file is placed at ``${PATH}/log/"
@@ -672,21 +439,17 @@ msgstr ""
 "file and database files. For example, log file is placed at ``${PATH}/log/"
 "groonga.log``."
 
-# 5249986a91cd4e17a9f04dde788d7749
 msgid "The default is ``/usr/local/var``."
 msgstr "The default is ``/usr/local/var``."
 
-# 9a291662934b498dab92493f22235c71
 msgid ""
 "Here is an example that system wide ``/var`` is used for modifiable files::"
 msgstr ""
 "Here is an example that system wide ``/var`` is used for modifiable files::"
 
-# c1cd38ab5c694e5eba2838deb32c2522
 msgid "``--with-log-path=PATH``"
 msgstr "``--with-log-path=PATH``"
 
-# 3d44f00679254e90bd318231c70b4a87
 msgid ""
 "Specifies the default log file path. You can override the default log path "
 "is :doc:`/reference/executables/groonga` command's ``--log-path`` command "
@@ -694,7 +457,6 @@ msgid ""
 "convenient."
 msgstr ""
 
-# fa985d26b880471f8295cea11121cdaf
 msgid ""
 "The default is ``/usr/local/var/log/groonga.log``. The ``/usr/local/var`` "
 "part is changed by ``--localestatedir`` option."
@@ -702,7 +464,6 @@ msgstr ""
 "The default is ``/usr/local/var/log/groonga.log``. The ``/usr/local/var`` "
 "part is changed by ``--localestatedir`` option."
 
-# a2018ca524904602bcba7020a87dff14
 msgid ""
 "Here is an example that log file is placed into shared NFS directory ``/nfs/"
 "log/groonga.log``::"
@@ -710,11 +471,9 @@ msgstr ""
 "Here is an example that log file is placed into shared NFS directory ``/nfs/"
 "log/groonga.log``::"
 
-# ef58333a84c4421f9d30fb621e1aa4aa
 msgid "``--with-default-encoding=ENCODING``"
 msgstr "``--with-default-encoding=ENCODING``"
 
-# baa9624ea3cb4bb0b074a10cd33c4831
 msgid ""
 "Specifies the default encoding. Available encodings are ``euc_jp``, "
 "``sjis``, ``utf8``, ``latin1``, ``koi8r`` and ``none``."
@@ -722,19 +481,15 @@ msgstr ""
 "Specifies the default encoding. Available encodings are ``euc_jp``, "
 "``sjis``, ``utf8``, ``latin1``, ``koi8r`` and ``none``."
 
-# deb142460782412cae9f388d881023eb
 msgid "The default is ``utf-8``."
 msgstr "The default is ``utf-8``."
 
-# a15bda4cff264eec8553b027a3266113
 msgid "Here is an example that Shift_JIS is used as the default encoding::"
 msgstr "Here is an example that Shift_JIS is used as the default encoding::"
 
-# 71836082040a4e4590a806021c3233c9
 msgid "``--with-match-escalation-threshold=NUMBER``"
 msgstr "``--with-match-escalation-threshold=NUMBER``"
 
-# f9c2544165fc43ddb7b6db7aa96c5be7
 msgid ""
 "Specifies the default match escalation threshold. See :ref:`match-escalation-"
 "threshold` about match escalation threshold. -1 means that match operation "
@@ -744,56 +499,42 @@ msgstr ""
 "threshold` about match escalation threshold. -1 means that match operation "
 "never escalate."
 
-# 855618eef7ac48c0ae85813ac2734e4e
 msgid "The default is 0."
 msgstr "The default is 0."
 
-# e797f18ad8604abca16d0494321b6d25
 msgid "Here is an example that match escalation isn't used by default::"
 msgstr "Here is an example that match escalation isn't used by default::"
 
-# 7c1d61e78b48479abe7385112b05f078
 msgid "``--with-zlib``"
 msgstr "``--with-zlib``"
 
-# a168896021ee407abd805a2a573473ea
 msgid "Enables column value compression by zlib."
 msgstr "Enables column value compression by zlib."
 
-# f78aa244de6c4621bffd189d809dfb95
-# f78aa244de6c4621bffd189d809dfb95
 msgid "The default is disabled."
 msgstr "The default is disabled."
 
-# 484e0f13f9564a8d9e3631d3800fdf48
 msgid "Here is an example that enables column value compression by zlib::"
 msgstr "Here is an example that enables column value compression by zlib::"
 
-# 669ed7b800b6491db45aa8e7e05a14f8
-# d9e9a26038924db8b56a4cc6c617edef
 msgid ""
 "The disabled reason is that memory leak occurs when it refers column value. "
 "This is already known issue as `GitHub#6 <https://github.com/groonga/groonga/"
 "issues/6>`_. This issue is not nothing to do with updating column value."
 msgstr ""
 
-# 702a4bec259e46de8a614240a3e12a8d
 msgid "``--with-lzo``"
 msgstr "``--with-lzo``"
 
-# dedc6f6d9c3c4f8ebb12ca1a3c6e7307
 msgid "Enables column value compression by LZO."
 msgstr "Enables column value compression by LZO."
 
-# 4dab26870f6b49b293fbea6f6113d696
 msgid "Here is an example that enables column value compression by LZO::"
 msgstr "Here is an example that enables column value compression by LZO::"
 
-# d27846de25f64371b4da256393477c6d
 msgid "``--with-message-pack=MESSAGE_PACK_INSTALL_PREFIX``"
 msgstr "``--with-message-pack=MESSAGE_PACK_INSTALL_PREFIX``"
 
-# f7d2b806844f4608a706d5263554dc30
 msgid ""
 "Specifies where MessagePack is installed. If MessagePack isn't installed "
 "with ``--prefix=/usr``, you need to specify this option with path that you "
@@ -803,7 +544,6 @@ msgstr ""
 "with ``--prefix=/usr``, you need to specify this option with path that you "
 "use for building MessagePack."
 
-# a7651cab195d4fc3bafad4b707dcb781
 msgid ""
 "If you installed MessagePack with ``--prefix=$HOME/local`` option, you "
 "sholud specify ``--with-message-pack=$HOME/local`` to groonga's "
@@ -813,11 +553,9 @@ msgstr ""
 "sholud specify ``--with-message-pack=$HOME/local`` to groonga's "
 "``configure``."
 
-# 965d4ff5ac6342a6a17269f238cc12e6
 msgid "The default is ``/usr``."
 msgstr "The default is ``/usr``."
 
-# 7db3fa8ae9774dbcadf2a3a4dc490b12
 msgid ""
 "Here is an example that uses MessagePack built with ``--prefix=$HOME/local`` "
 "option::"
@@ -825,11 +563,9 @@ msgstr ""
 "Here is an example that uses MessagePack built with ``--prefix=$HOME/local`` "
 "option::"
 
-# 79db055dd5ab49bf863205807add6f78
 msgid "``--with-munin-plugins``"
 msgstr "``--with-munin-plugins``"
 
-# 4e4369e6960c40de885a6e8ec8434963
 msgid ""
 "Installs Munin plugins for groonga. They are installed into ``${PREFIX}/"
 "share/groonga/munin/plugins/``."
@@ -837,19 +573,15 @@ msgstr ""
 "Installs Munin plugins for groonga. They are installed into ``${PREFIX}/"
 "share/groonga/munin/plugins/``."
 
-# cee7fdaca2f74c0eb01c7e54a4a25eaf
 msgid "Those plugins are not installed by default."
 msgstr "Those plugins are not installed by default."
 
-# bb863636e38a4db5a46f9c2bdde41d75
 msgid "Here is an example that installs Munin plugins for groonga::"
 msgstr "Here is an example that installs Munin plugins for groonga::"
 
-# c5c4c455c0d4407e86f18b5ea6abca50
 msgid "``--with-package-platform=PLATFORM``"
 msgstr "``--with-package-platform=PLATFORM``"
 
-# 2a1ef94a44e645169070e0d6627b5583
 msgid ""
 "Installs platform specific system management files such as init script. "
 "Available platforms are ``redhat`` and ``fedora``. ``redhat`` is for Red Hat "
@@ -859,33 +591,26 @@ msgstr ""
 "Available platforms are ``redhat`` and ``fedora``. ``redhat`` is for Red Hat "
 "and Red Hat clone distributions such as CentOS. ``fedora`` is for Fedora."
 
-# e2d8a371d3e047299c2ea6a36ce97d99
 msgid "Those system management files are not installed by default."
 msgstr "Those system management files are not installed by default."
 
-# db698039aa0f423f8f26c839e1fcf7ac
 msgid ""
 "Here is an example that installs CentOS specific system management files::"
 msgstr ""
 "Here is an example that installs CentOS specific system management files::"
 
-# e8c7eba377514721a55f87604caec24d
 msgid "``--help``"
 msgstr "``--help``"
 
-# 4b427295c97b4b6fb04cf4855d255b85
 msgid "Shows all ``configure`` options."
 msgstr "Shows all ``configure`` options."
 
-# 89671237a9c34d928bd59092edc23c15
 msgid "``make``"
 msgstr "``make``"
 
-# 4a7636a3e36b448c9aa9194bc8cc65eb
 msgid "``configure`` is succeeded, you can build groonga by ``make``::"
 msgstr "``configure`` is succeeded, you can build groonga by ``make``::"
 
-# 2a1b9a96dc5f4b52adcf4d4d6532aec5
 msgid ""
 "If you have multi cores CPU, you can make faster by using ``-j`` option. If "
 "you have 4 cores CPU, it's good for using ``-j4`` option::"
@@ -893,7 +618,6 @@ msgstr ""
 "If you have multi cores CPU, you can make faster by using ``-j`` option. If "
 "you have 4 cores CPU, it's good for using ``-j4`` option::"
 
-# 5b5231ae3c754f0fa5cd77ac437c59f5
 msgid ""
 "If you get some errors by ``make``, please report them to us: :doc:`/"
 "contribution/report`"
@@ -901,15 +625,12 @@ msgstr ""
 "If you get some errors by ``make``, please report them to us: :doc:`/"
 "contribution/report`"
 
-# e14b4ffbbaf64092826e4c766262606c
 msgid "``make install``"
 msgstr "``make install``"
 
-# 568a8858183f4cb5b6c48627fae3f139
 msgid "Now, you can install built groonga!::"
 msgstr "Now, you can install built groonga!::"
 
-# 0cbaa9cf4fbd4d5896df9616a3eebff4
 msgid ""
 "If you have write permission for ``${PREFIX}``, you don't need to use "
 "``sudo``. e.g. ``--prefix=$HOME/local`` case. In this case, use ``make "
@@ -919,65 +640,37 @@ msgstr ""
 "``sudo``. e.g. ``--prefix=$HOME/local`` case. In this case, use ``make "
 "install``::"
 
-# 62f3d446d403403092b4d0e62b3fbde9
-# 3e4765adefb94b42a95c2f0216576225
-# 2d13bf4cd5894638afa1320f90111443
-# 83b8a501220a41f7bb6c53c08ec82902
 msgid ""
 "The package 'groonga' is the mininum set of fulltext search engine. If you "
 "want to use groonga for server use, you can install additional preconfigured "
 "packages."
 msgstr ""
 
-# e430272bbc10437ea2f8178b79a45e26
-# de1423a8f60045cdbdce252c54130d43
-# bb9fc8553848427a9db8bc0b866647c2
-# c1c11c581d304317839494861dea3f5e
 msgid "There are three packages for server use."
 msgstr ""
 
-# 84c58a64ea604835a05f81307bf64c93
-# e583d072a6a94127bfc67a348d643fca
-# 225e11c6dc524e979acab4231ab0adf1
-# 8169f81f28cb4055a3cd1434ba1614e5
 msgid "groonga-server-http (simple HTTP protocol based server package)"
 msgstr ""
 
-# 4a6cbb8522204b18a2b80cf67e33708e
-# 3a6a14cdbdbf4e909c2185687e2bba5f
-# 8efe356ea29f4c3d953c47a68b4586c3
-# 44ae46e2ea154b68ba8776c221381ffc
 msgid "groonga-httpd (nginx and HTTP protocol based server package)"
 msgstr ""
 
-# f281f7c236e44a52a0cfd4f0f7c37cbb
-# 74ae5ed4e86143bebf13e0cf73a0bb4a
-# ae5460562f0b467fb237d2b8e239ac78
-# 7efafab5ce7c4499bea1c81d7427e64d
 msgid "groonga-server-gqtp (GQTP protocol based server package)"
 msgstr ""
 
-# e14d701124dc43429b967cfe434e1fb1
-# 1c609165b9814bfdb5a61f782f5a8082
-# ff19e65f61e84774ab9fa08301343dcd
-# 7132345429df47aabc2d084ed7325aab
 msgid "See :doc:`/server` section about details."
 msgstr ""
 
-# dbda77c33a9d40f7af06ff3771aa2f71
 msgid "Oracle Solaris"
 msgstr "Oracle Solaris"
 
-# c0d79686f76d40fcaed903557000d318
 msgid ""
 "This section describes how to install Groonga from source on Oracle Solaris."
 msgstr ""
 
-# 7543a9fa28d24a99b5f47779ae12ad58
 msgid "Oracle Solaris 11"
 msgstr "Oracle Solaris 11"
 
-# 4953483f9bc344a28deead548832a7e9
 msgid ""
 "Configure with ``CFLAGS=\"-m64\" CXXFLAGS=\"-m64\"`` variables. They are "
 "needed for building 64-bit version. To build 32-bit version, just remove "
@@ -987,122 +680,92 @@ msgstr ""
 "needed for building 64-bit version. To build 32-bit version, just remove "
 "those variables. (see :ref:`source-configure` about ``configure`` options)::"
 
-# 264e055558a24c339ee8a46855dc3352
 msgid "Ubuntu"
 msgstr "Ubuntu"
 
-# ea9dda557c7a4cb8bd0fa193f70e0b8b
 msgid ""
 "This section describes how to install Groonga related deb packages on "
 "Ubuntu. You can install them by ``apt``."
 msgstr ""
 
-# ae75e8b3c10e4f7ebd6bcb0f657ecf81
 msgid "12.04 LTS Precise Pangolin"
 msgstr "12.04 LTS Precise Pangolin"
 
-# 780e780752a244d9b86414533ea37067
-# 3bbc98ba9cd2405097e8accaf09a7f27
-# e77d8861ceeb42c595fca0fce523d94c
-# 92deb6d4c2f14b0aadfce6463109201f
 msgid "Enable the universe repository to install groonga::"
 msgstr "Enable the universe repository to install groonga::"
 
-# 1c37af31a79b45b4ba1ca501877b7de6
 msgid "12.10 Quantal Quetzal"
 msgstr ""
 
-# a5a9f89c3b7d4c209b01758d1d8c7d0c
 msgid "13.04 Raring Ringtail"
 msgstr ""
 
-# 181743730b5c404391285ebb4a4d06c9
 msgid "13.10 Saucy Salamander"
 msgstr ""
 
-# ec68ab7b5e5148919d89e771d7d29ac2
 msgid "Windows"
 msgstr "Windows"
 
-# 5636ea4b5ea048f19b7ec69d39cd071b
 msgid ""
 "This section describes how to install Groonga on Windows. You can install "
 "Groogna by extracting a zip package or running an installer."
 msgstr ""
 
-# cefb88cd7ba34435a9bc48cc25e33b75
 msgid "Installer"
 msgstr "Installer"
 
-# 02abb4201a534682aaeda21192e07a81
 msgid ""
 "For 32-bit environment, download x86 executable binary from packages.groonga."
 "org:"
 msgstr ""
 
-# 05eacf0057184424abc900d4c13e2206
 msgid "http://packages.groonga.org/windows/groonga/groonga-3.1.2-x86.exe"
 msgstr ""
 
-# 0d0d20c9217241329dfb1136cde7788b
-# b4c730d4c7d144f998f4a7ed18b310c4
 msgid "Then run it."
 msgstr ""
 
-# 1355942c262e4e21a4b7a3f66eb92f9c
 msgid ""
 "For 64-bit environment, download x64 executable binary from packages.goronga."
 "org:"
 msgstr ""
 
-# e0eb943238734138975bd20bb3ea6557
 msgid "http://packages.groonga.org/windows/groonga/groonga-3.1.2-x64.exe"
 msgstr ""
 
-# 1a1a6987d02246789520e645b90d254c
 msgid ""
 "Use command prompt in start menu to run :doc:`/reference/executables/"
 "groonga`."
 msgstr ""
 
-# dd06b83775b64eee9fd394f9029d5f76
 msgid "zip"
 msgstr "zip"
 
-# 6928d606478044fd9ca6368c68ba59e2
 msgid ""
 "For 32-bit environment, download x86 zip archive from packages.groonga.org:"
 msgstr ""
 
-# 67cac02c12144b759cf857abe7c1d928
 msgid "http://packages.groonga.org/windows/groonga/groonga-3.1.2-x86.zip"
 msgstr ""
 
-# fbdd2f940ec14ad9b69257b422558df3
-# 7ea5ad637237489b8f3c544dc1f60415
 msgid "Then extract it."
 msgstr ""
 
-# 42cf18e71dcf437bbb98fa14bdf6f184
 msgid ""
 "For 64-bit environment, download x64 zip archive from packages.groonga.org:"
 msgstr ""
 
-# 7d5c7a9e09fb4220833dbab5ad38af04
 msgid "http://packages.groonga.org/windows/groonga/groonga-3.1.2-x64.zip"
 msgstr ""
 
-# 1a7c217b0fe64a4189130131f8cd80b5
 msgid "You can find :doc:`/reference/executables/groonga` in ``bin`` folder."
 msgstr ""
 
-# 863d4e88ab08469bb3a821ca662493e3
 msgid ""
 "First, you need to install required tools for building Groonga on Windows. "
 "Here are required tools:"
 msgstr ""
 
-# f8c76b00b6dc4372bb2acf68d952975d
 msgid ""
 "`Microsoft Visual Studio 2010 Express <http://www.microsoft.com/japan/msdn/"
 "vstudio/express/>`_"
@@ -1110,23 +773,18 @@ msgstr ""
 "`Microsoft Visual Studio 2010 Express <http://www.microsoft.com/japan/msdn/"
 "vstudio/express/>`_"
 
-# bb30986b623d4cf6b415e7c88bb65e32
 msgid "`CMake <http://www.cmake.org/>`_"
 msgstr "`CMake <http://www.cmake.org/>`_"
 
-# f112c6b9e9ba4a78bee51b956013470d
 msgid "Download zipped source from packages.groonga.org:"
 msgstr ""
 
-# 67cac02c12144b759cf857abe7c1d928
 msgid "http://packages.groonga.org/source/groonga/groonga-3.1.2.zip"
 msgstr ""
 
-# 54b1397d01e341e8aa6d554189cee83b
 msgid "Move to the Groonga's source folder::"
 msgstr ""
 
-# d7941dc1d482408e987e000329e56801
 msgid ""
 "Configure by ``cmake``. The following commnad line is for 64-bit version. To "
 "build 32-bit version, use ``-G \"Visual Studio 10\"`` parameter instead::"
@@ -1134,7 +792,6 @@ msgstr ""
 "Configure by ``cmake``. The following commnad line is for 64-bit version. To "
 "build 32-bit version, use ``-G \"Visual Studio 10\"`` parameter instead::"
 
-# 58228c67497644cdbb85e90fb3c8d284
 msgid ""
 "After the above steps, :doc:`/reference/executables/groonga` is found in ``c:"
 "\\groonga\\bin\\groonga.exe``."
@@ -1142,14 +799,11 @@ msgstr ""
 "After the above steps, :doc:`/reference/executables/groonga` is found in ``c:"
 "\\groonga\\bin\\groonga.exe``."
 
-# 759f4dece0294edcbc12124ced54fb74
 #~ msgid "squeeze"
 #~ msgstr "squeeze"
 
-# 2293d519a57d42f195ec5cd8118dfbc3
 #~ msgid "Fedora 19"
 #~ msgstr "Fedora"
 
-# ac66f388cfe54f50ae758f8a5cbb18d6
 #~ msgid "10.04 LTS Lucid Lynx"
 #~ msgstr "10.04 LTS Lucid Lynx"

  Modified: doc/locale/en/LC_MESSAGES/limitations.po (+0 -15)
===================================================================
--- doc/locale/en/LC_MESSAGES/limitations.po    2014-01-23 18:04:29 +0900 (7b56f1d)
+++ doc/locale/en/LC_MESSAGES/limitations.po    2014-01-23 19:01:31 +0900 (4703746)
@@ -17,63 +17,48 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-# c41a2a725b7241e8a6670bcba083f2a2
 msgid "Limitations"
 msgstr "Limitations"
 
-# 0a8f1bb877974ed5b45fc3bbcb536130
 msgid "Groonga has some limitations."
 msgstr "Groonga has some limitations."
 
-# 0fd4eb74e2624ab19cab63ffe14d78f4
 msgid "Limitations of table"
 msgstr ""
 
-# af2dd3ee474744eaa6c6fdb5a9d1dc40
 msgid "A table has the following limitations."
 msgstr ""
 
-# 52672378218c4bf08259165d689f3984
 msgid "The maximum one key size: 4096Bytes"
 msgstr ""
 
-# 52672378218c4bf08259165d689f3984
 msgid "The maximum total size of keys: 4GBytes"
 msgstr ""
 
-# 118adb85d55046c2a5e90e60a4bbc640
 msgid "Keep in mind that these limitations may vary depending on conditions."
 msgstr "Keep in mind that these limitations may vary depending on conditions."
 
-# 0fd4eb74e2624ab19cab63ffe14d78f4
 msgid "Limitations of indexing"
 msgstr "Limitations of indexing"
 
-# af2dd3ee474744eaa6c6fdb5a9d1dc40
 msgid "A full-text index has the following limitations."
 msgstr "A full-text index has the following limitations."
 
-# 4180343b95ac49a5b1e0e8e14cbd8f0a
 msgid "The maximum number of records: 268,435,455 (more than 268 million)"
 msgstr ""
 
-# cfad6fa84201470795d5ef1e01539205
 msgid ""
 "The maximum number of distinct terms: 268,435,455 (more than 268 million)"
 msgstr ""
 
-# 52672378218c4bf08259165d689f3984
 msgid "The maximum index size: 256GBytes"
 msgstr "The maximum index size: 256GBytes"
 
-# 0fd4eb74e2624ab19cab63ffe14d78f4
 msgid "Limitations of column"
 msgstr ""
 
-# af2dd3ee474744eaa6c6fdb5a9d1dc40
 msgid "A column has the following limitation."
 msgstr ""
 
-# 98937bb421c043d991c73e839ddc990e
 msgid "The maximum stored data size of each column: 256GiB"
 msgstr ""

  Modified: doc/locale/en/LC_MESSAGES/news.po (+0 -992)
===================================================================
--- doc/locale/en/LC_MESSAGES/news.po    2014-01-23 18:04:29 +0900 (78ce8c8)
+++ doc/locale/en/LC_MESSAGES/news.po    2014-01-23 19:01:31 +0900 (5f8cc09)
@@ -17,196 +17,116 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-# c0ce0fb232284ad7a6ba70ef0c00d8dd
 msgid "News"
 msgstr "News"
 
-# d27fa66c86a54b51b44b70d9284562d8
 msgid "Release 3.1.1 - 2013/12/29"
 msgstr ""
 
-# b9b72ebbcc23490584ac924aaba5fdec
-# b9b72ebbcc23490584ac924aaba5fdec
-# b9b72ebbcc23490584ac924aaba5fdec
-# b9b72ebbcc23490584ac924aaba5fdec
-# b9b72ebbcc23490584ac924aaba5fdec
-# b9b72ebbcc23490584ac924aaba5fdec
-# b9b72ebbcc23490584ac924aaba5fdec
-# 7f2af5e730dc4796bc10d30e8f116556
-# ac74d6cbc36c475086d1862052cc2abb
-# 86363072d3db44b5af869f7b47a4684e
-# b14b58c48b5049369a3dd00c14844d8a
-# 76301e63fd1443a495e1ad179011e239
-# ba3bdc2b5c6f42a2bd45e8f22b655188
-# 069ece8ad2604370acd9c8a189cffa89
-# a85217752cfa4eeeb290c3eae12565cc
-# a8640aba44d945af8e4d88498ebf87b2
-# b21be323217a488495fdb0d7b7256d84
-# 6bcbbefd68c94cd3aa573ad57b31f1bb
-# 3fcdbb77654e4070b17726be181eaea1
-# e93771608cfb4c6090e80f0d6f827f0d
-# 2fca04f784ea4bafb3da8f5592d1539b
-# 57913372b7444ab88a0af5c37c5b27c6
-# 2fd7dac761b9443eb371e68936e9e68f
-# c19abfacdbf441fdb187f9af8951ad5c
-# 565f00f6457a4b6b8c3a2bd9ef2ddc10
 msgid "Improvements"
 msgstr "Improvements"
 
-# 402247c57fe445618f7479e8521bc75a
 msgid ""
 "[deb] Refined Groonga packages for Debian policy. [groonga-dev,01930] "
 "[Suggested by Hideki Yamane]"
 msgstr ""
 
-# 1a4caddda42c4821981e8f0ad0b0af24
 msgid "[deb] Dropped Debian 6.0 (squeeze) support."
 msgstr ""
 
-# 913fe100df0649dcbc8a533914dec14e
 msgid "[deb] Dropped Ubuntu 10.04 (lucid) support."
 msgstr ""
 
-# 5d6d3aa85c034c30957d23e779183754
 msgid ""
 "Supported :doc:`/reference/functions/geo_in_rectangle` in the whole world."
 msgstr ""
 
-# 0485572646a94754bea9350bf5497b57
 msgid ""
 "Supported error report when failed to casting invalid value of geo point "
 "type."
 msgstr ""
 
-# a5dc71892cc04bc0bd1e1da10f061755
 msgid ""
 "Exported some macros which is used for accessing pseudo column names. "
 "[groonga-dev,1999] [Suggested by whombx]"
 msgstr ""
 
-# fb86fdef097b4575b56742bc53d0d699
 msgid "[doc] Refined drilldown documentation. [Reported by @Yahppo]"
 msgstr ""
 
-# 24b3dc88b6f54cafa94eb1741a0ae9da
 msgid ""
 "Supported :doc:`/reference/functions/between` function which is used for "
 "filtering the column value in specific range."
 msgstr ""
 
-# 9ccc5cef7aec4aec96bfb73bb304d6cf
 msgid "[doc] Updated Travis CI environment information. [Patch by cosmo0920]"
 msgstr ""
 
-# 62730193ffc04d548ae617a0f1fa8d29
 msgid "[rpm][fedora] Dropped Fedora 19."
 msgstr ""
 
-# 3e181623b37246ff898a7c6f7aa5682b
 msgid "[rpm][fedora] Supported Fedora 20."
 msgstr ""
 
-# cc520b6ba83646668a7d6f5a0f3e4c6c
 msgid ""
 "[doc] Updated \"Groonga\" notation. [Patch by cosmo0920] [GitHub#122, #123, "
 "#124, #125, #125, #126, #127, #128, #129, #130, #131, #131, #132, #133, #134]"
 msgstr ""
 
-# 8dc446a0effc43e6be5f102554f859dd
-# 8dc446a0effc43e6be5f102554f859dd
-# 8dc446a0effc43e6be5f102554f859dd
-# 8dc446a0effc43e6be5f102554f859dd
-# 8dc446a0effc43e6be5f102554f859dd
-# 8dc446a0effc43e6be5f102554f859dd
-# b8e7de4e7cb047ddbfbd962bdf2f73a3
-# b23398749cbf4e99b235e2b7988885b0
-# 7d2133eafdd04c53bfc49d9b963c51f1
-# 6ddef771d52d47968f0c1ba2a2d36a58
-# f0c3323a1cf94e268fe746d654380910
-# b8198c7ab6b74b50bcae3923a77be1cf
-# 36a46b394b0e436cba83b8d0de173b42
-# 61324067e94447b692b9ce625da463c7
-# a489d44d169d49db8dfd20e85452dca9
 msgid "Fixes"
 msgstr "Fixes"
 
-# ec49ee53fcfa4c72b7a473065e56c298
 msgid "[munin] Fixed the wrong port number which is specified for GQTP."
 msgstr ""
 
-# a0f586b4e5b946999d91cdaf7ac3d846
 msgid ""
 "[geo_in_circle] Fixed a bug that if you specify \"LONGITUDExLATITUDE\" as "
 "the 3rd argument of :doc:`/reference/functions/geo_in_circle`, Groonga "
 "crashes."
 msgstr ""
 
-# 787a4243dd6e4b508022aab512c86c8f
-# 787a4243dd6e4b508022aab512c86c8f
-# 787a4243dd6e4b508022aab512c86c8f
-# 787a4243dd6e4b508022aab512c86c8f
-# 787a4243dd6e4b508022aab512c86c8f
-# 787a4243dd6e4b508022aab512c86c8f
-# 787a4243dd6e4b508022aab512c86c8f
-# e1ad7ce7771441e0aa95562c2e5697fc
-# 4d1e36c7b4f74f38a6aff57e2979d5d5
-# e353cb43e0a7468bb9e03a7b39ddb34e
-# cdbdc89143c144cea982080043cf0469
-# bf94700814b443ac94362b8d9af38289
-# 435a5e420dbb434e825d1c07227e94dc
 msgid "Thanks"
 msgstr "Thanks"
 
-# 7c6d1b87675348efba4a9bde7138d27b
 msgid "Hideki Yamane"
 msgstr ""
 
-# 242cbc8ed30d485095879d4066c32e27
 msgid "whombx"
 msgstr ""
 
-# 33847ce02ba540afb2939b5fbcb155ae
 msgid "@Yappo"
 msgstr ""
 
-# 18e3974bf92d4570844e323eeeb4b00c
 msgid "cosmo0920"
 msgstr ""
 
-# d27fa66c86a54b51b44b70d9284562d8
 msgid "Release 3.1.0 - 2013/11/29"
 msgstr ""
 
-# 7ca5327140464436bc2572c15e9a4650
 msgid ""
 "[experimental] Supported an option to skip updating for the same value. It "
 "is enabled by setting GRN_JA_SKIP_SAME_VALUE_PUT=yes as environment variable."
 msgstr ""
 
-# 64db210f1919456e8608625dca220369
 msgid ""
 "Improved to show tokenizer and original text in empty token warning message. "
 "It shows actual token, so it helps you to investigate token related issue."
 msgstr ""
 
-# 5222c3cf50714bdd8faa9e1a7ff97944
 msgid "Dropped broken AIO support. [#2054] [Reported by sho MINAGAWA]"
 msgstr ""
 
-# 4f21231f597d4e319abe7cc9711d3e55
 msgid ""
 "[windows] Supported build with Visual Studio Express 2008. [#1964 the 21th "
 "comment] It is aimed to promote bundling Mroonga with MariaDB in the future."
 msgstr ""
 
-# 597cac4703494c04b930ce6649feb3b5
 msgid ""
 "Fixed a bug that type of \"_value\" column is treated as Int32. It causes "
 "the case that the value of \"_value\" column is casted unexpectedly. "
 "[Reported by Genki Takiuchi]"
 msgstr ""
 
-# c06f8c36d02e4484ac671e83c61a273d
 msgid ""
 "Fixed to require GLib 2.14.0 or later for benchmark program. The benchmark "
 "program is changed to use GRegex which requires GLib 2.14.0 or later. It "
@@ -214,121 +134,97 @@ msgid ""
 "[groonga-dev,01890] [Reported by WING]"
 msgstr ""
 
-# 14040f7b19f7427abb6b3383f9c2622f
 msgid ""
 "Fixed a memory leak on updating an empty column vector with the same value."
 msgstr ""
 
-# 03a3deecd68148cfa4b08c80aee232e2
 msgid ""
 "Fixed a memory leak on updating index for column vector. It affects the case "
 "if you store the value of column which has invalid UTF-8 byte sequence."
 msgstr ""
 
-# 789d969fb179469884574e3d687f4fb3
 msgid ""
 "[plugin][windows] Fixed the issue that register command fails without 'lib/"
 "groonga/plugins'. [Reported by @yito]"
 msgstr ""
 
-# b432a264019a4dc386454ab18f6e5cf3
 msgid "sho MINAGAWA"
 msgstr ""
 
-# 046de71748724389aa5783210fa56d93
 msgid "Genki Takiuchi"
 msgstr ""
 
-# 049974895d374b958f17e85fe288635f
 msgid "WING"
 msgstr ""
 
-# efda0593c94c453f8dc1c2d5dcb2534f
 msgid "@yito"
 msgstr ""
 
-# d27fa66c86a54b51b44b70d9284562d8
 msgid "Release 3.0.9 - 2013/10/29"
 msgstr "Release 3.0.9 - 2013/10/29"
 
-# c6fe9d8461d345a29ebae070243eb871
 msgid ""
 "[doc][httpd] Added documentation about :ref:`groonga-database-auto-create` "
 "directive."
 msgstr ""
 
-# 701bc9576aff4b7492cb5acba9d91351
 msgid "[httpd] Added :ref:`groonga-cache-limit` directive."
 msgstr ""
 
-# a5dc71892cc04bc0bd1e1da10f061755
 msgid ""
 "[doc] Added description why zlib/lzo compression are disabled by default. "
 "[groonga-dev, 01845] [Suggested by Naoya Murakami]"
 msgstr ""
 
-# 6c913ebc9f0b4e1ca2f3b2a260334893
 msgid ""
 "Remove a restriction related to RLIMIT_NOFILE on HTTP server. It enables "
 "HTTP server process to handle over 4096 files."
 msgstr ""
 
-# cc520b6ba83646668a7d6f5a0f3e4c6c
 msgid ""
 "[experimental] Added some API to integrate mruby into groonga. [GitHub#109, "
 "#110, #111, #112, #113, #114, #115, #116, #117, #118] [Patch by wanabe]"
 msgstr ""
 
-# 9f5cbbc3801d4713ad7a1fb0d9dcd6ed
 msgid "[travis] Supported CMake build on Travis-CI."
 msgstr ""
 
-# b99033b17c7a4902a9a56da071050e29
 msgid "[doc] Added documentation about :doc:`reference/tuning`."
 msgstr ""
 
-# e1a33a5f7e59499f8734fcbb09e3f4c4
 msgid "[experimental] Added :doc:`ruby_load` command."
 msgstr ""
 
-# f27b9c1a1c2a4b0cb9d5ccb07e885e02
 msgid ""
 "[httpd] Supported multiple buffered body of POST request. The load command "
 "caused timeout in such a case. [GitHub #120] [Patch by Motoi Washida]"
 msgstr ""
 
-# 14c4793bd4ba4d8a825300777962b9e7
 msgid ""
 "[gqtp] Supported error message. The body is changed to return raw text "
 "insted of double quoted text. This is incompatible changes."
 msgstr ""
 
-# 85dfceb656f84d2dad99f178e7e8ccc0
 msgid "[http] Supported \"400 Bad request\" for invalid argument error."
 msgstr ""
 
-# 17ad392e0d6349e4a8d811f144dcb030
 msgid "[doc] Added examples for :doc:`/suggest/completion`"
 msgstr ""
 
-# a7b45b36ed5145fd8a5ceb0f255e636b
 msgid "Supported Ubuntu 13.10 (Saucy Salamander)."
 msgstr ""
 
-# 35834f64c0864d39856b467a9b77cfa2
 msgid ""
 "Fixed a bug that it cause SEGV by arithmetic overflow. This problem occurs "
 "when the size of indexes exceeds the size of virtual memory. [groonga-"
 "dev,01661] [Reported by Naoya Murakami]"
 msgstr ""
 
-# c85ac36c7bba4ecf98d21df08840cc27
 msgid ""
 "Fixed needless lock for creating table. This change fixes a performance "
 "regression instroduced at Groonga 3.0.5."
 msgstr ""
 
-# 5a514384ba3e4f0a987a7ac8ec4974d9
 msgid ""
 "Fixed a bug that database which has reference column can't be removed. It "
 "affects the case that indexed tables/columns and referenced tables are "
@@ -336,700 +232,563 @@ msgid ""
 "columns fails. [Reported by Eito Katagiri] [GitHub Rroonga #13]"
 msgstr ""
 
-# 3d7d44eb3e3e46bfadabe83358af32d5
 msgid ""
 "Fixed a bug that removing database which uses DAT key may remain garbage."
 msgstr ""
 
-# 14040f7b19f7427abb6b3383f9c2622f
 msgid ""
 "[http] Fixed a small memory leak which is caused by shared HTTP header "
 "buffer in the same worker thread."
 msgstr ""
 
-# 590eb15a48de45848850046a8854ce63
 msgid ""
 "[httpd] Fixed a bug that :ref:`groonga-database-auto-create` parameter isn't "
 "inherited. It means that these parameters are just ignored in non location "
 "blocks."
 msgstr ""
 
-# d15987bcfd94438f9c8f82ffc4907ef1
 msgid "Fixed a bug that status command may returns invalid cache hit rate."
 msgstr ""
 
-# f4879df3aa1241cdb4624e6c97090ee4
 msgid ""
 "Fix a bug that casting to Time may causes overflow issue. It affects the "
 "case that assignment of the Time value which indicate over 32bit value."
 msgstr ""
 
-# 71997fed4a0849d48b7632c80ee3d27e
 msgid "Naoya Murakami"
 msgstr ""
 
-# 7c6d1b87675348efba4a9bde7138d27b
 msgid "wanabe"
 msgstr ""
 
-# 0b3eaa798c9a4aefb158a8b42329bf3a
 msgid "Motoi Washida"
 msgstr ""
 
-# a8c037525ead480d9a29e9e1e3444dfd
 msgid "Eito Katagiri"
 msgstr ""
 
-# d27fa66c86a54b51b44b70d9284562d8
 msgid "Release 3.0.8 - 2013/09/29"
 msgstr ""
 
-# 319e54c7fe8b4140929708c0ecc621a7
 msgid ""
 "[admin] Improved error handling of select functionality. This change shows "
 "error message and hides loading dialog. [Patch by orangain]"
 msgstr ""
 
-# efb5f387fe9a4e1cb0c087c2ed496fce
 msgid ""
 "[admin] Improved to submit search form with the enter key. [Patch by "
 "orangain]"
 msgstr ""
 
-# e658a6baaf6b4236aeb6adc838eea51b
 msgid ""
 "[admin] Improved to show placeholder in search form. This change shows usage "
 "examples. [Patch by orangain]"
 msgstr ""
 
-# fd1e4690d7c74854b24eec3e37fa75fc
 msgid "[httpd] Supported :ref:`groonga-query-log-path` directive"
 msgstr ""
 
-# 377b7f70e79844c6b657117025dfea50
 msgid ""
 "[doc] Updated :doc:`/reference/commands/select` documentation about the "
 "number of hits in select response."
 msgstr ""
 
-# 496ed44c51704b4ab632f3146dc5756a
 msgid ""
 "Improved to ignore an empty token which is generated by continuous spaces "
 "from tokenizer. [groonga-dev,01729] [Suggested by Naoya Murakami]"
 msgstr ""
 
-# 2928ea8fcf204bef90fecad7e6611b01
 msgid ""
 "[token delimit] Improved to treat continuous spaces as a space. The "
 "tokenizer regards 2 or more spaces are valid input."
 msgstr ""
 
-# 4790eb396de646ff872c80066cb8e240
 msgid ""
 "[doc] Added note about indexes for each column vs indexes for multiple "
 "column."
 msgstr ""
 
-# a437560feb784756822f4d471c8141c5
 msgid ""
 "[doc] Added language annotation to source label. [groonga-dev,01751] "
 "[Suggested by Kazuhiro Isobe]"
 msgstr ""
 
-# 24744427afa946b1aeaab624a802e034
 msgid ""
 "Supported :ref:`cascade-delete` to referenced records. In previous version, "
 "You got an error for the operation."
 msgstr ""
 
-# 1ac9062608694e87a1f1193899664329
 msgid ""
 "[doc] Updated documentation location in README. [groonga-dev,01800] "
 "[Reported by Kazuhiro Isobe]"
 msgstr ""
 
-# b99033b17c7a4902a9a56da071050e29
 msgid "[experimental] Added :doc:`/reference/commands/ruby_eval` command."
 msgstr ""
 
-# 1ac9062608694e87a1f1193899664329
 msgid ""
 "[doc] Added note about GQTP and HTTP for server use. [groonga-dev,01810] "
 "[Reported by Kazuhiro Isobe]"
 msgstr ""
 
-# c3ca51db7a764b6d9ab7bb7528a0bd00
 msgid ""
 "[admin] Fixed a bug that add value button of COLUMN_VECTOR does not work."
 msgstr ""
 
-# 5326e68bafc14fe0b79d74095482f42a
 msgid "orangain"
 msgstr ""
 
-# 95d1393dcf764787a42096463b41b01d
-# 95d1393dcf764787a42096463b41b01d
 msgid "Kazuhiro Isobe"
 msgstr ""
 
-# d27fa66c86a54b51b44b70d9284562d8
 msgid "Release 3.0.7 - 2013/08/29"
 msgstr ""
 
-# 19936dcf93954ad4a692be46e4d218b6
 msgid ""
 "[doc] Added API documentation. [groonga-dev,01593] [GitHub#79,#80,#81,#82,"
 "#83,#84,#85,#86,#87,#88,#89,#90,#91,#92,#93,#95,#96,#97,#98,#99,#100] [Patch "
 "by whombx]"
 msgstr ""
 
-# 382ad91e4f764461824850143b66dc93
 msgid ""
 "[table_remove] Improved not to remove patricia trie table or hash table "
 "which is still referenced. This change avoids that referenced table is "
 "removed accidentally."
 msgstr ""
 
-# 496ed44c51704b4ab632f3146dc5756a
 msgid ""
 "Improved to just ignore too long token (4096 bytes or more). This change "
 "affects when it is registered. In the previous version, it is treated as an "
 "error instead of a warning. [groonga-dev,01571] [Suggested by Naoya Murakami]"
 msgstr ""
 
-# 4175b4d265184bc3a30ba7b8d941fcbb
 msgid ""
 "Improved to show actual discarded posting term in log message. [groonga-"
 "dev,01621] [Reported by Naoya Murakami]"
 msgstr ""
 
-# b7c074157fd94e7195a694626f47d938
 msgid ""
 "[httpd] Supported loading data using POST method. [GitHub#101] [Patch by "
 "Motoi Washida]"
 msgstr ""
 
-# fd1e4690d7c74854b24eec3e37fa75fc
 msgid "[httpd] Supported groonga log as ``groonga_log_path`` directive."
 msgstr ""
 
-# fd1e4690d7c74854b24eec3e37fa75fc
 msgid "[httpd] Supported groonga log level as ``groonga_log_level`` directive."
 msgstr ""
 
-# fd1e4690d7c74854b24eec3e37fa75fc
 msgid ""
 "[httpd] Supported customizing cache limit as ``groonga_cache_limit`` "
 "directive."
 msgstr ""
 
-# ad210ad397c94abb91901d38731c3cfc
 msgid ""
 "Fixed a bug that error in expression may cause stack overflow. This change "
 "avoids that groonga crashes suddenly as a result of error accumlation."
 msgstr ""
 
-# 4df9a546d99b43d38b3ce5f2cafc363d
 msgid ""
 "Fixed a crash bug that offline index construction for vector column which "
 "has orphan reference causes."
 msgstr ""
 
-# 48536d93c84241efbe2fe01ad248f1de
 msgid ""
 "Fixed a bug that groonga doesn't exit on error while daemon mode starts. For "
 "example, ``groonga -d /tmp/non-existence.db`` reproduce this bug."
 msgstr ""
 
-# 9a64ab9570604ba3b798934f6d2cce7a
 msgid ""
 "[dump] Fixed a bug that wrong table type is dumped. This bug occurs when "
 "table type is TABLE_PAT_KEY and key is reference type."
 msgstr ""
 
-# 70e921abc3b0477f96c157c10f4258bf
 msgid ""
 "Fixed a bug that the default ``--cache-limit`` value is 0. The default value "
 "is changed to '100'."
 msgstr ""
 
-# 5d6d3aa85c034c30957d23e779183754
 msgid ""
 "Fixed a memory leak when :doc:`/reference/functions/sub_filter` is used."
 msgstr ""
 
-# fb86fdef097b4575b56742bc53d0d699
 msgid "[doc] Fixed description of defrag command. [Reported by @naoina]"
 msgstr ""
 
-# e3007afb264f43d781fe6c22a5a7697c
 msgid ""
 "[doc] Fixed description about the way to contribute. [GitHub#77] [Patch by "
 "Masafumi Yokoyama]"
 msgstr ""
 
-# 8da4064475c9467dbe56aada25012c18
 msgid ""
 "[plugin] Fixed a crash bug on multiple DB open case. This bug affects the "
 "case that multiple plugin is used and the same database is opened from "
 "multiple process. [groonga-dev,01596] [Reported by Naoya Murakami]"
 msgstr ""
 
-# 7048ab3c833f45bfaf06a072f8e480d0
 msgid ""
 "Fixed a bug that nested match operation after ``AND`` operator doesn't work. "
 "The ``select ... --filter '... && nested.column @ \"keyword\"'`` query "
 "reproduces this bug. [groonga-dev,01599] [Reported by Motoi Washida]"
 msgstr ""
 
-# 5eb6c07cc08540cb8eb745d2195937bf
 msgid ""
 "[doc] Fixed a typo about documentation of special characters. [Reported by "
 "Genki Takiuchi]"
 msgstr ""
 
-# d101577524644a3f8d929a7bb9ca65c2
 msgid ""
 "Fixed a typo in error message when invalid character is given. [Reported by "
 "YOSHIDA Mitsuo]"
 msgstr ""
 
-# 727b856581c84dff8760519119df36e4
 msgid "@naoina"
 msgstr "@naoina"
 
-# 2ec761aa3bfb403c94aeb9b9d6ba176f
 msgid "Masafumi Yokoyama"
 msgstr ""
 
-# 996f09b672344cb88cdad42f9ae8f775
 msgid "YOSHIDA Mitsuo"
 msgstr ""
 
-# d27fa66c86a54b51b44b70d9284562d8
 msgid "Release 3.0.6 - 2013/07/29"
 msgstr ""
 
-# b99033b17c7a4902a9a56da071050e29
 msgid ""
 "[doc] Added documentation about parameter of :doc:`/reference/functions/"
 "sub_filter` function."
 msgstr ""
 
-# 083135242ae8425e8c922302fefddb36
 msgid "[suggest] Supported 0MQ 3.x. [GitHub#63] [Reported by Naoya Inada]"
 msgstr ""
 
-# d732c0fb1bd54f75804d11c5db8745e2
 msgid ""
 "Added availability check for NetBSD about ``pthread_{mutex,cond}"
 "attr_setpshared()`` [Reported by OBATA Akio]"
 msgstr ""
 
-# 4175b4d265184bc3a30ba7b8d941fcbb
 msgid ""
 "Supported backslash escape in query syntax. [groonga-dev,01520] [Reported by "
 "Kouhei Tanabe]"
 msgstr ""
 
-# 3e181623b37246ff898a7c6f7aa5682b
 msgid "[rpm][fedora] Supported Fedora 19."
 msgstr ""
 
-# 6aa9784d1d9a45139ef5b950dc6feebd
 msgid "[rpm][fedora] Dropped Fedora 18 support."
 msgstr ""
 
-# acb018015fa24a23bd86d58b21f49c1e
 msgid "[httpd] Updated bundled nginx version to 1.4.2."
 msgstr ""
 
-# c47052f7c6914c09a4a010684c26ef94
 msgid ""
 "Fixed a crash bug when specific internal function (``grn_obj_path()``) is "
 "called for built-in proc function such as ``select``. [Reported by Genki "
 "Takiuchi]"
 msgstr ""
 
-# 71997fed4a0849d48b7632c80ee3d27e
 msgid "Naoya Inada"
 msgstr ""
 
-# c61ac8e62cc243c6a27a239b83e5294e
-# 65f3fb86e4704c61bd118b46afe4a60b
 msgid "OBATA Akio"
 msgstr "OBATA Akio"
 
-# d6dce7bc8ab8470e817aeb6378a0ea57
 msgid "Kouhei Tanabe"
 msgstr ""
 
-# d27fa66c86a54b51b44b70d9284562d8
 msgid "Release 3.0.5 - 2013/06/29"
 msgstr ""
 
-# abf8c8deab494d288aa4f431b2981167
 msgid ""
 "[doc] Added summary about ``match_columns`` and ``query_string`` parameters "
 "in ``query()``."
 msgstr ""
 
-# e101619ab429439da2897491f479550c
 msgid "Added subrecord information to table inspection."
 msgstr ""
 
-# 575d5cddcf7748c89577085abcf761f9
 msgid ""
 "Supported single quoted string literal in ``output_columns`` expression. "
 "This means that \"XXX, '...'\" expression is supported."
 msgstr ""
 
-# d101577524644a3f8d929a7bb9ca65c2
 msgid ""
 "[doc] Added notification about root privileges and well known port when "
 "starting groonga server. [Reported by Kosuke Asami]"
 msgstr ""
 
-# a40147a4d2064813ad886d13c8b8a966
 msgid "[experimental] Added :doc:`/reference/functions/html_untag` function."
 msgstr ""
 
-# 4175b4d265184bc3a30ba7b8d941fcbb
 msgid ""
 "Fixed a crash bug of mroonga which is caused by missing lock for table "
 "creation. [Reported by Y.Kentaro]"
 msgstr ""
 
-# 0e544f49a2264fefa3fb155fb34a2cd8
 msgid "Fixed a lot of compilation warnings by clang and gcc."
 msgstr ""
 
-# 1a778b83813a41b09f4c5cd916ff55ac
 msgid ""
 "Fixed a bug that ``sub_filter(...)`` is ignored if you use \"XXX && "
 "sub_filter(...)\" expression."
 msgstr ""
 
-# 95f4bd36210644bc8888d9af8d703c8e
 msgid ""
 "Fixed a bug that wrong tag name is used in XML output. This bug affects the "
 "case if you use \"REFERENCE_VECTOR_COLUMN._key\" expression for "
 "``output_columns``. Reference column isn't contained in XML ouput."
 msgstr ""
 
-# b1f53c4b0dd24440a3945f0f329eb930
 msgid "[doc] Fixed wrong arguments in ``sub_filter()`` documentation."
 msgstr ""
 
-# efb5f387fe9a4e1cb0c087c2ed496fce
 msgid ""
 "[deb] Fixed a bug that status action returns wrong exit code when services "
 "are stopped. [GitHub#62] [Patch by @orangain]"
 msgstr ""
 
-# 95f4bd36210644bc8888d9af8d703c8e
 msgid ""
 "Fixed a bug that the value of arithmetic operation is broken. This bug "
 "affects the case if you assign calculated value to ``_score`` pseudo column "
 "for example."
 msgstr ""
 
-# d43853a8ee404b6c85d55c35bf1ef962
 msgid "Y.Kentaro"
 msgstr ""
 
-# 6ca7bfad47b446f3a6c36494e4b992eb
 msgid "Kosuke Asami"
 msgstr ""
 
-# 5326e68bafc14fe0b79d74095482f42a
 msgid "@orangain"
 msgstr ""
 
-# d27fa66c86a54b51b44b70d9284562d8
 msgid "Release 3.0.4 - 2013/05/29"
 msgstr ""
 
-# ff4ad3434f434f728344420d3b712116
 msgid ""
 "[tokenizer] Improved to show log message when normalized string is not given."
 msgstr ""
 
-# 047b432e50ed40c08543b43b04b3f229
 msgid ""
 "Supported ``_key`` as an argument of ``geo_in_circle``. [Reported by @ceekz]"
 msgstr ""
 
-# 32f11ae0d49d455d95544c344a225c50
 msgid "Supported to cast vector elements when groonga is used as a library."
 msgstr ""
 
-# a3e34e0cbdd241328dba8180151522db
 msgid "Dropped Ubuntu 11.10 (Oneiric Ocelot) support."
 msgstr ""
 
-# 6bcd881dd0484363924379e418f78432
 msgid "Supported multiple index section in ``match_columns``."
 msgstr ""
 
-# a7b45b36ed5145fd8a5ceb0f255e636b
 msgid "Supported ``tokenize`` command."
 msgstr ""
 
-# bd9584f417ab4cfd89dead29240c534b
 msgid "Supported to show system error message when ``mmap()`` is failed."
 msgstr ""
 
-# b77941c31a1b41bfadff9df391897dbd
 msgid "[doc][windows] Simplified build procedures by \"cmake --build\"."
 msgstr ""
 
-# 3c4880804e5d41b6a601891603b09b35
 msgid ""
 "Improved to restrict max execution time to prevent hanging service script. "
 "[GitHub#61] [Reported by firewood]"
 msgstr ""
 
-# 11ee54208a5a45f09cb53fb5f899e3bf
 msgid ""
 "Supported to evaluate vector as boolean. By this change, empty vector is "
 "evaluated as true."
 msgstr ""
 
-# 0d7c00aeebb5433899bd37448bb6465b
 msgid ""
 "Improved not to log too many needless log messages. Too many log messages "
 "are truncated as \"(N same messages are truncated)\"."
 msgstr ""
 
-# f271646e13c848b79099fef65306b157
 msgid ""
 "[munin][groonga_n_records] Added ``exclude_tables`` option. It supports to "
 "exclude specific tables from monitoring results."
 msgstr ""
 
-# 84c7684d3c5e47a4b0264b424f11756e
 msgid "Supported Debian 8.0 (jessie)."
 msgstr ""
 
-# dc21b6bd29de4c5caf2d743e901a0c1e
 msgid ""
 "Improved database portability by eliminating directory path of system "
 "plugins."
 msgstr ""
 
-# 5daf49b9f0dc4dd8bdb9c5a90d6ecab9
 msgid "[tokenizer] Fixed a memory leak on error."
 msgstr ""
 
-# a932df07608e44ff9db77226be6d5214
 msgid ""
 "Fixed a bug that empty string for similar search causes SEGV. [groonga-"
 "dev,01346] [Reported by Nakai Kanako]"
 msgstr ""
 
-# 3a589dcb57eb4321afab46e580411911
 msgid ""
 "Fixed a memory leak when \"VECTOR_COLUMN != xxx\", \"VECTOR_COLUMN && xxx\" "
 "expressions are used."
 msgstr ""
 
-# c3ca51db7a764b6d9ab7bb7528a0bd00
 msgid "Fixed a bug that SIGSTOP and SIGCONT stops groonga server."
 msgstr ""
 
-# 4175b4d265184bc3a30ba7b8d941fcbb
 msgid ""
 "Fixed a crash bug when normalizer returns NULL as normalized string. "
 "[Reported by Y.Kentaro]"
 msgstr ""
 
-# 4175b4d265184bc3a30ba7b8d941fcbb
 msgid ""
 "Fixed a bug that daemonize process doesn't work on OS X. [groonga-dev,01440] "
 "[Reported by Masahiro KONISHI]"
 msgstr ""
 
-# e86753ce0ae64a2395b2c1d94ce8bf85
 msgid "[deb] Fixed a bug that HTTP/GQTP process is excuted as root user."
 msgstr ""
 
-# 35a9c93f16e94d7da9888f91a6f08f2e
 msgid "@ceekz"
 msgstr ""
 
-# 71997fed4a0849d48b7632c80ee3d27e
 msgid "Nakai Kanako"
 msgstr ""
 
-# 0da8e1f77442494e87e63727ea5f1447
 msgid "firewood"
 msgstr ""
 
-# 0c1ad68ceb0940c6996e5f58e2ab2b99
 msgid "Masahiro KONISHI"
 msgstr ""
 
-# d27fa66c86a54b51b44b70d9284562d8
 msgid "Release 3.0.3 - 2013/04/29"
 msgstr ""
 
-# 36d033254aa24e82b6823ae603c1b6c4
 msgid ""
 "[suggest] Supported to learn with the value of customized weight by using "
 "``configuration.weight`` configuration."
 msgstr ""
 
-# e03c3f83d6874970b17dd2327ec1920a
 msgid ""
 "Improved performance of geo-location search. For example, "
 "``geo_in_rectangle`` is executed about 10% faster than ever."
 msgstr ""
 
-# be0e3ec4ae0e4b28b0f3aa2d339a67cb
 msgid ""
 "[rpm][centos] Added ``additional_configure_options`` parameter for building "
 "customized groonga without changing spec file."
 msgstr ""
 
-# a7b45b36ed5145fd8a5ceb0f255e636b
 msgid "Supported KyTea 0.4.5."
 msgstr ""
 
-# a2b035fd92c340399f4674720d704cc4
 msgid "Supported vector index access by \"vector[N]\" syntax."
 msgstr ""
 
-# 2ffc774fae064235a5bf0f4b6b860c16
 msgid ""
 "Added ``--default-tokenizer`` option to :doc:`/reference/executables/groonga-"
 "suggest-create-dataset` command."
 msgstr ""
 
-# 2ffc774fae064235a5bf0f4b6b860c16
 msgid ""
 "Added ``--help`` option to :doc:`/reference/executables/groonga-suggest-"
 "create-dataset` command."
 msgstr ""
 
-# a7b45b36ed5145fd8a5ceb0f255e636b
 msgid "Supported Ubuntu 13.04 Raring Ringtail."
 msgstr ""
 
-# d27fa66c86a54b51b44b70d9284562d8
 msgid "Release 3.0.2 - 2013/03/29"
 msgstr ""
 
-# d347bd7b5f474ad4a33d4de8f029129e
 msgid ""
 "Supported two or more indexes for a table key. This change affects to "
 "eliminate potential crash case when loading a new key to two or more indexed "
 "key."
 msgstr ""
 
-# 931926738a1e4737957b4b436fa8834e
 msgid ""
 "Supported binary operations such as ``X + Y``, ``X - Y``, ``X * Y``, ``X / "
 "Y``, ``X % Y``, ``X >> Y``, ``X << Y``, ``X | Y``, ``X ^ Y``, ``X & Y`` and "
 "``X >>> Y`` for Int8, UInt8, Int16, UInt16 and UInt64."
 msgstr ""
 
-# a80d4ec7010d42c78c2b074a4d84467d
 msgid "Added english documentation for ``load`` command."
 msgstr ""
 
-# fdd54afcb3a7452e9a362d9c5ac8c605
 msgid ""
 "Supported binary assign operations such as ``X += Y``, ``X -= Y``, ``X *= "
 "Y``, ``X /= Y``, ``X %= Y``, ``X <<= Y``, ``X >>= Y``, ``X >>>= Y``, ``X &= "
 "Y``, ``X |= Y`` and ``X ^= Y`` for Int8, UInt8, Int16, UInt16 and UInt64."
 msgstr ""
 
-# 74d202a867a4434c93eb6d8657377032
 msgid ""
 "Supported unary operations such as ``-X`` for Int8, UInt8, Int16, UInt16 and "
 "UInt64."
 msgstr ""
 
-# 575d5cddcf7748c89577085abcf761f9
 msgid ""
 "Supported complex string concatination in ``--output_columns``. For example, "
 "you can use a query such as ``--output_columns '\"<\" + title + \">\"'``."
 msgstr ""
 
-# ec6a72f5045e4253b87dc4c597b9faca
 msgid "Added the information of the repository of groonga to development page."
 msgstr ""
 
-# aed72f81742049bfbfeb5206cb5c3220
 msgid "Added ``sub_filter()`` function."
 msgstr ""
 
-# fc5f1c31150446cb8d56e4bc508e0e82
 msgid ""
 "Supported query expander in ``query()`` function. This change supports the "
 "query such as ``query(\"MATCH_COLUMNS\", \"QUERY\", \"QueryExpanderTSV\")``."
 msgstr ""
 
-# cfdbb50d56b14c33bbc9d07b8ce1ab01
 msgid ""
 "Renamed ``--query_expansion`` to ``--query_expander``. ``--query_expansion`` "
 "is regarded as deprecated."
 msgstr ""
 
-# 7b719faa89ae48b8a3f972ec6e94a769
 msgid ""
 "Fixed a bug that ``snippet_html(XXX), XXX`` fails with \"stack error\". This "
 "bug affects a query such as ``--output_columns 'snippet_html(title), "
 "content'``. [Groonga-talk (no subject)] [Reported by Hendro Wibowo]"
 msgstr ""
 
-# 5eb6c07cc08540cb8eb745d2195937bf
 msgid "Fixed a typo about install documentation. [Reported by hino]"
 msgstr ""
 
-# 4175b4d265184bc3a30ba7b8d941fcbb
 msgid ""
 "Fixed a bug that Travis-CI setup script fails. [groonga-dev,01248] [Reported "
 "by ongaeshi]"
 msgstr ""
 
-# bc348416dba145f9a3be8d2be37fdabf
 msgid ""
 "Fixed a memory leak. This bug affects the case which satisfy following three "
 "conditions. Column is a reference column, Column is a vector column and "
 "Reference key size is 25 byte or lager."
 msgstr ""
 
-# 728b55c9fe464bf995ea371323a44b42
 msgid ""
 "Fixed a crash bug by ``--output_columns _score.GARBAGE``. This affects the "
 "case if GARBAGE does not exist."
 msgstr ""
 
-# 4052261165c647b99a92a83665edefaa
 msgid "Hendro Wibowo"
 msgstr ""
 
-# dade686436754b4080a8405c9e3f7ffe
 msgid "hino"
 msgstr ""
 
-# 7844c123a477486caff1858d3999b015
 msgid "ongaeshi"
 msgstr ""
 
-# d27fa66c86a54b51b44b70d9284562d8
 msgid "Release 3.0.1 - 2013/02/28"
 msgstr ""
 
-# 32f11ae0d49d455d95544c344a225c50
 msgid ""
 "Supported to set Bool to reference column when loading dataset by load "
 "command."
 msgstr ""
 
-# 10c08a02af2042358dbfddb02192715c
 msgid ""
 "Supported AND operation for nested index. In this change, the expression "
 "\"COLUMN1.COLUMN2 >= 1 && COLUMN1.COLUMN2 <=3\" works. Note that the order "
@@ -1037,89 +796,70 @@ msgid ""
 "yet. It is regarded as \"COLUMN1.COLUMN2 <= 1\"."
 msgstr ""
 
-# d347bd7b5f474ad4a33d4de8f029129e
 msgid ""
 "Supported sorting not indexed entries. This change affects the case such as "
 "``--sortby geo_distance(...)`` drops not indexed entries."
 msgstr ""
 
-# f9ce270eea2747099beb6d024635f165
 msgid ""
 "Supported range search for reference column by index. This change enable you "
 "to search range by index which is TABLE_PAT_KEY or TABLE_DAT_KEY based "
 "nested index of _key."
 msgstr ""
 
-# e1a33a5f7e59499f8734fcbb09e3f4c4
 msgid "[rpm][centos] Supported MeCab 0.995."
 msgstr ""
 
-# 9c425c1b235642f0ba4dfb5152ab981b
 msgid ""
 "[doc] Added missing documentation of commands such as ``column_rename`` or "
 "``truncate``."
 msgstr ""
 
-# 5c48651edc324bb585fc653ccca38a03
 msgid ""
 "Fixed a bug that ``grn_index_cursor_next()`` returns NULL unexpectedly. It "
 "causes that invalid index entry is returned after deleting entries. This bug "
 "affects mroonga in storage mode. [groonga-dev,01192] [Reported by b senboku]"
 msgstr ""
 
-# 728b55c9fe464bf995ea371323a44b42
 msgid ""
 "Fixed a crash bug that ``geo_distance()`` sort by index. This bug occurs by "
 "wrong the number of found records."
 msgstr ""
 
-# 8a97de17b70546f59bec99627e248b44
 msgid ""
 "[httpd] Enabled default owner/group of database setting as groonga/groonga."
 msgstr ""
 
-# d987104fcf8243ab8b14c8c511bea091
 msgid "b senboku"
 msgstr ""
 
-# d27fa66c86a54b51b44b70d9284562d8
 msgid "Release 3.0.0 - 2013/02/09"
 msgstr ""
 
-# e05a53e296d7412f8ad1a370fee14cc3
 msgid "Bump version to 3.0.0!"
 msgstr ""
 
-# a393eb3ad7e14880b9533941c27e840c
 msgid ""
 "[deb] Fixed to install missing not EUC-JP, but UTF-8 encoding dictionary "
 "when ``groonga-tokenizer-mecab`` package is installed."
 msgstr ""
 
-# 70e921abc3b0477f96c157c10f4258bf
 msgid ""
 "Fixed a bug that int64 literal is truncated to uint32 value. If you use "
 "string literal for int64, this bug does not affects."
 msgstr ""
 
-# efb5f387fe9a4e1cb0c087c2ed496fce
 msgid ""
 "[rpm][centos] Fixed a bug that stopping ``groonga-server-http`` service by "
 "init script is failed. [GitHub#53] [Patch by IWAI, Masaharu]"
 msgstr ""
 
-# 5eb676e32b1240d194e07235f73f983b
-# 5eb676e32b1240d194e07235f73f983b
-# 2d14d535fa12405587b286ba1e5036a7
-# 0e04c49fb71646698a1f83098db1dafe
 msgid "IWAI, Masaharu"
 msgstr "IWAI, Masaharu"
 
-# d27fa66c86a54b51b44b70d9284562d8
 msgid "Release 2.1.2 - 2013/01/29"
 msgstr "Release 2.1.2 - 2013/01/29"
 
-# 31ea48bed2be4ee482af829ad6a68175
 msgid ""
 "Supported multiple ``query()`` in a select command. For example, you can "
 "specify the keyword which has different weight such as 'query(\"column * "
@@ -1127,139 +867,114 @@ msgid ""
 "``--filter``."
 msgstr ""
 
-# f47ceae669db43caac1ab50ad324b2ce
 msgid "Dropped experimental view feature."
 msgstr ""
 
-# 6f32479438e74f12ac851b12d020d101
 msgid ""
 "Added ``grn_logger_reopen`` API for custom logger. Note that "
 "``grn_logger_info`` API is deprecated, use ``grn_logger`` API instead."
 msgstr ""
 
-# e8fce2e489904b128f0d644db14029a9
 msgid ""
 "Added ``grn_default_logger_set_path()`` and ``grn_default_logger_get_path()"
 "`` API. Note that global ``grn_log_path`` variable was removed. Use above "
 "API."
 msgstr ""
 
-# 65efe83b90bd4fcf91da57e41158f73a
 msgid ""
 "Added ``grn_default_query_logger_set_path()`` and "
 "``grn_default_query_logger_get_path()`` API. Note that global "
 "``grn_qlog_path`` variable was removed. Use above API."
 msgstr ""
 
-# b99033b17c7a4902a9a56da071050e29
 msgid ""
 "Added translated documentation about :doc:`/reference/tables` and :doc:`/"
 "reference/normalizers`."
 msgstr ""
 
-# a393eb3ad7e14880b9533941c27e840c
 msgid ""
 "[deb][rpm] Improved to install with missing dictionary when ``groonga-"
 "tokenizer-mecab`` package is installed."
 msgstr ""
 
-# d96573539d5540288a9eb7497d73740d
 msgid ""
 "Supported :ref:`nested-index-search` with range search. For example, you can "
 "specify 'column1.column2...columnN <= \"1988-01-04 00:00:00\"' in ``--"
 "filter``."
 msgstr ""
 
-# 3e181623b37246ff898a7c6f7aa5682b
 msgid "[rpm][fedora] Supported Fedora 18."
 msgstr ""
 
-# 6aa9784d1d9a45139ef5b950dc6feebd
 msgid "[rpm][fedora] Dropped Fedora 17 support."
 msgstr ""
 
-# a80d4ec7010d42c78c2b074a4d84467d
 msgid "[doc] Added documentation for :doc:`/server/package`."
 msgstr ""
 
-# b99033b17c7a4902a9a56da071050e29
 msgid "[doc] Added documentation for :doc:`/reference/functions/query`."
 msgstr ""
 
-# 9c32328411e1443ea3673d30399f270a
 msgid ""
 "Fixed not to report an error even though MeCab tokenizer shared object isn't "
 "found. [groonga-dev,01174] [Reported by wing]"
 msgstr ""
 
-# 68d1929e7bf149b6bdfb71c4ea3778bb
 msgid ""
 "[httpd] Fixed not to fail configure on CentOS 5.4 by setting ``SED`` "
 "variable explicitly."
 msgstr ""
 
-# 02c78713f9fd455ba6e70b35e287375a
 msgid ""
 "Fixed a crash bug that not initialized vector column value is accessed by "
 "select command."
 msgstr ""
 
-# dade686436754b4080a8405c9e3f7ffe
 msgid "wing"
 msgstr ""
 
-# d27fa66c86a54b51b44b70d9284562d8
 msgid "Release 2.1.1 - 2012/12/29"
 msgstr ""
 
-# 6dc14f17087141d9943f31af19191e4a
 msgid ""
 "This is bug fix release of 2.1.0. All of 2.1.0 users should use 2.1.1 "
 "instead."
 msgstr ""
 
-# ec6a72f5045e4253b87dc4c597b9faca
 msgid ""
 "Fixed a bug that ``KEY_NORMALIZE`` information in database that is created "
 "by groonga 2.0.8 or ealier is dropped."
 msgstr ""
 
-# d27fa66c86a54b51b44b70d9284562d8
 msgid "Release 2.1.0 - 2012/12/29"
 msgstr ""
 
-# 138c44a520f24551a5b463064b64a089
 msgid ""
 "Use 2.1.1 instead of 2.1.0. 2.1.0 has a serious bug related "
 "``KEY_NORMALIZE``."
 msgstr ""
 
-# 37c34847531e441b89e5043921b3b255
 msgid ""
 "This release has backward incompatible changes against ``table_list`` and "
 "``column_list`` commands. If you use own program which depends on the output "
 "results above commands, you need to support null instead of \"null\" string."
 msgstr ""
 
-# a8c947bb93e54c8c9a1d78ad981562f7
 msgid ""
 "This release has supported ``--normalizer`` option, but there is side effect "
 "for this feature. If you open old version of groonga database at least once, "
 "you can not open its database by old version of groonga."
 msgstr ""
 
-# 060afde8c2b444a39ae54df9f3c8d762
 msgid ""
 "There is also another backward incompatible change agaist plugin API for "
 "tokenizer. The argument of ``grn_tokenizer_query_open`` API has changed. "
 "This API change affects developer of tokenizer plugin."
 msgstr ""
 
-# b99033b17c7a4902a9a56da071050e29
 msgid "[doc] Added documentation about :ref:`nested-index-search`."
 msgstr ""
 
-# a5f0494c4cf347f59b7d57dcfe33d417
 msgid ""
 "Supported the expression as :doc:`/reference/functions/snippet_html` "
 "arguments. This change enables you to use ``snippet_html(\"STRING\" + "
@@ -1267,55 +982,46 @@ msgid ""
 "\"STRING\". [Reported by Tomoatsu Shimada]"
 msgstr ""
 
-# 8aa7f4cdba6b4ad283698e85413311b9
 msgid "Supported to create own normalizer as a plugin."
 msgstr ""
 
-# 7b46d53d9baf4554a3cd756e899c24fc
 msgid ""
 "Moved ``groonga-query-log-analyzer`` as `groonga-query-log <http://rubygems."
 "org/gems/groonga-query-log>`_ RubyGems. It enables you to analyze query logs "
 "without installing groonga package."
 msgstr ""
 
-# 081dbee3c68a4564ab81aebb15f41f76
 msgid ""
 "Supported ``--normalizer`` option for :doc:`/reference/commands/"
 "table_create` command. This change enables you to specify normalizer plugin."
 msgstr ""
 
-# e15983309ae748369ff074cbe8a979b3
 msgid ""
 "Changed \"null\" string to null value as meaning for \"No Object\". This is "
 "backward incompatible change and affects output results of introspection "
 "related commands such as ``table_list`` and ``column_list``."
 msgstr ""
 
-# 2a510d9fbd9849fc86a32b019ed3a40f
 msgid ""
 "Added a flag which controls behavior about normalizer as the last argument "
 "of ``grn_tokenizer_query_open`` API."
 msgstr ""
 
-# f3b233753a5a4accb97226fa7882691e
 msgid ""
 "Supported continuous line in :ref:`command-list-with-continuous-line` list."
 msgstr ""
 
-# 00ec1e504ef64d9e806c2480ccf62761
 msgid ""
 "Improved to support not only no key table, but also hash table, patricia "
 "trie and double array trie for :ref:`nested-index-search`."
 msgstr ""
 
-# 8da6f867ca28449c8704a449144deb64
 msgid ""
 "[windows] Added missing ``O_BINARY`` flag to open file correctly. This "
 "change fixes the infinite loop problem about groonga HTTP server. "
 "[GitHub#47] [Patch by Shimomura Tatsuya]"
 msgstr ""
 
-# fbef648a68ba47c284650a4659297f55
 msgid ""
 "Fixed a bug that ``--default-match-escalation-threshold`` doesn't accept "
 "negative value to disable functionality. This fix enable you to disable "
@@ -1323,34 +1029,27 @@ msgid ""
 "details."
 msgstr ""
 
-# 3581a0b31e1c462d96146106b120ebac
 msgid ""
 "Fixed a bug that ``_score`` after \"*\" is ignored in ``--output_columns``."
 msgstr ""
 
-# 44d3144ddb8b445f9b84db634d9ece79
 msgid "Tomoatsu Shimada"
 msgstr ""
 
-# 99acd255d1624998a99c6189df6aac3f
 msgid "Shimomura Tatsuya"
 msgstr ""
 
-# d27fa66c86a54b51b44b70d9284562d8
 msgid "Release 2.0.9 - 2012/11/29"
 msgstr ""
 
-# 35ad71d9aa7540a59ba9818f9b78c6b6
 msgid ""
 "Supported to calculate the value of distance accross border in "
 "``geo_distance`` with ``rectangle`` as approximate type. [#1534]"
 msgstr ""
 
-# 315e965e243643f8a060007fc1959747
 msgid "[doc] Added the :doc:`/spec/gqtp` specification."
 msgstr ""
 
-# 560236f740fb4d89a51fe066ab9ad1e3
 msgid ""
 "Improved to ignore non critical ``getaddrinfo()`` error which groonga "
 "command emits on startup. This change does not affects nomal use of groonga "
@@ -1358,59 +1057,49 @@ msgid ""
 "version."
 msgstr ""
 
-# 2bdc27a3d21749f4afbb62bef3ca87cb
 msgid ""
 "[experimental] Added ``snippet_html()`` function which extract keyword and "
 "surrounding text. See :doc:`/reference/functions/snippet_html` about details."
 msgstr ""
 
-# 27ccedb6e36c46b0b80fcf5c66050716
 msgid ""
 "Supported to report error reason when error occured during reading table "
 "record."
 msgstr ""
 
-# 3292ee82e4b6486aa7613b53a9ec0658
 msgid ""
 "Supported to search with keyword by nested index notation ( concatinate "
 "multiple indexed column name with dot character ) if there is a relationship "
 "between multiple table with index."
 msgstr ""
 
-# ad5bb98d432f42dfa38bd2dd8ec83555
 msgid ""
 "Supported to log \"[tokenizer][mecab]\" tag when using ``TokenMecab`` "
 "tokenizer."
 msgstr ""
 
-# 18ae73adf8924fd29d8001d846f831a5
 msgid ""
 "Supported to log \"[tokenizer][kytea]\" tag when using ``TokenKyTea`` "
 "tokenizer."
 msgstr ""
 
-# 5472769458124f7e8a39ffb0795ee82f
 msgid ""
 "Improved to use separated array for command error location as output "
 "results. This change is incompatibility change, but does not affects "
 "existing program."
 msgstr ""
 
-# a80d4ec7010d42c78c2b074a4d84467d
 msgid "Added documentation for :doc:`/reference/command/output_format`."
 msgstr ""
 
-# 50d1849e9d8d4b959970ccdf9fffca54
 msgid ""
 "Added documentation for :doc:`/reference/command/return_code` of output "
 "results."
 msgstr ""
 
-# fa5e29cee6bc427d89530331204fea2a
 msgid "Supported range search by using index."
 msgstr ""
 
-# 6c4d7e3839d14856b81332cdd19e04af
 msgid ""
 "Fixed to use network byte order for status code of :ref:`gqtp-header-spec` "
 "to follow the normal network protocol convention. This change affects that "
@@ -1418,327 +1107,254 @@ msgid ""
 "not show status code properly when command failed."
 msgstr ""
 
-# 819f51edc4304cbabca41755bf2dcd7a
 msgid ""
 "Fixed a bug that UTF-8 normalization computes wrong offset which affects to "
 "return value of ``snippet_html()``. This change not to insert tag of snippet "
 "into invalid location. [#1531] [Reported by Tomoatsu Shimada]"
 msgstr ""
 
-# dd557008ae2d44b486bcdd0c62050a49
 msgid ""
 "[windows] Fixed over allocated memory access which cause segmentation fault "
 "on startup by groonga command. [#1532] [Patch by Akio Tajima]"
 msgstr ""
 
-# 4cac7cc330ac4ed9bdd3510934050403
 msgid ""
 "[windows] Fixed a bug that data stored in column couldn't be read when total "
 "amount of data stored in column exceeds 128MB. [groonga-dev,01088] [Reported "
 "by ongaeshi]"
 msgstr ""
 
-# 0272f4214a764c7787c7e45056813978
 msgid ""
 "Fixed a bug that searching with indexed column for ``Int*`` and ``UInt*`` "
 "except ``Int32/Uint32`` returns invalid results."
 msgstr ""
 
-# c8095b641030471a932be3cce5ec995e
 msgid "Fixed a bug that deleting record can be found."
 msgstr ""
 
-# 59c5005fcbbe45b489c7247c82812bab
 msgid ""
 "Fixed a bug that latin1 and koi8r normalizations could not process all "
 "string data if given string contains NULL character on the way."
 msgstr ""
 
-# 57aad13e76f7409bba24ca86092b3b57
 msgid ""
 "Fixed to return the correct default value of type when no data stored in "
 "column is referenced by ``select`` command."
 msgstr ""
 
-# 4691e642f9ff499cad2175a73245e665
 msgid ""
 "Fixed to exclude the value of vector column metadata in :ref:`offline-index-"
 "construction`. This change not to contain such a metadata as search results."
 msgstr ""
 
-# edb66b5a61404a0d8ce9b8e35099e001
 msgid "Akio Tajima"
 msgstr ""
 
-# d27fa66c86a54b51b44b70d9284562d8
 msgid "Release 2.0.8 - 2012/10/29"
 msgstr "Release 2.0.8 - 2012/10/29"
 
-# d2cb41c23d8048368cca9571a605bc32
 msgid ""
 "[rpm] Improved the description of server-http and httpd packages. [Suggested "
 "by Daiki Ueno]"
 msgstr ""
 
-# 5970a52a249a4e5eb604982122741219
 msgid "Supported custom query expansion by plugin."
 msgstr ""
 
-# e1a33a5f7e59499f8734fcbb09e3f4c4
 msgid "[experimental] Added query expander ``QueryExpanderTSV`` plugin."
 msgstr ""
 
-# 56553938fcf948f98ce2230f21cb9536
 msgid "Supported Ubuntu 12.10 Quantal Quetzal"
 msgstr ""
 
-# e1a33a5f7e59499f8734fcbb09e3f4c4
 msgid "[experimental] Supported function call in ``output_columns``."
 msgstr ""
 
-# 4148c18221d7467b8433757f9aa2ee59
 msgid ""
 "[doc][rpm] Add missing description about installing MeCab dictionary. "
 "[Reported by serihiro]"
 msgstr ""
 
-# 94c881630c5a47e3809bd37ee07dd60d
 msgid ""
 "[rpm] Fixed to remove needless \"Requires\" from spec file. [Reported by "
 "Daiki Ueno]"
 msgstr ""
 
-# 22d906aa230042eab31fa3ef3faa80ff
 msgid ""
 "[rpm] Fixed inaccurate description about license of groonga-server-gqtp."
 msgstr ""
 
-# 33d90e4652ef4d619863cedafdf53345
 msgid ""
 "[admin] Fixed record edit button shows wrong record. [GitHub#34] [Reported "
 "by firewood]"
 msgstr ""
 
-# 4583a50b99f34fd988b1a08a9d32752a
 msgid "[deb] Fixed to remove needless dependency to pcre."
 msgstr ""
 
-# 3e6f3ddb30794e1daaa5c5aa5b74d6a3
 msgid "[deb] Fixed to bundle missing table plugin."
 msgstr ""
 
-# 0ea661cd1867446b988e8a1096e5803f
-# 0ea661cd1867446b988e8a1096e5803f
-# 350aadef79e046c7a2951e4984606cb9
 msgid "Daiki Ueno"
 msgstr "Daiki Ueno"
 
-# df68e11d72d647478e6746f4adaa9ce6
 msgid "serihiro"
 msgstr ""
 
-# d27fa66c86a54b51b44b70d9284562d8
 msgid "Release 2.0.7 - 2012/09/29"
 msgstr ""
 
-# b99033b17c7a4902a9a56da071050e29
 msgid "[doc] Added more descriptions about ``--query_flags``."
 msgstr ""
 
-# b8d8dcd2d1d34779bdae034236d1a364
 msgid "[doc][httpd] Added sample configuration for gzip compression."
 msgstr ""
 
-# 2a81f4c676ce47f596c91476ec89851d
 msgid "[httpd][rpm][centos] Added groonga-httpd init script."
 msgstr ""
 
-# 7f2543c1c28f43ee8e962c052fe261e7
 msgid "[rpm] Added logrotate config files."
 msgstr ""
 
-# 2700b60803c94d95845372405c40e94d
 msgid "Supported creating database during install process."
 msgstr ""
 
-# 4ae8e5d9346547f19d9085febeb95a79
 msgid "[httpd] Supported ``groonga_database_auto_create`` directive."
 msgstr ""
 
-# 908fe10278cc4c5a9be0b3ad7b829767
 msgid "Supported score respected merge by set operation. [GitHub#31]"
 msgstr ""
 
-# a4688ff2ae464093bb400e8d1958989b
 msgid "[httpd] Supported ``load`` command by POST."
 msgstr ""
 
-# 420b0034d8244e8080c10fd09cc2bcdf
 msgid "Added error check for creating temporary result set. [GitHub#33]"
 msgstr ""
 
-# d5109a454d7f469fafd1e45a02b53cf2
 msgid "Added GQTP server package."
 msgstr ""
 
-# 1152d8a6697f4cb5902f16590ec8dabe
 msgid "Added ``max()`` function."
 msgstr ""
 
-# 1152d8a6697f4cb5902f16590ec8dabe
 msgid "Added ``min()`` function."
 msgstr ""
 
-# 7f3ddbb6b66a482da9761c6ffcde2304
 msgid "Fixed to set domain to vector elements to ``load`` command. [GitHub#30]"
 msgstr ""
 
-# 2bf12fbf09ba4f4aaf7044fa99c8f0d4
 msgid "[httpd] Fixed missing NULL initialization. [Reported by @Kiske]"
 msgstr ""
 
-# d03c3e18fc2248cbaf369fe40c4e9cfd
 msgid "[httpd] Fixed missing size about ``content_type_len``."
 msgstr ""
 
-# 0ba98704ec344772920240011f34cd7b
 msgid "[rpm][fedora] Fixed to use ``--bind-address`` in ``groonga.service``."
 msgstr ""
 
-# fbc5d0e420ca4f148c9a4d406f68e84b
 msgid "Fixed crash by invalid argument filter. [GitHub#32]"
 msgstr ""
 
-# e86753ce0ae64a2395b2c1d94ce8bf85
 msgid "Fixed a bug that Time -> Time cast breaks value."
 msgstr ""
 
-# e86753ce0ae64a2395b2c1d94ce8bf85
 msgid "Fixed a bug that Time -> Float cast breaks value."
 msgstr ""
 
-# 80d0e58d4ede4977a9a6e93be69a345b
 msgid "@Kiske"
 msgstr ""
 
-# d27fa66c86a54b51b44b70d9284562d8
 msgid "Release 2.0.6 - 2012/08/29"
 msgstr "Release 2.0.6 - 2012/08/29"
 
-# ac1830ece4a148b18a3f722fa458b439
 msgid "[deb][rpm] Added ``groonga-server-common`` meta package. [#1451]"
 msgstr ""
 
-# bd992e7a12b54f0cb8d98a1cc02a0a04
 msgid "Supported ``--query_flags`` option to ``select`` command."
 msgstr ""
 
-# 24a004e439304be2b3b0a8f2fa360175
 msgid "Supported PCRE auto detection for groonga-httpd."
 msgstr "Supported PCRE auto detection for groonga-httpd."
 
-# b99033b17c7a4902a9a56da071050e29
 msgid "[doc] Added information about Twitter and Facebook."
 msgstr "[doc] Added information about Twitter and Facebook."
 
-# caa8c29b0e9c47f88727edd038896626
 msgid "Improved to show error message from MeCab on ``mecab_new2()`` failure."
 msgstr ""
 
-# c6fe9d8461d345a29ebae070243eb871
 msgid "[doc] Added details about groonga for server use."
 msgstr "[doc] Added details about groonga for server use."
 
-# 5f8500e949a84fc982fff956666c1846
 msgid "Improved to log details about ``vm.overcommit_memory``."
 msgstr ""
 
-# 5550c139ed3a4314aca74e6a33c136a9
 msgid "Supported custom selector definition."
 msgstr ""
 
-# d88a50c9d3d44052b9beff846af092f9
 msgid "Supported ``--working-directory`` option for groonga."
 msgstr ""
 
-# 2a49b1c59d6443b68f261a2c15582d65
 msgid "Supported ``dump`` command for groonga-httpd."
 msgstr ""
 
-# 243500b08c3941769bdacb9b579fab5c
 msgid "Improved to show not found target name for ``clearlock`` command."
 msgstr ""
 
-# ed81921133aa4935aa48b7d4936ad58a
 msgid ""
 "Improved error messages about ``get`` command implemented by table plugin."
 msgstr ""
 
-# fd039149d2724618a738e46fa0899f45
 msgid ""
 "[rpm][centos] Supported MeCab 0.994. [#1455] [Suggested by IWAI, Masaharu]"
 msgstr ""
 
-# 96b24fe46f464f979113c91bc6f6b0af
 msgid "Supported changing default logger's max level before ``grn_init()``."
 msgstr ""
 
-# 4c22a92e721646148877eecfbb1768a3
 msgid ""
 "Added ``all_records()`` function which copies all record IDs to the result "
 "table."
 msgstr ""
 
-# fdef0b7673474903b6fcc4286ddb8d00
 msgid "Supported '-WORD' in ``--query`` of the select command."
 msgstr ""
 
-# f08d5e31d7dd4f2ea22b3e75a85310a6
 msgid ""
 "[doc] Fixed the execution examples. [#1428] [Reported by IWAI, Masaharu]"
 msgstr ""
 
-# 03787cb584f14039878a313c7ffe5631
 msgid ""
 "[deb] Fixed not to force groonga user/group by init script for groonga-httpd."
 msgstr ""
 
-# ceecaa7722054fd49a414720c1353382
 msgid "[rpm][fedora] Fixed missing stop parameter for groonga-httpd service."
 msgstr ""
 
-# 44934fe6052b44408344d1d196b6a193
 msgid ""
 "Fixed a bug that the last 1 byte for cache key is ignored by ``select`` "
 "command."
 msgstr ""
 
-# b6c58f0f68e2496aa0ff782813748844
 msgid ""
 "Fixed detection of the number of arguments in the complex function call."
 msgstr ""
 
-# 634b715ed07447a08f0ccdc49d35166c
 msgid "Fixed to suppress a warning by Clang."
 msgstr ""
 
-# 957a824043d24c1686f3a2e3ef00d42f
 msgid ""
 "Fixed backward incompatibility about missing ``add`` command related error "
 "by executing ``clearlock`` command."
 msgstr ""
 
-# fcd200e4857349f19752f7da283eab95
 msgid ""
 "[windows] Fixed database open failure which is related to binary data. "
 "[Reported by @yito]"
 msgstr ""
 
-# d27fa66c86a54b51b44b70d9284562d8
 msgid "Release 2.0.5 - 2012/07/29"
 msgstr "Release 2.0.5 - 2012/07/29"
 
-# 837b339a6f9d4553ad4522703f52df09
 msgid ""
 "Supported calculating the value of distance with \"rect\" or \"rectangle\" "
 "argument in southern hemisphere. [#1418] [#1419] [#1420] [#1421]"
@@ -1746,15 +1362,12 @@ msgstr ""
 "Supported calculating the value of distance with \"rect\" or \"rectangle\" "
 "argument in southern hemisphere. [#1418] [#1419] [#1420] [#1421]"
 
-# b99033b17c7a4902a9a56da071050e29
 msgid "[doc] Added some literals description in script syntax."
 msgstr "[doc] Added some literals description in script syntax."
 
-# 24a004e439304be2b3b0a8f2fa360175
 msgid "Supported other directory build for groonga-suggest and groonga-httpd."
 msgstr "Supported other directory build for groonga-suggest and groonga-httpd."
 
-# fd039149d2724618a738e46fa0899f45
 msgid ""
 "Supported \";\" as a query parameter separator. [#1406] [Suggested by IWAI, "
 "Masaharu]"
@@ -1762,11 +1375,9 @@ msgstr ""
 "Supported \";\" as a query parameter separator. [#1406] [Suggested by IWAI, "
 "Masaharu]"
 
-# b99033b17c7a4902a9a56da071050e29
 msgid "[doc] Added descriptions about script syntax."
 msgstr "[doc] Added descriptions about script syntax."
 
-# 3b2ed01e993b423d85679a1e634a690b
 msgid ""
 "Supported near search by ``'column *N \"word1 word2 ...\"'`` in script "
 "syntax. [#1423]"
@@ -1774,56 +1385,43 @@ msgstr ""
 "Supported near search by ``'column *N \"word1 word2 ...\"'`` in script "
 "syntax. [#1423]"
 
-# b99033b17c7a4902a9a56da071050e29
 msgid "[doc] Added a description about limitation of suffix search."
 msgstr "[doc] Added a description about limitation of suffix search."
 
-# 9c8f54bc0e774f7aa6f6abe6e7d40f49
 msgid "Supported near search for ``_key`` pseudo column. [GitHub#19]"
 msgstr ""
 
-# 2bf12fbf09ba4f4aaf7044fa99c8f0d4
 msgid "[doc] Added basic ECMAScript related syntaxes."
 msgstr "[doc] Added basic ECMAScript related syntaxes."
 
-# b99033b17c7a4902a9a56da071050e29
 msgid ""
 "[doc] Updated a description about :doc:`/reference/functions/geo_distance`."
 msgstr ""
 
-# 3e181623b37246ff898a7c6f7aa5682b
 msgid "[rpm][fedora] Supported Fedora 17."
 msgstr ""
 
-# 6aa9784d1d9a45139ef5b950dc6feebd
 msgid "[rpm][fedora] Dropped Fedora 16 support."
 msgstr ""
 
-# 6006bb21bbc54aa68c81560fd76e1ed1
 msgid "Supported logical not ``\"!\"`` operator. [GitHub#22]"
 msgstr ""
 
-# 022f93fb66b646b9854412af006e9abc
 msgid "[httpd] Supported per location groonga database."
 msgstr ""
 
-# 79f86c96419c4611aa199371630151fb
 msgid "Improved to return error messages while load command is processing."
 msgstr ""
 
-# 8365ca4f60a546c8863b57eebea6d490
 msgid "Improved to exit load command when an uncontinuable error occurred."
 msgstr ""
 
-# 8365ca4f60a546c8863b57eebea6d490
 msgid "Improved to stop load command for invalid --columns value."
 msgstr ""
 
-# fc01cb6763fd46618e50cd10681a2dcd
 msgid "Supported to open locked database. [GitHub#21]"
 msgstr ""
 
-# a932df07608e44ff9db77226be6d5214
 msgid ""
 "Fixed a build problem about groonga-httpd on Mac OS X. [Reported by SHIMADA "
 "Koji]"
@@ -1831,20 +1429,16 @@ msgstr ""
 "Fixed a build problem about groonga-httpd on Mac OS X. [Reported by SHIMADA "
 "Koji]"
 
-# 03787cb584f14039878a313c7ffe5631
 msgid "Fixed not to use installed groonga's header files for groonga-httpd."
 msgstr "Fixed not to use installed groonga's header files for groonga-httpd."
 
-# 68ae05761cd54454a6cd823cb1a334ad
 msgid "Fixed a build problem about groonga on Mac OS X Lion."
 msgstr "Fixed a build problem about groonga on Mac OS X Lion."
 
-# b99033b17c7a4902a9a56da071050e29
 msgid ""
 "[doc] Fixed a description of :doc:`/reference/commands/table_remove` command."
 msgstr ""
 
-# 107c11c3955443eb83ee89279fab05f1
 msgid ""
 "Fixed infinite loop problem for not implemented operator without index. "
 "[GitHub#20]"
@@ -1852,45 +1446,35 @@ msgstr ""
 "Fixed infinite loop problem for not implemented operator without index. "
 "[GitHub#20]"
 
-# 9164af12a47d4ecbb184ccfbbaa27318
 msgid "Fixed a wrong error code which causes memory leaks."
 msgstr "Fixed a wrong error code which causes memory leaks."
 
-# 0485572646a94754bea9350bf5497b57
 msgid "Fixed a wrong error code which collapse ja columns."
 msgstr "Fixed a wrong error code which collapse ja columns."
 
-# 617dd2b9e4b9467c9ca6c9db470e56d2
 msgid "[admin] Fixed to escape error message."
 msgstr "[admin] Fixed to escape error message."
 
-# 60615669eaf548a28493008dfbcfa3af
 msgid ""
 "Fixed to ignore unloadable objects which causes database incompatible. "
 "[#1429] [Reported by IWAI, Masaharu]"
 msgstr ""
 
-# f9996d3eca3e44f792e24ca1438ca418
 msgid "SHIMADA Koji"
 msgstr "SHIMADA Koji"
 
-# d27fa66c86a54b51b44b70d9284562d8
 msgid "Release 2.0.4 - 2012/06/29"
 msgstr "Release 2.0.4 - 2012/06/29"
 
-# a7b45b36ed5145fd8a5ceb0f255e636b
 msgid "Supported only KyTea 0.4.2."
 msgstr "Supported only KyTea 0.4.2."
 
-# 2b1e03e4c3d74a418bc95d447bd5d09a
 msgid "Dropped KyTea 0.4.1 or ealier support."
 msgstr "Dropped KyTea 0.4.1 or ealier support."
 
-# 022f93fb66b646b9854412af006e9abc
 msgid "[experimental] Supported nginx based groonga HTTP interface."
 msgstr "[experimental] Supported nginx based groonga HTTP interface."
 
-# 2320c2f75af646f8812e90acde49b6b7
 msgid ""
 "Supported calculating the value of distance with \"rect\" or \"rectangle\" "
 "argument in northern hemisphere. [#1386] [#1387] [#1388] [#1389]"
@@ -1898,12 +1482,10 @@ msgstr ""
 "Supported calculating the value of distance with \"rect\" or \"rectangle\" "
 "argument in northern hemisphere. [#1386] [#1387] [#1388] [#1389]"
 
-# 7613cfb8fff24c159bdbedd15b2c2684
 msgid "[doc] Added a document about :doc:`/development/travis-ci` integration."
 msgstr ""
 "[doc] Added a document about :doc:`/development/travis-ci` integration."
 
-# b872747300974749933ea1a8cc8d6cef
 msgid ""
 "[doc] Added descriptions about full text search and phrase search. See :ref:"
 "`full-text-search-condition` and :ref:`phrase-search-condition` about detail."
@@ -1911,7 +1493,6 @@ msgstr ""
 "[doc] Added descriptions about full text search and phrase search. See :ref:"
 "`full-text-search-condition` and :ref:`phrase-search-condition` about detail."
 
-# 7613cfb8fff24c159bdbedd15b2c2684
 msgid ""
 "[doc] Added descriptions about comparison conditions. See :ref:`conditional-"
 "expression` about detail."
@@ -1919,15 +1500,12 @@ msgstr ""
 "[doc] Added descriptions about comparison conditions. See :ref:`conditional-"
 "expression` about detail."
 
-# 17ad392e0d6349e4a8d811f144dcb030
 msgid "[doc] Added examples for :doc:`/reference/grn_expr/query_syntax`."
 msgstr "[doc] Added examples for :doc:`/reference/grn_expr/query_syntax`."
 
-# b99033b17c7a4902a9a56da071050e29
 msgid "[doc] Added descriptions about :ref:`combined-expression`."
 msgstr "[doc] Added descriptions about :ref:`combined-expression`."
 
-# cdc629945353491c963d746057e6fae3
 msgid ""
 "[doc] Added descriptions about :ref:`prefix-search-condition` and :ref:"
 "`suffix-search-condition`."
@@ -1935,15 +1513,12 @@ msgstr ""
 "[doc] Added descriptions about :ref:`prefix-search-condition` and :ref:"
 "`suffix-search-condition`."
 
-# fa5e29cee6bc427d89530331204fea2a
 msgid "Supported suffix search by index."
 msgstr "Supported suffix search by index."
 
-# b99033b17c7a4902a9a56da071050e29
 msgid "[doc] Added a document about :doc:`/reference/grn_expr`."
 msgstr "[doc] Added a document about :doc:`/reference/grn_expr`."
 
-# b74a370544d84fa6b93ae3084f2a4e42
 msgid ""
 "[munin] Supported JSON library installed by RubyGems [GitHub#17] [Patch by "
 "IWAI, Masaharu]"
@@ -1951,7 +1526,6 @@ msgstr ""
 "[munin] Supported JSON library installed by RubyGems [GitHub#17] [Patch by "
 "IWAI, Masaharu]"
 
-# f08d5e31d7dd4f2ea22b3e75a85310a6
 msgid ""
 "[doc] Updated the description of how to specify a value as Time in tutorial. "
 "[#1405] [Reported by IWAI, Masaharu]"
@@ -1959,7 +1533,6 @@ msgstr ""
 "[doc] Updated the description of how to specify a value as Time in tutorial. "
 "[#1405] [Reported by IWAI, Masaharu]"
 
-# fd039149d2724618a738e46fa0899f45
 msgid ""
 "[rpm] Removed groonga-tokenizer-mecab dependency from groonga package. "
 "[GitHub#18] [Patch by IWAI, Masaharu]"
@@ -1967,7 +1540,6 @@ msgstr ""
 "[rpm] Removed groonga-tokenizer-mecab dependency from groonga package. "
 "[GitHub#18] [Patch by IWAI, Masaharu]"
 
-# 6990910b6d7041ed85472bf271aae2be
 msgid ""
 "Fixed a problem that display of command prompt changes to not intended state "
 "by using batch mode on Mac OS X. [Reported by @soundkitchen]"
@@ -1975,39 +1547,30 @@ msgstr ""
 "Fixed a problem that display of command prompt changes to not intended state "
 "by using batch mode on Mac OS X. [Reported by @soundkitchen]"
 
-# d15987bcfd94438f9c8f82ffc4907ef1
 msgid "Fixed not to terminate after an invalid command in client mode. [#1305]"
 msgstr ""
 "Fixed not to terminate after an invalid command in client mode. [#1305]"
 
-# 7966d4df1ab94ee58c1686e2238a763c
 msgid ""
 "Fixed a problem that '=R' is treated as 'OR' in ``--query`` syntax. [#1393]"
 msgstr ""
 "Fixed a problem that '=R' is treated as 'OR' in ``--query`` syntax. [#1393]"
 
-# f9194922a08f48549e1d31fa43261199
-# 8396dd510179456d93d284da1caf777d
 msgid "@soundkitchen"
 msgstr "@soundkitchen"
 
-# d27fa66c86a54b51b44b70d9284562d8
 msgid "Release 2.0.3 - 2012/05/29"
 msgstr "Release 2.0.3 - 2012/05/29"
 
-# c6fe9d8461d345a29ebae070243eb871
 msgid "[doc] Added about release procedure."
 msgstr "[doc] Added about release procedure."
 
-# 7a957dc49b224c28b3cbb03966616135
 msgid "Removed restriction that the max number of opened files is 4096."
 msgstr "Removed restriction that the max number of opened files is 4096."
 
-# e1a33a5f7e59499f8734fcbb09e3f4c4
 msgid "[experimental] Added table plugin."
 msgstr "[experimental] Added table plugin."
 
-# b99033b17c7a4902a9a56da071050e29
 msgid ""
 "[doc] Added more descriptions about :doc:`/reference/commands/select` "
 "command."
@@ -2015,11 +1578,9 @@ msgstr ""
 "[doc] Added more descriptions about :doc:`/reference/commands/select` "
 "command."
 
-# fa443a7adc004700ad9b85f8f58b524b
 msgid "[doc] Made execution example copy & paste friendly."
 msgstr "[doc] Made execution example copy & paste friendly."
 
-# 056280bfbcf94365afa40c94785b26c7
 msgid ""
 "[windows] Supported build with Visual Studio 2010 Express and CMake. See :"
 "doc:`/install/windows` about details."
@@ -2027,7 +1588,6 @@ msgstr ""
 "[windows] Supported build with Visual Studio 2010 Express and CMake. See :"
 "doc:`/install/windows` about details."
 
-# 7613cfb8fff24c159bdbedd15b2c2684
 msgid ""
 "[doc][solaris] Added a document about building on Solaris. See :doc:`/"
 "install/solaris` about details."
@@ -2035,13 +1595,11 @@ msgstr ""
 "[doc][solaris] Added a document about building on Solaris. See :doc:`/"
 "install/solaris` about details."
 
-# b74a370544d84fa6b93ae3084f2a4e42
 msgid ""
 "[doc][yum] Updated epel-release package version. [Reported by IWAI, Masaharu]"
 msgstr ""
 "[doc][yum] Updated epel-release package version. [Reported by IWAI, Masaharu]"
 
-# fd039149d2724618a738e46fa0899f45
 msgid ""
 "[doc][cenos6] Disabled Repoforge for Munin for CentOS 6. [Reported by IWAI, "
 "Masaharu]"
@@ -2049,11 +1607,9 @@ msgstr ""
 "[doc][cenos6] Disabled Repoforge for Munin for CentOS 6. [Reported by IWAI, "
 "Masaharu]"
 
-# a806583b50564c9eaa98c8062831fcc9
 msgid "Started distributing source archive in zip format."
 msgstr "Started distributing source archive in zip format."
 
-# 34b42b731fb94ec79cf710762b1b21b8
 msgid ""
 "[munin] groonga_dist Munin plugin supported an object that has separated "
 "files."
@@ -2061,11 +1617,9 @@ msgstr ""
 "[munin] groonga_dist Munin plugin supported an object that has separated "
 "files."
 
-# a7b45b36ed5145fd8a5ceb0f255e636b
 msgid "Started using Travis CI."
 msgstr "Started using Travis CI."
 
-# 3003c13807e349e79b3c29ae6f6131ed
 msgid ""
 "[yum] Changed RPM package name that provides yum repository from groonga-"
 "repository to groonga-release to follow RPM package name convension such as "
@@ -2075,19 +1629,16 @@ msgstr ""
 "repository to groonga-release to follow RPM package name convension such as "
 "centos-release and fedora-release."
 
-# fd039149d2724618a738e46fa0899f45
 msgid ""
 "[doc] Fixed a command to update yum repository. [Suggested by IWAI, Masaharu]"
 msgstr ""
 "[doc] Fixed a command to update yum repository. [Suggested by IWAI, Masaharu]"
 
-# 8365ca4f60a546c8863b57eebea6d490
 msgid ""
 "[deb] Fixed a bug that log_repoen command in logrotate uses wrong protocol."
 msgstr ""
 "[deb] Fixed a bug that log_repoen command in logrotate uses wrong protocol."
 
-# b74a370544d84fa6b93ae3084f2a4e42
 msgid ""
 "Fixed broken ERROR tag in XML response. [#1363] [GitHub#13] [Patch by IWAI, "
 "Masaharu]"
@@ -2095,11 +1646,9 @@ msgstr ""
 "Fixed broken ERROR tag in XML response. [#1363] [GitHub#13] [Patch by IWAI, "
 "Masaharu]"
 
-# d15987bcfd94438f9c8f82ffc4907ef1
 msgid "Fixed a bug that grn_ctx isn't fully cleared by grn_ctx_fin()."
 msgstr "Fixed a bug that grn_ctx isn't fully cleared by grn_ctx_fin()."
 
-# d15987bcfd94438f9c8f82ffc4907ef1
 msgid ""
 "Fixed a bug that ``&!`` set operation doesn't work with grouped expression. "
 "[#1372]"
@@ -2107,17 +1656,14 @@ msgstr ""
 "Fixed a bug that ``&!`` set operation doesn't work with grouped expression. "
 "[#1372]"
 
-# d15987bcfd94438f9c8f82ffc4907ef1
 msgid ""
 "Fixed a bug that a record key registered via index source isn't normalized."
 msgstr ""
 "Fixed a bug that a record key registered via index source isn't normalized."
 
-# d27fa66c86a54b51b44b70d9284562d8
 msgid "Release 2.0.2 - 2012/04/29"
 msgstr "Release 2.0.2 - 2012/04/29"
 
-# 38b1a4cb7d3f49418c4ce854c44a72c9
 msgid ""
 "The package sign key is changed since this release. Import the new package "
 "sign key before updating groogna packages."
@@ -2125,27 +1671,21 @@ msgstr ""
 "The package sign key is changed since this release. Import the new package "
 "sign key before updating groogna packages."
 
-# b241bde0f2bb495d925b6934846eef87
 msgid "Debian/Ubuntu::"
 msgstr "Debian/Ubuntu::"
 
-# 0eab6f4218b64cf09053839a5ecd11bf
 msgid "CentOS/Fedora::"
 msgstr "CentOS/Fedora::"
 
-# aece69068c8f4b25add22cd6d0f81b6c
 msgid "[pkg-config] Removed needless MessagePack dependency."
 msgstr "[pkg-config] Removed needless MessagePack dependency."
 
-# fd039149d2724618a738e46fa0899f45
 msgid "[rpm][fedora] Supported libedit. [#1325] [Suggested by IWAI, Masaharu]"
 msgstr "[rpm][fedora] Supported libedit. [#1325] [Suggested by IWAI, Masaharu]"
 
-# 6c763f1e8fe3417ba677cc0859ec46eb
 msgid "[rpm] Supported zlib and LZO. [#1324] [Patch by IWAI, Masaharu]"
 msgstr "[rpm] Supported zlib and LZO. [#1324] [Patch by IWAI, Masaharu]"
 
-# 4a8cadfc828741769ed5f5f060b7fc56
 msgid ""
 "[groonga] Improved daemoinzed timing. Groonga server daemonizes after socket "
 "is listened. It means that groonga server is ready when groonga server is "
@@ -2155,23 +1695,18 @@ msgstr ""
 "is listened. It means that groonga server is ready when groonga server is "
 "daemonized. [#1326]"
 
-# 022f93fb66b646b9854412af006e9abc
 msgid "[admin] Supported suggest in groonga administration page."
 msgstr "[admin] Supported suggest in groonga administration page."
 
-# fb9aa8b544884aaa87f59aea8c21c9b6
 msgid "[dump] Ignored MeCab tokenizer load error."
 msgstr "[dump] Ignored MeCab tokenizer load error."
 
-# 802f65b423cd46eda8b84ad1355d310e
 msgid "Supported CMake."
 msgstr "Supported CMake."
 
-# 0485572646a94754bea9350bf5497b57
 msgid "[load] Supported error report when a column value can't be set."
 msgstr "[load] Supported error report when a column value can't be set."
 
-# 3b2ed01e993b423d85679a1e634a690b
 msgid ""
 "Supported similar search. ``select --filter \"column *S 'TEXT'\"`` is the "
 "similar search syntax. [#1342]"
@@ -2179,15 +1714,12 @@ msgstr ""
 "Supported similar search. ``select --filter \"column *S 'TEXT'\"`` is the "
 "similar search syntax. [#1342]"
 
-# e8c37a8c4c6840e4bb998c3c29ad16ab
 msgid "[apt][yum] Changed package sign key."
 msgstr "[apt][yum] Changed package sign key."
 
-# a7b45b36ed5145fd8a5ceb0f255e636b
 msgid "Supported Ubuntu Precise Pangolin."
 msgstr "Supported Ubuntu Precise Pangolin."
 
-# 6950295e487c45fc8c1156979e678b4a
 msgid ""
 "[apt] Added a new groonga-keyring deb package for the groonga's package sign "
 "key."
@@ -2195,7 +1727,6 @@ msgstr ""
 "[apt] Added a new groonga-keyring deb package for the groonga's package sign "
 "key."
 
-# f08d5e31d7dd4f2ea22b3e75a85310a6
 msgid ""
 "[deb][rpm] Used ``--bind-address`` option instead of deprecated ``--"
 "address`` option. [#1320] [Patch by IWAI, Masaharu]"
@@ -2203,7 +1734,6 @@ msgstr ""
 "[deb][rpm] Used ``--bind-address`` option instead of deprecated ``--"
 "address`` option. [#1320] [Patch by IWAI, Masaharu]"
 
-# 49e1b646f7ec4d378f57412aa0efaeb2
 msgid ""
 "[deb] Renamed groonga-server package's configuration file to /etc/default/"
 "groonga-server from /etc/default/groonga."
@@ -2211,7 +1741,6 @@ msgstr ""
 "[deb] Renamed groonga-server package's configuration file to /etc/default/"
 "groonga-server from /etc/default/groonga."
 
-# 9a0c985252f649588f81dde33e06ac59
 msgid ""
 "[rpm][fedora] Fixed upgrade condition in %post server. [GitHub#11] [Patch by "
 "Daiki Ueno]"
@@ -2219,11 +1748,9 @@ msgstr ""
 "[rpm][fedora] Fixed upgrade condition in %post server. [GitHub#11] [Patch by "
 "Daiki Ueno]"
 
-# fd039149d2724618a738e46fa0899f45
 msgid "[rpm] Removed needless change logs. [#1328] [Patch by IWAI, Masaharu]"
 msgstr "[rpm] Removed needless change logs. [#1328] [Patch by IWAI, Masaharu]"
 
-# b74a370544d84fa6b93ae3084f2a4e42
 msgid ""
 "[deb][rpm] Added missing curl dependency. [GitHub#12] [Patch by IWAI, "
 "Masaharu]"
@@ -2231,7 +1758,6 @@ msgstr ""
 "[deb][rpm] Added missing curl dependency. [GitHub#12] [Patch by IWAI, "
 "Masaharu]"
 
-# fd039149d2724618a738e46fa0899f45
 msgid ""
 "[rpm] Removed needleess ruby package dependency from groonga package. "
 "[#1330] [Suggested by IWAI, Masaharu]"
@@ -2239,13 +1765,11 @@ msgstr ""
 "[rpm] Removed needleess ruby package dependency from groonga package. "
 "[#1330] [Suggested by IWAI, Masaharu]"
 
-# 1ac9062608694e87a1f1193899664329
 msgid ""
 "[deb] Added missing default values to groonga-server's configuration file."
 msgstr ""
 "[deb] Added missing default values to groonga-server's configuration file."
 
-# 7966d4df1ab94ee58c1686e2238a763c
 msgid ""
 "Fixed a crash bug that is caused when searching with updaging very large "
 "inverted index. [#1329]"
@@ -2253,7 +1777,6 @@ msgstr ""
 "Fixed a crash bug that is caused when searching with updaging very large "
 "inverted index. [#1329]"
 
-# a932df07608e44ff9db77226be6d5214
 msgid ""
 "Fixed a bug that strings are compared as characters instead of byte string. "
 "[#1340] [Reported by Shinya Kawaji]"
@@ -2261,40 +1784,31 @@ msgstr ""
 "Fixed a bug that strings are compared as characters instead of byte string. "
 "[#1340] [Reported by Shinya Kawaji]"
 
-# fb9090645ff94907b2c63adb68a9fa4b
 msgid "Shinya Kawaji"
 msgstr "Shinya Kawaji"
 
-# d27fa66c86a54b51b44b70d9284562d8
 msgid "Release 2.0.1 - 2012/03/29"
 msgstr "Release 2.0.1 - 2012/03/29"
 
-# f8f2e06a587b4d3690d3806cb0c1a337
 msgid "Supported build in other directory. [#1298] [Reported by Kazuhiko]"
 msgstr "Supported build in other directory. [#1298] [Reported by Kazuhiko]"
 
-# d4a5c216aefd410dba73316b45a3f08e
 msgid "[solaris] Supported build on Solaris 11. [Reported by Kazuhiko]"
 msgstr "[solaris] Supported build on Solaris 11. [Reported by Kazuhiko]"
 
-# e1a33a5f7e59499f8734fcbb09e3f4c4
 msgid "[test] Supported functional test."
 msgstr "[test] Supported functional test."
 
-# eb4d71e77edc4ba0a727324326a207b0
 msgid "[test] Required ``--with-ruby19`` configure option for testing by Ruby."
 msgstr ""
 "[test] Required ``--with-ruby19`` configure option for testing by Ruby."
 
-# 68b9638c6f654909b3c9b46f2f11960b
 msgid "[dump] Supported records dump for a table that has default tokenizer."
 msgstr "[dump] Supported records dump for a table that has default tokenizer."
 
-# 0847d3861ef743438daf7a79654739ed
 msgid "[suggest] Added ``similar_search`` option."
 msgstr "[suggest] Added ``similar_search`` option."
 
-# b16e3428d5cc467aa8837d355c540eb7
 msgid ""
 "[groonga] Removed deprecated options, ``-a``, ``--address`` and ``--admin-"
 "html-path``."
@@ -2302,42 +1816,33 @@ msgstr ""
 "[groonga] Removed deprecated options, ``-a``, ``--address`` and ``--admin-"
 "html-path``."
 
-# 1e6dbf176cba4c698e0ca84b68366cec
 msgid "Added more return value checks. [GitHub#9] [Reported by Markus Elfring]"
 msgstr ""
 "Added more return value checks. [GitHub#9] [Reported by Markus Elfring]"
 
-# 5550c139ed3a4314aca74e6a33c136a9
 msgid "[dat] Supported term extract operation."
 msgstr "[dat] Supported term extract operation."
 
-# 68f8fc63decb433bb728bd4deaba59e9
 msgid "Added `logos <http://groonga.org/logo/>`_ ."
 msgstr "Added `logos <http://groonga.org/logo/>`_ ."
 
-# c6c99d1ba1e049d08ff23c94b5be1471
 msgid "Updated HTML design."
 msgstr "Updated HTML design."
 
-# 18d43bb2be6a4bfdabdeb49fab6dcd6c
 msgid "Renamed ``grntest`` to ``groonga-benchmark``."
 msgstr "Renamed ``grntest`` to ``groonga-benchmark``."
 
-# a7b45b36ed5145fd8a5ceb0f255e636b
 msgid "Supported ``autogen.sh`` on CentOS 5."
 msgstr "Supported ``autogen.sh`` on CentOS 5."
 
-# dcb693867e5248bb9975604c1c986a3a
 msgid ""
 "[linux] Added ``vm.overcommit_memory`` kernel parameter value check. [#1289]"
 msgstr ""
 "[linux] Added ``vm.overcommit_memory`` kernel parameter value check. [#1289]"
 
-# 136b688e6b454aea80628fa5999fc01c
 msgid "``grn_snip`` uses ``grn_obj`` mechanism. [#1054]"
 msgstr "``grn_snip`` uses ``grn_obj`` mechanism. [#1054]"
 
-# 9f534d6c947c416087af449128462743
 msgid ""
 "Fixed a bug that uninstall task doesn't uninstall installed Ruby scripts. "
 "[#1299] [Reported by Kazuhiko]"
@@ -2345,11 +1850,9 @@ msgstr ""
 "Fixed a bug that uninstall task doesn't uninstall installed Ruby scripts. "
 "[#1299] [Reported by Kazuhiko]"
 
-# 1ac9062608694e87a1f1193899664329
 msgid "Added a missing Gemfile. [#1302] [Reported by Kazuhiko]"
 msgstr "Added a missing Gemfile. [#1302] [Reported by Kazuhiko]"
 
-# d15987bcfd94438f9c8f82ffc4907ef1
 msgid ""
 "Fixed a bug that some indexed records aren't found. The feature is only used "
 "by mroonga. [#1303]"
@@ -2357,32 +1860,24 @@ msgstr ""
 "Fixed a bug that some indexed records aren't found. The feature is only used "
 "by mroonga. [#1303]"
 
-# 141681a3caf34e62bfc29a187d0294d9
 msgid "[groonga] Appended missing ``-id`` to ``--server-id`` option name."
 msgstr "[groonga] Appended missing ``-id`` to ``--server-id`` option name."
 
-# 8365ca4f60a546c8863b57eebea6d490
 msgid "Fixed a bug that latin1 normalization may access unexpected memory."
 msgstr "Fixed a bug that latin1 normalization may access unexpected memory."
 
-# 95d1393dcf764787a42096463b41b01d
-# 95d1393dcf764787a42096463b41b01d
 msgid "Kazuhiko"
 msgstr "Kazuhiko"
 
-# d2f9e4f080924a25a1efabd0e4eb2a1e
 msgid "Markus Elfring"
 msgstr "Markus Elfring"
 
-# d27fa66c86a54b51b44b70d9284562d8
 msgid "Release 2.0.0 - 2012/02/29"
 msgstr "Release 2.0.0 - 2012/02/29"
 
-# b35a9315cc8a4bbda77c20ada288c3cd
 msgid "[dat] Added 0 length key check."
 msgstr "[dat] Added 0 length key check."
 
-# 1ac9062608694e87a1f1193899664329
 msgid ""
 "[windows] Added missing GCC related DLLs. [groonga-dev,00686] [Reported by "
 "Suzuki]"
@@ -2390,51 +1885,39 @@ msgstr ""
 "[windows] Added missing GCC related DLLs. [groonga-dev,00686] [Reported by "
 "Suzuki]"
 
-# fa5e29cee6bc427d89530331204fea2a
 msgid "[php] Supported PHP 5.4. [Patch by Daiki Ueno]"
 msgstr "[php] Supported PHP 5.4. [Patch by Daiki Ueno]"
 
-# 959d186bcd85437892ca9e28f6e0f3a7
 msgid "Updated FSF address. [Suggested by Daiki Ueno]"
 msgstr "Updated FSF address. [Suggested by Daiki Ueno]"
 
-# 3c247b560350485e911a76e8fbee4ea2
 msgid "[fedora] Supported systemd. [Patch by Daiki Ueno]"
 msgstr "[fedora] Supported systemd. [Patch by Daiki Ueno]"
 
-# 89cd2334cb6949c38a1023cc79742808
 msgid "[rpm][debian] Changed the default protocol to HTTP from gqtp."
 msgstr "[rpm][debian] Changed the default protocol to HTTP from gqtp."
 
-# e1a33a5f7e59499f8734fcbb09e3f4c4
 msgid "[rpm][centos] Supported status command."
 msgstr "[rpm][centos] Supported status command."
 
-# 7a8d0782bef647bcb1c0826a8dc1ea00
 msgid "Removed needless ``:`` from log message."
 msgstr "Removed needless ``:`` from log message."
 
-# bc1552317bcd4ef693118743381a6bf8
 msgid "Removed deprecated grn_query. [#1247]"
 msgstr "Removed deprecated grn_query. [#1247]"
 
-# 3a63e71abead441cb3b53e54e449a4b9
 msgid "Reduced needless grn_ctx_at() calls on creating table."
 msgstr "Reduced needless grn_ctx_at() calls on creating table."
 
-# 802f65b423cd46eda8b84ad1355d310e
 msgid "[pat] Supported cache."
 msgstr "[pat] Supported cache."
 
-# f0c53a795c1440928344d9a10d629f9f
 msgid "[tokenizer] Improved tokenizer API."
 msgstr "[tokenizer] Improved tokenizer API."
 
-# 5070061eaeca48ed9c0ff90514030581
 msgid "Accepted ``@`` as a valid name character."
 msgstr "Accepted ``@`` as a valid name character."
 
-# a0102f9d71ae4a088169a23d7bab4e8a
 msgid ""
 "[tokenizer] Added a tokenizer based on `KyTea <http://www.phontron.com/kytea/"
 ">`_."
@@ -2442,11 +1925,9 @@ msgstr ""
 "[tokenizer] Added a tokenizer based on `KyTea <http://www.phontron.com/kytea/"
 ">`_."
 
-# 835cba90fdf24009a2517f2ecbd613e4
 msgid "Supported :doc:`offline index construction </reference/indexing>`."
 msgstr ""
 
-# d4a5c216aefd410dba73316b45a3f08e
 msgid ""
 "[tokenizer] Supported MeCab 0.993. [groonga-dev,00703] [Reported by Masaharu "
 "YOSHIOKA]"
@@ -2454,27 +1935,21 @@ msgstr ""
 "[tokenizer] Supported MeCab 0.993. [groonga-dev,00703] [Reported by Masaharu "
 "YOSHIOKA]"
 
-# 396e918f21a74f63817f65e89c348712
 msgid "[windows] Supported MessagePack."
 msgstr "[windows] Supported MessagePack."
 
-# c8095b641030471a932be3cce5ec995e
 msgid "[pat] Fixed a bug that the last node can't be found. [#1258]"
 msgstr "[pat] Fixed a bug that the last node can't be found. [#1258]"
 
-# 2bf12fbf09ba4f4aaf7044fa99c8f0d4
 msgid "[doc] Fixed links in Japanese page. [Reported by @naoina]"
 msgstr "[doc] Fixed links in Japanese page. [Reported by @naoina]"
 
-# fb86fdef097b4575b56742bc53d0d699
 msgid "[doc] Fixed wrong the default value. [Reported by @naoina]"
 msgstr "[doc] Fixed wrong the default value. [Reported by @naoina]"
 
-# fca1c7c6ec28428ebad20fa6873b78aa
 msgid "Fixed a typo. [Reported by Kazuhiko]"
 msgstr "Fixed a typo. [Reported by Kazuhiko]"
 
-# 8365ca4f60a546c8863b57eebea6d490
 msgid ""
 "[http] Fixed a bug that ``load`` command error isn't cleared. [Reported by "
 "@wareohji]"
@@ -2482,23 +1957,18 @@ msgstr ""
 "[http] Fixed a bug that ``load`` command error isn't cleared. [Reported by "
 "@wareohji]"
 
-# 61511cb2e2d3492284044f7e56db83f3
 msgid "Suzuki"
 msgstr "Suzuki"
 
-# 0c1ad68ceb0940c6996e5f58e2ab2b99
 msgid "Masaharu YOSHIOKA"
 msgstr "Masaharu YOSHIOKA"
 
-# 9ff7b090214a488a88aa8a6dad35a37e
 msgid "@wareohji"
 msgstr "@wareohji"
 
-# 51c30fd7fdd44cd296c20f98d9751a5b
 msgid "Release 1.3.0 - 2012/01/29"
 msgstr "Release 1.3.0 - 2012/01/29"
 
-# b3d81b5fc4a54780949bc2129a6e01fa
 msgid ""
 "Supported dynamic DB key table change by GRN_DB_KEY=pat or GRN_DB_KEY=dat "
 "environment variable value."
@@ -2506,7 +1976,6 @@ msgstr ""
 "Supported dynamic DB key table change by GRN_DB_KEY=pat or GRN_DB_KEY=dat "
 "environment variable value."
 
-# eb4d71e77edc4ba0a727324326a207b0
 msgid ""
 "Added ``--with-default-db-key`` configure option that specifies the default "
 "DB key table."
@@ -2514,21 +1983,17 @@ msgstr ""
 "Added ``--with-default-db-key`` configure option that specifies the default "
 "DB key table."
 
-# 03c9b4eb45ca4eb18b506646702f7364
 msgid ""
 "Supported \"\" value for geo point data types. It's interpreted as \"0x0\"."
 msgstr ""
 "Supported \"\" value for geo point data types. It's interpreted as \"0x0\"."
 
-# 617dd2b9e4b9467c9ca6c9db470e56d2
 msgid "Added column name to cast error message."
 msgstr "Added column name to cast error message."
 
-# 8da3580a260e48c99e7508b2f416dd39
 msgid "Inhibit file information for stdin on load error."
 msgstr "Inhibit file information for stdin on load error."
 
-# 356c550e21dc49c88d81d500a99c5d5c
 msgid ""
 "Enabled write-strings warnings and suppress those warnings. [Suggested by "
 "montywi]"
@@ -2536,27 +2001,21 @@ msgstr ""
 "Enabled write-strings warnings and suppress those warnings. [Suggested by "
 "montywi]"
 
-# d33f9d517c0443fca204048ca1bdacbc
 msgid "Marked MessagePack output format as supported. [#1215]"
 msgstr "Marked MessagePack output format as supported. [#1215]"
 
-# b7eb2eb333134fc6a6233bbb1977a8a4
 msgid "Added ``const`` to ``void *`` of ``*_set_value()``."
 msgstr "Added ``const`` to ``void *`` of ``*_set_value()``."
 
-# ad39e6f286b14338b4b3ecf3e3e11338
 msgid "Enabled warning flags on C and C++."
 msgstr "Enabled warning flags on C and C++."
 
-# a7b45b36ed5145fd8a5ceb0f255e636b
 msgid "Supported ``--with-libevent`` without value configure option."
 msgstr "Supported ``--with-libevent`` without value configure option."
 
-# f753ced5670c46889e453b43b5521633
 msgid "``grn_table_get()`` supported grn_db. [#1242]"
 msgstr "``grn_table_get()`` supported grn_db. [#1242]"
 
-# 048690a337744d0bb7e475d3cad3e6eb
 msgid ""
 "[rpm] Removed needless groogna-munin-plugins dependency from groonga-server. "
 "[#1251] [Suggested by Masaharu IWAI]"
@@ -2564,7 +2023,6 @@ msgstr ""
 "[rpm] Removed needless groogna-munin-plugins dependency from groonga-server. "
 "[#1251] [Suggested by Masaharu IWAI]"
 
-# fd039149d2724618a738e46fa0899f45
 msgid ""
 "[rpm] Removed needless groogna-doc dependency from groonga. [#1251] "
 "[Suggested by Masaharu IWAI]"
@@ -2572,24 +2030,19 @@ msgstr ""
 "[rpm] Removed needless groogna-doc dependency from groonga. [#1251] "
 "[Suggested by Masaharu IWAI]"
 
-# 5550c139ed3a4314aca74e6a33c136a9
 msgid "[dat] Supported repair by ``grn_dat_repair()``."
 msgstr "[dat] Supported repair by ``grn_dat_repair()``."
 
-# 277f8d4d815b4a1a89e8ce0c500d9535
 msgid "``grn_table_at()`` supported grn_db."
 msgstr "``grn_table_at()`` supported grn_db."
 
-# 872767d20dab4a498bdcd12ac57ef687
 msgid "[suggest] Removed unstable mark."
 msgstr "[suggest] Removed unstable mark."
 
-# ac67e2de907d4ef49dc6c440c175d1b6
 msgid "[suggest][complete] Supported normalized value search in prefix-search."
 msgstr ""
 "[suggest][complete] Supported normalized value search in prefix-search."
 
-# bd95c43b051543f0b100533666b9b6d7
 msgid ""
 "Added experimental offline index build. It's disabled by default for now. "
 "You can enable it by USE_OFFLINE_INDEXER=yes environment variable."
@@ -2597,66 +2050,42 @@ msgstr ""
 "Added experimental offline index build. It's disabled by default for now. "
 "You can enable it by USE_OFFLINE_INDEXER=yes environment variable."
 
-# d86d5132553e46aba4aaf762fec3f146
 msgid "Added internal API ``grn_obj_path_by_id()`` for mroonga."
 msgstr "Added internal API ``grn_obj_path_by_id()`` for mroonga."
 
-# 0847d3861ef743438daf7a79654739ed
 msgid "[suggest][httpd] Passed unknown parameters to groonga."
 msgstr "[suggest][httpd] Passed unknown parameters to groonga."
 
-# 31bbbc25affd4492bb84e1448ef1acef
 msgid "[output][xml] Added a newline before ``</RESULT>`` for readability."
 msgstr "[output][xml] Added a newline before ``</RESULT>`` for readability."
 
-# c6fe9d8461d345a29ebae070243eb871
 msgid "[doc][output] Added documentation about output format type."
 msgstr "[doc][output] Added documentation about output format type."
 
-# ec0c4ff1cd1e419e939303655d0f0923
 msgid "Added ``table_rename``. [#1234]"
 msgstr "Added ``table_rename``. [#1234]"
 
-# b96c3176b49e45159fc06cd671b910b2
 msgid "Added ``column_rename``. [#1234]"
 msgstr "Added ``column_rename``. [#1234]"
 
-# cd0d5ab7247b46dfaceddd138da87f33
 msgid "montywi"
 msgstr "montywi"
 
-# 93760c283a19448fb8c643ddd2d842bd
 msgid "Masaharu IWAI"
 msgstr "Masaharu IWAI"
 
-# 489e4303019747b8971a5504d0c83592
 msgid "The old releases"
 msgstr "The old releases"
 
-# 53b41bd7de95486b8d736e10e936ffed
 msgid "バージョン0.xのお知らせ"
 msgstr "バージョン0.xのお知らせ"
 
-# 5ab97cc82c5b44eb982929c5b7a3c484
 msgid "0.7.7リリース - 2010/08/25"
 msgstr "0.7.7リリース - 2010/08/25"
 
-# 17f13a4078df4ad0a59b9170ac2124b0
-# bcfad57cd271426f9e517c08746ef8d6
-# 54e34f861841484b9d12f0f31f7745d1
-# a25c45c26b0f4255838f84670b969ce3
-# 4d10ce9d2a5d4b68ae809650a1bd3d27
-# f1ec5d2538464f7aafd4759383d19f14
-# 1f6de2a1156343358b9f5ced9e501b9d
-# 1d48932f8e554d86980859d6a5a34194
-# b823e8ecb63d421481104c56e9afb319
-# 6c1b092c4d3e432d8a1c6fad0ac564aa
-# 7178a96bd70443f4a5c5e1d7a9dfa182
-# 863e60cf4d1647668946321048c83791
 msgid "改良"
 msgstr "改良"
 
-# 32a255e84ae6466f80a9b31508211349
 msgid ""
 "編集距離(レーベンシュタイン距離)を計算する :doc:`/reference/functions/"
 "edit_distance` ()関数の追加。"
@@ -2664,11 +2093,9 @@ msgstr ""
 "編集距離(レーベンシュタイン距離)を計算する :doc:`/reference/functions/"
 "edit_distance` ()関数の追加。"
 
-# 60e25b157df243ac916b0be1a4e10c42
 msgid "manを追加。"
 msgstr "manを追加。"
 
-# 72d6498c5f054319a75d0a4f2a591927
 msgid ""
 ":doc:`/reference/commands/delete` コマンドでデータの整合性が壊れる場合はエ"
 "ラー を返すようにした。"
@@ -2676,32 +2103,15 @@ msgstr ""
 ":doc:`/reference/commands/delete` コマンドでデータの整合性が壊れる場合はエ"
 "ラー を返すようにした。"
 
-# 30d839b74f114562ab65df04546f0411
 msgid "MeCabの辞書のエンコーディング検出処理を改善。"
 msgstr "MeCabの辞書のエンコーディング検出処理を改善。"
 
-# 3ad7700f79044fcf9bb3bc1cefc92c3f
 msgid "デフォルトの設定ファイルを追加。"
 msgstr "デフォルトの設定ファイルを追加。"
 
-# 27478b490f9e4ccd82e481c800654763
-# 9e6cc0bb3a05462498953c0ceeae6d89
-# c3f55f2b07a2416e8c868af7ea747b1a
-# f81dafda1f594a8fbac2e9ef73bd6049
-# 16662a233961411194834a06111dc5a8
-# 9587b363c14a4777aab3113fc998245e
-# 05dc8284620c4aaabd488086e457b67e
-# d1cef152f76049e38e5e04e81a7b0d49
-# 8831dbbf29a94490afebae9caca404be
-# 8e50a3122e3f4a6783f47e2e1d509e63
-# e571f34924f145249d91f0c8984e4251
-# 168a11208e0d405bae729e957586cae2
-# d51e4e04e2ee469295e3ebc094950d2b
-# 1e7c26208a194e70b2bc0d6a460dc2c5
 msgid "修正"
 msgstr "修正"
 
-# 4ec434afaa624ee1bc3119819787e05c
 msgid ""
 ":doc:`/reference/functions/geo_in_rectangle` ()関数が引数を「左上」と「右下」"
 "で はなく、「左下」と「右上」と扱っていた問題を修正。"
@@ -2709,93 +2119,71 @@ msgstr ""
 ":doc:`/reference/functions/geo_in_rectangle` ()関数が引数を「左上」と「右下」"
 "で はなく、「左下」と「右上」と扱っていた問題を修正。"
 
-# 45a2f5d187454efb881579791f64c9af
 msgid "前方一致検索がマッチしない問題を修正。"
 msgstr "前方一致検索がマッチしない問題を修正。"
 
-# f34a821faae44a05baed07cd20c167a2
 msgid "0.7.6リリース - 2010/08/19"
 msgstr "0.7.6リリース - 2010/08/19"
 
-# 087ca08348384f269bd940248f6fc0c9
 msgid "デーモンになるときは標準出力を閉じるようにした。"
 msgstr "デーモンになるときは標準出力を閉じるようにした。"
 
-# 29634ac56dbf41119e1c7fca59fd79e9
 msgid "PIDファイルを指定する``--pid-path``オプションを追加。"
 msgstr "PIDファイルを指定する``--pid-path``オプションを追加。"
 
-# 080f9adeadc240b589a0535ab49f5eaa
 msgid "設定ファイルを指定する``--config-path``オプションを追加。"
 msgstr "設定ファイルを指定する``--config-path``オプションを追加。"
 
-# fbc23de675d342ba9165cc1720ec79ff
 msgid "最大キャッシュ数を指定する``--cache-limit``オプションを追加。"
 msgstr "最大キャッシュ数を指定する``--cache-limit``オプションを追加。"
 
-# 50cd16ddeb1146aeab111939b8ec622a
 msgid "設定値を表示する``--show-config``オプションを追加。"
 msgstr "設定値を表示する``--show-config``オプションを追加。"
 
-# 4379616050cb4ac48856b0d6acc2384d
 msgid "指定したファイルからコマンドを読み込む``--file``オプションを追加。"
 msgstr "指定したファイルからコマンドを読み込む``--file``オプションを追加。"
 
-# 8d9e022a66d649a9897f8683e31dc52e
 msgid ""
 "groongaとMeCabの辞書のエンコーディングが同じかどうかを確 認するようにした。"
 msgstr ""
 "groongaとMeCabの辞書のエンコーディングが同じかどうかを確 認するようにした。"
 
-# bfc4c800c1904f17a8ed56a882cb5f5b
 msgid "Web管理画面:"
 msgstr "Web管理画面:"
 
-# a09cc0ceb83746d0b29eb3cf784ff1ea
 msgid "データロード機能を追加。"
 msgstr "データロード機能を追加。"
 
-# 4a1a0255cef94ec6a4e258c8802ef3ee
 msgid "uptimeの表示形式を読みやすい形式に変更。"
 msgstr "uptimeの表示形式を読みやすい形式に変更。"
 
-# 7064bfede10c4b73a95a949c93eb78bb
 msgid "Muninプラグインの追加。"
 msgstr "Muninプラグインの追加。"
 
-# 3708aa8a4255413a97db9c3f29056940
 msgid "クエリパフォーマンス計測用"
 msgstr "クエリパフォーマンス計測用"
 
-# dd22041d3bd94a83a1a266274137599d
 msgid "ディスク使用量計測用"
 msgstr "ディスク使用量計測用"
 
-# 597d30459b4d455cb61fb075f12e88a7
 msgid "libedit対応。"
 msgstr "libedit対応。"
 
-# 86fa3bca0b4c465a9777d72a69f010c3
 msgid "存在しないデータベースを指定したときのエラーメッセージを改善。"
 msgstr "存在しないデータベースを指定したときのエラーメッセージを改善。"
 
-# 7980f79c08c240ac93b96c76899ea89e
 msgid "loadコマンド:"
 msgstr "loadコマンド:"
 
-# f794e28222fb4a1788d93ff7cb7f55ef
 msgid "不正な文字を見つけた場合はログに出力。"
 msgstr "不正な文字を見つけた場合はログに出力。"
 
-# c2ce0c09c9ab46c89a90c59bc405b36f
 msgid "必要な項目がない場合はログに出力。"
 msgstr "必要な項目がない場合はログに出力。"
 
-# 371939b0fa42443e9a80b4660860393f
 msgid "true/false/nullリテラルをサポート。"
 msgstr "true/false/nullリテラルをサポート。"
 
-# a0bd75bd4e2d48328e9fd9b0776cfd80
 msgid ""
 "GeoPointの度での指定をサポート。 (例: "
 "\"35.6954581363924,139.564207350021\")"
@@ -2803,23 +2191,18 @@ msgstr ""
 "GeoPointの度での指定をサポート。 (例: "
 "\"35.6954581363924,139.564207350021\")"
 
-# 13da86c446d2483cb3b53a8602ec58da
 msgid "NO_KEYテーブルを参照しているカラム値をサポート。"
 msgstr "NO_KEYテーブルを参照しているカラム値をサポート。"
 
-# 95b13b5d35d644449c37dcf6c64b3a95
 msgid "数値のベクタをサポート。"
 msgstr "数値のベクタをサポート。"
 
-# 81fe7af0ce32484a8832dc0690d2df6e
 msgid "selectコマンド"
 msgstr "selectコマンド"
 
-# 611304d9368543c59284d665d3642394
 msgid "索引を用いた高速なGeoPointの検索機能を追加。"
 msgstr "索引を用いた高速なGeoPointの検索機能を追加。"
 
-# aaca328b432b462da660d01191006103
 msgid ""
 "索引を用いた高速なGeoPointのソート機能を追加。 (ただし複数のソートキーと一緒"
 "に使うことはできない。)"
@@ -2827,115 +2210,78 @@ msgstr ""
 "索引を用いた高速なGeoPointのソート機能を追加。 (ただし複数のソートキーと一緒"
 "に使うことはできない。)"
 
-# 32fc5bb36a02486386c97f73cd68d6cf
 msgid "ベクタのGeoPointの出力に対応。"
 msgstr "ベクタのGeoPointの出力に対応。"
 
-# dd7966301e004a1da4765dad2a8cd7a5
 msgid "不正な入力値に対してエラーを出力するようにした。"
 msgstr "不正な入力値に対してエラーを出力するようにした。"
 
-# 77266f90ae984c1f9107facf28f5ec5b
 msgid "dumpコマンド:"
 msgstr "dumpコマンド:"
 
-# c036732404e74d9bbbb41730eceb0eb8
 msgid "フラグを数値ではなくキーワードで出力するように変更。"
 msgstr "フラグを数値ではなくキーワードで出力するように変更。"
 
-# fd9092ac9e3d4813b448bc9f0600e2ac
 msgid "column_listコマンド:"
 msgstr "column_listコマンド:"
 
-# 22ea109262b94a089a4187689ddc6172
 msgid "_keyカラムの出力に対応。"
 msgstr "_keyカラムの出力に対応。"
 
-# af31b1c89ef04b378fad9542d1c359d7
 msgid "deleteコマンド:"
 msgstr "deleteコマンド:"
 
-# de0fb6d2ba454336bf55470ca35e1d1d
 msgid "データに不整合が発生する場合はデータを削除しないように変更。"
 msgstr "データに不整合が発生する場合はデータを削除しないように変更。"
 
-# 9f5292e428e7481a92ac5cd93a5935c9
 msgid "statusコマンド:"
 msgstr "statusコマンド:"
 
-# 967791dd806e47a7814af16e6d653cca
 msgid "キャッシュ情報を追加。"
 msgstr "キャッシュ情報を追加。"
 
-# f2c6e66fc326434fa8869ee3f1015e67
 msgid "データの整合性を確認するcheckコマンドの追加。"
 msgstr "データの整合性を確認するcheckコマンドの追加。"
 
-# 040d8031ecaa4bae81a987d3d50c7d0e
 msgid "強制的にロックを解除するclearlockコマンドの追加。"
 msgstr "強制的にロックを解除するclearlockコマンドの追加。"
 
-# 5caba65c2e9c475b945ebff330622535
 msgid "最大キャッシュ数を指定するcache_limitコマンドの追加。"
 msgstr "最大キャッシュ数を指定するcache_limitコマンドの追加。"
 
-# 89a0e30d111b473cba0854cf1af57625
 msgid "フラグメンテーションを解消するdefragコマンドの追加。"
 msgstr "フラグメンテーションを解消するdefragコマンドの追加。"
 
-# 897ccabf84dc4f868c871b369a043ff1
 msgid "データ投入後のインデックスカラム作成に対応。"
 msgstr "データ投入後のインデックスカラム作成に対応。"
 
-# 6b3f4e52f1f9426fbf2e1552dab51425
 msgid "不正なsortキーを指定された場合はSEGVする問題の修正。"
 msgstr "不正なsortキーを指定された場合はSEGVする問題の修正。"
 
-# 30c90df7b93241f1ad222392bc8ac720
 msgid "selectの出力に不正なカラムを指定された時にSEGVする問題を修正。"
 msgstr "selectの出力に不正なカラムを指定された時にSEGVする問題を修正。"
 
-# 44c6e16f2bd74ded8570af1458865844
 msgid "空のベクタをloadするとSEGVする問題の修正。"
 msgstr "空のベクタをloadするとSEGVする問題の修正。"
 
-# a7071963665d4d2d8c4160abde8c5be6
 msgid "メモリリークの修正。"
 msgstr "メモリリークの修正。"
 
-# 0d7cc14481c94fbfac5d966a9c51dfbb
 msgid "drilldown時に参照先が存在しない場合にSEGVする問題の修正。"
 msgstr "drilldown時に参照先が存在しない場合にSEGVする問題の修正。"
 
-# 7c8d3a172b5a4710828d3eb2f124732c
-# e2be250322d446bd8f4b8a6724318447
-# 02c18926aed54006a28c574f20dee85c
-# 2df3627c0f1f45729de70b2587e2325e
-# a8cb80aa23d7444b9585bc9eecf27dc9
-# 5a42db8b41e54b8ba0563a7484eb7574
-# 2aa9d21f31bc4d97995da600432d7d26
-# 88a6536de15148c9993cf7b9c318117c
-# 9a143504e0224da8a5ec7717b93e8ed5
-# d716a822a4734917b51de1710df12e76
-# 4b43dca7a4404f99a66c17517f8b4726
-# bf6b3342fafb44d780b2760d379ee0ff
-# 9e3f401149fe448e98530f40b21e14b2
 msgid "感謝"
 msgstr "感謝"
 
-# b6d628cace3d4fde875851db2cf8ad8f
 msgid "おばたさん"
 msgstr "おばたさん"
 
-# cc58cf80a7ca4736b9531cab70bd4ff8
 msgid "バージョン1.0.xのお知らせ"
 msgstr "バージョン1.0.xのお知らせ"
 
-# 0a11f2e41d8a420fbb897313de07a01d
 msgid "1.0.8リリース - 2011/02/02"
 msgstr "1.0.8リリース - 2011/02/02"
 
-# a24e2a201ad740998a14bc51e1b70ac9
 msgid ""
 "ShortText型カラムへデータ追加・削除を繰り返すとデータが壊れ ることがある問題"
 "を修正。 (Mitsuhiro Shibuyaさんが報告)"
@@ -2943,27 +2289,21 @@ msgstr ""
 "ShortText型カラムへデータ追加・削除を繰り返すとデータが壊れ ることがある問題"
 "を修正。 (Mitsuhiro Shibuyaさんが報告)"
 
-# 8174fcae65a04f49ba35869659b6373f
 msgid "Mitsuhiro Shibuyaさん"
 msgstr "Mitsuhiro Shibuyaさん"
 
-# 17649bbea89f4624b30c888b1b1936bd
 msgid "1.0.7リリース - 2011/01/29"
 msgstr "1.0.7リリース - 2011/01/29"
 
-# 667b2ed5a3b5432abbf9c9b95a404258
 msgid "automake 1.9.6でも動作するようにした。 #508"
 msgstr "automake 1.9.6でも動作するようにした。 #508"
 
-# 073fd1115dfa40198939a31958a3a43b
 msgid "configureの最後に検出したMeCabの情報も表示するようにした。"
 msgstr "configureの最後に検出したMeCabの情報も表示するようにした。"
 
-# bf1a78f75d5744a59432056499d61078
 msgid "エラーメッセージをわかりやすくした。"
 msgstr "エラーメッセージをわかりやすくした。"
 
-# dd67c2da3a204a83a9615cbbc2533fb0
 msgid ""
 "--enable-memory-debug付きでビルドしたときに終了時に未開放のメモリが 割り当て"
 "られた場所を表示するようにした。"
@@ -2971,7 +2311,6 @@ msgstr ""
 "--enable-memory-debug付きでビルドしたときに終了時に未開放のメモリが 割り当て"
 "られた場所を表示するようにした。"
 
-# ed0592bb433444768deba1bea79caf4e
 msgid ""
 "ベクタの値を :doc:`/reference/commands/load` するときにキャストに失敗したら、"
 "そ のことを報告するようにした。"
@@ -2979,7 +2318,6 @@ msgstr ""
 "ベクタの値を :doc:`/reference/commands/load` するときにキャストに失敗したら、"
 "そ のことを報告するようにした。"
 
-# c57907a39dd04b71b715613b8fe7e670
 msgid ""
 "groongaのメモリリークを検出するユーティリティツール groonga-check-memory-"
 "leak.rbを追加。(インストールはされない。)"
@@ -2987,11 +2325,9 @@ msgstr ""
 "groongaのメモリリークを検出するユーティリティツール groonga-check-memory-"
 "leak.rbを追加。(インストールはされない。)"
 
-# b8984fead9e241898937f41b23da7bcc
 msgid ":doc:`/reference/commands/dump` がテーブル単位のダンプに対応。"
 msgstr ":doc:`/reference/commands/dump` がテーブル単位のダンプに対応。"
 
-# 9ea9b1eafdcf4806afa6ae21bc34e493
 msgid ""
 "Mac OS Xでモジュールの拡張子の検出に失敗する問題を修正。 (ongaeshiさんが報"
 "告)"
@@ -2999,19 +2335,15 @@ msgstr ""
 "Mac OS Xでモジュールの拡張子の検出に失敗する問題を修正。 (ongaeshiさんが報"
 "告)"
 
-# 28641277a0cb41aca7f43f1e91deed6a
 msgid "Mac OS Xではrealloc(ptr, 0)ではなくfree()を使うように修正。"
 msgstr "Mac OS Xではrealloc(ptr, 0)ではなくfree()を使うように修正。"
 
-# cc5a0f02bac144fdba7faf6a7089470a
 msgid "grntestで結果の比較が常に失敗していた問題を修正。"
 msgstr "grntestで結果の比較が常に失敗していた問題を修正。"
 
-# b4b107edaad84008b7243789fdf933eb
 msgid "groonga-suggest-learnerのメモリリークを修正。"
 msgstr "groonga-suggest-learnerのメモリリークを修正。"
 
-# 04321ee6a729499ca1767be8ab7b3243
 msgid ""
 ":doc:`/reference/commands/load` 時のメモリリークを修正。 (Kenichi Aramakiさ"
 "んが報告)"
@@ -3019,69 +2351,50 @@ msgstr ""
 ":doc:`/reference/commands/load` 時のメモリリークを修正。 (Kenichi Aramakiさ"
 "んが報告)"
 
-# 4f0da621d91142219625aa802d9395b3
 msgid "ベクタの値を出力するときのメモリリークを修正。"
 msgstr "ベクタの値を出力するときのメモリリークを修正。"
 
-# 7844c123a477486caff1858d3999b015
 msgid "ongaeshiさん"
 msgstr "ongaeshiさん"
 
-# 1b5c1b3559f041b3a3c3ce14722cf1d8
 msgid "Kenichi Aramakiさん"
 msgstr "Kenichi Aramakiさん"
 
-# f03390fc88b141599407c0b278c95c41
 msgid "1.0.6リリース - 2010/12/31"
 msgstr "1.0.6リリース - 2010/12/31"
 
-# 70df464e329c4160830cf5e904a1ae4a
 msgid "\\*BSDでビルドできない問題を修正。(OBATA Akioさんが報告)"
 msgstr "\\*BSDでビルドできない問題を修正。(OBATA Akioさんが報告)"
 
-# b6658d6a0f4e42ba8d69ca4501faeabb
-# b5772b68a5a64995966e46ce62db39f8
-# 2bb3ca02ab8f45c684349e18b2d2e878
-# d90e0a3aaa0b47579488506cf172e05a
-# c99f60337feb43a790df779a3d6481d1
 msgid "OBATA Akioさん"
 msgstr "OBATA Akioさん"
 
-# a8abf9f9fd654a9d96fbacb5cc56b75e
 msgid "1.0.5リリース - 2010/12/29"
 msgstr "1.0.5リリース - 2010/12/29"
 
-# 4da3d065e301452a986d6e278994c51f
 msgid "サジェスト機能用の学習プログラムを追加。"
 msgstr "サジェスト機能用の学習プログラムを追加。"
 
-# 7815f95873e74ce0bb85b777447cf099
 msgid "groongaスクリプト内での行コメントに対応。(「#」以降を無視) #723"
 msgstr "groongaスクリプト内での行コメントに対応。(「#」以降を無視) #723"
 
-# 5fc134b0eb654eb89e807859260a3034
 msgid ":doc:`/reference/commands/column_list` のXML出力対応。 #748"
 msgstr ":doc:`/reference/commands/column_list` のXML出力対応。 #748"
 
-# 0cc1e8fc57a84636aa2d09291eb44fdd
 msgid "主キーが数値のテーブルを参照しているカラムでの比較演算に対応。 #776"
 msgstr "主キーが数値のテーブルを参照しているカラムでの比較演算に対応。 #776"
 
-# fd5d1c3faad5491ebe2d1e5ecd46ef5e
 msgid "grntestがmlockの情報出力に対応。"
 msgstr "grntestがmlockの情報出力に対応。"
 
-# 343f218aa0364618bfb6be6c013f3a36
 msgid "NetBSDでのビルドに対応。 (OBATA Akioさんがパッチ作成)"
 msgstr "NetBSDでのビルドに対応。 (OBATA Akioさんがパッチ作成)"
 
-# bfdb71fc4ffb4d94bf0d78ab996a36a1
 msgid ""
 "MeCabトークナイザーが見つからない時のエラーメッセージをより親切にした。 #790"
 msgstr ""
 "MeCabトークナイザーが見つからない時のエラーメッセージをより親切にした。 #790"
 
-# 910295f8ba814f00a252bff55ea41095
 msgid ""
 "開いているファイルディスクリプタが多すぎてacceptできない状態の負荷を低減。 "
 "#802"
@@ -3089,18 +2402,12 @@ msgstr ""
 "開いているファイルディスクリプタが多すぎてacceptできない状態の負荷を低減。 "
 "#802"
 
-# b8386186852743a69fd31be9df150892
 msgid "DragonFlyでのビルドに対応。 (OBATA Akioさんが報告)"
 msgstr "DragonFlyでのビルドに対応。 (OBATA Akioさんが報告)"
 
-# bf42c40477b643b58ed06a14ee0c4700
-# 6cdd4435bf594a37a27ade118d8b926c
-# 17e143651247436895fff47d79325bbd
-# 66d215bb94ab46efa2866aa514c5b966
 msgid "変更"
 msgstr "変更"
 
-# a69c27b9f119478b853b50db990170e5
 msgid ""
 ":doc:`/reference/commands/table_list` のXML出力のタグ名をより適切な名前に変"
 "更。 #757"
@@ -3108,7 +2415,6 @@ msgstr ""
 ":doc:`/reference/commands/table_list` のXML出力のタグ名をより適切な名前に変"
 "更。 #757"
 
-# a197ed39e14045c887f49421b5f6a386
 msgid ""
 ":doc:`/reference/commands/load` で存在しないカラムを--columnsで指定するとク"
 "ラッシュする問題を修正。 (Masahiro Tomitaさんが報告) #751"
@@ -3116,7 +2422,6 @@ msgstr ""
 ":doc:`/reference/commands/load` で存在しないカラムを--columnsで指定するとク"
 "ラッシュする問題を修正。 (Masahiro Tomitaさんが報告) #751"
 
-# add4a3c74ef04f59877701d776d1d109
 msgid ""
 ":doc:`/reference/commands/load` で配列でTABLE_NO_KEYなテーブルにレコードを"
 "ロードできない問題を修正。 (Masahiro Tomitaさんが報告) #750"
@@ -3124,7 +2429,6 @@ msgstr ""
 ":doc:`/reference/commands/load` で配列でTABLE_NO_KEYなテーブルにレコードを"
 "ロードできない問題を修正。 (Masahiro Tomitaさんが報告) #750"
 
-# 0f535dde34da4802a31c116d0df858cc
 msgid ""
 ":doc:`/reference/commands/delete` でTABLE_NO_KEYなテーブルのレコードを削除す"
 "るとテーブルが壊れる 問題を修正。 (Masahiro Tomitaさんがパッチ作成) #794"
@@ -3132,7 +2436,6 @@ msgstr ""
 ":doc:`/reference/commands/delete` でTABLE_NO_KEYなテーブルのレコードを削除す"
 "るとテーブルが壊れる 問題を修正。 (Masahiro Tomitaさんがパッチ作成) #794"
 
-# 6d4a7b2e8ce04642a1a397e17bcbbfd0
 msgid ""
 ":doc:`/reference/commands/load` で不正なJSONを指定した場合にそれ以降コマンド"
 "を受け付けなくなる 問題を修正。 #807"
@@ -3140,23 +2443,18 @@ msgstr ""
 ":doc:`/reference/commands/load` で不正なJSONを指定した場合にそれ以降コマンド"
 "を受け付けなくなる 問題を修正。 #807"
 
-# 40067de8df6340bfa9a389926086c40e
 msgid "Tomita Masahiroさん"
 msgstr "Tomita Masahiroさん"
 
-# 2e5f846f8862415eb080fe12cacda570
 msgid "1.0.4リリース - 2010/11/29"
 msgstr "1.0.4リリース - 2010/11/29"
 
-# 85520a9b7ae64c959680f8fe386c1334
 msgid "すべてのモジュールで同じ名前の関数をエクスポートするようにした。#624"
 msgstr "すべてのモジュールで同じ名前の関数をエクスポートするようにした。#624"
 
-# efc0cf8342c64180a4fef2460153a801
 msgid "不正な名前を指定したときに指定された名前も報告するようにした。"
 msgstr "不正な名前を指定したときに指定された名前も報告するようにした。"
 
-# c2687e20f05d4c41b5a1aa90ef11401e
 msgid ""
 ":doc:`/reference/commands/select` の--filter内での数値比較演算をサポート。 "
 "(@s3kiさんが報告)"
@@ -3164,15 +2462,12 @@ msgstr ""
 ":doc:`/reference/commands/select` の--filter内での数値比較演算をサポート。 "
 "(@s3kiさんが報告)"
 
-# b3298bcc4b7c4514ae07bca22c5ed73e
 msgid "``grntest`` の一行あたりの最大バイト数の制限を撤廃。 #608, #690"
 msgstr ""
 
-# 49a7151d51094e81b6fe5c7f2f4d4688
 msgid "Int8/UInt8/Int16/UInt16の等値比較にC言語の比較演算子を使用。 #660"
 msgstr "Int8/UInt8/Int16/UInt16の等値比較にC言語の比較演算子を使用。 #660"
 
-# b5ce5f6239074cf299c128c3b31110a3
 msgid ""
 "HTTP経由で存在しないパスにアクセスした時に存在しないパスを報告するように し"
 "た。"
@@ -3180,65 +2475,50 @@ msgstr ""
 "HTTP経由で存在しないパスにアクセスした時に存在しないパスを報告するように し"
 "た。"
 
-# 1ddbbe16a45346e096cfd039ed9516ca
 msgid "grn_table_cursor_next()をGRN_CURSOR_COLUMN_INDEX対応にした。"
 msgstr "grn_table_cursor_next()をGRN_CURSOR_COLUMN_INDEX対応にした。"
 
-# 5f3793183994454298531eeebddd4d99
 msgid "右辺が式の演算代入演算子をサポート。 #669"
 msgstr "右辺が式の演算代入演算子をサポート。 #669"
 
-# a2397ac0d2e2496a91aa0c858426c74c
 msgid "zlib/LZOサポート付きでビルドされているかをチェックするAPIを追加。 #686"
 msgstr "zlib/LZOサポート付きでビルドされているかをチェックするAPIを追加。 #686"
 
-# 3dca8a7c25d44298886178eb88ffa80e
 msgid "grn_table_at()を公開。"
 msgstr "grn_table_at()を公開。"
 
-# b372365831454de5b66b1741261febac
 msgid "grn_db_touch()を公開。 #703"
 msgstr "grn_db_touch()を公開。 #703"
 
-# 656f36e4574a442d8c99c06dd21c1705
 msgid "コメント行に対応。 #723"
 msgstr "コメント行に対応。 #723"
 
-# 6eeaaced64e84982b707580d5b4b8019
 msgid "grn_bool型を追加。 #713"
 msgstr "grn_bool型を追加。 #713"
 
-# f73fd907e26d4f2284b36320962ab8cb
 msgid ""
 "プラグインの置き場所を変更: lib/groonga/modules/ -> lib/groonga/plugins/ #624"
 msgstr ""
 "プラグインの置き場所を変更: lib/groonga/modules/ -> lib/groonga/plugins/ #624"
 
-# a4150d2e08e2474181a337a5c35dbe23
 msgid "ドキュメントの誤字を修正。(OBATA Akioさんが報告)"
 msgstr "ドキュメントの誤字を修正。(OBATA Akioさんが報告)"
 
-# e44e9338e1dd479ea180363bdee16d6d
 msgid "GRN_CURSOR_PREFIXが動作しない問題を修正。"
 msgstr "GRN_CURSOR_PREFIXが動作しない問題を修正。"
 
-# 5a5e0996cfab4bb18072ab9feec7e577
 msgid "索引が不正に大きくなる問題を修正。(Tomoatsu Shimadaさんが報告) #689"
 msgstr "索引が不正に大きくなる問題を修正。(Tomoatsu Shimadaさんが報告) #689"
 
-# ce87319989d54c3298ca96c251918aea
 msgid "@s3kiさん"
 msgstr "@s3kiさん"
 
-# 44d3144ddb8b445f9b84db634d9ece79
 msgid "Tomoatsu Shimadaさん"
 msgstr "Tomoatsu Shimadaさん"
 
-# bd562317c195400caf5d4ba8bd17fecd
 msgid "1.0.3リリース - 2010/10/29"
 msgstr "1.0.3リリース - 2010/10/29"
 
-# 1faccf422e09429ab4ca057f419f6cdb
 msgid ""
 "CentOS/Fedora用パッケージをディストリビューションのルールに従うように改良。 "
 "(上野乃毅さん)"
@@ -3246,47 +2526,36 @@ msgstr ""
 "CentOS/Fedora用パッケージをディストリビューションのルールに従うように改良。 "
 "(上野乃毅さん)"
 
-# fca30f3516984312b6130e7341966e15
 msgid "Fedoraのオフィシャルリポジトリに登録。(Daiki Uenoさん)"
 msgstr "Fedoraのオフィシャルリポジトリに登録。(Daiki Uenoさん)"
 
-# c6736528435b4e61b5df6bc3fceff918
 msgid "GeoPointのキャストに対応。#515"
 msgstr "GeoPointのキャストに対応。#515"
 
-# c3b783a5650f4685a48d41b3bfb64155
 msgid "groongaコマンドに、--defalt-command-versionオプションの追加。"
 msgstr "groongaコマンドに、--defalt-command-versionオプションの追加。"
 
-# 94aa00dd80834a309e67bd81a3a9ada2
 msgid "statusの出力結果にコマンドバージョンを追加。"
 msgstr "statusの出力結果にコマンドバージョンを追加。"
 
-# 2b2714150eed45e9acacb4de7b74161b
 msgid ":doc:`/spec/search` の仕様を追加。"
 msgstr ":doc:`/spec/search` の仕様を追加。"
 
-# 2360c476e50544ceb034eac7dfd01840
 msgid ":doc:`/troubleshooting` を追加。"
 msgstr ":doc:`/troubleshooting` を追加。"
 
-# 9471f7dea0c34e21824383496180ec98
 msgid "辞書検索のサンプルアプリケーションを追加。"
 msgstr "辞書検索のサンプルアプリケーションを追加。"
 
-# 74e0492cbf0d4ac1b81501c9db0b8c2e
 msgid "pkg-configがない場合はlibeditを検出しないようにした。 #540"
 msgstr "pkg-configがない場合はlibeditを検出しないようにした。 #540"
 
-# dcfcacd4b75a4dd9aed0dee4ec0c0e39
 msgid "メモリデバッグ用オプション--enable-memory-debugを追加。"
 msgstr "メモリデバッグ用オプション--enable-memory-debugを追加。"
 
-# 1ca8c090b399408b83039ad9c366bfda
 msgid "不正な関数呼び出しをチェックするようにした。#596"
 msgstr "不正な関数呼び出しをチェックするようにした。#596"
 
-# 90901fe33d814b0a9ba7e478e1723af7
 msgid ""
 "テキストから数値へのキャスト処理を強化。#612, #613 (Itagaki Takahiroさんが報"
 "告)"
@@ -3294,11 +2563,9 @@ msgstr ""
 "テキストから数値へのキャスト処理を強化。#612, #613 (Itagaki Takahiroさんが報"
 "告)"
 
-# 2da7070b507d40de8c93ad0a5dbfdccc
 msgid "クライアントモードでの--fileオプションのサポート。#578"
 msgstr "クライアントモードでの--fileオプションのサポート。#578"
 
-# bad6508058644ced939d6695b2e8e4b8
 msgid ""
 ":doc:`/spec/search` の挙動を動的に変更する``--match-escalation-threashold`` "
 "起動オプションと``--match_escalation_threshold``selectオプションを追加。 #628"
@@ -3306,15 +2573,12 @@ msgstr ""
 ":doc:`/spec/search` の挙動を動的に変更する``--match-escalation-threashold`` "
 "起動オプションと``--match_escalation_threshold``selectオプションを追加。 #628"
 
-# 2c22bf9b1502486a90464a76f82e0e8e
 msgid "記号でトークンを区切るTokenBigramSplitSymbolを使用。 #225"
 msgstr "記号でトークンを区切るTokenBigramSplitSymbolを使用。 #225"
 
-# 27cfff519e8b4fcf94694483182c53c5
 msgid "時間の解像度をナノ秒に変更。"
 msgstr "時間の解像度をナノ秒に変更。"
 
-# 1b31eee17d4f47269095a741b28974a3
 msgid ""
 "パッケージを提供するUbuntuのバージョンをHardy, Lucidから Lucid, Marverickに変"
 "更。"
@@ -3322,16 +2586,12 @@ msgstr ""
 "パッケージを提供するUbuntuのバージョンをHardy, Lucidから Lucid, Marverickに変"
 "更。"
 
-# bfe40c75749b449abf556b8b78fd245c
 msgid "grn_table_cursor_open()のドキュメントを修正。"
 msgstr "grn_table_cursor_open()のドキュメントを修正。"
 
-# 5dcd6d785bd345b4889e0f65489ef78a
-# 611332c1944947f299697edae8955dc6
 msgid "メモリリークを修正。"
 msgstr "メモリリークを修正。"
 
-# eefaa46ad99549e19143517e87f9ea88
 msgid ""
 "--disable-libeditオプションがヘルプメッセージと違う問題の修正。 (MATSUU "
 "Takutoさんが報告)"
@@ -3339,17 +2599,14 @@ msgstr ""
 "--disable-libeditオプションがヘルプメッセージと違う問題の修正。 (MATSUU "
 "Takutoさんが報告)"
 
-# beb75351b97b44b4ad6d19c3aee60b70
 msgid "警告を除去。(MATSUU Takutoさんが報告)"
 msgstr "警告を除去。(MATSUU Takutoさんが報告)"
 
-# bbd3f0223ea24ea4a43923cdd3552efe
 msgid ""
 "grn_pat_at()でエンコードされたキーが常にGRN_NILになってしまう問題を修正。#514"
 msgstr ""
 "grn_pat_at()でエンコードされたキーが常にGRN_NILになってしまう問題を修正。#514"
 
-# 6f0cf77043964d3da6f3e1e9ee315e3f
 msgid ""
 "固定長カラムにカラム長より短いデータを設定するとゴミが残ってしまう問題を修"
 "正。"
@@ -3357,25 +2614,20 @@ msgstr ""
 "固定長カラムにカラム長より短いデータを設定するとゴミが残ってしまう問題を修"
 "正。"
 
-# 8b40c1f1f86d49ec8fa1f61b22bd8964
 msgid "不正なレコードがあるときにdumpすると落ちてしまう問題を修正。"
 msgstr "不正なレコードがあるときにdumpすると落ちてしまう問題を修正。"
 
-# 63e51541753a4f93985631428d78e695
 msgid "geo_in_rectangle()が無限ループする問題を修正。#563"
 msgstr "geo_in_rectangle()が無限ループする問題を修正。#563"
 
-# a2bb9f77c6cf49819cc71962e393b221
 msgid ""
 "インデックスがついたカラムでソートすると結果がおかしくなる問題を修正。#571"
 msgstr ""
 "インデックスがついたカラムでソートすると結果がおかしくなる問題を修正。#571"
 
-# 9a99015431964725902498869653441c
 msgid "deleteが常に失敗する問題を修正。#541"
 msgstr "deleteが常に失敗する問題を修正。#541"
 
-# a00d2c3c323e4e6f900872b2edf9393e
 msgid ""
 "レコードを追加・削除したパトリシアトライからID順に取り出すカーソルが おかしな"
 "結果を返す問題を修正。#538"
@@ -3383,58 +2635,42 @@ msgstr ""
 "レコードを追加・削除したパトリシアトライからID順に取り出すカーソルが おかしな"
 "結果を返す問題を修正。#538"
 
-# 52729b5046f046f99fae7e30063f1d8a
 msgid "値が存在しないレコードがあるカラムでソートすると落ちる問題を修正。"
 msgstr "値が存在しないレコードがあるカラムでソートすると落ちる問題を修正。"
 
-# d969921e1f8d44368fda00f1bce2544f
 msgid "モジュールの初期化関数が複数回呼ばれる問題を修正。#567"
 msgstr "モジュールの初期化関数が複数回呼ばれる問題を修正。#567"
 
-# 47e24dfbed6f45889cdc8e6ced770d31
 msgid "shutdownで終了しない問題を修正。#114"
 msgstr "shutdownで終了しない問題を修正。#114"
 
-# dcb03e97e0f949a5a07b431d05599a45
 msgid "全文検索時に削除したレコードが返る問題を修正。#617"
 msgstr "全文検索時に削除したレコードが返る問題を修正。#617"
 
-# a7be65aa5c5d46d495cc42b6cd06fa12
 msgid "必要な時以外にMeCabの辞書チェックをしてしまう問題を修正。#555"
 msgstr "必要な時以外にMeCabの辞書チェックをしてしまう問題を修正。#555"
 
-# 527a7e89df29461e9e95e2cb8b1f0522
 msgid "存在しないパトリシアトライのレコードを参照すると落ちる問題を修正。#630"
 msgstr "存在しないパトリシアトライのレコードを参照すると落ちる問題を修正。#630"
 
-# f2ba75d4aeb14d2089c32b2644890b74
 msgid "インストールドキュメントの誤字を修正。(SHIMODA Hiroshiさんが報告)"
 msgstr "インストールドキュメントの誤字を修正。(SHIMODA Hiroshiさんが報告)"
 
-# f908cd00176d4947a1fca3c0030b0651
-# 9b0ea10d8ca541338467cb2926641943
-# 3c0de9c627dd487aac33fa7ea8f79c9f
 msgid "Daiki Uenoさん"
 msgstr "Daiki Uenoさん"
 
-# 4fce9153bcd54b7e940a3e078b99cfdf
 msgid "MATSUU Takutoさん"
 msgstr "MATSUU Takutoさん"
 
-# 3111f1a206f54f45b9d7cf6f246db001
-# 680075d9398142fa84f484de9de5037b
 msgid "Itagaki Takahiroさん"
 msgstr "Itagaki Takahiroさん"
 
-# 77f76f7aea984c2cb9da09a8f606ff82
 msgid "SHIMODA Hiroshiさん"
 msgstr "SHIMODA Hiroshiさん"
 
-# c55c072ad4a7444c9145fe6589226ba7
 msgid "1.0.2リリース - 2010/09/09"
 msgstr "1.0.2リリース - 2010/09/09"
 
-# 11ed8c71104840b48d14e865a81e6f69
 msgid ""
 ":doc:`/reference/commands/suggest` コマンドのサンプルを追加。(examples/"
 "dictionary/)"
@@ -3442,7 +2678,6 @@ msgstr ""
 ":doc:`/reference/commands/suggest` コマンドのサンプルを追加。(examples/"
 "dictionary/)"
 
-# 0757399d92384519b86672a409c772c6
 msgid ""
 "HTTPで公開するディレクトリを指定する--admin-html-pathを--document-rootに変"
 "更。"
@@ -3450,7 +2685,6 @@ msgstr ""
 "HTTPで公開するディレクトリを指定する--admin-html-pathを--document-rootに変"
 "更。"
 
-# 2a3b618e791a41db95982e91bd0fe5d0
 msgid ""
 ":doc:`/reference/commands/select` コマンドのデフォルトの--output_columnsから"
 "_valueを削除。"
@@ -3458,44 +2692,34 @@ msgstr ""
 ":doc:`/reference/commands/select` コマンドのデフォルトの--output_columnsから"
 "_valueを削除。"
 
-# 50775a17d297474a93010789d95b01e7
 msgid "パッケージミスを修正。 (OBATA Akioさんが報告)"
 msgstr "パッケージミスを修正。 (OBATA Akioさんが報告)"
 
-# 40e7d334e8624cea8cae6f7cc689931d
 msgid "GeoPointの度表記の解釈を修正。 #460"
 msgstr "GeoPointの度表記の解釈を修正。 #460"
 
-# 1e3030adf2f24a99aaa9e18cd53a0880
 msgid "1.0.1リリース - 2010/09/06"
 msgstr "1.0.1リリース - 2010/09/06"
 
-# 20001ae2d1b84790abef81db44b6b5e0
 msgid "CentOS 5/Fedora 13用RPMの提供。(Daiki Uenoさん作成のspecがベース)"
 msgstr "CentOS 5/Fedora 13用RPMの提供。(Daiki Uenoさん作成のspecがベース)"
 
-# 513d264727794c6989ecc188c6aebfa0
 msgid "ログパスのデフォルト値に--localstatedirを使用。(OBATA Akioさんが提案)"
 msgstr ""
 "ログパスのデフォルト値に--localstatedirを使用。(OBATA Akioさんが提案)"
 
-# 2710847cf0d342afbcc9ef1bc2c2b139
 msgid "BOM付きUTF-8に対応。"
 msgstr "BOM付きUTF-8に対応。"
 
-# c031666e2ee0467fa11927f57c6f219d
 msgid "JSON JQueryプラグインが同梱されていない問題の修正。"
 msgstr "JSON JQueryプラグインが同梱されていない問題の修正。"
 
-# 917fcaf22fab4336a4ae09449e974f1a
 msgid "テストが失敗する問題の修正。(OBATA Akioさんが報告)"
 msgstr "テストが失敗する問題の修正。(OBATA Akioさんが報告)"
 
-# df9c39755ae543e6b7316da0cfa27a86
 msgid "1.0.0リリース - 2010/08/29"
 msgstr "1.0.0リリース - 2010/08/29"
 
-# 1b922aec453748dda6b21fc54ae32593
 msgid ""
 "指定したクエリに対する補完・修正・提案を行う :doc:`/reference/commands/"
 "suggest` コマンドを追加。"
@@ -3503,7 +2727,6 @@ msgstr ""
 "指定したクエリに対する補完・修正・提案を行う :doc:`/reference/commands/"
 "suggest` コマンドを追加。"
 
-# fece2bf243c14da79df4a059624e35fc
 msgid ""
 ":doc:`/reference/commands/delete` コマンドが失敗したらfalseを返すように変更。"
 "(Itagaki Takahiroさんが提案)"
@@ -3511,15 +2734,12 @@ msgstr ""
 ":doc:`/reference/commands/delete` コマンドが失敗したらfalseを返すように変更。"
 "(Itagaki Takahiroさんが提案)"
 
-# bcbf117a53f84d3897e9719b96036fa3
 msgid "関数もコマンドとして呼び出してしまう問題を修正。#431"
 msgstr "関数もコマンドとして呼び出してしまう問題を修正。#431"
 
-# d59ca55ff11f44d8996b766c579f660b
 msgid "索引付きカラムを等価条件で検索できない問題を修正。"
 msgstr "索引付きカラムを等価条件で検索できない問題を修正。"
 
-# f3a4a965ad3a40a0883dcfee447c711a
 msgid ""
 ":doc:`/reference/commands/delete` コマンドでキーがShortText以外のレコードを削"
 "除できない問題の修正。(Itagaki Takahiroさんが報告)"
@@ -3527,19 +2747,15 @@ msgstr ""
 ":doc:`/reference/commands/delete` コマンドでキーがShortText以外のレコードを削"
 "除できない問題の修正。(Itagaki Takahiroさんが報告)"
 
-# c1591b0449c14adc9a63ee7c32745169
 msgid "バージョン1.1.xのお知らせ"
 msgstr "バージョン1.1.xのお知らせ"
 
-# e5f041e362344d62a2c62d2291fe6179
 msgid "1.1.0リリース - 2011/02/09"
 msgstr "1.1.0リリース - 2011/02/09"
 
-# c35735c4d31a4b67857271f2d066cc8c
 msgid "TokenDelimitNullトークナイザーを追加。"
 msgstr "TokenDelimitNullトークナイザーを追加。"
 
-# c3100dc563e34ef59918e3989d956abf
 msgid ""
 "プラグイン登録APIの名前を改良。 grn_db_register_by_name() -> "
 "grn_plugin_register() #834"
@@ -3547,7 +2763,6 @@ msgstr ""
 "プラグイン登録APIの名前を改良。 grn_db_register_by_name() -> "
 "grn_plugin_register() #834"
 
-# 73ca2f2660a942e29ff5ed9fa03019c1
 msgid ""
 ":doc:`/reference/commands/select` の--query内で前方一致検索構文\"キーワード*"
 "\"対応。 #837"
@@ -3555,7 +2770,6 @@ msgstr ""
 ":doc:`/reference/commands/select` の--query内で前方一致検索構文\"キーワード*"
 "\"対応。 #837"
 
-# 2a01ae7491244182bfc23218b34b99f4
 msgid ""
 "groonga.pcにgroonga-suggest-create-datasetのパスが設定されている "
 "groonga_suggest_create_dataset変数を追加。"
@@ -3563,11 +2777,9 @@ msgstr ""
 "groonga.pcにgroonga-suggest-create-datasetのパスが設定されている "
 "groonga_suggest_create_dataset変数を追加。"
 
-# 9babc32f22514beeb8b434f20eb9b107
 msgid "ログにタイムスタンプの秒より小さい値が常に0になる問題を修正。"
 msgstr "ログにタイムスタンプの秒より小さい値が常に0になる問題を修正。"
 
-# c7f91bf3c2024057acbfcd37363bde7f
 msgid ""
 "サンプル内のスクリプトに実行属性がつかない問題を修正。 (Daiki Uenoさんが報"
 "告)"
@@ -3575,19 +2787,15 @@ msgstr ""
 "サンプル内のスクリプトに実行属性がつかない問題を修正。 (Daiki Uenoさんが報"
 "告)"
 
-# 7cffcaccfa2a435c9adaf1adf3fe704e
 msgid "Release 1.2.9 - 2011/12/29"
 msgstr "Release 1.2.9 - 2011/12/29"
 
-# 3e181623b37246ff898a7c6f7aa5682b
 msgid "Supported Fedora 16."
 msgstr "Supported Fedora 16."
 
-# 6aa9784d1d9a45139ef5b950dc6feebd
 msgid "Dropped Fedora 15 support."
 msgstr "Dropped Fedora 15 support."
 
-# cae1638698e74c038f86c51a6c76c008
 msgid ""
 "[groonga] Improved the default server ID address to work on unresolved host "
 "name environment. [Reported by @uzulla]"
@@ -3595,15 +2803,12 @@ msgstr ""
 "[groonga] Improved the default server ID address to work on unresolved host "
 "name environment. [Reported by @uzulla]"
 
-# cf7969959719458c8f6b4856513d9d2f
 msgid "Supported MAP_HUGETLB."
 msgstr "Supported MAP_HUGETLB."
 
-# cf1a2da6e4ec48069bcf98fa74ada7c2
 msgid "[admin] Supported throughput chart."
 msgstr "[admin] Supported throughput chart."
 
-# cac21227f8f342c48fac635f0748b7fe
 msgid ""
 "Stopped adding nul character in ``grn_itoh()``. [#1194] [Reported by SHIDARA "
 "Yoji]"
@@ -3611,19 +2816,15 @@ msgstr ""
 "Stopped adding nul character in ``grn_itoh()``. [#1194] [Reported by SHIDARA "
 "Yoji]"
 
-# 3c50dfc8e46f4535ac41f37cf8b73fac
 msgid "Added ``grn_obj_get_values()``."
 msgstr "Added ``grn_obj_get_values()``."
 
-# e6f1c9b45dde42bca0e01e2b26abb00c
 msgid "Added ``grn_obj_delete_by_id()``."
 msgstr "Added ``grn_obj_delete_by_id()``."
 
-# 71efc6fec52b4d6c9b9f44dc44f724f3
 msgid "Supported string vector column for query expansion. [#1216]"
 msgstr "Supported string vector column for query expansion. [#1216]"
 
-# 79f056604c0641229696fcc43103b6ed
 msgid ""
 "Added ``--filter`` option to :doc:`/reference/commands/delete` to delete "
 "many record at once. [#1225]"
@@ -3631,7 +2832,6 @@ msgstr ""
 "Added ``--filter`` option to :doc:`/reference/commands/delete` to delete "
 "many record at once. [#1225]"
 
-# 198bbfd508094f21a5066b75e1bacdf9
 msgid ""
 "Supported approximate type customization for :doc:`/reference/functions/"
 "geo_in_circle` and :doc:`/reference/functions/geo_distance`. [#1226]"
@@ -3639,11 +2839,9 @@ msgstr ""
 "Supported approximate type customization for :doc:`/reference/functions/"
 "geo_in_circle` and :doc:`/reference/functions/geo_distance`. [#1226]"
 
-# ea5bd6b92e784fc2a08e2985a6189b8a
 msgid "Made ``geo_distance2()`` and ``geo_distance3()`` are deprecated."
 msgstr "Made ``geo_distance2()`` and ``geo_distance3()`` are deprecated."
 
-# 758fddf10fde46bdb26aae57f791346a
 msgid ""
 "Changed to use ``null`` instead of ``\"\"`` for empty geo point value in "
 "JSON output."
@@ -3651,31 +2849,24 @@ msgstr ""
 "Changed to use ``null`` instead of ``\"\"`` for empty geo point value in "
 "JSON output."
 
-# 48cac021b31a470183575145f79bbe04
 msgid "Almost supported MessagePack output. [#1215] [Worked by SHIDARA Yoji]"
 msgstr "Almost supported MessagePack output. [#1215] [Worked by SHIDARA Yoji]"
 
-# b5fd8ee68cc04b6ea5031d0ab38f37c6
 msgid "Added missing newlines after drilldown result tags in XML output."
 msgstr "Added missing newlines after drilldown result tags in XML output."
 
-# 2a49b1c59d6443b68f261a2c15582d65
 msgid "Supported truncate for grn_dat."
 msgstr "Supported truncate for grn_dat."
 
-# c87da2d51f874092a337c7a798bfe3dc
 msgid "Supported longest common prefix search by grn_dat."
 msgstr "Supported longest common prefix search by grn_dat."
 
-# 4d408153cda74e6aa01c89448d1092aa
 msgid "[windows] Fixed inverted map type."
 msgstr "[windows] Fixed inverted map type."
 
-# aa707af5fd174e97a80eba7179b6fd82
 msgid "Fixed -Wno- compiler flag detection. [Patch by Arnaud Fontaine]"
 msgstr "Fixed -Wno- compiler flag detection. [Patch by Arnaud Fontaine]"
 
-# 265714a0bcd44c419d97af69ecacb547
 msgid ""
 "Fixed a problem that ``groonga --version`` reports wrongly about MeCab. "
 "[#1209] [Patch by SHIDARA Yoji]"
@@ -3683,39 +2874,29 @@ msgstr ""
 "Fixed a problem that ``groonga --version`` reports wrongly about MeCab. "
 "[#1209] [Patch by SHIDARA Yoji]"
 
-# 5e042c2293734770b798126ee22bd58b
 msgid "Added missing lock into ``grn_obj_remove()``."
 msgstr "Added missing lock into ``grn_obj_remove()``."
 
-# add1ece9730c4571b592640abe3a599d
 msgid "Fixed Content-Type on error. [#1220] [Patch by SHIDARA Yoji]"
 msgstr "Fixed Content-Type on error. [#1220] [Patch by SHIDARA Yoji]"
 
-# a68a8dcb21d2474ea1968e7b1ce7fa78
 msgid ""
 "Fixed a problem that deleting SIS (Semi Infinite String) may keep a garbage."
 msgstr ""
 "Fixed a problem that deleting SIS (Semi Infinite String) may keep a garbage."
 
-# df32e5eebb284d0eb1a6af03456492f0
 msgid "@uzulla"
 msgstr "@uzulla"
 
-# a57288e8fa744f93b38af45b320ae620
 msgid "Arnaud Fontaine"
 msgstr "Arnaud Fontaine"
 
-# 3f18010638224cb4942a07b2665b2fd5
-# 64752d27928c4d16b1f6330cf76f4c59
-# 766724fed5f74bb78e8c2e3bad178f89
 msgid "SHIDARA Yoji"
 msgstr "SHIDARA Yoji"
 
-# 69626c2ed6144bcb8371072eb22e60e7
 msgid "Release 1.2.8 - 2011/11/29"
 msgstr "Release 1.2.8 - 2011/11/29"
 
-# b8ff6aea0f144e1d9616432eb0765bdf
 msgid ""
 "Object, table and column renamings are supported! These features require "
 "database re-creation. You can re-create your database by the following "
@@ -3725,7 +2906,6 @@ msgstr ""
 "database re-creation. You can re-create your database by the following "
 "command::"
 
-# 7b1edc6aff374aadbc8214f78f2db3cf
 msgid ""
 "Groonga 1.2.8 can open databases created by groonga 1.2.7 or earlier. But "
 "groonga 1.2.7 or earlier can't open databases created by groonga 1.2.8 or "
@@ -3735,35 +2915,27 @@ msgstr ""
 "groonga 1.2.7 or earlier can't open databases created by groonga 1.2.8 or "
 "later."
 
-# 140cb1cc990645cda189fa7b93eb46cd
 msgid "[grntest] Removed the upper limit to the number of bytes in one line."
 msgstr "[grntest] Removed the upper limit to the number of bytes in one line."
 
-# 7aefabc245c14c92a2c3513751eafde9
 msgid "[grntest] Added ``--pid-path`` option."
 msgstr "[grntest] Added ``--pid-path`` option."
 
-# df0ea005961b4b5ebace77699666c369
 msgid "[deb] Enabled experimental zlib and lzo support."
 msgstr "[deb] Enabled experimental zlib and lzo support."
 
-# 213d9a7c087e462a9d0506d3065c287b
 msgid "[rpm] Enabled experimental zlib and lzo support."
 msgstr "[rpm] Enabled experimental zlib and lzo support."
 
-# f53f2450f7f94c61a745901d860ab091
 msgid "Supports truncation. [#892]"
 msgstr "Supports truncation. [#892]"
 
-# 330eeda54796480dbf54e67596e8a388
 msgid "Enabled grn_dat that is a read lock free double array implementation."
 msgstr "Enabled grn_dat that is a read lock free double array implementation."
 
-# c9d44906f96f40b99f193d52250e948c
 msgid "[pkg-config] Added groonga_version variable to groonga.pc."
 msgstr "[pkg-config] Added groonga_version variable to groonga.pc."
 
-# 645ef64a55c043778668ab3a3248a17e
 msgid ""
 "Re-supported ``--disable-static``. [groonga-dev,00612] [Suggested by Kenichi "
 "Aramaki]"
@@ -3771,23 +2943,18 @@ msgstr ""
 "Re-supported ``--disable-static``. [groonga-dev,00612] [Suggested by Kenichi "
 "Aramaki]"
 
-# 5f51abb17ba149a088135361d634986d
 msgid "[munin] Stopped to install Munin plugins by default."
 msgstr "[munin] Stopped to install Munin plugins by default."
 
-# dcefcdde6ef142b386101aa0ff577889
 msgid "Stopped to install RedHat platform related files by default."
 msgstr "Stopped to install RedHat platform related files by default."
 
-# 817bf3d1f3434d8c8333f5f305bafb96
 msgid "Supports object renaming. This requires DB re-creation. [#1167]"
 msgstr "Supports object renaming. This requires DB re-creation. [#1167]"
 
-# 64add2e130a442d2b4760c12a697bcb0
 msgid "[munin] Added a Munin plugin that measures throughput. [#1171]"
 msgstr "[munin] Added a Munin plugin that measures throughput. [#1171]"
 
-# bbb158a2b93a43909d8c55916ec088c7
 msgid ""
 "[geo] Improved geo_in_rectangle performance. The new implementation will be "
 "2x faster than the old implementation in many cases. [#1173]"
@@ -3795,7 +2962,6 @@ msgstr ""
 "[geo] Improved geo_in_rectangle performance. The new implementation will be "
 "2x faster than the old implementation in many cases. [#1173]"
 
-# c3e565b9b3844355abe8d951b5ec7a16
 msgid ""
 "[macports] Moved groonga's MacPorts to the official repository. [Imported by "
 "Hiroshi Umemoto]"
@@ -3803,7 +2969,6 @@ msgstr ""
 "[macports] Moved groonga's MacPorts to the official repository. [Imported by "
 "Hiroshi Umemoto]"
 
-# 98d931dacc83475193a2c6afdd40fe53
 msgid ""
 "[geo] Changed the geo literal degree-to-msec conversion algorithm to round-"
 "off from truncation."
@@ -3811,7 +2976,6 @@ msgstr ""
 "[geo] Changed the geo literal degree-to-msec conversion algorithm to round-"
 "off from truncation."
 
-# 85acfb64245c40478ece9fa6507b66ac
 msgid ""
 "Supports a table defrag. It defrags variable size value columns in the "
 "table. [#1175]"
@@ -3819,23 +2983,18 @@ msgstr ""
 "Supports a table defrag. It defrags variable size value columns in the "
 "table. [#1175]"
 
-# 1997ca6bf66740fb91cacd586f4ecef2
 msgid "Removed associated path on remove. [#1180]"
 msgstr "Removed associated path on remove. [#1180]"
 
-# 07105b5840dd405a9a3b2dc43c0d3d5a
 msgid "[deb] Supports i386."
 msgstr "[deb] Supports i386."
 
-# f3a688b3805c4d088b71c9458fe21a37
 msgid "[rpm] Supports i386."
 msgstr "[rpm] Supports i386."
 
-# cd00b414d2914b2ea6b025ab1a55e7b0
 msgid "[windows] Supports x86."
 msgstr "[windows] Supports x86."
 
-# 6020b22c10d44ee28ccd8f5226dc6153
 msgid ""
 "Fixed a bug that groonga crashes when accessing a zlib/lzo compressed "
 "column. Note that a compressed column access causes a memory leak. To "
@@ -3847,11 +3006,9 @@ msgstr ""
 "resolve this, we need to improve API. We will do it in the future. [GtiHub#5]"
 "[GtiHub#6] [Reported by Takayuki Yamaguchi]"
 
-# 02c78713f9fd455ba6e70b35e287375a
 msgid "Fixed a bug that unrelated column values are cleared in deletion."
 msgstr "Fixed a bug that unrelated column values are cleared in deletion."
 
-# 35cf71dea2d8416f9674af032e34a0cb
 msgid ""
 "Fixed a bug that a wrong index is used in sorting. [#766] [Reported by "
 "Horikoshi Yuki]"
@@ -3859,7 +3016,6 @@ msgstr ""
 "Fixed a bug that a wrong index is used in sorting. [#766] [Reported by "
 "Horikoshi Yuki]"
 
-# ed196ea742554d4ab5c4e08fe97a3887
 msgid ""
 "[libedit] Fixed a bug that necessary initialization is omitted. [GitHub#7] "
 "[Patch by SHIDARA Yoji]"
@@ -3867,31 +3023,24 @@ msgstr ""
 "[libedit] Fixed a bug that necessary initialization is omitted. [GitHub#7] "
 "[Patch by SHIDARA Yoji]"
 
-# e3007afb264f43d781fe6c22a5a7697c
 msgid "[doc] Fixed a typo in documentation. [GitHub#8] [Patch by zunda]"
 msgstr "[doc] Fixed a typo in documentation. [GitHub#8] [Patch by zunda]"
 
-# 805f136335c549bca2caffebf4afd9c3
 msgid "Takayuki Yamaguchi"
 msgstr "Takayuki Yamaguchi"
 
-# 3bf08734f3c14a8d90dffbcc7f1e20ea
 msgid "Horikoshi Yuki"
 msgstr "Horikoshi Yuki"
 
-# 758c61fb000947f2ac4941913adcfe39
 msgid "zunda"
 msgstr "zunda"
 
-# 46439ebe35d24ab39e16464da117f9ee
 msgid "Hiroshi Umemoto"
 msgstr "Hiroshi Umemoto"
 
-# 8b5fdeb081d1415ea22ec746427cc95f
 msgid "Release 1.2.7 - 2011/10/29"
 msgstr "Release 1.2.7 - 2011/10/29"
 
-# aa670c25f55f45ac91630f25b333ecdc
 msgid ""
 "[libedit] Added error check for wide character to multibyte sequence "
 "conversion. [Reported by SHIDARA Yoji]"
@@ -3899,23 +3048,18 @@ msgstr ""
 "[libedit] Added error check for wide character to multibyte sequence "
 "conversion. [Reported by SHIDARA Yoji]"
 
-# aaf75833312a44098045c1e59a84b3b9
 msgid "Added grn_geo_estimate_in_rectangle()."
 msgstr "Added grn_geo_estimate_in_rectangle()."
 
-# f8343cbe614c40ad98024acabd81d6b4
 msgid "Added cursor API to geo search in rectangle."
 msgstr "Added cursor API to geo search in rectangle."
 
-# 0f80cb1fc057498d82b2bd7e90014d2e
 msgid "Improved geo search in rectangle speed."
 msgstr "Improved geo search in rectangle speed."
 
-# a3e34e0cbdd241328dba8180151522db
 msgid "Added packages for Ubuntu 11.10 Oneiric Ocelot"
 msgstr "Added packages for Ubuntu 11.10 Oneiric Ocelot"
 
-# f2d3930921824064b54cb114d2bfd931
 msgid ""
 "[experimental] Supported Oracle Solaris 10 8/11. (just buildable with system "
 "gcc.)"
@@ -3923,27 +3067,21 @@ msgstr ""
 "[experimental] Supported Oracle Solaris 10 8/11. (just buildable with system "
 "gcc.)"
 
-# 5eb6c07cc08540cb8eb745d2195937bf
 msgid "Fixed a typo in document. [Reported by @soundkitchen]"
 msgstr "Fixed a typo in document. [Reported by @soundkitchen]"
 
-# 8e856f2adecf42e1a598ac6f5567ef2a
 msgid "Release 1.2.6 - 2011/09/29"
 msgstr "Release 1.2.6 - 2011/09/29"
 
-# 6550b7675e9741ae966118677aecb177
 msgid "Improved error message on type cast."
 msgstr "Improved error message on type cast."
 
-# 3d0b919f01b14e48a6100df0ca0e325e
 msgid "Added geo point value validation on type cast."
 msgstr "Added geo point value validation on type cast."
 
-# 5970a52a249a4e5eb604982122741219
 msgid "Supported :doc:`/tutorial/query_expansion`."
 msgstr "Supported :doc:`/tutorial/query_expansion`."
 
-# 50d1849e9d8d4b959970ccdf9fffca54
 msgid ""
 "Added `--query_expansion` option to :doc:`/reference/commands/select` for "
 "query expansion."
@@ -3951,73 +3089,57 @@ msgstr ""
 "Added `--query_expansion` option to :doc:`/reference/commands/select` for "
 "query expansion."
 
-# 51e877169cdd419188b3a65cc82fbffa
 msgid "Added geometry conversion macro between degree and msec."
 msgstr "Added geometry conversion macro between degree and msec."
 
-# 5d6d3aa85c034c30957d23e779183754
 msgid "Supported type cast in :doc:`/reference/functions/geo_distance` ()."
 msgstr "Supported type cast in :doc:`/reference/functions/geo_distance` ()."
 
-# a7f10ba7611e4795b06125136e0787ca
 msgid "Don't split tokens with full width space in command line. #986"
 msgstr "Don't split tokens with full width space in command line. #986"
 
-# cbbd74f5fe9e48fb9d305f26c38c5ac2
 msgid "Supported conversion between TokyoGeoPoint and WGS84GeoPoint."
 msgstr "Supported conversion between TokyoGeoPoint and WGS84GeoPoint."
 
-# 1ecedd399e274de5b1d251447371f971
 msgid "Exported grn_geo_select_in_circle() and grn_geo_select_in_rectangle()."
 msgstr "Exported grn_geo_select_in_circle() and grn_geo_select_in_rectangle()."
 
-# 21605e2d750e4c61881c72551bf26ea1
 msgid "Supported CentOS 6."
 msgstr "Supported CentOS 6."
 
-# a1eb2c14fd0a4cf8ab35dc69345ce6e1
 msgid ""
 "Supported the current Debian GNU/Linux sid. Patch by SATOH Fumiyasu. GitHub#3"
 msgstr ""
 "Supported the current Debian GNU/Linux sid. Patch by SATOH Fumiyasu. GitHub#3"
 
-# e86753ce0ae64a2395b2c1d94ce8bf85
 msgid "Fixed a bug that geo point is loaded as broken value."
 msgstr "Fixed a bug that geo point is loaded as broken value."
 
-# 1babf882ed294ab59c8b4d7492e1c3b4
 msgid "SATOH Fumiyasu"
 msgstr "SATOH Fumiyasu"
 
-# 01842955f0c14f789b7662d4fa9d6bfc
 msgid "Release 1.2.5 - 2011/08/29"
 msgstr "Release 1.2.5 - 2011/08/29"
 
-# f369e4a8af754cf382930229046553b1
 msgid "Added experimental Windows installer support."
 msgstr "Added experimental Windows installer support."
 
-# db34e7a2c338482181db6eeaa3b31d5f
 msgid "Accepted \"#\" and \"-\" as a valid name characters. #1043"
 msgstr "Accepted \"#\" and \"-\" as a valid name characters. #1043"
 
-# d60bd695af294f55a231789cea825851
 msgid ""
 "Accepted all valid characters except \"_\" as the first character. #1043"
 msgstr ""
 "Accepted all valid characters except \"_\" as the first character. #1043"
 
-# a36ecf677f0c467596964707549c330c
 msgid ""
 "Supported `--each` for `[...]` form :doc:`/reference/commands/load`. #1044"
 msgstr ""
 "Supported `--each` for `[...]` form :doc:`/reference/commands/load`. #1044"
 
-# a80d4ec7010d42c78c2b074a4d84467d
 msgid "Added documentation for :doc:`/suggest`."
 msgstr "Added documentation for :doc:`/suggest`."
 
-# 99b43d742bad43cfa323c5496d2b16c1
 msgid ""
 "Supported threshold as `--frequency_threshold` and `--"
 "conditional_probability_threshold` options in all :doc:`/reference/commands/"
@@ -4027,15 +3149,12 @@ msgstr ""
 "conditional_probability_threshold` options in all :doc:`/reference/commands/"
 "suggest` types. #1042"
 
-# f0d207d6352f4d5799f48a4bb7fd95b6
 msgid "[groonga-suggest-httpd] Supported log reopen by SIGUSR1. #1048"
 msgstr "[groonga-suggest-httpd] Supported log reopen by SIGUSR1. #1048"
 
-# eb4051cf209846b0ba2dc526fcebd568
 msgid "Supported string input for reference vector column value. #1051"
 msgstr "Supported string input for reference vector column value. #1051"
 
-# 2416577d3fe04c5f94f5d611042edd92
 msgid ""
 "[groonga-suggest-httpd] Added `--n-lines-per-log-file` option that changes "
 "log line limitation for a file."
@@ -4043,7 +3162,6 @@ msgstr ""
 "[groonga-suggest-httpd] Added `--n-lines-per-log-file` option that changes "
 "log line limitation for a file."
 
-# a0805a0c20bf409b96446df4898568d1
 msgid ""
 "[groonga-suggest-httpd] Added `p` parameter for `--"
 "conditional_probability_threshold`."
@@ -4051,15 +3169,12 @@ msgstr ""
 "[groonga-suggest-httpd] Added `p` parameter for `--"
 "conditional_probability_threshold`."
 
-# 0df6da36e2a046079145136090d60b23
 msgid "Added GRN_CTX_PER_DB flag for grn_ctx_init() and grn_ctx_open(). #1053"
 msgstr "Added GRN_CTX_PER_DB flag for grn_ctx_init() and grn_ctx_open(). #1053"
 
-# 6f997157686c4c9883eccd29f6f1dfe0
 msgid "Exported grn_ctx_close(). #1035"
 msgstr "Exported grn_ctx_close(). #1035"
 
-# 59aa70a5093942b9b22e70185529dc47
 msgid ""
 "Fixed a crash bug that invalid value is passed as match expression argument "
 "in :doc:`/reference/commands/select`. #1047"
@@ -4067,31 +3182,24 @@ msgstr ""
 "Fixed a crash bug that invalid value is passed as match expression argument "
 "in :doc:`/reference/commands/select`. #1047"
 
-# 7c8499354b9946c8bb0e594b53f5bc8c
 msgid "Fixed a bug that hash table cursor returns garbage records."
 msgstr "Fixed a bug that hash table cursor returns garbage records."
 
-# be90312805424ea680b9f4d1861ecb8b
 msgid "Release 1.2.4 - 2011/07/29"
 msgstr "Release 1.2.4 - 2011/07/29"
 
-# 6a15ad84b43e469ca56e0f783de42e51
 msgid "Re-supported ``*BSD``. (Reported by OBATA Akio)"
 msgstr "Re-supported ``*BSD``. (Reported by OBATA Akio)"
 
-# 8caa52100b7449c8982b48f60956a4ca
 msgid "Improved sed related portability. (Suggested by OBATA Akio)"
 msgstr "Improved sed related portability. (Suggested by OBATA Akio)"
 
-# 9369669302c7433096a1a75a2bdd0b6f
 msgid "Re-supported Visual C++ 2008."
 msgstr "Re-supported Visual C++ 2008."
 
-# a00c0d79050144678ef5eb4eaa230ec1
 msgid "Supported :doc:`/reference/commands/check` for hash table."
 msgstr "Supported :doc:`/reference/commands/check` for hash table."
 
-# fce0086bd2b74f50bd41ba9f5d0c7503
 msgid ""
 "Ignored invalid _score in --sortby of :doc:`/reference/commands/select` for "
 "convenience. #1030"
@@ -4099,119 +3207,92 @@ msgstr ""
 "Ignored invalid _score in --sortby of :doc:`/reference/commands/select` for "
 "convenience. #1030"
 
-# f89fbeca7478477a96db016dd51e6795
 msgid "Added document about :doc:`/reference/log`."
 msgstr ""
 
-# 7a97c77a12c24c23881b99eb06553d1e
 msgid "Supported ~/.editrc."
 msgstr "Supported ~/.editrc."
 
-# e57333675bf1495594170a2ff841ad94
 msgid "Supported ~/.groonga-history."
 msgstr "Supported ~/.groonga-history."
 
-# 030e37eeb08a490d9c0f596ccf716953
 msgid "Fixed broken libedit support. (Reported by Daiki Ueno)"
 msgstr "Fixed broken libedit support. (Reported by Daiki Ueno)"
 
-# 722c1e0631d346e9914a513b266dd933
 msgid "Fixed source URL in ``*.spec`` (Reported by Daiki Ueno)"
 msgstr "Fixed source URL in ``*.spec`` (Reported by Daiki Ueno)"
 
-# d8f73110a5f44e7aaff9feaa53b17b1a
 msgid "Fixed patricia trie cursor returns wrong records."
 msgstr "Fixed patricia trie cursor returns wrong records."
 
-# 2ffd41392fb843168d27d3c2a8123254
 msgid ""
 "Added missing database lock clear for grn_obj_clear_lock() for database."
 msgstr ""
 "Added missing database lock clear for grn_obj_clear_lock() for database."
 
-# da77c0e76a71417cbac132827d7f39f3
 msgid ""
 "Fixed wrong record's column values deletion possible on record deletion."
 msgstr ""
 "Fixed wrong record's column values deletion possible on record deletion."
 
-# 02f1a2dffbf94774a622a8a5727edf7a
 msgid "Release 1.2.3 - 2011/06/29"
 msgstr "Release 1.2.3 - 2011/06/29"
 
-# 53a8e1031be0452d83bffef3fd4dcb65
 msgid "Added invalid table name check. #912"
 msgstr "Added invalid table name check. #912"
 
-# 29f075ab44f2403bbc5ce36a587187a3
 msgid "Added groonga-query-log-analyzer that analyze query log."
 msgstr "Added groonga-query-log-analyzer that analyze query log."
 
-# 32ef9931f0084eca8380a1346e5b9893
 msgid "groonga command shows failed command on error."
 msgstr "groonga command shows failed command on error."
 
-# 19d135b9285c4baf9baf2e5425668667
 msgid "groonga command shows file name and line no on error."
 msgstr "groonga command shows file name and line no on error."
 
-# 0ba3004a43a3418fa39211768b3260c9
 msgid ""
 "Improved error message of :doc:`/reference/commands/column_create`. #952"
 msgstr ""
 "Improved error message of :doc:`/reference/commands/column_create`. #952"
 
-# 5d06ea1534234c6f966ab3ae9a727d22
 msgid "Added GRN_OBJ_TABLE_DAT_KEY, double array trie, table. (experimental)"
 msgstr "Added GRN_OBJ_TABLE_DAT_KEY, double array trie, table. (experimental)"
 
-# ebaf2b6613294c86a6eba24afeb0e1d8
 msgid "fix get command crash. (Reported by OBATA Akio)"
 msgstr "fix get command crash. (Reported by OBATA Akio)"
 
-# 14d336ab377f41e881f4a2ab6ce2ad54
 msgid "fix elapsed time overflow in query log. #944"
 msgstr "fix elapsed time overflow in query log. #944"
 
-# a0514fb68c5d426a8a36b1b15999184c
 msgid "Release 1.2.2 - 2011/05/29"
 msgstr "Release 1.2.2 - 2011/05/29"
 
-# 6f2bf080dcf145db829243fb57232b95
 msgid "Added packages for Ubuntu 11.04 Natty Narwhal."
 msgstr "Added packages for Ubuntu 11.04 Natty Narwhal."
 
-# d77102f2c2674e3fb7e8159981ea0f5f
 msgid "Removed packages for Ubuntu 10.10 Maverick Meerkat."
 msgstr "Removed packages for Ubuntu 10.10 Maverick Meerkat."
 
-# 93f56dc7009848b9ab0e55e581d278e1
 msgid "RPM: Split server related packages to groonga-server package."
 msgstr "RPM: Split server related packages to groonga-server package."
 
-# 464be5a3402f42e197081a5ee55ca603
 msgid "suggest: Added target object name into error messages."
 msgstr "suggest: Added target object name into error messages."
 
-# ba78ca5b6a244d21898c0cbfbacb8198
 msgid "document: Started English support. (not completed yet.)"
 msgstr "document: Started English support. (not completed yet.)"
 
-# 4dd5e1a463324378b4c1570d82f21c3f
 msgid "groonga-suggest-httpd: Added --disable-max-fd-check option."
 msgstr "groonga-suggest-httpd: Added --disable-max-fd-check option."
 
-# 879a5bd6219c455c9f08021ea67096a4
 msgid ""
 "groonga: Renamed :option:`--address <-a>` option to :option:`--bind-address`."
 msgstr ""
 "groonga: Renamed :option:`--address <-a>` option to :option:`--bind-address`."
 
-# 277a047be7c642038d4cd0614ef945db
 msgid "groonga-suggest-httpd: Renamed --address option to --bind-address."
 msgstr "groonga-suggest-httpd: Renamed --address option to --bind-address."
 
-# ce2da243d9bd460aba94809b912d4dd2
 msgid ""
 "Changed admin HTML install directory to $PREFIX/share/groonga/html/admin/ "
 "from $PREFIX/share/groonga/admin_html/."
@@ -4219,7 +3300,6 @@ msgstr ""
 "Changed admin HTML install directory to $PREFIX/share/groonga/html/admin/ "
 "from $PREFIX/share/groonga/admin_html/."
 
-# ef48171118924a838fd8006bb1389553
 msgid ""
 "groonga-suggest-httpd: Used \"application/json\" for JSON response instead "
 "of \"text/javascript\"."
@@ -4227,21 +3307,17 @@ msgstr ""
 "groonga-suggest-httpd: Used \"application/json\" for JSON response instead "
 "of \"text/javascript\"."
 
-# 712ccb3dbd244d80976b3824daf3eacc
 msgid ""
 "Windows: Used DLL relative path instead of executable file relative path."
 msgstr ""
 "Windows: Used DLL relative path instead of executable file relative path."
 
-# c3ddbd8902da4f73aef66fca4386582c
 msgid "MeCab: Added error message from MeCab on MeCab initialize error."
 msgstr "MeCab: Added error message from MeCab on MeCab initialize error."
 
-# 6031cb00bed24f679347e5b205bf4b5a
 msgid "suggest: Added prefix_search parameter to suggest command. #909"
 msgstr "suggest: Added prefix_search parameter to suggest command. #909"
 
-# 4f213fd748a540e5b88348d97f7ccbc4
 msgid ""
 "plugin: Added grn_plugin_get_system_plugins_dir() and grn_plugin_get_suffix"
 "() API."
@@ -4249,39 +3325,30 @@ msgstr ""
 "plugin: Added grn_plugin_get_system_plugins_dir() and grn_plugin_get_suffix"
 "() API."
 
-# bbfa963d7c7945f19be18115d77bff57
 msgid "Added grn_obj_is_builtin() API."
 msgstr "Added grn_obj_is_builtin() API."
 
-# b659be9d0e5241569d74ac0f03e01ca8
 msgid ":doc:`/reference/commands/load`: Added table name check. #934"
 msgstr ":doc:`/reference/commands/load`: Added table name check. #934"
 
-# def4eb6190e14805a8b098afe7ce18d7
 msgid "Showed invalid name context in error message. #935"
 msgstr "Showed invalid name context in error message. #935"
 
-# 07a8f1470d434439a6b42003a9e685b2
 msgid "Fixed a data breaking bug on multi process update. #890"
 msgstr "Fixed a data breaking bug on multi process update. #890"
 
-# 6e3973020028464caaee9529b096096d
 msgid "1.2.1リリース - 2011/04/29"
 msgstr "1.2.1リリース - 2011/04/29"
 
-# 1d6c8786f53e46a6abc56c4de10ab9db
 msgid "suggestコマンドにthresholdパラメーターを追加。#895"
 msgstr "suggestコマンドにthresholdパラメーターを追加。#895"
 
-# ba98bb8f3d834335886b37d9b20dca49
 msgid "suggestのHTTPサーバにlimitパラメーターを追加。#899"
 msgstr "suggestのHTTPサーバにlimitパラメーターを追加。#899"
 
-# 82e399ddbec14bb5b68a0d9f78ad1637
 msgid "grntest: SIGINTでの中断に対応。"
 msgstr "grntest: SIGINTでの中断に対応。"
 
-# 1793e30ebd464cfa9691d0d1bbc53a7c
 msgid ""
 "同時に複数のデータベースを開いているとき、1つでもデータベー スを閉じると関連"
 "するプラグインも閉じられてしまう問題を修正。 #894"
@@ -4289,7 +3356,6 @@ msgstr ""
 "同時に複数のデータベースを開いているとき、1つでもデータベー スを閉じると関連"
 "するプラグインも閉じられてしまう問題を修正。 #894"
 
-# 2b5863a38a8942bc8646eb60ec50f0b1
 msgid ""
 "configureの--helpで出力される--with-deafult-encodingの値が 間違っていた問題を"
 "修正。(ICHII Takashiさんが報告)"
@@ -4297,55 +3363,42 @@ msgstr ""
 "configureの--helpで出力される--with-deafult-encodingの値が 間違っていた問題を"
 "修正。(ICHII Takashiさんが報告)"
 
-# afdfc6fd93a744b9bd1d22d7032cb665
 msgid "チュートリアル中のtypoを修正。(moozさんが修正)"
 msgstr "チュートリアル中のtypoを修正。(moozさんが修正)"
 
-# 4793c30cc4cc4387a1ded08ae798adc6
 msgid "ICHII Takashiさん"
 msgstr "ICHII Takashiさん"
 
-# bacd477976244f5eacacab4af0f444ff
 msgid "moozさん"
 msgstr "moozさん"
 
-# db57a1609a2c4df383c8cbec8144bde4
 msgid "1.2.0リリース - 2011/03/29"
 msgstr "1.2.0リリース - 2011/03/29"
 
-# 982fd31f02b145a39b9940747ca8d7a2
 msgid "MacPortsでのインストールドキュメントを追加。"
 msgstr "MacPortsでのインストールドキュメントを追加。"
 
-# f4b311e9f7764c06ad2a1c56529451fa
 msgid "Homebrewでのインストールドキュメントを追加。"
 msgstr "Homebrewでのインストールドキュメントを追加。"
 
-# 603443c7728a4c7381ff317bc24ebd6f
 msgid "WindowsではMinGWでもpthreadを使わないようにした。"
 msgstr "WindowsではMinGWでもpthreadを使わないようにした。"
 
-# 4a375f8e5b4c47a0afe83a41afda94be
 msgid "オーバーフローチェックを強化。"
 msgstr "オーバーフローチェックを強化。"
 
-# dfddee37fa7f4773ae211b0fe9d09b0c
 msgid "位置情報の入力値チェックを強化。"
 msgstr "位置情報の入力値チェックを強化。"
 
-# 25d37fc1906342bc92a10de4cdc7419f
 msgid "インデックスを用いたジオサーチの例をチュートリアルに追加。 #438"
 msgstr "インデックスを用いたジオサーチの例をチュートリアルに追加。 #438"
 
-# 854e00014d4a4ec4b24ca3ca8fdff8c9
 msgid "Debian GNU/Linux wheezyのパッケージを追加。"
 msgstr "Debian GNU/Linux wheezyのパッケージを追加。"
 
-# 00f0dfe337b14d09bda74f69377d2641
 msgid "Debian GNU/Linux lennyのパッケージを削除。"
 msgstr "Debian GNU/Linux lennyのパッケージを削除。"
 
-# 1811e2938939497a829b3c152f42860c
 msgid ""
 "Debianパッケージをcdbsベースからdebhelperベースへ移行。 パッケージ名の変更あ"
 "り。 #887"
@@ -4353,7 +3406,6 @@ msgstr ""
 "Debianパッケージをcdbsベースからdebhelperベースへ移行。 パッケージ名の変更あ"
 "り。 #887"
 
-# 6429c251127b4f55bb67c7589b14e856
 msgid ""
 "MeCabトークナイザーの読み込みエラーを無視するようにした。た だし、ログには残"
 "る。 #893"
@@ -4361,7 +3413,6 @@ msgstr ""
 "MeCabトークナイザーの読み込みエラーを無視するようにした。た だし、ログには残"
 "る。 #893"
 
-# cccdc886910c4b428bfe6d14db53af07
 msgid ""
 "autoconf 2.59環境において、ファイルシステムのルート直下に groongaディレクトリ"
 "を作成しようとする問題を修正。 #833"
@@ -4369,11 +3420,9 @@ msgstr ""
 "autoconf 2.59環境において、ファイルシステムのルート直下に groongaディレクトリ"
 "を作成しようとする問題を修正。 #833"
 
-# 9a1d17c2cedd43e8a1e2b035c0e4db2b
 msgid "JSONPが動作しなくなっていた問題を修正。"
 msgstr "JSONPが動作しなくなっていた問題を修正。"
 
-# 1fc3923f4e4043f78654f76ae47cf589
 msgid ""
 "MeCabトークナイザーの読み込みに失敗したときにクラッシュする問題を修正。 "
 "(@tomotaka_itoさんが報告)"
@@ -4381,11 +3430,9 @@ msgstr ""
 "MeCabトークナイザーの読み込みに失敗したときにクラッシュする問題を修正。 "
 "(@tomotaka_itoさんが報告)"
 
-# bd8849b8c59845759f6d4035538df72f
 msgid "[非互換] 位置情報の小数表記からミリ秒への変換誤差が大きい問題を修正。"
 msgstr "[非互換] 位置情報の小数表記からミリ秒への変換誤差が大きい問題を修正。"
 
-# 6bbf55ed3eb04d1b8860be8a7260e3aa
 msgid ""
 ":doc:`/reference/functions/geo_in_rectangle` の ``top_left`` と "
 "``bottom_right`` に同じ位置を指定するとクラッシュする問題を修正。"
@@ -4393,20 +3440,16 @@ msgstr ""
 ":doc:`/reference/functions/geo_in_rectangle` の ``top_left`` と "
 "``bottom_right`` に同じ位置を指定するとクラッシュする問題を修正。"
 
-# 5e9fcbfba73e4b799e0a3ae2db403246
 msgid "小数形式のTimeリテラルをロードするとミリ秒情報が落ちる問題を修正。 #880"
 msgstr ""
 "小数形式のTimeリテラルをロードするとミリ秒情報が落ちる問題を修正。 #880"
 
-# 3075c85203d845ab83e7502592d332c6
 msgid ":doc:`/reference/commands/column_list` のドキュメントを修正。 #758"
 msgstr ":doc:`/reference/commands/column_list` のドキュメントを修正。 #758"
 
-# ee6dc23768504da69076bb6224486455
 msgid ":doc:`/reference/commands/table_list` のドキュメントを修正。"
 msgstr ":doc:`/reference/commands/table_list` のドキュメントを修正。"
 
-# 8d790853c9d14296b0798ccfaea6b933
 msgid ""
 ":doc:`/reference/commands/load` で_valueを指定するとメモリリークする問題を修"
 "正。 #878"
@@ -4414,75 +3457,57 @@ msgstr ""
 ":doc:`/reference/commands/load` で_valueを指定するとメモリリークする問題を修"
 "正。 #878"
 
-# 910ea678d9fd4912a11ca93ee35e9efa
 msgid ":doc:`/reference/commands/load` でクラッシュする問題を修正。 #661"
 msgstr ":doc:`/reference/commands/load` でクラッシュする問題を修正。 #661"
 
-# ecb86ae60d014b2ba10dcc4a260aee7c
 msgid "実験的"
 msgstr "実験的"
 
-# 99e76a3d965149ec95e412fa9ef79496
 msgid "grn_table_truncate()を追加。(実験的。問題あり)"
 msgstr "grn_table_truncate()を追加。(実験的。問題あり)"
 
-# c9fc6c4701fe437cadf59c8369e0cfc9
 msgid "truncateコマンドを追加。(実験的。問題あり) #888"
 msgstr "truncateコマンドを追加。(実験的。問題あり) #888"
 
-# ec7685119e814bf182577cf6bac55d20
 msgid "@tomotaka_itoさん"
 msgstr "@tomotaka_itoさん"
 
-# c572ede5846b41a0b41327d7cdb35fcb
 msgid "News in Senna period"
 msgstr "News in Senna period"
 
-# 861ba5f19b7f4f028bd8f661b6be63f8
 msgid "Senna -> groonga - 2009/01/14"
 msgstr "Senna -> groonga - 2009/01/14"
 
-# 66cc6f93ff6e4e12b27fba7f14062f3e
 msgid "2006/04/05"
 msgstr "2006/04/05"
 
-# f4f860ff1af24d3fba7c58a160c3b4b8
 msgid "SEN_INDEX_DELIMITED added"
 msgstr "SEN_INDEX_DELIMITED added"
 
-# 06a39fd7c1fa495cb6f0c6826cd0db7f
 msgid "sen_sel_term_extract added"
 msgstr "sen_sel_term_extract added"
 
-# 8570ce26a2a344ad9d5757762c76f301
 msgid "2006/03/03"
 msgstr "2006/03/03"
 
-# d2e62c04cceb4a0e8cf19ae329a6bd3c
 msgid "snippet function added"
 msgstr "snippet function added"
 
-# a1be76c3a8ce4b41bd573cc609528fe5
 msgid "2006/01/16"
 msgstr "2006/01/16"
 
-# 2b6ba6338b9446e883b31b29039a32f0
 msgid "io.c bug fix. index format changed"
 msgstr "io.c bug fix. index format changed"
 
-# 2bf5e0d117c04a879859c0429aa31afd
 msgid "2006/01/12"
 msgstr "2006/01/12"
 
-# 3596fece56ac4d5e9e43d66ce13bc8c7
 msgid "windows porting released"
 msgstr "windows porting released"
 
-# 64071f647a4e443fbfb5dd8172f31770
 msgid "2005/12/22"
 msgstr "2005/12/22"
 
-# 6464b5ddc48643659fffeab78ffa9b16
 msgid ""
 "support unpatched version of mecab (0.81, 0.82pre, 0.90) no longer depends "
 "on mecab mte patch."
@@ -4490,67 +3515,51 @@ msgstr ""
 "support unpatched version of mecab (0.81, 0.82pre, 0.90) no longer depends "
 "on mecab mte patch."
 
-# 0e45bfc416274a259082bc3072c93800
 msgid "2005/10/27"
 msgstr "2005/10/27"
 
-# 5bb070052d62426dbc83d1f3e84c9747
 msgid "mysql binding updated"
 msgstr "mysql binding updated"
 
-# 83b38bd9f8984064a7e1b6ce4abc7071
 msgid "2005/09/17"
 msgstr "2005/09/17"
 
-# b5894b8982fe45eea1f6a3ce61c0c05e
 msgid "mysql-5.0.12-beta binding from <tasuk****@hotto*****>"
 msgstr "mysql-5.0.12-beta binding from <tasuk****@hotto*****>"
 
-# 99cf21c976df400d863c2d170638af0d
 msgid "2005/09/08"
 msgstr "2005/09/08"
 
-# ab0ef5283511404ab4858381f8a69413
 msgid "utf-8 support enhanced. (SEN_INDEX_NORMALIZE become available)"
 msgstr "utf-8 support enhanced. (SEN_INDEX_NORMALIZE become available)"
 
-# 89e4f7a6203442168bbe5afbec093f71
 msgid "2005/08/16"
 msgstr "2005/08/16"
 
-# d466a9fbe88b4b29ac6fc6f388f65a14
 msgid "Ruby binding has rewrited using SWIG and supports advanced API."
 msgstr "Ruby binding has rewrited using SWIG and supports advanced API."
 
-# 225c276aa2d946a69a2c8370520b082b
 msgid "SJIS support enhanced."
 msgstr "SJIS support enhanced."
 
-# fde3c91e7b0d4574a1980bf667110ccc
 msgid "2005/07/05"
 msgstr "2005/07/05"
 
-# 3b09aeefe5f248688e31f5c79f55f3a8
 msgid "Changes"
 msgstr "Changes"
 
-# e49dd994802a4f7db092d8854ea73d29
 msgid "the license has changed to LGPL from GPL."
 msgstr "the license has changed to LGPL from GPL."
 
-# c87201e674834c13811299e34b4173a1
 msgid "2005/06/23"
 msgstr "2005/06/23"
 
-# d7b3b0dda1c642dbacca044640f76ffa
 msgid "advanced API functions implemented"
 msgstr "advanced API functions implemented"
 
-# ee0998f99a5c491ead5716e162829839
 msgid "2005/04/12"
 msgstr "2005/04/12"
 
-# eaac2539c2984a59ad743c9881a58249
 msgid ""
 "applied ftb patch for mysql binding from <ko****@yappo*****> 'IN BOOLEAN "
 "MODE' supported"
@@ -4558,6 +3567,5 @@ msgstr ""
 "applied ftb patch for mysql binding from <ko****@yappo*****> 'IN BOOLEAN "
 "MODE' supported"
 
-# b99033b17c7a4902a9a56da071050e29
 #~ msgid "[doc] Fixed a description of table_remove command."
 #~ msgstr "[doc] Fixed a description of table_remove command."

  Modified: doc/locale/en/LC_MESSAGES/reference.po (+0 -3535)
===================================================================
--- doc/locale/en/LC_MESSAGES/reference.po    2014-01-23 18:04:29 +0900 (7185a13)
+++ doc/locale/en/LC_MESSAGES/reference.po    2014-01-23 19:01:31 +0900 (213ea88)
@@ -17,145 +17,35 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-# fae684b817f04e9bb604ea38eea7dec8
-# 5569d78ca4a14e74a3913277f01b1995
-# b177a904c9364722b0faf82cfa41a5ae
-# 5e2d173035da4f64994455dc15e7fed7
-# 61261135a16246c09d1798ee40f58f73
-# 389d4680414445b09c2cf5a7dd5ed0a0
-# 0b8fd9b3b6dd4bd693a16f5cd0eec874
-# 7a9327ddabb34af0adc0e4ebe4a9fa39
-# a9eea2b111af4ce68fec9b221aa9c245
-# 084b951ca2034f41bed7dd939bd0030e
-# 4d3fd4ebfaac4f89b0596d64aec1a307
-# 16af83ee2623426abcce62b55b471986
-# f59f1b77af5949159b6dfb6e7556c4ce
-# b734d059afc145a3afbbececccaf7322
-# 823538e93a304667a03b64169bd8dbb3
-# 21bd61e620f94cc0a874cba8eecf24b2
-# 48e92493f18e44a8b1b890ba6b440688
-# 53fd47d24373446d860f1e0192355d00
-# 8b0bf87dfefb4ffa906e9b306e618cb2
-# 1df0f91d29bd4b4e8d8be7db47a990ab
-# 0e1048aed8544a6a938f0a8a5c3716e1
-# 2282f8c8d5264111a5492a3025887a76
-# c9c7f609481b45dfa207522954eae3cc
-# 6ae8376f32ac4551bf2f8f0b8073364a
-# d999e175555643ec8cf0fb3ce4624433
-# 328d569c7c834a57a552f1c2e4224146
-# 543bce5f1ca24b9baf440a1e17615795
-# c06fc146028548faa4d11022b2e82e13
-# 02a0d3d876aa4db58fbcddd2254e3fae
-# f5de2b78bf2b4ed496756452313864d5
-# 9ea8ea1686c14376b8efe62c63161520
-# 079ba7ccddf74440beeab7e947e91f6b
-# 2df957e603034ef183553143b67baf6d
-# ed3eb17b5fb649a6b27ee28e8256d242
-# 3bdf48f4ff344e57ae09eb126f3ba317
-# 7bb640121072400abffac236bfbdfed6
-# 07bd2c9d5fea460688e6560ac47cb50c
-# f4b26aa2c92742e4ab36420d58a4484e
-# 0bfbe09ce37849089c2a3981c920ae41
-# b85f7d29a1fa47cb9a48fcf50d8271a3
-# 569aeda86e1a474a91d27a8aad042ab9
-# 11d31bd1d68b469cb087dc3192470f9e
-# 114e79b89fee4500b83e10a045337db6
-# 5769c556045a41bfbe806b1dd378cbf8
-# e8a101eba1084aada3fd6159817b3bac
-# e995ada593564069b1b8e6e52648b58f
-# 0f93c92daef94b0d8e6dfbe423e9ddc1
-# 35f37cdba81b4c13b2aa84bda6f0e88a
-# 26cefa60cfc244f3a203124c1f159006
-# 7d4d9e7c386044f48807b0de39bdf20b
-# fffa6de389974bbd99150554b2d4a3d0
-# 3fde8e68941346df838e96a333afb18c
-# e268792b259d4c38b9eea718913e0fac
-# c2e71929c0c74255bab99d5cbfb791e4
-# 060cc9fb40e5488fbd45a91b95236c06
-# 00bcf438a43847299655f1a263ef5936
-# f13f05baf3044eb993596dad9dda94d0
-# 1e82c75235e542a4a0a00f78ae53cad1
-# 94f3cb878f524a85acbec29f8bf75197
-# 94be126fbcb943a2842485505b0c5ff3
-# 23b196bc9e544887ae75e53f59268c34
-# 65f757320c9740dc9c0705427fd86e61
-# 1bbc4c52e9ab42bbb592f0d541d8d862
-# e2c8843d5d1a4d70af3387427c0400fa
-# b7269fd4ce464100b6633df235e58765
-# 9f9e7981568c4715992c2b40f4edb599
-# 9f9e7981568c4715992c2b40f4edb599
-# 9f9e7981568c4715992c2b40f4edb599
-# 9f9e7981568c4715992c2b40f4edb599
-# 9f9e7981568c4715992c2b40f4edb599
-# 9f9e7981568c4715992c2b40f4edb599
-# 9f9e7981568c4715992c2b40f4edb599
-# 9f9e7981568c4715992c2b40f4edb599
-# 9f9e7981568c4715992c2b40f4edb599
-# 9f9e7981568c4715992c2b40f4edb599
-# 9f9e7981568c4715992c2b40f4edb599
-# 9f9e7981568c4715992c2b40f4edb599
-# 9f9e7981568c4715992c2b40f4edb599
-# 9f9e7981568c4715992c2b40f4edb599
-# 9f9e7981568c4715992c2b40f4edb599
-# 9f9e7981568c4715992c2b40f4edb599
-# 9f9e7981568c4715992c2b40f4edb599
-# 9f9e7981568c4715992c2b40f4edb599
-# 9f9e7981568c4715992c2b40f4edb599
-# 9f9e7981568c4715992c2b40f4edb599
-# 9f9e7981568c4715992c2b40f4edb599
-# 9f9e7981568c4715992c2b40f4edb599
-# 9f9e7981568c4715992c2b40f4edb599
-# 9f9e7981568c4715992c2b40f4edb599
-# 9f9e7981568c4715992c2b40f4edb599
-# 9f9e7981568c4715992c2b40f4edb599
-# 9f9e7981568c4715992c2b40f4edb599
-# 3f0985f7e99f45778d1ca34387bf9713
-# fa3409871ac8403c8118e3a106d409b1
-# eb671999c645429593dadd133b107822
-# d1088138b273443c9c273679e00db786
-# 5941cc215b36491b921321e40257d039
-# 560546aa132c40bcbe7f39ecacaad414
-# b7d6effd757d44c2961ac412a77bac40
 msgid "Execution example::"
 msgstr "Execution example::"
 
-# 0a4e5e0c53a34cb9a7b1db8bcca4c533
 msgid "リファレンスマニュアル"
 msgstr "リファレンスマニュアル"
 
-# 2a83bf745ed540299b19869d62c7ab94
 msgid "API"
 msgstr "API"
 
-# 8bb0cfb30f4d4f949d7a059ed331d9cd
 msgid ""
 "Groonga can be used as a fulltext search library. This section describes "
 "APIs that are provided by groonga."
 msgstr ""
 
-# 2e8dfe947d1740fc9e0dfb6985beff59
 msgid "Global configurations"
 msgstr ""
 
-# 98cc3b12e0034f3ead32d8658048ada4
-# 8e4c52515c554cdaa329c0739e17f94c
-# 6113f4f60edf40d785b4df6daec7db75
 msgid "Summary"
 msgstr "Summary"
 
-# 20fe5a9f1ab148b380ad256eef7139ef
 msgid "Groonga has the global configurations. You can access them by API."
 msgstr ""
 
-# 7a55e4786dd348d286e9872d75a24369
 msgid "Reference"
 msgstr ""
 
-# 40080b28b5f5428fad508f5cc3c9ebf8
 msgid "Returns the lock timeout."
 msgstr ""
 
-# cbf3e0c9e395453899da6b78b0911374
 msgid ""
 ":c:type:`grn_ctx` acquires a lock for updating a shared value. If other :c:"
 "type:`grn_ctx` is already updating the same value, :c:type:`grn_ctx` that "
@@ -165,79 +55,64 @@ msgid ""
 "acquires a lock until ``timeout`` times, the tries are failed."
 msgstr ""
 
-# 3703fd3c9965447f9a98172860e77f36
 msgid ""
 "The default lock timeout is ``10000000``. It means that Groonga doesn't "
 "report a lock failure until about 3 hours.  (1 * 10000000 [msec] = 10000 "
 "[sec] = 166.666... [min] = 2.777... [hour])"
 msgstr ""
 
-# c1a6146e55964c1d9a943792c3b72f4c
 msgid "The lock timeout."
 msgstr ""
 
-# 15320fcf65ad4b00b2f054f2e3400905
 msgid "Sets the lock timeout."
 msgstr ""
 
-# a83d3a3c6cf7450f990a5c09950a3d89
 msgid "See :c:function:`grn_get_lock_timeout` about lock timeout."
 msgstr ""
 
-# ac378a0557b64f8fad24bc306bf088cd
 msgid "There are some special values for ``timeout``."
 msgstr ""
 
-# 278eed0cf61f4bd9a4b09b90cd2c330e
 msgid ""
 "``0``: It means that Groonga doesn't retry acquiring a lock. Groonga reports "
 "a failure after one lock acquirement failure."
 msgstr ""
 
-# 914f686be3d74047bd19d98dfbb262cc
 msgid ""
 "negative value: It means that Groonga retries acquiring a lock until Groonga "
 "can acquire a lock."
 msgstr ""
 
-# 0a15e9659f7146139d21f08874c87890
 msgid "The new lock timeout."
 msgstr ""
 
-# b434f4a38ce447cf92a6dc56088d9e21
 msgid "``GRN_SUCCESS``. It doesn't fail."
 msgstr ""
 
-# 8820d997f92c4fbb9cee896aa11e3694
 msgid "``grn_cache``"
 msgstr ""
 
-# 12f98dcc9a544805b5da241424f52c20
 msgid "This API is experimental."
 msgstr ""
 
-# e5f96fbe2d314ec89ff722d83efa2ae1
 msgid ""
 "``grn_cache`` is a data store that keeps responses of :doc:`/reference/"
 "commands/select` command. It is not general use cache object. It is only "
 "for :doc:`/reference/commands/select` command."
 msgstr ""
 
-# 215e6cc2301c450e86534b9fb52503b6
 msgid ""
 "You can just change the current cache object by :c:func:"
 "`grn_cache_current_set()`. :doc:`/reference/commands/select` command "
 "response cache is done internally."
 msgstr ""
 
-# 48f56b7eaffd4f378fc88983ef25a176
 msgid ""
 ":doc:`/reference/commands/select` command uses one global cache object. If "
 "you open multiple databases, the one cache is shared. It is an important "
 "problem."
 msgstr ""
 
-# 78402ea7a83c40eda58a2d1fd7ca0fcc
 msgid ""
 "If you open multiple databases and use :doc:`/reference/commands/select` "
 "command, you need to use ``grn_cache`` object. It is :doc:`/reference/"
@@ -247,238 +122,163 @@ msgid ""
 "case."
 msgstr ""
 
-# f65970f3a4264e33b0ed18b5521f53ae
-# c41e9a5775254864920a3c5d413bc3f0
-# dbae9c01ac594defa0f2e485e76c0929
-# b07bab7cb2fd41b0998402e48dcf382b
-# 091b051231aa46808e77dacc6fc5032e
-# a3d0d9e778ae4795ae25444729bacc43
-# c718f34b2a0b454896badee8ac487d5b
-# 11d6f67d10cf49079fc7504fe656d181
-# 5f705ad5205b47bba758a79939864e9c
-# 63706a8aa5aa4123ba3331add4d09cea
-# 08d03411c4b5418b8db31591c1d7b59d
-# f6b8093f5a4f4cd89e30878bedd1c37f
 msgid "Example"
 msgstr ""
 
-# 85716c321ab14a7884052c5eccf358bc
 msgid "Here is an example that change the current cache object."
 msgstr ""
 
-# 78e137080c6c4b94a79f5e4c8e5baa31
 msgid ""
 "It is an opaque cache object. You can create a ``grn_cache`` by :c:func:"
 "`grn_cache_open()` and free the created object by :c:func:`grn_cache_close()"
 "`."
 msgstr ""
 
-# 11cfbccd570a4ea39f66b899086a1e62
 msgid "Creates a new cache object."
 msgstr ""
 
-# 989891ab4cc84e5ca1c95fce41e31d69
 msgid ""
 "If memory allocation for the new cache object is failed, ``NULL`` is "
 "returned. Error information is stored into the ``ctx``."
 msgstr ""
 
-# 11f1389dffec43c49ff34f6697010680
-# 11f1389dffec43c49ff34f6697010680
-# 11f1389dffec43c49ff34f6697010680
-# 11f1389dffec43c49ff34f6697010680
-# 11f1389dffec43c49ff34f6697010680
-# 11f1389dffec43c49ff34f6697010680
 msgid "The context."
 msgstr ""
 
-# 53fead701bc44abb8b10381fad72113b
 msgid ""
 "A newly allocated cache object on success, ``NULL`` otherwise. The returned "
 "cache object must be freed by :c:func:`grn_cache_close()`."
 msgstr ""
 
-# db36a5b3386f46df9e90612155e9f61e
 msgid "Frees resourses of the ``cache``."
 msgstr ""
 
-# 77849051c4db4925a22d109db25deffd
 msgid "The cache object to be freed."
 msgstr ""
 
-# 68f27871b92b4fef976a7e1a4e74b75d
-# 68f27871b92b4fef976a7e1a4e74b75d
-# 68f27871b92b4fef976a7e1a4e74b75d
 msgid "``GRN_SUCCESS`` on success, not ``GRN_SUCCESS`` otherwise."
 msgstr ""
 
-# e69485a4441244be9c634bee7f664546
 msgid ""
 "Sets the cache object that is used in :doc:`/reference/commands/select` "
 "command."
 msgstr ""
 
-# e69485a4441244be9c634bee7f664546
 msgid ""
 "The cache object that is used in :doc:`/reference/commands/select` command."
 msgstr ""
 
-# ad0f52354e9e42f7af8c27266f60000a
 msgid ""
 "Gets the cache object that is used in :doc:`/reference/commands/select` "
 "command."
 msgstr ""
 
-# 54a2bc60bc0241b5be1c7291e7751da9
 msgid ""
 "The cache object that is used in :doc:`/reference/commands/select` command. "
 "It may be ``NULL``."
 msgstr ""
 
-# f085cc1f495c47c8b745ababaad366ed
 msgid "Sets the max number of entries of the cache object."
 msgstr ""
 
-# 079339ce8b51494baf884067b6adb68b
 msgid "The cache object to be changed."
 msgstr ""
 
-# 46621f4a93c04a188ff35d4882f6941e
 msgid "The new max number of entries of the cache object."
 msgstr ""
 
-# c478cd4d46444a4fb1f94b317d814473
 msgid "Gets the max number of entries of the cache object."
 msgstr ""
 
-# df857434d0d6472a958c3f2920b39675
 msgid "The target cache object."
 msgstr ""
 
-# 7f384872c8a1492e97498a02e304cb41
 msgid "The max number of entries of the cache object."
 msgstr ""
 
-# 1bb85c12ead941fc9337f692e1d0a405
-# fc658bcbdc244395a315bc123ec1f1ff
-# 4614e1fa49044fae9d94d0979334d9f1
 msgid "``grn_column``"
 msgstr ""
 
-# 2c695e93867f43e1a8ee7a2e284e70c2
-# 753e9e02d72d4dbc9d9cdd8aea4dd06e
-# b2c80038fe264d2f857b67ffd695d62c
 msgid "TODO..."
 msgstr "TODO..."
 
-# d4d1f6791d8346b3a4af6c334368f6e1
 msgid "It returns the name of :doc:`/reference/pseudo_column` ``_id``."
 msgstr ""
 
-# 25f9d1d7182b42feb574421200138a8e
 msgid ""
 "It is useful to use with :c:macro:`GRN_COLUMN_NAME_ID_LEN` like the "
 "following::"
 msgstr ""
 
-# 5643ef928f044e6d86a74e28509c2cc5
-# e48043b1f0524b84a6f04b34fdc2c845
-# 575b45322c64474885832eb9e864d0c1
-# 520a1ab9cd0744009f75472aa71728f8
-# b0c6042393244c1c993417baf57ae4dc
-# f60c73217d0b423bb7dd4c295c8df013
-# 3d46a783edaa49d58e82267b35ef5209
-# 3bf102ad56b94781bcdfeccb7302b5b3
-# bca8dff4c06c4561b7ab4ac9cabd2b49
-# 7830686a81ce42bfad5a9c9d47a389cf
 msgid "Since 3.1.1."
 msgstr ""
 
-# 1ea0f549a959489999fe6422535abc85
 msgid "It returns the byte size of :c:macro:`GRN_COLUMN_NAME_ID`."
 msgstr ""
 
-# d4d1f6791d8346b3a4af6c334368f6e1
 msgid "It returns the name of :doc:`/reference/pseudo_column` ``_key``."
 msgstr ""
 
-# ffbc6b5594774521a12a4fae696ea76f
 msgid ""
 "It is useful to use with :c:macro:`GRN_COLUMN_NAME_KEY_LEN` like the "
 "following::"
 msgstr ""
 
-# a7e59c8cef984f04b7b18165d23a992d
 msgid "It returns the byte size of :c:macro:`GRN_COLUMN_NAME_KEY`."
 msgstr ""
 
-# d4d1f6791d8346b3a4af6c334368f6e1
 msgid "It returns the name of :doc:`/reference/pseudo_column` ``_value``."
 msgstr ""
 
-# e6dc3dce1f134de983660a106648827c
 msgid ""
 "It is useful to use with :c:macro:`GRN_COLUMN_NAME_VALUE_LEN` like the "
 "following::"
 msgstr ""
 
-# 384baa96cef84c108dcea0c9e0f6cd39
 msgid "It returns the byte size of :c:macro:`GRN_COLUMN_NAME_VALUE`."
 msgstr ""
 
-# d4d1f6791d8346b3a4af6c334368f6e1
 msgid "It returns the name of :doc:`/reference/pseudo_column` ``_score``."
 msgstr ""
 
-# 9199b48c7e934a18a7de58448fe2d5dd
 msgid ""
 "It is useful to use with :c:macro:`GRN_COLUMN_NAME_SCORE_LEN` like the "
 "following::"
 msgstr ""
 
-# 092eec0788a5464eb7d477fa43e348ed
 msgid "It returns the byte size of :c:macro:`GRN_COLUMN_NAME_SCORE`."
 msgstr ""
 
-# 922734d02d69479d8ba333b354558c7d
 msgid "It returns the name of :doc:`/reference/pseudo_column` ``_nsubrecs``."
 msgstr ""
 
-# b8035b3a6ba7435aaa6a11cca957123b
 msgid ""
 "It is useful to use with :c:macro:`GRN_COLUMN_NAME_NSUBRECS_LEN` like the "
 "following::"
 msgstr ""
 
-# 3a5de2f58e464017bcc307dacc1513a0
 msgid "It returns the byte size of :c:macro:`GRN_COLUMN_NAME_NSUBRECS`."
 msgstr ""
 
-# a3f1211c264a4bf48e40b943774940ef
 msgid ""
 "tableに新たなカラムを定義します。nameは省略できません。一つのtableに同一の"
 "nameのcolumnを複数定義することはできません。"
 msgstr ""
 
-# 928290e83045469685a30d9059938b69
 msgid "対象tableを指定します。"
 msgstr ""
 
-# 928290e83045469685a30d9059938b69
 msgid "カラム名を指定します。"
 msgstr ""
 
-# 65eb2f34dab44c7cb9a82b94f8742d15
 msgid "nameパラメータのsize(byte)を指定します。"
 msgstr ""
 
-# 2498ab13d8a64c64ada120f2dafd6383
 msgid ""
 "カラムを格納するファイルパスを指定します。 flagsに ``GRN_OBJ_PERSISTENT`` が"
 "指定されている場合のみ有効です。 NULLなら自動的にファイルパスが付与されます。"
 msgstr ""
 
-# ca343d3daca94c89a45b602f19420429
 msgid ""
 "``GRN_OBJ_PERSISTENT`` を指定すると永続columnとなります。  "
 "``GRN_OBJ_COLUMN_INDEX`` を指定すると転置インデックスとなります。  "
@@ -493,245 +293,188 @@ msgid ""
 "と、転置索引に出現位置情報を合わせて格納します。"
 msgstr ""
 
-# 8b765bf4c4884dfe823dc463ac961b2f
 msgid "``GRN_OBJ_PERSISTENT`` を指定すると永続columnとなります。"
 msgstr ""
 
-# 62052e67846c4029bdbfcab47f2f3b77
 msgid "``GRN_OBJ_COLUMN_INDEX`` を指定すると転置インデックスとなります。"
 msgstr ""
 
-# e7fbea1a1b2d471b9650a2f5e70d6bb6
 msgid "``GRN_OBJ_COLUMN_SCALAR`` を指定するとスカラ値(単独の値)を格納します。"
 msgstr ""
 
-# 7d859dd00c34449390a344930d77b98a
 msgid "``GRN_OBJ_COLUMN_VECTOR`` を指定すると値の配列を格納します。"
 msgstr ""
 
-# 8bc0eabca1ac47ffb6359328f63c427a
 msgid "``GRN_OBJ_COMPRESS_ZLIB`` を指定すると値をzlib圧縮して格納します。"
 msgstr ""
 
-# dc2ff7c86ddb4e38ad7e7c17934b05a6
 msgid "``GRN_OBJ_COMPRESS_LZO`` を指定すると値をlzo圧縮して格納します。"
 msgstr ""
 
-# 7215805d6cde4c4ebfcbe4cc24e70520
 msgid ""
 "``GRN_OBJ_COLUMN_INDEX`` と共に ``GRN_OBJ_WITH_SECTION`` を指定すると、転置索"
 "引にsection(段落情報)を合わせて格納します。"
 msgstr ""
 
-# 42c2e2826bf5453d92832f4e97da349e
 msgid ""
 "``GRN_OBJ_COLUMN_INDEX`` と共に ``GRN_OBJ_WITH_WEIGHT`` を指定すると、転置索"
 "引にweight情報を合わせて格納します。"
 msgstr ""
 
-# 5d329283e3344c8a9dcec1bc30bbf89f
 msgid ""
 "``GRN_OBJ_COLUMN_INDEX`` と共に ``GRN_OBJ_WITH_POSITION`` を指定すると、転置"
 "索引に出現位置情報を合わせて格納します。"
 msgstr ""
 
-# 99c8b18488ec4819a653a6b1df6000fa
 msgid "カラム値の型を指定します。定義済みのtypeあるいはtableを指定できます。"
 msgstr ""
 
-# afa5e2e02ccd4e2a88527d73b73aeeb6
 msgid ""
 "oldvalue, newvalueの値から得られるキーに対応するcolumnの値の中の、id, section"
 "に対応するエントリを更新します。columnは ``GRN_OBJ_COLUMN_INDEX`` 型のカラム"
 "でなければなりません。"
 msgstr ""
 
-# 928290e83045469685a30d9059938b69
 msgid "対象columnを指定します。"
 msgstr ""
 
-# ec50c5ed197e495b8615b8cf51f53406
 msgid "対象レコードのIDを指定します。"
 msgstr ""
 
-# 928290e83045469685a30d9059938b69
 msgid "対象レコードのセクション番号を指定します。"
 msgstr ""
 
-# 9ff13e3fccf14788903877412638ac4f
 msgid "更新前の値を指定します。"
 msgstr ""
 
-# 9ff13e3fccf14788903877412638ac4f
 msgid "更新後の値を指定します。"
 msgstr ""
 
-# 1a23964c638d4c35879e342ae9097a1e
 msgid "columnが属するtableを返します。"
 msgstr ""
 
-# edd95123dd5441ee95a90cd2384e246a
 msgid ""
 "ctxが使用するdbにおいてcolumnに対応する名前をnameに更新します。columnは永続オ"
 "ブジェクトでなければいけません。"
 msgstr ""
 
-# 9ff13e3fccf14788903877412638ac4f
 msgid "新しい名前を指定します。"
 msgstr ""
 
-# be29349de7804bb4a97b2d6a977331fe
-# 1b0adba19cf14b3cb6ae64f226c1fec0
 msgid "nameパラメータのsize(byte)を指定します。"
 msgstr ""
 
-# 1c0a1c8972a84efdb8e5d34ba662c1b4
 msgid ""
 "カラムobjの名前の長さを返します。buf_sizeの長さが名前の長さ以上であった場合"
 "は、namebufに該当する名前をコピーします。"
 msgstr ""
 
-# 928290e83045469685a30d9059938b69
 msgid "対象objectを指定します。"
 msgstr ""
 
-# c9c1a193c6b94823923ecff6d32138dc
-# 1e175659195148279e4c959532f0f662
 msgid "名前を格納するバッファ(呼出側で準備する)を指定します。"
 msgstr ""
 
-# afecc961bfcd48e3bdf9ed88498560a8
-# 0346d0bbd9e648318d46abfaca94bb42
 msgid "namebufのサイズ(byte長)を指定します。"
 msgstr ""
 
-# 674b31d96e574a57b3d9f09f7ba1be1d
 msgid ""
 "columnに張られているindexのうち、opの操作を実行可能なものの数を返します。また"
 "それらのidを、buf_sizeに指定された個数を上限としてindexbufに返します。"
 msgstr ""
 
-# 928290e83045469685a30d9059938b69
 msgid "対象のcolumnを指定します。"
 msgstr ""
 
-# 81a14ee12eb44b0eb705e8ccf431a59b
 msgid "indexで実行したい操作を指定します。"
 msgstr ""
 
-# eeb87f22defd4f329717c7dd58349e75
 msgid "indexを格納するバッファ(呼出側で準備する)を指定します。"
 msgstr ""
 
-# 15935b9ce1fb437e8de67fa0b7cb015b
 msgid "indexbufのサイズ(byte長)を指定します。"
 msgstr ""
 
-# c917dc2a15474d9bb3e608b1192f1cee
 msgid "section番号を格納するint長バッファ(呼出側で準備する)を指定します。"
 msgstr ""
 
-# 1a2e9f3067bd46f7a2c9414a96ed759f
 msgid "``grn_command_version``"
 msgstr ""
 
-# 17528d083d444a74b4330726fd22b6b0
 msgid "デフォルトのcommand_versionを返します。"
 msgstr ""
 
-# 4f95bbcc7b9d4562942297ede802fd16
 msgid "デフォルトのcommand_versionを変更します。"
 msgstr ""
 
-# ec50c5ed197e495b8615b8cf51f53406
 msgid "変更後のデフォルトのcommand_versionを指定します。"
 msgstr ""
 
-# 239c88c24b0443edab6950357bb7cfc7
 msgid "``grn_ctx``"
 msgstr ""
 
-# 9c87604b21de4dc19319363c7084b43a
 msgid ""
 ":c:type:`grn_ctx` is the most important object. :c:type:`grn_ctx` keeps the "
 "current infomation such as:"
 msgstr ""
 
-# fedaf0cfcf864105ab0ae7c7790d3d1b
 msgid "The last occurred error."
 msgstr ""
 
-# b9aca53759874d80b1913aeba24aaa0c
 msgid "The current encoding."
 msgstr ""
 
-# aeb04a3fb4324813bb1476222742772d
 msgid "The default thresholds. (e.g. :ref:`match-escalation-threshold`)"
 msgstr ""
 
-# c40909d22d59486fac774d29ace86691
 msgid ""
 "The default command version. (See :doc:`/reference/command/command_version`)"
 msgstr ""
 
-# 54ab4eafa7804bc4a2164ca6c2aa96a7
 msgid ":c:type:`grn_ctx` provides platform features such as:"
 msgstr ""
 
-# 217977267ac849499810ece858404a4e
 msgid "Memory management."
 msgstr ""
 
-# 9c6f0760ac804d9abbb224066195056c
 msgid "Logging."
 msgstr ""
 
-# a8d94993cb8b430cb8b48832fd7bcb39
 msgid "Most APIs receive :c:type:`grn_ctx` as the first argument."
 msgstr ""
 
-# f751960e07fb430b9fba756ab9db6932
 msgid ""
 "You can't use the same :c:type:`grn_ctx` from two or more threads. You need "
 "to create a :c:type:`grn_ctx` for a thread. You can use two or more :c:type:"
 "`grn_ctx` in a thread but it is not needed for usual use-case."
 msgstr ""
 
-# dc36f270bb654b859c9f82782b258369
 msgid "ctxを初期化します。"
 msgstr ""
 
-# 1ffd2f63ca12482e96f5e50ce4519b0c
 msgid "初期化するctx構造体へのポインタを指定します。"
 msgstr ""
 
-# ec50c5ed197e495b8615b8cf51f53406
 msgid "初期化する ``ctx`` のオプションを指定します。"
 msgstr ""
 
-# b12b3107735244579a9a949d71cd2daa
 msgid "``GRN_SUCCESS`` on success, not ``GRN_SUCCESS`` on error."
 msgstr ""
 
-# 4c2861acf7e44aa597f11b25459e154c
 msgid "ctxの管理するメモリを解放し、使用を終了します。"
 msgstr ""
 
-# dc5ec4ae81464bffaaa9f8b74f1f0e65
 msgid ""
 "If ``ctx`` is initialized by :c:func:`grn_ctx_open()` not :c:func:"
 "`grn_ctx_init()`. You need also to call :c:func:`grn_ctx_close()`."
 msgstr ""
 
-# 65eb2f34dab44c7cb9a82b94f8742d15
 msgid "解放するctx構造体へのポインタを指定します。"
 msgstr ""
 
-# b64f2ad3c7cb4583a4bf8e4d343d87ac
 msgid "初期化された :c:type:`grn_ctx` オブジェクトを返します。"
 msgstr ""
 
-# e166bb0963784867ab3bc5b3aad998e4
 msgid ""
 ":c:func:`grn_ctx_init()` で初期化された :c:type:`grn_ctx` オブジェクトは構造"
 "体の実体をAPIの呼び元で確保するのに対して、 :c:func:`grn_ctx_open()` では"
@@ -742,119 +485,94 @@ msgid ""
 "`grn_obj_close()` によって解放しても問題ありません。"
 msgstr ""
 
-# a834af6fd9d54fb3818bef8be8cc5351
 msgid ""
 "It calls :c:func:`grn_ctx_fin()` and frees allocated memory for ``ctx`` by :"
 "c:func:`grn_ctx_open()`."
 msgstr ""
 
-# b07fd311189b4e038384cb0314f0b10e
 msgid "no longer needed :c:type:`grn_ctx`."
 msgstr ""
 
-# ac75b0558db348a8aa4310b9265a97a9
 msgid "ctxを破棄するときに呼ばれる関数を設定します。"
 msgstr ""
 
-# 928290e83045469685a30d9059938b69
 msgid "対象ctxを指定します。"
 msgstr ""
 
-# b94b05ad070e4ce1aae302c5b55bdbb5
 msgid "``ctx`` を破棄するときに呼ばれる関数を指定します。"
 msgstr ""
 
-# daa1b26a6cef4154bb1a9688ce752836
 msgid "command_versionを返します。"
 msgstr ""
 
-# daa1b26a6cef4154bb1a9688ce752836
 msgid "command_versionを変更します。"
 msgstr ""
 
-# 72350cbc93dd4ff69b3ce7ed1953c817
 msgid "変更後のcommand_versionを指定します。"
 msgstr ""
 
-# 2194b3980e4f45ceb510d956e362ad59
 msgid ""
 "ctxが操作対象とするdbを指定します。NULLを指定した場合は、dbを操作しない状態"
 "(init直後の状態)になります。"
 msgstr ""
 
-# 5a92d8bc8bc34363825e39927ded5cf7
 msgid "Don't use it with :c:type:`grn_ctx` that has ``GRN_CTX_PER_DB`` flag."
 msgstr ""
 
-# bb7610ccb9ff4dd7a5a472fabe8c0701
 msgid "ctxが使用するdbを指定します。"
 msgstr ""
 
-# 95c176828c624b8bb53804d086cb8535
 msgid ""
 "ctxが現在操作対象としているdbを返します。dbを使用していない場合はNULLを返しま"
 "す。"
 msgstr ""
 
-# a018293c7489433dadcd1076a8b3cf74
 msgid ""
 "ctxが使用するdbからnameに対応するオブジェクトを検索して返す。nameに一致するオ"
 "ブジェクトが存在しなければNULLを返す。"
 msgstr ""
 
-# 63fa6e7a229d4a5d8952ba88e5f4d79b
 msgid "検索しようとするオブジェクトの名前。"
 msgstr ""
 
-# 747e7623e9be40ecadf5eb84d1ef2fb9
 msgid ""
 "The number of bytes of name. If negative value is specified, name is assumed "
 "that NULL-terminated string."
 msgstr ""
 
-# 9c305c530df9474f9481a38936f6a299
 msgid ""
 "ctx、またはctxが使用するdbからidに対応するオブジェクトを検索して返す。idに一"
 "致するオブジェクトが存在しなければNULLを返す。"
 msgstr ""
 
-# 63fa6e7a229d4a5d8952ba88e5f4d79b
 msgid "検索しようとするオブジェクトのidを指定します。"
 msgstr ""
 
-# 9579ad0b3efb4199bd5ee9cc26be46ea
 msgid "``grn_db``"
 msgstr ""
 
-# cd2ca3db76ad4a2cbb2e0ce8c17fdce1
 msgid "It is used for specifying options for :c:func:`grn_db_create`."
 msgstr ""
 
-# fd97b20dce3f48a3a1558312af2b2a85
 msgid "組み込み型の名前となるnul終端文字列の配列を指定する。"
 msgstr ""
 
-# ef859b66253247f9ac2d79f1beca1366
 msgid ""
 "n_builtin_type_namesには、optarg.builtin_type_namesで指定する文字列の数を 指"
 "定する。配列のoffsetはenum型grn_builtin_typeの値に対応する。"
 msgstr ""
 
-# 04bdc06ed6dc4e848582d2cf203c2859
 msgid "新たなdbを作成します。"
 msgstr ""
 
-# cf4901d7a48e42668b158ba3aa277736
 msgid "初期化済みの :c:type:`grn_ctx` を指定します。"
 msgstr ""
 
-# 77fb9a382ff84c748cf170fdfc4a930e
 msgid ""
 "作成するdbを格納するファイルパスを指定します。NULLならtemporary dbとなりま"
 "す。NULL以外のパスを指定した場合はpersistent dbとなります。"
 msgstr ""
 
-# c8f1468440cf4c729f020be9b993e032
 msgid ""
 "Currently, it is not used. It is just ignored.  作成するdbの組み込み型の名前"
 "を変更する時に指定します。  optarg.builtin_type_namesには、組み込み型の名前と"
@@ -863,15 +581,12 @@ msgid ""
 "型grn_builtin_typeの値に対応します。"
 msgstr ""
 
-# 5853be4d2a4447378d190a5bc79584fc
 msgid "Currently, it is not used. It is just ignored."
 msgstr ""
 
-# 76e18b643b3b4551b36229496f46cbc7
 msgid "作成するdbの組み込み型の名前を変更する時に指定します。"
 msgstr ""
 
-# 8caa1d407be64d2794c281790349183b
 msgid ""
 "optarg.builtin_type_namesには、組み込み型の名前となるnull終端文字列の配列を指"
 "定します。optarg.n_builtin_type_namesには、optarg.builtin_type_namesで指定す"
@@ -879,181 +594,142 @@ msgid ""
 "す。"
 msgstr ""
 
-# 2f816a2e6f574a5ea06a973c694ba5ae
 msgid "既存のdbを開きます。"
 msgstr ""
 
-# 65eb2f34dab44c7cb9a82b94f8742d15
 msgid "開こうとするdbを格納するファイルパスを指定します。"
 msgstr ""
 
-# 92b203bf288b4dd29219098074d14a28
 msgid "dbの内容の最終更新時刻を現在時刻にします。"
 msgstr ""
 
-# 489e78cf246f4e7a83e398ab63c86b0f
 msgid "最終更新時刻はキャッシュが有効かどうかの判断などに利用されます。"
 msgstr ""
 
-# bb7610ccb9ff4dd7a5a472fabe8c0701
 msgid "内容が変更されたdbを指定します。"
 msgstr ""
 
-# 51ec3260fbb0429b899a2d4738546ce0
 msgid "objの属するdbを返します。"
 msgstr ""
 
-# 1a9b0c591b57494ab57116846c260947
 msgid "``grn_encoding``"
 msgstr ""
 
-# 1cf238009043408087088ed70616bb57
 msgid "デフォルトのencodingを返します。"
 msgstr ""
 
-# 21cc068a28f44701848921b25ad5875e
 msgid "デフォルトのencodingを変更します。"
 msgstr ""
 
-# ec50c5ed197e495b8615b8cf51f53406
 msgid "変更後のデフォルトのencodingを指定します。"
 msgstr ""
 
-# 59c4a6905bfc41609fb9ed90380ca52f
 msgid ""
 "Returns string representation for the encoding. For example, "
 "'grn_encoding_to_string(``GRN_ENC_UTF8``)' returns '\"utf8\"'."
 msgstr ""
 
-# 50fc2c0b06eb4e2583e6ced491d885db
 msgid "\"unknown\" is returned for invalid encoding."
 msgstr ""
 
-# e8f5222efe264d8394c1e946f8bef49c
 msgid "The encoding."
 msgstr ""
 
-# 2ca2c435a4fe45ad83237b6c378d7da5
 msgid ""
 "Parses encoding name and returns grn_encoding. For example, "
 "'grn_encoding_parse(\"UTF8\")' returns '``GRN_ENC_UTF8``'."
 msgstr ""
 
-# a804fa077ae34507ba921fd0208e050e
 msgid "``GRN_ENC_UTF8`` is returned for invalid encoding name."
 msgstr ""
 
-# b596e610262e411eaf1179ec2ad1fe84
 msgid "The encoding name."
 msgstr ""
 
-# 2cd696ac332b4625990f92d5219f4968
-# 68c08455a69847a79d64d1a1338bc74b
 msgid "grn_expr"
 msgstr "grn_expr"
 
-# b0780d14615e4695a4898b39784f594b
 msgid ""
 "`grn_expr` is an :c:type:`grn_obj` that represents an expression. Here is a "
 "list of what expression can do:"
 msgstr ""
 
-# fcc1fb06bb4446e6a850a1fccca5b6a4
 msgid ""
 "Expression can apply some operations to a record by :c:func:`grn_expr_exec`."
 msgstr ""
 
-# 4d7f128a7c054034916464ce7e6506d0
 msgid ""
 "Expression can represents search condition. :c:func:`grn_table_select` can "
 "select records that match against the search condition represented by "
 "expression."
 msgstr ""
 
-# 80fcaf3d64cd4ea0bc39f9677ee5b983
 msgid "There are two string representations of expression:"
 msgstr ""
 
-# e8444044dfa741d3b70dc4687921d3ff
 msgid ":doc:`/reference/grn_expr/query_syntax`"
 msgstr ":doc:`/reference/grn_expr/query_syntax`"
 
-# db86abe681294dcc8cebc9e06a274d6c
 msgid ":doc:`/reference/grn_expr/script_syntax`"
 msgstr ":doc:`/reference/grn_expr/script_syntax`"
 
-# 9f97e26202bb49a9b15b8e3f061927ea
 msgid ""
 ":c:func:`grn_expr_parse` parses string represented expression and appends "
 "the parsed expression to another expression."
 msgstr ""
 
-# 099c393bca7f43f29231ee95ae38d7cc
 msgid "Escapes ``target_characters`` in ``string`` by ``escape_character``."
 msgstr ""
 
-# a26b30dc9b0743e5951fabc27082731f
 msgid ""
 "Its encoding must be the same encoding of ``string``. It is used for "
 "allocating buffer for ``escaped_string``."
 msgstr ""
 
-# 76e0d62611a24dd49b21d98cb805a16a
 msgid "String expression representation."
 msgstr ""
 
-# c42750f87258418782f38749a9ada8ac
 msgid ""
 "The byte size of ``string``. ``-1`` means ``string`` is NULL terminated "
 "string."
 msgstr ""
 
-# 250b4196bf6243efabf2e78b7a67c74d
 msgid ""
 "NULL terminated escape target characters. For example, ``\"+-><~*()\\\"\\\\:"
 "\"`` is ``target_characters`` for :doc:`/reference/grn_expr/query_syntax`."
 msgstr ""
 
-# 6cbd8aa8637847a791895db6c39eafd7
 msgid ""
 "The character to use escape a character in ``target_characters``. For "
 "example, ``\\\\`` (backslash) is ``escaped_character`` for :doc:`/reference/"
 "grn_expr/query_syntax`."
 msgstr ""
 
-# 715e11ab39d94b6096f4ad93eaa4917c
 msgid "The output of escaped ``string``. It should be text typed bulk."
 msgstr ""
 
-# b17e3310c7854707a28db8413e229e2c
 msgid "Escapes special characters in :doc:`/reference/grn_expr/query_syntax`."
 msgstr ""
 
-# 8fc94853600845daa0a2e0ed7358d43c
 msgid ""
 "Its encoding must be the same encoding of ``query``. It is used for "
 "allocating buffer for ``escaped_query``."
 msgstr ""
 
-# b17e3310c7854707a28db8413e229e2c
 msgid ""
 "String expression representation in :doc:`/reference/grn_expr/query_syntax`."
 msgstr ""
 
-# 249bd87a8dee4c6ea2c36838c31bf133
 msgid ""
 "The byte size of ``query``. ``-1`` means ``query`` is NULL terminated string."
 msgstr ""
 
-# aa5c98b382e84883882209296839d035
 msgid "The output of escaped ``query``. It should be text typed bulk."
 msgstr ""
 
-# b9a825c1ecf74c0bb5434906b79eed40
 msgid "``grn_geo``"
 msgstr ""
 
-# 5a3b213408ad4f10b9bfeb7977f9b818
 msgid ""
 "It selects records that are in the rectangle specified by top_left_point "
 "parameter and bottom_right_point parameter. Records are searched by index "
@@ -1061,83 +737,65 @@ msgid ""
 "operation."
 msgstr ""
 
-# 980538abb363453d8badd5e2d6067cd7
 msgid "the index column for TokyoGeoPoint or WGS84GeoPpoint type."
 msgstr ""
 
-# adf748fe60314529a5965babe6621a9c
 msgid ""
 "the top left point of the target rectangle. (ShortText, Text, LongText, "
 "TokyoGeoPoint or  WGS84GeoPoint)"
 msgstr ""
 
-# 0fc82afebf184ab8a21a429db1524106
-# de4e400b750847ada482b5140dc955d8
-# da31573a858040a28516820a4f231b4f
 msgid ""
 "the bottom right point of the target rectangle. (ShortText, Text, LongText, "
 "TokyoGeoPoint or WGS84GeoPoint)"
 msgstr ""
 
-# 57907214cc48400bbae341568ed6a565
 msgid ""
 "the table to store found record IDs. It must be ``GRN_TABLE_HASH_KEY`` type "
 "table."
 msgstr ""
 
-# 59fae738f0a94d3ab101510a0eb171bc
 msgid "the operator for matched records."
 msgstr ""
 
-# 40f85674c3d84801bc9ee2db16ca1fe7
 msgid ""
 "It estimates number of records in the rectangle specified by top_left_point "
 "parameter and bottom_right_point parameter. Number of records is estimated "
 "by index parameter. If an error is occurred, -1 is returned."
 msgstr ""
 
-# be9557850c19438b88fca92b56f752fe
-# 1ee5d670c69e45b9884ba1822ec4dbe7
 msgid ""
 "the top left point of the target rectangle. (ShortText, Text, LongText, "
 "TokyoGeoPoint or WGS84GeoPoint)"
 msgstr ""
 
-# c3840bfc6f43402286f8d2fb8a83bbcb
 msgid ""
 "It opens a cursor to get records in the rectangle specfied by top_left_point "
 "parameter and bottom_right_point parameter."
 msgstr ""
 
-# 422406c8fc8644a998ca4de50f665e42
 msgid ""
 "the cursor returns records from offset parameter position. offset parameter "
 "is based on 0."
 msgstr ""
 
-# 2b113e1ff098437c8b5bd6a8ca3b8628
 msgid "the cursor returns at most limit parameter records. -1 means no limit."
 msgstr ""
 
-# bacc218b8bbb4a078237220b51f39dc8
 msgid ""
 "It returns the next posting that has record ID. It returns NULL after all "
 "records are returned."
 msgstr ""
 
-# 1cfd076ed5974fe1a5e8f254cdb20f55
 msgid "the geo cursor."
 msgstr ""
 
-# f279de22eb064fb1a98d4c5bf36d89e6
 msgid "``grn_hook``"
 msgstr ""
 
-# 3e33d26ca8544b209fbc7f9d81971461
 msgid "objに対してhookを追加します。"
 msgstr ""
 
-# 0ddbccf08ea249f5bcc417d00bc75800
 msgid ""
 "``GRN_HOOK_GET`` は、objectの参照時に呼び出されるhookを定義します。  "
 "``GRN_HOOK_SET`` は、objectの更新時に呼び出されるhookを定義します。  "
@@ -1145,281 +803,220 @@ msgid ""
 "べたり、実行の中断を指示することができます。"
 msgstr ""
 
-# e6cef77fd7d745e783b257dc786f5c3a
 msgid "``GRN_HOOK_GET`` は、objectの参照時に呼び出されるhookを定義します。"
 msgstr ""
 
-# f2cab3c010cf4f9eaf056d57de101a22
 msgid "``GRN_HOOK_SET`` は、objectの更新時に呼び出されるhookを定義します。"
 msgstr ""
 
-# 763afe00e6dc4d9db0b7feb24cb4c757
 msgid ""
 "``GRN_HOOK_SELECT`` は、検索処理の実行中に適時呼び出され、処理の実行状況を調"
 "べたり、実行の中断を指示することができます。"
 msgstr ""
 
-# 206d74b57ca549bf966ecfcbe55d7592
 msgid ""
 "hookの実行順位。offsetに対応するhookの直前に新たなhookを挿入します。  0を指定"
 "した場合は先頭に挿入されます。-1を指定した場合は末尾に挿入されます。  object"
 "に複数のhookが定義されている場合は順位の順に呼び出されます。"
 msgstr ""
 
-# d95c918857314831a6e375f887dbe944
 msgid "hookの実行順位。offsetに対応するhookの直前に新たなhookを挿入します。"
 msgstr ""
 
-# 3f23bba66e0146568f7f6cbfdfd1040a
 msgid ""
 "0を指定した場合は先頭に挿入されます。-1を指定した場合は末尾に挿入されます。"
 msgstr ""
 
-# b36ed5055486431d9dad08cb5e3dfdc3
 msgid "objectに複数のhookが定義されている場合は順位の順に呼び出されます。"
 msgstr ""
 
-# 9ff13e3fccf14788903877412638ac4f
 msgid "手続きを指定します。"
 msgstr ""
 
-# bb7610ccb9ff4dd7a5a472fabe8c0701
 msgid "hook固有情報を指定します。"
 msgstr ""
 
-# 28eb95f281cf4647923740acde44b623
 msgid "objに定義されているhookの数を返します。"
 msgstr ""
 
-# bb7610ccb9ff4dd7a5a472fabe8c0701
 msgid "hookタイプを指定します。"
 msgstr ""
 
-# cb63bbcb3d4d42e5b093184eef229b97
 msgid ""
 "objに定義されているhookの手続き(proc)を返します。hook固有情報が定義されてい"
 "る場合は、その内容をdataにコピーして返します。"
 msgstr ""
 
-# 928290e83045469685a30d9059938b69
 msgid "実行順位を指定します。"
 msgstr ""
 
-# ec50c5ed197e495b8615b8cf51f53406
 msgid "hook固有情報格納バッファを指定します。"
 msgstr ""
 
-# 28eb95f281cf4647923740acde44b623
 msgid "objに定義されているhookを削除します。"
 msgstr ""
 
-# 9e39cc162afe4c92bc0004615b4db74f
 msgid "``grn_ii``"
 msgstr ""
 
-# ded2fcd6d93c48adbf75b23e0d056cf8
 msgid "buffered index builder"
 msgstr ""
 
-# e9d2338160ca4084bfdc94632e855a36
 msgid "特定のアプリケーション用に準備した内部APIです。"
 msgstr ""
 
-# c8b27b1b3a344134b491966bc812a757
 msgid "``grn_index_cursor``"
 msgstr ""
 
-# 194969bb735c48538b27f9bcd7e6edbe
 msgid ""
 ":c:type:`grn_table_cursor` から取得できるそれぞれのレコードについて、 "
 "``GRN_OBJ_COLUMN_INDEX`` 型のカラムの値を順番に取り出すためのカーソルを生成し"
 "て返します。"
 msgstr ""
 
-# 3ba94082ba1c49e7b5e5454a052cec07
 msgid ""
 "rid_min, rid_maxを指定して取得するレコードidの値を制限することができます。"
 msgstr ""
 
-# c6f9d3fe1fa44d938ddd6612fedbc042
 msgid ""
 "戻り値であるgrn_index_cursorは :c:func:`grn_obj_close()` を使って解放します。"
 msgstr ""
 
-# 928290e83045469685a30d9059938b69
 msgid "対象cursorを指定します。"
 msgstr ""
 
-# 17ed72374b2f416ba2894055ca627950
 msgid "対象インデックスカラムを指定します。"
 msgstr ""
 
-# b4c2109119cf4a72833ddb5fd36992a4
 msgid "出力するレコードidの下限を指定します。"
 msgstr ""
 
-# b4c2109119cf4a72833ddb5fd36992a4
 msgid "出力するレコードidの上限を指定します。"
 msgstr ""
 
-# 058b14c0e9c549ceb03fc3f9b0ecc109
 msgid "cursorの範囲内のインデックスの値を順番に取り出します。"
 msgstr ""
 
-# 3f95c368840f4ff789531603e98a6d95
 msgid ""
 "tidにNULL以外を指定した場合は、index_cursorを作成するときに指定した"
 "table_cursorの現在の対象レコードのidを返します。"
 msgstr ""
 
-# 76a47f63948848b4ac8e30ac563d7628
 msgid "戻り値である :c:type:`grn_posting` 構造体は解放する必要はありません。"
 msgstr ""
 
-# ff7998336e2943c78c2ae9adf7eb56ed
 msgid "テーブルレコードIDを指定します。"
 msgstr ""
 
-# cf9c6c1336ee4757adca5c3dd29f5a71
 msgid "``grn_info``"
 msgstr ""
 
-# e89583313324460f9f1773508fa93de3
 msgid "objのtypeに対応する情報をvaluebufに格納します。"
 msgstr ""
 
-# 928290e83045469685a30d9059938b69
 msgid "対象objを指定します。"
 msgstr ""
 
-# bb7610ccb9ff4dd7a5a472fabe8c0701
 msgid "取得する情報の種類を指定します。"
 msgstr ""
 
-# 27c35a44dec14325846350c3be05b811
 msgid "値を格納するバッファ(呼出側で準備)を指定します。"
 msgstr ""
 
-# d5f3654d16bc47699547664777392998
 msgid "objのtypeに対応する情報をvalueの内容に更新します。"
 msgstr ""
 
-# bb7610ccb9ff4dd7a5a472fabe8c0701
 msgid "設定する情報の種類を指定します。"
 msgstr ""
 
-# 3088a86e9efb483ab344e68d09a0f6f2
 msgid ""
 "objのidに対応するレコードの、typeに対応する情報をvaluebufに格納します。呼出側"
 "ではtypeに応じて十分なサイズのバッファを確保しなければいけません。"
 msgstr ""
 
-# 928290e83045469685a30d9059938b69
 msgid "対象IDを指定します。"
 msgstr ""
 
-# 41152b2a449a44a295b464cd8dcc6b62
 msgid ""
 "objのidに対応するレコードのtypeに対応する情報をvalueの内容に更新します。"
 msgstr ""
 
-# 3966ea7c3b75482cb5b8079635359011
-# beda75c5d1474f5db4c72caacbb44ef8
 msgid "設定しようとする値を指定します。"
 msgstr ""
 
-# a2f0c526d8a14116a31b9af58a5eaa2c
 msgid "``grn_match_escalation``"
 msgstr ""
 
-# 9fba2e28497a4791878667fe06e32747
 msgid ""
 "検索の挙動をエスカレーションする閾値を返します。エスカレーションの詳細は検索"
 "の仕様に関するドキュメントを参照してください。"
 msgstr ""
 
-# 9fba2e28497a4791878667fe06e32747
 msgid ""
 "検索の挙動をエスカレーションする閾値を変更します。エスカレーションの詳細は検"
 "索の仕様に関するドキュメントを参照してください。"
 msgstr ""
 
-# 9fba2e28497a4791878667fe06e32747
 msgid "変更後の検索の挙動をエスカレーションする閾値を指定します。"
 msgstr ""
 
-# 71fbb5a30e4a4911a2fe8399b5e7695c
 msgid ""
 "デフォルトの検索の挙動をエスカレーションする閾値を返します。エスカレーション"
 "の詳細は検索の仕様に関するドキュメントを参照してください。"
 msgstr ""
 
-# e09f510654b6406da16e132fd8105d83
 msgid ""
 "デフォルトの検索の挙動をエスカレーションする閾値を変更します。エスカレーショ"
 "ンの詳細は詳細は検索の仕様に関するドキュメントを参照してください。"
 msgstr ""
 
-# 9fba2e28497a4791878667fe06e32747
 msgid "変更後のデフォルトの検索の挙動をエスカレーションする閾値を指定します。"
 msgstr ""
 
-# 2b7bb67dc3d844fa859200553e7bb338
 msgid "``grn_obj``"
 msgstr ""
 
-# 1f5c6f825fbd4360b03c08748d5a6cb9
 msgid ""
 "nameがカラム名の場合、それに対応するtableのカラムを返します。対応するカラムが"
 "存在しなければNULLを返します。"
 msgstr ""
 
-# f8e55584ca0b47888c871736db262f09
 msgid ""
 "nameはアクセサ文字列の場合、それに対応するaccessorを返します。アクセサ文字列"
 "とは、カラム名等を'.'で連結した文字列です。'_id', '_key'は特殊なアクセサで、"
 "それぞれレコードID/keyを返します。例) 'col1' / 'col2.col3' / 'col2._id'"
 msgstr ""
 
-# c019cd77195644ec84c7ac8c4f50361b
 msgid "Check whether Groonga built-in object."
 msgstr ""
 
-# 0a29623759704c8197315bb47f6d1322
 msgid "context"
 msgstr ""
 
-# b83d63bc422f43979cd927cac24576ff
 msgid "target object"
 msgstr ""
 
-# 95e0a0a58e2c4364977d14861fe6df49
 msgid "``GRN_TRUE`` for built-in groonga object, ``GRN_FALSE`` otherwise."
 msgstr ""
 
-# b92b0b74b2a547cdb37c947d9c18cf6e
 msgid ""
 "objのIDに対応するレコードのvalueを取得します。valueを戻り値として返します。"
 msgstr ""
 
-# 33c8132f169d458885879dc04a8eebb3
 msgid "値を格納するバッファ(呼出側で準備する)を指定します。"
 msgstr ""
 
-# da54539f48434e82857695cfaf83fada
 msgid ""
 "objに指定されたカラムについて、offsetに指定されたレコードIDを開始位置として、"
 "IDが連続するレコードに対応するカラム値が昇順に格納された配列へのポインタを"
 "valuesにセットします。"
 msgstr ""
 
-# c91ab59e51c74012b8577c1d10019e8e
 msgid ""
 "取得できた件数が戻り値として返されます。エラーが発生した場合は -1 が返されま"
 "す。"
 msgstr ""
 
-# 4f3be6330e54446b989d8b6c4a9914d8
 msgid ""
 "値が固定長であるカラムのみがobjに指定できます。範囲内のIDに対応するレコードが"
 "有効であるとは限りません。delete操作を実行したことのあるテーブルに対しては、:"
@@ -1427,25 +1024,20 @@ msgid ""
 "ません。"
 msgstr ""
 
-# 27c35a44dec14325846350c3be05b811
 msgid "値を取得する範囲の開始位置となるレコードIDを指定します。"
 msgstr ""
 
-# 96f48220ef714a3f8241befcca87b4e2
 msgid "値の配列がセットされます。"
 msgstr ""
 
-# 17a52bcd62a74b5689ce4f5eaf8950d5
 msgid ""
 "objのIDに対応するレコードの値を更新します。対応するレコードが存在しない場合"
 "は ``GRN_INVALID_ARGUMENT`` を返します。"
 msgstr ""
 
-# bb7610ccb9ff4dd7a5a472fabe8c0701
 msgid "格納する値を指定します。"
 msgstr ""
 
-# 2056573507794a4ba2445c9925ff1d51
 msgid ""
 "以下の値を指定できます。  .. hlist::    :columns: 3     * :c:macro:"
 "`GRN_OBJ_SET`    * :c:macro:`GRN_OBJ_INCR`    * :c:macro:`GRN_OBJ_DECR`    "
@@ -1454,369 +1046,278 @@ msgid ""
 "`GRN_OBJ_LOCK`    * :c:macro:`GRN_OBJ_UNLOCK`"
 msgstr ""
 
-# 1e238c91e2bf40cbb6a3c2206e30a8ab
-# d0bda985cbe144d789e283f4356e4c68
 msgid "以下の値を指定できます。"
 msgstr "以下のいずれかの形式が使用できます。"
 
-# 561d2bb317bb49f4aa5e502ee4540194
 msgid ":c:macro:`GRN_OBJ_SET`"
 msgstr ""
 
-# b508346fac2e4928b8d60f0f907000e9
 msgid ":c:macro:`GRN_OBJ_INCR`"
 msgstr ""
 
-# 5814c18bcd6840628db385a39dfed973
 msgid ":c:macro:`GRN_OBJ_DECR`"
 msgstr ""
 
-# 0b2ef6d83964413e87a676b0fbcc33c0
 msgid ":c:macro:`GRN_OBJ_APPEND`"
 msgstr ""
 
-# 7c102e3ad6e04553b63f8fab12bf5c73
 msgid ":c:macro:`GRN_OBJ_PREPEND`"
 msgstr ""
 
-# b40cd2ea4db645f1841fc137b3b16a40
 msgid ":c:macro:`GRN_OBJ_GET`"
 msgstr ""
 
-# dc95e1a7dd3e4e5e9ab467b0beefb66b
 msgid ":c:macro:`GRN_OBJ_COMPARE`"
 msgstr ""
 
-# 4f031fa10f8f49acb947680a4df51d3b
 msgid ":c:macro:`GRN_OBJ_LOCK`"
 msgstr ""
 
-# 6e53d5a79188462e92efd79eac338331
 msgid ":c:macro:`GRN_OBJ_UNLOCK`"
 msgstr ""
 
-# 52b94e87f0fc4133b584ad7c2c2fea7b
-# 7dea56b8504a4d1d86ccee57819076fb
 msgid "レコードの値をvalueと置き換えます。"
 msgstr ""
 
-# 3e33d26ca8544b209fbc7f9d81971461
 msgid "レコードの値にvalueを加算します。"
 msgstr ""
 
-# 52b94e87f0fc4133b584ad7c2c2fea7b
-# 7dea56b8504a4d1d86ccee57819076fb
 msgid "レコードの値にvalueを減算します。"
 msgstr ""
 
-# 1cf238009043408087088ed70616bb57
 msgid "レコードの値の末尾にvalueを追加します。"
 msgstr ""
 
-# 1cf238009043408087088ed70616bb57
 msgid "レコードの値の先頭にvalueを追加します。"
 msgstr ""
 
-# d07a85896a294bfb97bd6aadbf91f3d2
 msgid "新しいレコードの値をvalueにセットします。"
 msgstr ""
 
-# 62652c2357614df8b6f368116646291d
-# 90cbe0f03286487abc4cf49227d7608e
 msgid "レコードの値とvalueが等しいか調べます。"
 msgstr ""
 
-# e59f618ec2744a03aece17e76b5f3192
 msgid ""
 "当該レコードをロックします。:c:macro:`GRN_OBJ_COMPARE` と共に指定された場合"
 "は、レコードの値とvalueが等しい場合に限ってロックします。"
 msgstr ""
 
-# 51ec3260fbb0429b899a2d4738546ce0
 msgid "当該レコードのロックを解除します。"
 msgstr ""
 
-# 3d2ce098021545fd8b90c42eb38963b8
 msgid ""
 "objをメモリから解放し、それが永続オブジェクトであった場合は、該当するファイル"
 "一式を削除します。"
 msgstr ""
 
-# cdd5bb3b6d8a495eab0c45f2d2660dfa
 msgid ""
 "ctxが使用するdbにおいてobjに対応する名前をnameに更新します。objは永続オブジェ"
 "クトでなければいけません。"
 msgstr ""
 
-# 153394c7eaf24d50a5898f4c811f7cc3
 msgid ""
 "一時的なobjectであるobjをメモリから解放します。objに属するobjectも再帰的にメ"
 "モリから解放されます。"
 msgstr ""
 
-# 3d552ff2a1b4433cbb2ed7fe4dc00ef2
 msgid ""
 "永続的な、table, column, exprなどは解放してはいけません。一般的には、一時的か"
 "永続的かを気にしなくてよい :c:func:`grn_obj_unlink()` を用いるべきです。"
 msgstr ""
 
-# b8bb848759914bea9512a980988ddad7
 msgid "objの型を変更します。"
 msgstr ""
 
-# dd3a348a8af04ca295390ef954fa1ffb
 msgid ""
 "objは :c:func:`GRN_OBJ_INIT()` マクロなどで初期化済みでなければいけません。"
 msgstr ""
 
-# 928290e83045469685a30d9059938b69
 msgid "変更後のobjの型を指定します。"
 msgstr ""
 
-# 6a82baa3d0b6407283bcab7a766e0eec
 msgid ""
 "``GRN_OBJ_VECTOR`` を指定するとdomain型の値のベクタを格納するオブジェクトにな"
 "ります。"
 msgstr ""
 
-# 3cb4e58dcd334bf2af5ad0575fd82579
 msgid ""
 "objをメモリから解放します。objに属するobjectも再帰的にメモリから解放されま"
 "す。"
 msgstr ""
 
-# 2e238f1299f84428a668d28a860081a0
 msgid "objに対応するファイルパスを返します。一時objectならNULLを返します。"
 msgstr ""
 
-# 8838106d76b24a398c970363c98dc950
 msgid "objの名前の長さを返します。無名objectなら0を返します。"
 msgstr ""
 
-# 9e09f73c4fc2432fa92634774e21c881
 msgid ""
 "名前付きのobjectであり、buf_sizeの長さが名前の長以上であった場合は、namebufに"
 "該当する名前をコピーします。"
 msgstr ""
 
-# d654b11ff0b4413e826e32d5d3b7cf9b
 msgid ""
 "objパラメータのとる値の範囲を表わしているオブジェクトのIDを返します。例え"
 "ば、:c:type:`grn_builtin_type` にある ``GRN_DB_INT`` などを返します。"
 msgstr ""
 
-# 6c2a4904cf464d2ab04d0cd001f962d7
 msgid ""
 "objの占有するメモリのうち、可能な領域をthresholdを指標として解放します。"
 msgstr ""
 
-# 7b3b33cdc5514bb69bd0d761acbbc8e7
 msgid "objに対応するファイルの整合性を検査します。"
 msgstr ""
 
-# 0478bc04e76b40c0a303ed9607ac5421
 msgid ""
 "objをlockします。timeout(秒)経過してもlockを取得できない場合は "
 "``GRN_RESOURCE_DEADLOCK_AVOIDED`` を返します。"
 msgstr ""
 
-# 98a1f2f52a0e4b97aeb0fa3d9e1bd991
 msgid "objをunlockします。"
 msgstr ""
 
-# 51ec3260fbb0429b899a2d4738546ce0
 msgid "強制的にロックをクリアします。"
 msgstr ""
 
-# 19141846570f4cb29501fce8677f14b6
 msgid "objが現在lockされていれば0以外の値を返します。"
 msgstr ""
 
-# 5fef4a6f20e445b6ac5c0862c20610b9
 msgid ""
 "objの占有するDBファイル領域のうち、可能な領域をthresholdを指標としてフラグメ"
 "ントの解消を行います。"
 msgstr ""
 
-# 05c4393fe375439c8c51f4d7c713901a
 msgid "フラグメント解消が実行されたセグメントの数を返します。"
 msgstr ""
 
-# 51ec3260fbb0429b899a2d4738546ce0
 msgid "objのidを返します。"
 msgstr ""
 
-# db2fc6f5c8184be0906c4daf91294cc2
 msgid ""
 "dbからidに対応するテーブルやカラムなどを削除します。mroonga向けに用意した内部"
 "APIです。"
 msgstr ""
 
-# 6a6f954de8fd4e9f9bb7f08dca55cef4
-# 98374a011c2146788bfd94bf398d3dc4
 msgid "The target database."
 msgstr ""
 
-# 3e10ef7c0b2f47718925999e740e8091
-# 71e2ec8aafb843b19fe1f21e4cb98817
 msgid "The object (table, column and so on) ID to be deleted."
 msgstr ""
 
-# 7e18a2fdbe1c46c59b2ac3272338ca26
 msgid ""
 "If ``GRN_TRUE``, clear object cache and remove relation between ID and key "
 "in database. Otherwise, just clear object cache."
 msgstr ""
 
-# 174bc3a518404caf8fb9efa35656b9c8
 msgid "dbのidに対応するpathを返します。mroonga向けに用意した内部APIです。"
 msgstr ""
 
-# 9e4fedef451a44068685d0ea336f2d3c
 msgid "path string corresponding to the id will be set in this buffer."
 msgstr ""
 
-# dc35e446557f43659f04dbdb958fdb4f
 msgid "``grn_proc``"
 msgstr ""
 
-# 6f352b2c089c45c4aa714864bac5ce74
 msgid "nameに対応する新たなproc(手続き)をctxが使用するdbに定義します。"
 msgstr ""
 
-# 5fb361ddb8814073831a31adea828363
 msgid "作成するprocの名前を指定します。"
 msgstr ""
 
-# dd69a1e5891e4a18a53a8a0d4e1ac8b4
 msgid ""
 "The number of bytes of name parameter. If negative value is specified, name "
 "parameter is assumed that NULL-terminated string."
 msgstr ""
 
-# bb7610ccb9ff4dd7a5a472fabe8c0701
 msgid "procの種類を指定します。"
 msgstr ""
 
-# ec50c5ed197e495b8615b8cf51f53406
 msgid "初期化関数のポインタを指定します。"
 msgstr ""
 
-# ec50c5ed197e495b8615b8cf51f53406
 msgid "実処理関数のポインタを指定します。"
 msgstr ""
 
-# ec50c5ed197e495b8615b8cf51f53406
 msgid "終了関数のポインタを指定します。"
 msgstr ""
 
-# 65eb2f34dab44c7cb9a82b94f8742d15
 msgid "procで使用する変数の数を指定します。"
 msgstr ""
 
-# 46fb1ac8428a446aa64ea9a621db23b8
 msgid ""
 "procで使用する変数の定義を指定します。( :c:type:`grn_expr_var` 構造体の配列)"
 msgstr ""
 
-# 82e5ad534ad24cc98dea91bcd23592a4
 msgid ""
 "user_dataをキーとして、現在実行中の :c:type:`grn_proc_func` 関数および定義さ"
 "れている変数( :c:type:`grn_expr_var` )の配列とその数を取得します。"
 msgstr ""
 
-# 902ade0cebe347acaf1ef03eef4bffd9
 msgid ":c:type:`grn_proc_func` に渡されたuser_dataを指定します。"
 msgstr ""
 
-# c3dfc935e9344b1aaae6a58d038304ee
 msgid "変数の数を取得します。"
 msgstr ""
 
-# ed9a439d939f4b6db9178ce75385b633
 msgid "objectを破棄するときに呼ばれる関数を設定します。"
 msgstr ""
 
-# 6dcd44396ab5425793879d1ce3cf27dd
 msgid "table, column, proc, exprのみ設定可能です。"
 msgstr ""
 
-# 0691651d819a4c2db058e2ad26de92a0
 msgid "objectを破棄するときに呼ばれる関数を指定します。"
 msgstr ""
 
-# fbda98bbb6d34f9fb1a303c0257b55fd
 msgid "``grn_search``"
 msgstr ""
 
-# 950a3565906f44a7b6b0ba9b56c5ebb5
 msgid ""
 "objを対象としてqueryにマッチするレコードを検索し、opの指定に従ってresにレコー"
 "ドを追加あるいは削除します。"
 msgstr ""
 
-# ec50c5ed197e495b8615b8cf51f53406
 msgid "検索対象のobjectを指定します。"
 msgstr ""
 
-# ec50c5ed197e495b8615b8cf51f53406
 msgid "検索クエリを指定します。"
 msgstr ""
 
-# ec50c5ed197e495b8615b8cf51f53406
 msgid "検索結果を格納するテーブルを指定します。"
 msgstr ""
 
-# e539e13a2cb446868c1b8a6129cdda3b
 msgid ""
 "``GRN_OP_OR``, ``GRN_OP_AND``, ``GRN_OP_AND_NOT``, ``GRN_OP_ADJUST`` のいずれ"
 "かを指定します。"
 msgstr ""
 
-# ec50c5ed197e495b8615b8cf51f53406
 msgid "詳細検索条件を指定します。"
 msgstr ""
 
-# 4c822f633bee43819cb7a8fcd50a5781
-# 3047f898526246e289d6a57de93684b3
-# 754d54236fdb4088a118a22ee51b3fcb
-# c441c763e6b34295ad4132e547bfb663
-# 4860cc9deba14ddb9acfff8579c37ac4
-# 36abefa544074d338ad5a91444128ec7
-# 015920903ac547129ca05cbe4721009e
-# 56b6b4f8187e4a2aa23f98bf54d5b690
-# 707fa8edf67c4a4aa4ae507ba918ea66
 msgid "``grn_table``"
 msgstr ""
 
-# 3521dfc05549479d82b2c55b5ee62944
 msgid "nameパラメータに対応する新たなtableをctxが使用するdbに定義します。"
 msgstr ""
 
-# be25dbb7671d4c72b642808b0f644b0c
 msgid ""
 "作成するtableの名前を指定します。NULLなら無名tableとなります。  persistent db"
 "に対して名前をありのtableを作成するときには、flagsに ``GRN_OBJ_PERSISTENT`` "
 "が指定されていなけれなりません。"
 msgstr ""
 
-# 95df3540800340e1a97b902f38034c4e
 msgid "作成するtableの名前を指定します。NULLなら無名tableとなります。"
 msgstr ""
 
-# d4b9256f2f034c7ca4f428826f0d3c03
 msgid ""
 "persistent dbに対して名前をありのtableを作成するときには、flagsに "
 "``GRN_OBJ_PERSISTENT`` が指定されていなけれなりません。"
 msgstr ""
 
-# 75a83436567c416eb765798a4b83ad0b
 msgid ""
 "作成するtableのファイルパスを指定します。 flagsに ``GRN_OBJ_PERSISTENT`` が指"
 "定されている場合のみ有効です。 NULLなら自動的にファイルパスが付与されます。"
 msgstr ""
 
-# c524ae15d8e0408f8439a3713e0287a1
 msgid ""
 "``GRN_OBJ_PERSISTENT`` を指定すると永続tableとなります。  "
 "``GRN_OBJ_TABLE_PAT_KEY``, ``GRN_OBJ_TABLE_HASH_KEY``, "
@@ -1825,203 +1326,163 @@ msgid ""
 "指定するとkey文字列の全suffixが自動的に登録されます。"
 msgstr ""
 
-# 0f90350092df41ed867868b3b4b0868b
 msgid "``GRN_OBJ_PERSISTENT`` を指定すると永続tableとなります。"
 msgstr ""
 
-# d41ad7954943471088156c601901c4a1
 msgid ""
 "``GRN_OBJ_TABLE_PAT_KEY``, ``GRN_OBJ_TABLE_HASH_KEY``, "
 "``GRN_OBJ_TABLE_NO_KEY`` のいずれかを指定します。"
 msgstr ""
 
-# 00b3684752c849cd8f0e14e895d81a54
 msgid ""
 "``GRN_OBJ_KEY_NORMALIZE`` を指定すると正規化された文字列がkeyとなります。"
 msgstr ""
 
-# 2575ca8be25d4c4d80252c3d684060ce
 msgid ""
 "``GRN_OBJ_KEY_WITH_SIS`` を指定するとkey文字列の全suffixが自動的に登録されま"
 "す。"
 msgstr ""
 
-# c5dab18064ff4002a75fb392cd380be8
 msgid ""
 "keyの型を指定します。``GRN_OBJ_TABLE_NO_KEY`` が指定された場合は無効です。 既"
 "存のtypeあるいはtableを指定できます。  key_typeにtable Aを指定してtable Bを作"
 "成した場合、Bは必ずAのサブセットとなります。"
 msgstr ""
 
-# de87b43a14804f9b8f041205af4d2cd6
 msgid ""
 "keyの型を指定します。``GRN_OBJ_TABLE_NO_KEY`` が指定された場合は無効です。 既"
 "存のtypeあるいはtableを指定できます。"
 msgstr ""
 
-# 4ae074315f784448aaa1d3036907c095
 msgid ""
 "key_typeにtable Aを指定してtable Bを作成した場合、Bは必ずAのサブセットとなり"
 "ます。"
 msgstr ""
 
-# d93a37ede85e4da48a2b6c7a4aa07834
 msgid ""
 "keyに対応する値を格納する領域の型を指定します。 tableはcolumnとは別に、keyに"
 "対応する値を格納する領域を一つだけ持つことができます。"
 msgstr ""
 
-# cc6e095fcf63480b950d7bcbcb9b7972
 msgid ""
 "keyに対応する新しいrecordをtableに追加し、そのIDを返します。keyに対応する"
 "recordがすでにtableに存在するならば、そのrecordのIDを返します。"
 msgstr ""
 
-# 104b2fc35f804aec8951b5bdfc625497
 msgid ""
 "``GRN_OBJ_TABLE_NO_KEY`` が指定されたtableでは、key, key_size は無視されま"
 "す。"
 msgstr ""
 
-# ec50c5ed197e495b8615b8cf51f53406
 msgid "検索keyを指定します。"
 msgstr ""
 
-# 5a8f40b9883641ac80b591d825d63b0c
 msgid ""
 "NULL以外の値が指定された場合、新たにrecordが追加された時には1が、既存record"
 "だった時には0がセットされます。"
 msgstr ""
 
-# d8255c5e61a7424b8b92899bfb4d8403
 msgid ""
 "It finds a record that has key parameter and returns ID of the found record. "
 "If table parameter is a database, it finds an object (table, column and so "
 "on) that has key parameter  and returns ID of the found object."
 msgstr ""
 
-# cb1330a9581642c99fd69e586401dc5c
 msgid "The table or database."
 msgstr ""
 
-# ce76d4614b7e4c618cb8cef5facf528f
 msgid "The record or object key to be found."
 msgstr ""
 
-# d3d2bcc67bbe425ba0e7974e2e50eb3a
 msgid ""
 "tableにidに対応するrecordが存在するか確認し、存在すれば指定されたIDを、存在し"
 "なければ ``GRN_ID_NIL`` を返します。"
 msgstr ""
 
-# 41465a63b7e145f9acdf7ffdcaae360b
 msgid ""
 "注意: 実行には相応のコストがかかるのであまり頻繁に呼ばないようにして下さい。"
 msgstr ""
 
-# ec50c5ed197e495b8615b8cf51f53406
 msgid "検索idを指定します。"
 msgstr ""
 
-# 002ecfafefb8452fa3c101a23b23c53b
 msgid ""
 "tableが ``GRN_TABLE_PAT_KEY`` もしくは ``GRN_TABLE_DAT_KEY`` を指定して作った"
 "tableなら、longest common prefix searchを行い、対応するIDを返します。"
 msgstr ""
 
-# cd11395565864c4b88d39288a385f462
 msgid ""
 "tableが ``GRN_TABLE_HASH_KEY`` を指定して作ったtableなら、完全に一致するキー"
 "を検索し、対応するIDを返します。"
 msgstr ""
 
-# 787ac91f45414d6a9e1ef3f53ecdf414
 msgid "tableのIDに対応するレコードのkeyを取得します。"
 msgstr ""
 
-# 2b4e325463604ec58ca2d38de9551dfc
 msgid ""
 "対応するレコードが存在する場合はkey長を返します。見つからない場合は0を返しま"
 "す。対応するキーの検索に成功し、またbuf_sizeの長さがkey長以上であった場合は、"
 "keybufに該当するkeyをコピーします。"
 msgstr ""
 
-# 65eb2f34dab44c7cb9a82b94f8742d15
 msgid "keyを格納するバッファ(呼出側で準備する)を指定します。"
 msgstr ""
 
-# 247c740f5384459cb81bb6bafc971200
 msgid "keybufのサイズ(byte長)を指定します。"
 msgstr ""
 
-# 28441cc42a4f41b99f7fe7e6b4c0f6dc
 msgid ""
 "tableのkeyに対応するレコードを削除します。対応するレコードが存在しない場合は "
 "``GRN_INVALID_ARGUMENT`` を返します。"
 msgstr ""
 
-# ec50c5ed197e495b8615b8cf51f53406
 msgid "検索keyのサイズを指定します。"
 msgstr ""
 
-# 16b44f750c0d4da29039b3965d3174c1
 msgid ""
 "tableのidに対応するレコードを削除します。対応するレコードが存在しない場合は "
 "``GRN_INVALID_ARGUMENT`` を返します。"
 msgstr ""
 
-# ff7998336e2943c78c2ae9adf7eb56ed
 msgid "レコードIDを指定します。"
 msgstr ""
 
-# 143d41775fdc4d4cb447d9241ec1ced0
 msgid ""
 "tableのidに対応するレコードのkeyを変更します。新しいkeyとそのbyte長をdest_key"
 "とdest_key_sizeに指定します。"
 msgstr ""
 
-# 84e691d76fcf440e869740ce74af5569
-# b1742a7d02ef487a89f87ac1ca3b5ad6
 msgid "この操作は、``GRN_TABLE_DAT_KEY`` 型のテーブルのみ使用できます。"
 msgstr ""
 
-# 0e959fe93b3e4cab9d04550eb34b58f2
 msgid ""
 "tableのsrc_keyに対応するレコードのkeyを変更します。新しいkeyとそのbyte長を"
 "dest_keyとdest_key_sizeに指定します。"
 msgstr ""
 
-# ec50c5ed197e495b8615b8cf51f53406
 msgid "対象レコードのkeyを指定します。"
 msgstr ""
 
-# ec50c5ed197e495b8615b8cf51f53406
 msgid "対象レコードのkeyの長さ(byte)を指定します。"
 msgstr ""
 
-# 928290e83045469685a30d9059938b69
 msgid "変更後のkeyを指定します。"
 msgstr ""
 
-# 928290e83045469685a30d9059938b69
 msgid "変更後のkeyの長さ(byte)を指定します。"
 msgstr ""
 
-# bb54bdbab7684c0e940229f834bdfe82
 msgid "tableの全レコードを一括して削除します。"
 msgstr ""
 
-# 0dac3dacc79d410c9f9b588345a56fc6
 msgid ""
 "注意: multithread環境では他のthreadのアクセスによって、存在しないアドレスへア"
 "クセスし、SIGSEGVが発生する可能性があります。"
 msgstr ""
 
-# e9ec6bfaeb4249adb22300633314e8f2
 msgid "table内のレコードをソートし、上位limit個の要素をresultに格納します。"
 msgstr ""
 
-# cf50956d694744a68f254caa6dc25ba7
 msgid ""
 "keys.keyには、tableのcolumn,accessor,procのいずれかが指定できます。keys.flags"
 "には、``GRN_TABLE_SORT_ASC`` / ``GRN_TABLE_SORT_DESC`` のいずれかを指定できま"
@@ -2029,145 +1490,112 @@ msgid ""
 "されます。keys.offsetは、内部利用のためのメンバです。"
 msgstr ""
 
-# 6f85621aa8f54e6b933bdcfcb55f44ad
 msgid ""
 "sortされたレコードのうち、(0ベースで)offset番目から順にresにレコードを格納し"
 "ます。"
 msgstr ""
 
-# ebb652715b054e77a2e5e54242d7ecd0
 msgid "resに格納するレコードの上限を指定します。"
 msgstr ""
 
-# bb7610ccb9ff4dd7a5a472fabe8c0701
 msgid "結果を格納するtableを指定します。"
 msgstr ""
 
-# d38a23db1ad14ed1a63068e06ea71130
 msgid "ソートキー配列へのポインタを指定します。"
 msgstr ""
 
-# d38a23db1ad14ed1a63068e06ea71130
 msgid "ソートキー配列のサイズを指定します。"
 msgstr ""
 
-# 0d291ec8d275471eae17430188ef7bd5
 msgid "tableのレコードを特定の条件でグループ化します。"
 msgstr ""
 
-# 14b6baee04ed49bcbd755aacbb72dc04
 msgid "group化キー構造体の配列へのポインタを指定します。"
 msgstr ""
 
-# d2e113f9ba95466c8f07aaed7726bc1a
 msgid "group化キー構造体の配列のサイズを指定します。"
 msgstr ""
 
-# a4af45cc25f04909afb95c419afeeff9
 msgid "group化の結果を格納する構造体の配列へのポインタを指定します。"
 msgstr ""
 
-# 1dc01f141319467dbba1720406edd454
 msgid "group化の結果を格納する構造体の配列のサイズを指定します。"
 msgstr ""
 
-# 0204efca0bd74e05b8aeadc7e4804b9c
 msgid "table1とtable2をopの指定に従って集合演算した結果をresに格納します。"
 msgstr ""
 
-# a67c3ed403ad472dbd5746a3b77559c5
 msgid ""
 "resにtable1あるいはtable2そのものを指定した場合を除けば、table1, table2は破壊"
 "されません。"
 msgstr ""
 
-# 928290e83045469685a30d9059938b69
 msgid "対象table1を指定します。"
 msgstr ""
 
-# 928290e83045469685a30d9059938b69
 msgid "対象table2を指定します。"
 msgstr ""
 
-# bb7610ccb9ff4dd7a5a472fabe8c0701
 msgid "実行する演算の種類を指定します。"
 msgstr ""
 
-# 21f1f9278c9549198be8660d88ce53d8
 msgid ""
 "table1とtable2から重複するレコードを取り除いた結果をそれぞれres1, res2に格納"
 "します。"
 msgstr ""
 
-# 6c091293a7ba4139b7a975a9b9b0518d
 msgid ""
 "nameパラメータから始まるtableのカラムIDをresパラメータに格納します。name_size"
 "パラメータが0の場合はすべてのカラムIDを格納します。"
 msgstr ""
 
-# 928290e83045469685a30d9059938b69
 msgid "取得したいカラム名のprefixを指定します。"
 msgstr ""
 
-# 65eb2f34dab44c7cb9a82b94f8742d15
 msgid "nameパラメータの長さを指定します。"
 msgstr ""
 
-# ef030fc1e77444a5bc934872a03564f9
 msgid "結果を格納する ``GRN_TABLE_HASH_KEY`` のtableを指定します。"
 msgstr ""
 
-# d8489eafb35e403ca89900815668aefe
-# 7df8088d5d60475dbdf3f1be58812cb6
-# 3903b83c01624043be5d7e0778586b73
-# 33d8ac2ff7164b24900c816b73dff275
 msgid "格納したカラムIDの数を返します。"
 msgstr ""
 
-# 28eb95f281cf4647923740acde44b623
 msgid "tableに登録されているレコードの件数を返します。"
 msgstr ""
 
-# 69d2ad797ce043c3bc935b659d059c65
 msgid ""
 "ctxが使用するdbにおいてtableに対応する名前をnameに更新します。tableの全ての"
 "columnも同時に名前が変更されます。tableは永続オブジェクトでなければいけませ"
 "ん。"
 msgstr ""
 
-# 0da809ee0de94f4c9d176627712966f9
 msgid "``grn_table_cursor``"
 msgstr ""
 
-# ef1549096241455997e7f8963acf23f6
 msgid ""
 "tableに登録されているレコードを順番に取り出すためのカーソルを生成して返しま"
 "す。"
 msgstr ""
 
-# 5e07fe59ee4c4cc285c18cf7ed05b2ae
 msgid ""
 "keyの下限を指定します。(NULLは下限なしと見なします。) "
 "``GRN_CURSOR_PREFIX`` については後述。"
 msgstr ""
 
-# 451ea30fe8304699882929b0f18e178d
 msgid "minのsizeを指定します。``GRN_CURSOR_PREFIX`` については後述。"
 msgstr ""
 
-# 1b631c071b7e42e09a37c9e3427d4b89
 msgid ""
 "keyの上限を指定します。(NULLは上限なしと見なします。) "
 "``GRN_CURSOR_PREFIX`` については後述。"
 msgstr ""
 
-# 2ff9ef7670494e7fa79f37c40ba3180d
 msgid ""
 "maxのsizeを指定します。``GRN_CURSOR_PREFIX`` については無視される場合がありま"
 "す。"
 msgstr ""
 
-# 81ac6cb7e73b4f0b926bcc2cf4d8ce8b
 msgid ""
 "``GRN_CURSOR_ASCENDING`` を指定すると昇順にレコードを取り出します。  "
 "``GRN_CURSOR_DESCENDING`` を指定すると降順にレコードを取り出します。(下記 "
@@ -2206,11 +1634,9 @@ msgid ""
 "key値の昇降順で取り出すことはできません。"
 msgstr ""
 
-# 59bea544fab24458a8a1ae1861f2e9d5
 msgid "``GRN_CURSOR_ASCENDING`` を指定すると昇順にレコードを取り出します。"
 msgstr ""
 
-# f8ef22103a89400cb0e4a820b11f5ef2
 msgid ""
 "``GRN_CURSOR_DESCENDING`` を指定すると降順にレコードを取り出します。(下記 "
 "``GRN_CURSOR_PREFIX`` を指定し、keyが近いレコードを取得する場合、もしくは、"
@@ -2218,7 +1644,6 @@ msgid ""
 "``GRN_CURSOR_DESCENDING`` は無視されます。)"
 msgstr ""
 
-# 39217299bde34d3d833d6870d7926ad9
 msgid ""
 "``GRN_CURSOR_GT`` を指定するとminに一致したkeyをcursorの範囲に含みません。"
 "(minがNULLの場合もしくは、下記 ``GRN_CURSOR_PREFIX`` を指定し、keyが近いレ"
@@ -2226,14 +1651,12 @@ msgid ""
 "``GRN_CURSOR_GT`` は無視されます。)"
 msgstr ""
 
-# 84475aab5cc84cde8c460c0d6c219470
 msgid ""
 "``GRN_CURSOR_LT`` を指定するとmaxに一致したkeyをcursorの範囲に含みません。"
 "(maxがNULLの場合もしくは、下記 ``GRN_CURSOR_PREFIX`` を指定した場合には、"
 "``GRN_CURSOR_LT`` は無視されます。)"
 msgstr ""
 
-# 303ffad1b5194297b0f72f59b82e0085
 msgid ""
 "``GRN_CURSOR_BY_ID`` を指定するとID順にレコードを取り出します。(下記 "
 "``GRN_CURSOR_PREFIX`` を指定した場合には、``GRN_CURSOR_BY_ID`` は無視されま"
@@ -2243,7 +1666,6 @@ msgid ""
 "は ``GRN_CURSOR_BY_KEY`` は無視されます。)"
 msgstr ""
 
-# e528512ecc6344e89884c5ce4713ba04
 msgid ""
 "``GRN_CURSOR_PREFIX`` を指定すると、 ``GRN_OBJ_TABLE_PAT_KEY`` を指定したテー"
 "ブルに関する下記のレコードを取り出すカーソルが作成されます。maxがNULLの場合に"
@@ -2251,14 +1673,12 @@ msgid ""
 "れます。"
 msgstr ""
 
-# 08eafc1c958f4adcb8e41509eee12b1d
 msgid ""
 "maxとmax_sizeが指定され、かつ、テーブルのkeyがShortText型である場合、maxと"
 "common prefix searchを行い、common prefixがmin_sizeバイト以上のレコードを取り"
 "出します。minは無視されます。"
 msgstr ""
 
-# 8a8958f518824a2ab2295e4d0a8d9b0f
 msgid ""
 "maxとmax_sizeが指定され、かつ、テーブルのkeyが固定長型の場合、maxとPAT木上で"
 "近い位置にあるノードから順番にレコードを取り出します。ただし、keyのパトリシア"
@@ -2269,13 +1689,11 @@ msgid ""
 "れます。"
 msgstr ""
 
-# 1202aed331e5433fb432183c3c402005
 msgid ""
 "``GRN_CURSOR_BY_ID`` / ``GRN_CURSOR_BY_KEY`` / ``GRN_CURSOR_PREFIX`` の3フラ"
 "グは、同時に指定することができません。"
 msgstr ""
 
-# 1f3bf00586984b5e8a8df49f0f6d0984
 msgid ""
 "``GRN_OBJ_TABLE_PAT_KEY`` を指定して作ったテーブルで、``GRN_CURSOR_PREFIX`` "
 "と ``GRN_CURSOR_RK`` を指定すると、半角小文字のアルファベット文字列から、それ"
@@ -2285,159 +1703,126 @@ msgid ""
 "key値の昇降順で取り出すことはできません。"
 msgstr ""
 
-# c630937a1b8f45b1add67fa59ac7c59d
 msgid ""
 "該当する範囲のレコードのうち、(0ベースで)offset番目からレコードを取り出しま"
 "す。  ``GRN_CURSOR_PREFIX`` を指定したときは負の数を指定することはできませ"
 "ん。"
 msgstr ""
 
-# 18b23ca6610c41f9884c7056b147fbb6
 msgid ""
 "該当する範囲のレコードのうち、(0ベースで)offset番目からレコードを取り出しま"
 "す。"
 msgstr ""
 
-# 7b710f76ade34e9e9f4eec94650959b6
 msgid ""
 "``GRN_CURSOR_PREFIX`` を指定したときは負の数を指定することはできません。"
 msgstr ""
 
-# c834ea53574c4d66b599f25ecb07bcc4
 msgid ""
 "該当する範囲のレコードのうち、limit件のみを取り出します。-1が指定された場合"
 "は、全件が指定されたものとみなします。  ``GRN_CURSOR_PREFIX`` を指定したとき"
 "は-1より小さい負の数を指定することはできません。"
 msgstr ""
 
-# 8210ba3f10d34170812519e5875e8bbc
 msgid ""
 "該当する範囲のレコードのうち、limit件のみを取り出します。-1が指定された場合"
 "は、全件が指定されたものとみなします。"
 msgstr ""
 
-# 685d27ea4d3b401380239bd60123bd38
 msgid ""
 "``GRN_CURSOR_PREFIX`` を指定したときは-1より小さい負の数を指定することはでき"
 "ません。"
 msgstr ""
 
-# cac6703be73d49158d5b678ec5b1731d
 msgid ":c:func:`grn_table_cursor_open` で生成したcursorを解放します。"
 msgstr ""
 
-# de0aa85909554676b07ea1839e650a6f
 msgid ""
 "cursorのカレントレコードを一件進めてそのIDを返します。cursorの対象範囲の末尾"
 "に達すると ``GRN_ID_NIL`` を返します。"
 msgstr ""
 
-# 63dba727e6f0433b871a74e8f86fa7ee
 msgid ""
 "cursorのカレントレコードのkeyをkeyパラメータにセットし、その長さを返します。"
 msgstr ""
 
-# f3e81f57560242b6a3d2c0ffcd544e77
 msgid "カレントレコードのkeyへのポインタがセットされます。"
 msgstr ""
 
-# 743a6fe9d36e423fba40ee2f8fc6d65c
 msgid ""
 "cursorパラメータのカレントレコードのvalueをvalueパラメータにセットし、その長"
 "さを返します。"
 msgstr ""
 
-# 36e0a36635bc4733af21987bd594b18f
 msgid "カレントレコードのvalueへのポインタがセットされます。"
 msgstr ""
 
-# 69c0db90e5fe49c598e13aa998f80c95
 msgid ""
 "cursorのカレントレコードのvalueを引数の内容に置き換えます。cursorのカレントレ"
 "コードが存在しない場合は ``GRN_INVALID_ARGUMENT`` を返します。"
 msgstr ""
 
-# 9ff13e3fccf14788903877412638ac4f
 msgid "新しいvalueの値を指定します。"
 msgstr ""
 
-# 9be689d6c71e46c88d5e50d7349a47f5
 msgid ":c:func:`grn_obj_set_value()` のflagsと同様の値を指定できます。"
 msgstr ""
 
-# 61f9a0c90a174661b95ab917a5fb8049
 msgid ""
 "cursorのカレントレコードを削除します。cursorのカレントレコードが存在しない場"
 "合は ``GRN_INVALID_ARGUMENT`` を返します。"
 msgstr ""
 
-# 27aebe1ed081499693305cfbbc2a93c6
 msgid "cursorが属するtableを返します。"
 msgstr ""
 
-# c8ce7ea2d7d64c01abb79185a10abcd9
-# c8a5faac538d40b485d1a18933b45db6
-# c1ec9388c59842e4b656bf0ffd8838e3
 msgid "``grn_type``"
 msgstr ""
 
-# e958de840df14e3499e71e9baa4260f1
 msgid "nameに対応する新たなtype(型)をdbに定義します。"
 msgstr ""
 
-# 5fb361ddb8814073831a31adea828363
 msgid "作成するtypeの名前を指定します。"
 msgstr ""
 
-# 1d5ef75093144002afd0cfaeea993d13
 msgid ""
 "``GRN_OBJ_KEY_VAR_SIZE``, ``GRN_OBJ_KEY_FLOAT``, ``GRN_OBJ_KEY_INT``, "
 "``GRN_OBJ_KEY_UINT`` のいずれかを指定します。"
 msgstr ""
 
-# 9d135fd22cb947199e2945cfbf4f527c
 msgid ""
 "``GRN_OBJ_KEY_VAR_SIZE`` の場合は最大長、それ以外の場合は長さ(単位:byte)を"
 "指定します。"
 msgstr ""
 
-# 9579ad0b3efb4199bd5ee9cc26be46ea
 msgid "``grn_user_data``"
 msgstr ""
 
-# c32c5ec8ffa04f1f8ccad922a1199ad5
 msgid ""
 "objectに登録できるユーザデータへのポインタを返します。table, column, proc, "
 "exprのみ使用可能です。"
 msgstr ""
 
-# 2f8dadf32bc6472ca99969c356e5dcea
 msgid "Cast"
 msgstr "Cast"
 
-# 475add071e844e7c897fd76482e6e54f
 msgid "Command"
 msgstr ""
 
-# 19555eaf7c904a7aa02eef49fcde19ec
 msgid ""
 "Command is the most important processing unit in query API. You request a "
 "processing to groonga by a command."
 msgstr ""
 
-# cde41cadfeb944569c3c2c8f47c08f7a
 msgid "This section describes about command and built-in commands."
 msgstr ""
 
-# 2f708619212b40e2af7fa4600521e295
 msgid "コマンドバージョン"
 msgstr "コマンドバージョン"
 
-# e4028b8c46b7450fbda8b7a0d6650334
 msgid "概要"
 msgstr "概要"
 
-# 9096ede943cd4a7d8813b45c2531aaa3
 msgid ""
 "Groonga1.1からコマンドバージョンという概念が導入されます。コマンドバージョン"
 "は、selectやloadなどのGroongaのコマンドの仕様の互換性を表します。Groongaパッ"
@@ -2447,7 +1832,6 @@ msgid ""
 "す。"
 msgstr ""
 
-# d94e66a427ad4155a7792fb53d3e8f1b
 msgid ""
 "あるバージョンのGroongaは、二つのコマンドバージョンを同時にサポートするように"
 "なります。 使用するコマンドバージョンは、groongaを起動する際のコマンドライン"
@@ -2456,7 +1840,6 @@ msgid ""
 "パラメータを与えることによっても指定することができます。"
 msgstr ""
 
-# 70ae97db187a439297f4f95110c91db5
 msgid ""
 "コマンドバージョンは1からはじまり、更新されるたびに1ずつ大きくなります。現状"
 "のGroongaのコマンドの仕様はcommand-version 1という扱いになります。次回提供す"
@@ -2464,65 +1847,46 @@ msgid ""
 "ります。"
 msgstr ""
 
-# d5bebcee07d14037983b0458ac563bf7
 msgid "バージョンの位置づけ"
 msgstr "バージョンの位置づけ"
 
-# a02ac6f1886f486c9533c5bbbfde6b44
 msgid ""
 "あるバージョンのGroongaにおいてサポートされるコマンドバージョンは、develop, "
 "stable,deprecatedのいずれかの位置づけとなります。"
 msgstr ""
 
-# 920ac79228064c159eee45f1e56badae
 msgid "develop"
 msgstr ""
 
-# 90192ab232e947dbb699931ad6d73e42
 msgid "まだ開発中であり、仕様が変更される可能性があります。"
 msgstr "まだ開発中であり、仕様が変更される可能性があります。"
 
-# 4c822f633bee43819cb7a8fcd50a5781
-# 3047f898526246e289d6a57de93684b3
-# 754d54236fdb4088a118a22ee51b3fcb
-# c441c763e6b34295ad4132e547bfb663
-# 4860cc9deba14ddb9acfff8579c37ac4
-# 36abefa544074d338ad5a91444128ec7
-# 015920903ac547129ca05cbe4721009e
-# 56b6b4f8187e4a2aa23f98bf54d5b690
-# 707fa8edf67c4a4aa4ae507ba918ea66
 msgid "stable"
 msgstr ""
 
-# 947ea2fb573b4f93a1f842ad124ad31b
 msgid ""
 "使用可能であり仕様も安定しています。その時点で使用することが推奨されます。"
 msgstr ""
 "使用可能であり仕様も安定しています。その時点で使用することが推奨されます。"
 
-# c69065028e464b10add6259dc7e2f70b
 msgid "deprecated"
 msgstr ""
 
-# a4a74a966daf4536832967f7d3ff334c
 msgid ""
 "使用可能であり仕様も安定していますが、廃止予定であり使用が推奨されません。"
 msgstr ""
 "使用可能であり仕様も安定していますが、廃止予定であり使用が推奨されません。"
 
-# a09a85f14fc048f0857697a62e372eb0
 msgid ""
 "あるバージョンのGroongaがサポートする二つのコマンドバージョンのうち、いずれか"
 "一つが必ずstableの位置づけとなります。残りの一つは、developないしdeprecatedと"
 "なります。"
 msgstr ""
 
-# f55cba2d55ce4d738b2deb5476612bbe
 msgid ""
 "たとえば下記のようにGroongaのサポートするコマンドバージョンは推移します。::"
 msgstr ""
 
-# 7e25feadf8e84cd98b20778e48196e84
 msgid ""
 "あるコマンドバージョンははじめにdevelop扱いとしてリリースされ、やがてstableに"
 "移行します。 その後二世代経過するとそのコマンドバージョンはdeprecated扱いとな"
@@ -2534,7 +1898,6 @@ msgstr ""
 "ります。さらに次のコマンドバージョンがリリースされると、deprecatedだったコマ"
 "ンドバージョンはサポート対象外となります。"
 
-# 29ff29ca9d184e23a38ded147842956d
 msgid ""
 "default-commnad-versionパラメータやcommand_versionパラメータを指定せずに"
 "groongaコマンドを実行した際には、その時点でstableであるコマンドバージョンが指"
@@ -2544,7 +1907,6 @@ msgstr ""
 "groongaコマンドを実行した際には、その時点でstableであるコマンドバージョンが指"
 "定されたものとみなします。"
 
-# e3417f50013743078942ddb4ff75f0fd
 msgid ""
 "groongaプロセス起動時に、default-command-versionパラメータにstable扱いでない"
 "コマンドバージョンを指定した場合には、警告メッセージがログファイルに出力され"
@@ -2556,11 +1918,9 @@ msgstr ""
 "ます。また、サポート範囲外のコマンドバージョンを指定した場合にはエラーとな"
 "り、プロセスは速やかに停止します。"
 
-# 6d1f43d9174a49c39628be8017fea14b
 msgid "コマンドバージョンの指定方法"
 msgstr "コマンドバージョンの指定方法"
 
-# 64503c86d21a44b887e6bb8dcacfa026
 msgid ""
 "コマンドバージョンの指定方法はgroonga実行モジュールの引数として指定する方法と"
 "各コマンドの引数として指定する方法があります。"
@@ -2568,11 +1928,9 @@ msgstr ""
 "コマンドバージョンの指定方法はgroonga実行モジュールの引数として指定する方法と"
 "各コマンドの引数として指定する方法があります。"
 
-# 23bc121920fb4ffc886f0a66640238f9
 msgid "default-command-versionパラメータ"
 msgstr "default-command-versionパラメータ"
 
-# ad86c9139c704746941c85ef63c75a5c
 msgid ""
 "groonga実行モジュールの引数としてdefault-command-versionパラメータを指定でき"
 "ます。 (configファイルの中に指定することも可能です)"
@@ -2580,12 +1938,9 @@ msgstr ""
 "groonga実行モジュールの引数としてdefault-command-versionパラメータを指定でき"
 "ます。 (configファイルの中に指定することも可能です)"
 
-# 9846fa1001d649ecb0f0d66b9142002e
-# ed7d3f14cd6043ba976fd86e201f1f15
 msgid "実行例::"
 msgstr "実行例::"
 
-# f9061b3d66b643b09904d93e0f416e49
 msgid ""
 "そのプロセスで実行するすべてのコマンドについて、デフォルトのコマンドバージョ"
 "ンとして指定されたバージョンを使用します。指定されたコマンドバージョンが"
@@ -2603,17 +1958,14 @@ msgstr ""
 "ト対象外であった場合には標準エラー出力にエラーメッセージを出力し、プロセスは"
 "速やかに終了します。"
 
-# daa1b26a6cef4154bb1a9688ce752836
 msgid "command_versionパラメータ"
 msgstr "command_versionパラメータ"
 
-# d73485e72c5b4c3d8435e1e00e04d571
 msgid ""
 "select,loadなどのすべてのgroongaコマンドにcommand_versionが指定できます。"
 msgstr ""
 "select,loadなどのすべてのgroongaコマンドにcommand_versionが指定できます。"
 
-# 26a26fbe45b442a09235d32947160e37
 msgid ""
 "指定されたコマンドバージョンでコマンドを実行します。指定されたコマンドバー"
 "ジョンがサポート対象外であった場合にはエラーが返されます。command-versionが指"
@@ -2625,86 +1977,58 @@ msgstr ""
 "定されなかった場合は、当該プロセス起動時にdefault-command-versionに指定した値"
 "が指定されたものとみなします。"
 
-# cd2d8d72e2b94331b4fbf01cd38ccd00
 msgid "Output format"
 msgstr ""
 
-# 482e426de5684ba59e412bd9e966f403
 msgid "Commands output their result as JSON, MessagePack, XML or TSV format."
 msgstr ""
 
-# 4ad1a27c3b654716a6b2caaf95ebb490
 msgid ""
 "JSON and MessagePack output have the same structure. XML and TSV are their "
 "original structure."
 msgstr ""
 
-# 54e93743677a42c0a3a337c6203be429
 msgid ""
 "JSON or MessagePack is recommend format. XML is useful for visual result "
 "check. TSV is just for special use. Normally you doesn't need to use TSV."
 msgstr ""
 
-# 9147e7e794774d7db2d5f33e1715b303
 msgid "JSON and MessagePack"
 msgstr ""
 
-# c29783919f5f4c379de5bd3c2304f3fb
 msgid ""
 "This secsion describes the structure of command result on JSON and "
 "MessagePack format. JSON is used to show structure because MessagePack is "
 "binary format. Binary format isn't proper for documenataion."
 msgstr ""
 
-# ba439c327bde4b39be432639bdfb46aa
 msgid "JSON and MessagePack uses the following structure::"
 msgstr ""
 
-# f65970f3a4264e33b0ed18b5521f53ae
-# c41e9a5775254864920a3c5d413bc3f0
-# dbae9c01ac594defa0f2e485e76c0929
-# b07bab7cb2fd41b0998402e48dcf382b
-# 091b051231aa46808e77dacc6fc5032e
-# a3d0d9e778ae4795ae25444729bacc43
-# c718f34b2a0b454896badee8ac487d5b
-# 11d6f67d10cf49079fc7504fe656d181
-# 5f705ad5205b47bba758a79939864e9c
-# 63706a8aa5aa4123ba3331add4d09cea
-# 08d03411c4b5418b8db31591c1d7b59d
-# f6b8093f5a4f4cd89e30878bedd1c37f
 msgid "For example::"
 msgstr ""
 
-# 4f79c1a1225a4cac86489cb6d85810fb
-# b27a7d696c0742dc965417fa263fb33b
 msgid "In the example, the following part is ``HEADER``::"
 msgstr ""
 
-# 2ecde6c2547a4366879170013e10d138
 msgid "The following part is ``BODY``::"
 msgstr ""
 
-# 1bb58676a6024b1ea200d6d95cdc5005
 msgid "``HEADER``"
 msgstr ""
 
-# 8681235dcf834df7a1d9d82eb2dc9b92
 msgid "``HEADER`` is an array. The content of ``HEADER`` has some patterns."
 msgstr ""
 
-# eb72c07c05284af397b93c070d0f5534
 msgid "Success case"
 msgstr ""
 
-# 486ba926d82e4d3da78079861db06916
 msgid "``HEADER`` has three elements on success::"
 msgstr ""
 
-# 25a88a3a400a438c80c4332cf04b43e0
 msgid "The first element is always ``0``."
 msgstr ""
 
-# 4c924403ddda4448a9434828f252c5fc
 msgid ""
 "``UNIX_TIME_WHEN_COMMAND_IS_STARTED`` is the number of seconds since "
 "1970-01-01 00:00:00 UTC when the command is started processing. "
@@ -2713,44 +2037,36 @@ msgid ""
 "value. The precision of them are nanosecond."
 msgstr ""
 
-# 1c9188dfe2c54589b8e6264d7b4923be
 msgid "Error case"
 msgstr ""
 
-# 05e6ebe7dd65457ba1bb47fbc6961f8c
 msgid "``HEADER`` has four or five elements on error::"
 msgstr ""
 
-# da15876669b54595a4dbac5ff0a27067
 msgid ""
 "``ERROR_LOCATION`` may not be included in ``HEADER`` but other four elements "
 "are always included."
 msgstr ""
 
-# 21139cdd9b3443f492ae2a71451a7c2f
 msgid ""
 "``RETURN_CODE`` is non 0 value. See :doc:`return_code` about available "
 "return codes."
 msgstr ""
 
-# e13725bd1d1942c8b508815aa2c083c5
 msgid ""
 "``UNIX_TIME_WHEN_COMMAND_IS_STARTED`` and ``ELAPSED_TIME`` are the same as "
 "success case."
 msgstr ""
 
-# 87ade3200f7b4b628c472193383ebde4
 msgid "``ERROR_MESSAGE`` is an error message in string."
 msgstr ""
 
-# 554292513226475a94e505550edc9cf2
 msgid ""
 "``ERROR_LOCATION`` is optional. If error location is collected, "
 "``ERROR_LOCATION`` is included. ``ERROR_LOCATION`` is an array. "
 "``ERROR_LOCATION`` has one ore two elements::"
 msgstr ""
 
-# 681199ce511c43a9b3015aae6ed03655
 msgid ""
 "``LOCATION_IN_GROONGA`` is the source location that error is occurred in "
 "groonga. It is useful for groonga developers but not useful for users. "
@@ -2758,23 +2074,19 @@ msgid ""
 "elements::"
 msgstr ""
 
-# f79783d37dbc4d42b1e1910684385b7c
 msgid "``FUNCTION_NAME`` is the name of function that error is occurred."
 msgstr ""
 
-# b69e1ef277d347d78e8edaffb2e86125
 msgid ""
 "``SOURCE_FILE_NAME`` is the name of groonga's source file that error is "
 "occurred."
 msgstr ""
 
-# 720eb9d05c4b43e0b6652005178ba684
 msgid ""
 "``LINE_NUMBER`` is the line number of ``SOURCE_FILE_NAME`` that error is "
 "occurred."
 msgstr ""
 
-# afce7bcc90f64b77a13688ea65c5a544
 msgid ""
 "``LOCATION_IN_INPUT`` is optional. ``LOCATION_IN_INPUT`` is included when "
 "the location that error is occurred in input file is collected. Input file "
@@ -2783,68 +2095,50 @@ msgid ""
 "elements::"
 msgstr ""
 
-# 26f8fdabd5f6483b9f2457ee02b002a9
 msgid "``INPUT_FILE_NAME`` is the input file name that error is occurred."
 msgstr ""
 
-# ec01fc8a160a493babac0b768c504992
 msgid ""
 "``LINE_NUMBER`` is the line number of ``INPUT_FILE_NAME`` that error is "
 "occurred."
 msgstr ""
 
-# fa2d1907698a4882a3217486472b990e
 msgid ""
 "``LINE_CONTENT`` is the content at ``LINE_NUMBER`` in ``INPUT_FILE_NAME``."
 msgstr ""
 
-# ea780e9f4b2b4944b4ea924d4a5d762e
 msgid "``BODY``"
 msgstr ""
 
-# 09b1479b8f314e76acf4d9026adabe6a
 msgid "``BODY`` content depends on the executed command. It may be omitted."
 msgstr ""
 
-# b1043f92bbfe41ec92cd9787876341eb
 msgid "``BODY`` may be an error message on error case."
 msgstr ""
 
-# 5d09935ea7cc42d4905ba72d4c110bdd
-# 2a36f4e14ae54e259d030f335bf0a3a7
 msgid "XML"
 msgstr ""
 
-# 81db52d4e52849b78d49cd2b9e999a50
-# 012f39e4449448b0a75c0062bd783d5f
-# 97ae7113274d453b91edcc2016c1ea32
 msgid "TODO"
 msgstr "TODO"
 
-# 835794d8cbcc4f44b07f350b2fd83107
 msgid "TSV"
 msgstr ""
 
-# decbced8a1d347288ff921104be3fadb
-# 2c4b346efda24fabbe7822b6e2fdafcf
 msgid "See also"
 msgstr "See also"
 
-# a28291bd5a264dd78ec551fc4a9abe01
 msgid ":doc:`return_code` describes about return code."
 msgstr ""
 
-# b28391d763334d68a7b2c6a1731c878c
 msgid "Return code"
 msgstr ""
 
-# 1a0f801bc9764893a8d1db2211861aef
 msgid ""
 "Return code is used to show whether a processing is succeeded or not. If the "
 "processing is not succeeded, return code shows error type."
 msgstr ""
 
-# b3ce53d427c24f46886cb96cd18401a8
 msgid ""
 "Return code is used in C API and query API. You can check return code via "
 "``grn_ctx_t::rc`` in C API. You can check return code by looking the header "
@@ -2852,11 +2146,9 @@ msgid ""
 "query API."
 msgstr ""
 
-# dd88bca0718a4846be36f4bb336ea451
 msgid "List"
 msgstr ""
 
-# dac9e55f713c4d54b7d006819d35c071
 msgid ""
 "Here is a list of return codes. ``GRN_SUCCESS`` (= 0) means that the "
 "processing is succeeded. Return codes that have negative value show error "
@@ -2864,305 +2156,230 @@ msgid ""
 "It is not showen in query API."
 msgstr ""
 
-# b7e2e18af2e64938af87367f18d7bda5
 msgid "0: ``GRN_SUCCESS``"
 msgstr ""
 
-# d9dc04ef00e649a1b721d91107ab7e70
 msgid "1: ``GRN_END_OF_DATA``"
 msgstr ""
 
-# c2e1e8a1f9004618ae6b4d7d2d374507
 msgid "-1: ``GRN_UNKNOWN_ERROR``"
 msgstr ""
 
-# ef0994063cf34e409cf4e87cba13ced1
 msgid "-2: ``GRN_OPERATION_NOT_PERMITTED``"
 msgstr ""
 
-# 12af685ce4644fcb912c2d6ed070d61a
 msgid "-3: ``GRN_NO_SUCH_FILE_OR_DIRECTORY``"
 msgstr ""
 
-# b285a0d7043d4698b50ba940a3e69c0f
 msgid "-4: ``GRN_NO_SUCH_PROCESS``"
 msgstr ""
 
-# 636ac544839e4341b19e80ebd0f9be3d
 msgid "-5: ``GRN_INTERRUPTED_FUNCTION_CALL``"
 msgstr ""
 
-# 101e661fc30e497dabc42570f582ef04
 msgid "-6: ``GRN_INPUT_OUTPUT_ERROR``"
 msgstr ""
 
-# a05276352dd048408fc73efd842aaedd
 msgid "-7: ``GRN_NO_SUCH_DEVICE_OR_ADDRESS``"
 msgstr ""
 
-# 8515756d664d453a9fbafb690a37a6a6
 msgid "-8: ``GRN_ARG_LIST_TOO_LONG``"
 msgstr ""
 
-# 44beb080c3c6466282fe2a71dcb45219
 msgid "-9: ``GRN_EXEC_FORMAT_ERROR``"
 msgstr ""
 
-# 8a0a1099431c4cf49f47940a65cb3bfb
 msgid "-10: ``GRN_BAD_FILE_DESCRIPTOR``"
 msgstr ""
 
-# 97994ab663a74b43bc42c96e77ac3e0f
 msgid "-11: ``GRN_NO_CHILD_PROCESSES``"
 msgstr ""
 
-# 6526021f89b84ef58c8e8f3487766ebb
 msgid "-12: ``GRN_RESOURCE_TEMPORARILY_UNAVAILABLE``"
 msgstr ""
 
-# 134398b675ff432cbca227e0cf321a8b
 msgid "-13: ``GRN_NOT_ENOUGH_SPACE``"
 msgstr ""
 
-# 60371897ff8d4564a8f0b5750be8a570
 msgid "-14: ``GRN_PERMISSION_DENIED``"
 msgstr ""
 
-# c52722978ec548d880d8bf51998ce22f
 msgid "-15: ``GRN_BAD_ADDRESS``"
 msgstr ""
 
-# 6f8eb5f2de774baabe6f4fd69d6b3997
 msgid "-16: ``GRN_RESOURCE_BUSY``"
 msgstr ""
 
-# cf2c02bb2ffd4355abd02902a218ee79
 msgid "-17: ``GRN_FILE_EXISTS``"
 msgstr ""
 
-# 02a98c194edf488d9cfb576e231b5321
 msgid "-18: ``GRN_IMPROPER_LINK``"
 msgstr ""
 
-# 242329469be14331b25057aceb027d13
 msgid "-19: ``GRN_NO_SUCH_DEVICE``"
 msgstr ""
 
-# 404eeff7f5d5411eae595f84e2fcd456
 msgid "-20: ``GRN_NOT_A_DIRECTORY``"
 msgstr ""
 
-# 1309bddf52084dfbbeeaf80a25826e50
 msgid "-21: ``GRN_IS_A_DIRECTORY``"
 msgstr ""
 
-# 51ef2262ad334da28fb1bbd9df28cc48
 msgid "-22: ``GRN_INVALID_ARGUMENT``"
 msgstr ""
 
-# 4b9e9e99430a4b1483a21ceadfabd200
 msgid "-23: ``GRN_TOO_MANY_OPEN_FILES_IN_SYSTEM``"
 msgstr ""
 
-# cebe46f2f86b4c6a97a90bddf794b8be
 msgid "-24: ``GRN_TOO_MANY_OPEN_FILES``"
 msgstr ""
 
-# 0692108e9ce549ccbbf3cb2d9e51b9de
 msgid "-25: ``GRN_INAPPROPRIATE_I_O_CONTROL_OPERATION``"
 msgstr ""
 
-# 99422f8f3d61424bbf46564c16a86e4c
 msgid "-26: ``GRN_FILE_TOO_LARGE``"
 msgstr ""
 
-# 44e3afe400f844fd840b7753bdee1079
 msgid "-27: ``GRN_NO_SPACE_LEFT_ON_DEVICE``"
 msgstr ""
 
-# 4b138268f306472bac08c23f77bc0eda
 msgid "-28: ``GRN_INVALID_SEEK``"
 msgstr ""
 
-# 1742609b7e854a9780a48360923e0d0b
 msgid "-29: ``GRN_READ_ONLY_FILE_SYSTEM``"
 msgstr ""
 
-# f45d51c187944e2b88b4209d45cd8267
 msgid "-30: ``GRN_TOO_MANY_LINKS``"
 msgstr ""
 
-# 1a3f31fa951549eda47a4bdb342fc034
 msgid "-31: ``GRN_BROKEN_PIPE``"
 msgstr ""
 
-# 5678e77fabb74e55a02f9e940914f78d
 msgid "-32: ``GRN_DOMAIN_ERROR``"
 msgstr ""
 
-# bda20b4216514d2da3041245634517ea
 msgid "-33: ``GRN_RESULT_TOO_LARGE``"
 msgstr ""
 
-# 10b8d61c1d0c4fb2a4d6f1ba96e3f521
 msgid "-34: ``GRN_RESOURCE_DEADLOCK_AVOIDED``"
 msgstr ""
 
-# 91b02e9eced44cec8dd133349e968695
 msgid "-35: ``GRN_NO_MEMORY_AVAILABLE``"
 msgstr ""
 
-# 988d5a0a6e464b8b9fcb43525d71a83d
 msgid "-36: ``GRN_FILENAME_TOO_LONG``"
 msgstr ""
 
-# c14b60675a7f4c099faf9beba9a9aba5
 msgid "-37: ``GRN_NO_LOCKS_AVAILABLE``"
 msgstr ""
 
-# 137b2af0908c43e3b44acbeac01968ac
 msgid "-38: ``GRN_FUNCTION_NOT_IMPLEMENTED``"
 msgstr ""
 
-# cc812d33f59f44eb8019654dd1d78f54
 msgid "-39: ``GRN_DIRECTORY_NOT_EMPTY``"
 msgstr ""
 
-# 785966bf066a4de69822c7a67b118645
 msgid "-40: ``GRN_ILLEGAL_BYTE_SEQUENCE``"
 msgstr ""
 
-# 3f7c9cae0f7b46c6b23d4e12614efb5e
 msgid "-41: ``GRN_SOCKET_NOT_INITIALIZED``"
 msgstr ""
 
-# 58f4e2d7dc5e404983e53a734a0fa5a5
 msgid "-42: ``GRN_OPERATION_WOULD_BLOCK``"
 msgstr ""
 
-# 4db457722d75446398836bb6d9da1216
 msgid "-43: ``GRN_ADDRESS_IS_NOT_AVAILABLE``"
 msgstr ""
 
-# e82053844411459eabb1d505c1475ef8
 msgid "-44: ``GRN_NETWORK_IS_DOWN``"
 msgstr ""
 
-# d299bfd152f644ef8aaeaf661fce2e7c
 msgid "-45: ``GRN_NO_BUFFER``"
 msgstr ""
 
-# 771a879833214ec19614e9c5cfbc7277
 msgid "-46: ``GRN_SOCKET_IS_ALREADY_CONNECTED``"
 msgstr ""
 
-# 8fb14b15676f4fe88a7abeb4ce919d57
 msgid "-47: ``GRN_SOCKET_IS_NOT_CONNECTED``"
 msgstr ""
 
-# cf27d317e31c48d6b4cac204124ec976
 msgid "-48: ``GRN_SOCKET_IS_ALREADY_SHUTDOWNED``"
 msgstr ""
 
-# 6657798d5a42419392d55d98802cfc0f
 msgid "-49: ``GRN_OPERATION_TIMEOUT``"
 msgstr ""
 
-# 79300524f1f04d28a56bfa93ed3564b2
 msgid "-50: ``GRN_CONNECTION_REFUSED``"
 msgstr ""
 
-# f4b3f66d970f42c289426cc50505b06e
 msgid "-51: ``GRN_RANGE_ERROR``"
 msgstr ""
 
-# be865419d02549448db81607c86fe944
 msgid "-52: ``GRN_TOKENIZER_ERROR``"
 msgstr ""
 
-# a20ee4c3865d48acbab65e5c921d66eb
 msgid "-53: ``GRN_FILE_CORRUPT``"
 msgstr ""
 
-# d03343b6f35a4fc59189734ff32837ea
 msgid "-54: ``GRN_INVALID_FORMAT``"
 msgstr ""
 
-# 23bb487322f04c89b2d66de6c3bc5db3
 msgid "-55: ``GRN_OBJECT_CORRUPT``"
 msgstr ""
 
-# 7d0a7279ebc145d0bc176ff102b04321
 msgid "-56: ``GRN_TOO_MANY_SYMBOLIC_LINKS``"
 msgstr ""
 
-# 0d939d59418d4458a1fff0af6b8bcbbf
 msgid "-57: ``GRN_NOT_SOCKET``"
 msgstr ""
 
-# 74aab793a3384df980371c8eebe9898c
 msgid "-58: ``GRN_OPERATION_NOT_SUPPORTED``"
 msgstr ""
 
-# 83343392fbea48ca83901ee352908f33
 msgid "-59: ``GRN_ADDRESS_IS_IN_USE``"
 msgstr ""
 
-# ec6b817f32e540e78d2379c58d9b51d7
 msgid "-60: ``GRN_ZLIB_ERROR``"
 msgstr ""
 
-# c558e55b77e6453ba4e4ee513259827c
 msgid "-61: ``GRN_LZO_ERROR``"
 msgstr ""
 
-# 8b448da8e0d2496fb4e77dc6643911f5
 msgid "-62: ``GRN_STACK_OVER_FLOW``"
 msgstr ""
 
-# a801ae04d60e4731a0e34efa748fda88
 msgid "-63: ``GRN_SYNTAX_ERROR``"
 msgstr ""
 
-# 87a6b070fea04393906432c188169d2c
 msgid "-64: ``GRN_RETRY_MAX``"
 msgstr ""
 
-# 6f6b4c6e58454bff83e42bb9a031f901
 msgid "-65: ``GRN_INCOMPATIBLE_FILE_FORMAT``"
 msgstr ""
 
-# aff89531105e42328f90847061cef0c7
 msgid "-66: ``GRN_UPDATE_NOT_ALLOWED``"
 msgstr ""
 
-# 14296302973644dca7bbbd8dc7d4b60c
 msgid "-67: ``GRN_TOO_SMALL_OFFSET``"
 msgstr ""
 
-# d16c295b7da7425ba5d59f72a55dd2f1
 msgid "-68: ``GRN_TOO_LARGE_OFFSET``"
 msgstr ""
 
-# a99fe05b0fe64a90a42c2a52cbacb7c8
 msgid "-69: ``GRN_TOO_SMALL_LIMIT``"
 msgstr ""
 
-# 932864f8729f4453a5454a398762a5f1
 msgid "-70: ``GRN_CAS_ERROR``"
 msgstr ""
 
-# 3a28a4409f024374a4f47e0c2ba110f1
 msgid "-71: ``GRN_UNSUPPORTED_COMMAND_VERSION``"
 msgstr ""
 
-# cd1d0aa1f9ec42ba94762de04acb3ca6
 msgid ""
 ":doc:`output_format` shows where return code is appeared in query API "
 "response."
 msgstr ""
 
-# ab5512ff17994c99b3903d32f0ccb97b
 msgid ""
 ":doc:`/spec/gqtp`: GQTP protocol also uses return code as status but it uses "
 "2byte unsigned integer. So return codes that have negative value are "
@@ -3170,240 +2387,106 @@ msgid ""
 "value in GQTP protocol to return code by handling it as 2byte signed integer."
 msgstr ""
 
-# c3035d8da7e748579353efbe88b43ef4
 msgid "``cache_limit``"
 msgstr ""
 
-# ba07909599204c98969bb07c5fbd464f
 msgid ""
 "``cache_limit`` gets or sets the max number of query cache entries. Query "
 "cache is used only by :doc:`select` command."
 msgstr ""
 
-# 868504e51b834883a858880f307d9c9c
 msgid ""
 "If the max number of query cache entries is 100, the recent 100 ``select`` "
 "commands are only cached. The cache expire algorithm is LRU (least recently "
 "used)."
 msgstr ""
 
-# 5cbbff425bb64b799046e859afe82e40
-# c0a4e0d8ea844f4baf64feb8bcf7fc8b
 msgid "Syntax"
 msgstr "Syntax"
 
-# b76b7b637f024c2ba7d7fd55e1d88b4e
 msgid "``cache_limit`` has one optional parameter::"
 msgstr ""
 
-# 01b0b039140f48fba5d8399e45b7e55b
-# bb5ff6008bb34d7a92afba885c915628
-# faedf5338e484fc0a97463c0bff0f56b
-# 9bad6106d7164a318df4447c81e7a85c
 msgid "Usage"
 msgstr "Usage"
 
-# 5a870d61117a40cd87c92f7d7d0c84d7
 msgid ""
 "You can get the current max number of cache entries by executing "
 "``cache_limit`` without parameter."
 msgstr ""
 
-# 42077ade973f4c679cbe5230489c3016
 msgid ""
 "You can set the max number of cache entries by executing ``cache_limit`` "
 "with ``max`` parameter."
 msgstr ""
 
-# c08b3035268248c29a50839e92a20c9d
 msgid "Here is an example that sets ``10`` as the max number of cache entries."
 msgstr ""
 
-# da72a4138732478a80f0af7a0a9e894d
 msgid ""
 "If ``max`` parameter is used, the return value is the max number of cache "
 "entries before ``max`` parameter is set."
 msgstr ""
 
-# 91088f986b41452d882d125e6ed028e7
-# 64c1379301424498b45f520d7bab67bd
 msgid "Parameters"
 msgstr "Parameters"
 
-# aa6c5a1abc844a978f87b2dd33b26dc6
 msgid "This section describes all parameters."
 msgstr ""
 
-# b0f263ad3e6b42e08486047890401704
-# 0440c20bd123498889aba1be24af580c
 msgid "``max``"
 msgstr "``max``"
 
-# 062998fef3444f42a3e16bb386caaefa
 msgid "It specifies the max number of query cache entries as a number."
 msgstr ""
 
-# 192a10455b484fedaa12300f966fb7fb
 msgid ""
 "If ``max`` parameter isn't specified, the current max number of query cache "
 "entries isn't changed. ``cache_limit`` just returns the current max number "
 "of query cache entries."
 msgstr ""
 
-# b28391d763334d68a7b2c6a1731c878c
 msgid "Return value"
 msgstr "Return value"
 
-# 0cf6f0ddac3d400484779aa3eb5db0b9
 msgid "``cache_limit`` returns the current max number of query cache entries::"
 msgstr ""
 
-# 302f21aa293641d195a24eb6074efbc6
 msgid "See :doc:`/reference/command/output_format` about ``HEADER``."
 msgstr ""
 
-# 6fd5c60c33324bb8939ff5f05a5bef58
 msgid "``N_ENTRIES``"
 msgstr ""
 
-# 7b5f9dac274d4315b643d4de679d96e1
 msgid ""
 "``N_ENTRIES`` is the current max number of query cache entries. It is a "
 "number."
 msgstr ""
 
-# 3b77ec6d9bb94fd8a22b8da8a1a29d37
 msgid ":doc:`select`"
 msgstr ""
 
-# c7e5066f7ffe4decb39e82f074bd3a5e
 msgid "check"
 msgstr "check"
 
-# fae636b0cce542b09cccd876ba50aea9
-# 205814b0a3b242f8bf84de20f5d596d0
-# 7e28d226839b476bb879d37ab94d8662
-# 85ee5b726190499a9ee4c26e3d744e49
-# a095e28d4adf4f5f808c3a7fc120f5ab
-# 205330d8f1fa4d26bb834c14e868fde3
-# cd613a616634485cb067f7d932dc6f51
-# e62d5e758e1843b79826a14256c72145
-# 7ea267d1e8ae48c7ac52fa7898401065
-# 8e97c738a0b24e4bad07521f395c1d33
-# 93a74ef2a04e44a9868e1c295407dca7
-# 7a4f8b357c0744c0a58bb5a15fc16d0b
-# f14805e5fc1c4433bc60c36c62d17719
-# 0d1301fdc9234e378ae2607ac96ac4a0
-# b8923391a74c405899e74b23747adbd4
-# 9d7c512ba1fa43efa60d896ca73bbf8a
-# 96ee1981e34542dd8d7b5a8d8091d241
-# 9699596e1e4b42a58a7cc321265a321a
-# a5f38a2758804300bab3a3a2d673e710
-# 35a7ee93c0e545e894e9d15f3e105626
-# 931849fe219e42699ea7ac4559234a7b
-# 49bdd95a3a6c49f2809391f8154fa152
-# e17e09d681fe46b1b97b6b950c0deff3
-# 0ce26bc91bf4422186e7b033327e2a7f
-# 937cdbeaac6b4d18a6aa9a22deb72170
-# 0ba868fcd7774508a1c0b224d343c136
-# 0dc377326f10436e9db0f7bc6a00d8ac
-# c39cf65b7abf4d4ead92afdba4dd285b
-# b7b4243f074643bbb859cb3fe73a1d50
-# e28cafab46f14a30bc6b4dc88b706155
-# e980f0828c394be882af898d9f769f6d
-# fc9ad6b182bb4034b8bc3bc594101dcc
-# 3359e46828154d4c846606cb2d27e5ab
-# 876012cd15cb419f911c507513deea16
-# c84a609b98e64119a7be4864cc5845e0
 msgid "名前"
 msgstr "名前"
 
-# b29e65e0be33420fb9f6696f9f92143b
 msgid "check - オブジェクトの状態表示"
 msgstr "check - オブジェクトの状態表示"
 
-# 665d98ed00f440a4b7193d4f6fbb2680
-# 90596cb8d2794d73a123a7b84d7536d9
-# fb634bfc9dc34b7e8b6b1bb668a6a86c
-# 58b7ebe091f44468b3a47b81820e290e
-# bbef6d7037344ff5bf3335ff445432be
-# 1d56f5963df344dba773c5fbe6f8ffc7
-# dddfce79655c40b28ceaa077226ed739
-# bc80275ac9c14672b3dd95b3263fea7c
-# 0013d89e5bbb4234b81e9fc796efdb0f
-# c140f2fa447d4662803c3a91dea555b2
-# 786d9efb6e884c3e949baee3ac297c89
-# 8fed88d029d648aa9c5cd4d86ca134a9
-# 473b82c510014e86bfb21ec8eaf16c78
-# 43693018f3cc4eaca6439adf746be163
-# 86cd94d8b55d410e97887bfc4a6bc56f
-# 24cfd4103b2047dfbd009f4a62318e65
-# df1a45dcf85248c68c9653a9f76759be
-# 6201238ce26a457baea1807dde72dfa9
-# a1424e0a0fa647759ade7f6bb8ed6de5
-# 16565703e28e418e8515c0af9d665109
-# d8408e0f24114c74bfced9c0d4e9b457
-# 032d067c09164233b069b6ec736b3912
-# d6dcb53b9d12413a94a5dcee6ed3577d
-# e8a3f489e43b4b378fccc705d9dfe47f
-# 1e73c64b24184bb9ad29ccd3253c9ead
-# d409af7e6a3f427596aba63c4e621a59
-# 5f04a5c5563744b3b042c5a1e30d8ac5
-# 8e2436a28095414cb80829d767919717
-# b8fcf0f5bb064c63b0bc9d67bd288d92
-# 642bbd21ca8847bd96ebd7a58efb7f8b
-# e78d9913fd284e4cab78198be853cf0e
-# a8eb96fdc9c841baae6ab0afaaf058bf
-# 9f3340b03fd04742bd8783fd7e27183e
 msgid "書式"
 msgstr "書式"
 
-# 26fde15d483a4590b249d65548dd4608
-# d0037b97891141e1966452419a26865d
-# 011d8b46255e4d8c90f965c978a0790e
-# be5d5799e1d1434abd516fdb075bef1b
-# c5d2e8a3b83049f9a7e5b5394c659b0c
-# fcb54cf101644b5cbb64a644c0524164
-# a43f643fc05945589e7a766b70460a50
-# 7104008184ed49a394c99c2a8504a873
-# 91a0bf9ba58f40439ad2e58d750e8ab1
-# e1749c6a554b45f48c6060245b2f4a53
-# 26eefee5a4824ea9b98308b6dd01e333
-# 6a810014a3a64bb781d29ef9b384342e
-# 5073e82055684cb6822a7929600f1515
-# 3e697099dc4d460ca763ccabf1624da4
-# 3a010968278c467da557b108e0d0b18f
-# 0e066f35e4164e65b0a24fc0d8e36d2c
-# a4035f658b7c4647916d5fb3d2e442f7
-# 768d02cf74144a12bc005bf8012abb13
-# 1616eb08db8f4f4ca305af887a2adb0a
-# 9da334bf234643a7b9e8d2d22e5bfc25
-# bbacda39ab5e4b8aa53ecbd5f14ec757
-# fc08535e072646c49706e9c1374311d5
-# 255c0002a6e0404a90ef98142e215aee
-# cde58df9d52042cd8eab78b5a6d93cd6
-# 75716e389d2148c68ddf056752fdaba4
-# d5180e595bc24ee089fa2c886089e975
-# ba4f4c8afb0d4844839419e74dc6f943
-# 5703c94c0cb34fe599d32e670ba80abc
-# 8446cae9d6b6477d81428c48182ed72d
-# 872dadfd95084848b7d5624ad2a3f270
-# 2a065755631341d08afc3292b15e6185
-# 574c93b2c11a4e97acd292dc0e5be4c1
-# c91bbc89845649fab92a5456b8f1e33f
-# 365191c7302743b1929512f016a84abc
-# 4083ea358a694489b903894227053ee3
 msgid "説明"
 msgstr "説明"
 
-# ae35576b01bf4d4fbf06be9731c1bf99
 msgid ""
 "Groonga組込コマンドの一つであるcheckについて説明します。組込コマンドは、"
 "groonga実行ファイルの引数、標準入力、またはソケット経由でgroongaサーバにリク"
 "エストを送信することによって実行します。"
 msgstr ""
 
-# 4d30b784c4784924b741e59cf6279e3f
 msgid ""
 "checkコマンドは、groongaプロセス内の指定したオブジェクトの状態を表示します。"
 "主にデータベースが壊れた場合など異常時の問題解決のために使用することを想定し"
@@ -3415,330 +2498,171 @@ msgstr ""
 "ています。デバッグ用のため、返値のフォーマットが安定しているということは保証"
 "されません。(フォーマットが変更される可能性が高い)"
 
-# 0cdf35bebda046879cb5ca882b8bf569
-# c025242e06b24194b6a901f7093d97ba
-# f4e51f7db40049e486dee900daed5696
-# c686586b0c914e7782bb5fa2bafc289c
-# c4440b4564914b5ca4f47ad0cf9a1519
-# 2ebba44f4d6643bb9454b07c3b4d7fda
-# 560a4d3da4cf46689aca0b781edb83c9
-# 30ad07a3372748b198fe9ddf8f15990c
-# d822a50b9db04205b3338eef027c7b7f
-# 5ab39be1630f43179e3f4bb61048e087
-# 582474a46fda444a936d3401213c1f2c
-# 3e85348413064e00a0f14b321996dcbc
-# 4686b5fa9a9b41cd9aab88b57c0f2a0c
-# 43bf0531d9574004bf11b84148ce3411
-# 8f1aada8624e44cd855163146750d4de
-# c8370e71f2764203ad57c0b456e07c4a
-# 0fac8e09395344f3adbfd865775a4174
-# 34853426acef432db920af6f34fb69b2
-# 68efe7de73c04b749d5ee61e448a6554
-# 3e72d87f18c04980835141287f6f5e89
-# e36aa5c67a8c4c46ad1f6673077bb73c
-# 77990477090c46eb97bfe8333f815654
-# 0786fb088fe14d0a99d47ed607469cae
-# 055883270a114ea9ba3a384bca8c468d
-# cd37e5b2acaf46fab63f3e26f2e7719f
-# 9bf84239475c4ed5a43246c6d2b610de
-# adf5973943ae4ab88f7ed97b5b3345d4
-# 066c04a849f840e0be675bc16eb5eef3
-# 03aa8e0d1d72458d8eb96a227b48f792
-# 2a2d6adf148a409db7c7f80163944b51
-# 34bdbc361c6146189040e729e47ac407
 msgid "引数"
 msgstr "引数"
 
-# 2b7bb67dc3d844fa859200553e7bb338
 msgid "``obj``"
 msgstr "``obj``"
 
-# 63fa6e7a229d4a5d8952ba88e5f4d79b
 msgid "状態を表示するオブジェクトの名前を指定します。"
 msgstr "状態を表示するオブジェクトの名前を指定します。"
 
-# f33248cf736549da969b191ca7dc1335
-# 68ab992e8dd44a9aa239112132b5a4b7
-# 7283e6260c9244f9b2c19341199daf19
-# b73bb38ba32f4e4787d3a35b90f49e6a
-# 3042bc68a3b644e980675b3cfcedd08f
-# 409d3f633ce04b72a3f24e46d148c463
-# 3d2dc811f00f4af58f973c9f102923da
-# 856af84f4a6b408dadbe795983a1f540
-# 71b5795ca68b487594f0202937f5a1da
-# fbf2d297732e40768a39cf76afc4a607
-# 6ebf6a21fd5a478ca3b45fddc0d2a95b
-# 5aaf8563c65d445092989ad5e64e1852
-# dec37c3a4a1d4b2dbb6cf0be824b8937
-# ee2ae66a55f6414984e49814022ac67a
-# 1763558d88334005a0fee46d4e308820
-# 184d7d8cc30d41a1b20030533853c2e5
-# 4b00a14f233a489ba616a4c7091d78be
-# 67d64d8302964d5dbdeb77a9bbf9fa62
-# 80c8d31352674368909f16ab82c3765a
-# 500e83545e874d44bfbbf895bfe36a3c
-# 31460ebdddd949a09297a3aa7b3ad2c5
-# d750c23465734be49e0bd363ce43bde3
-# b9da8c824110432c9972ebc8c2175dc3
-# e4a1183635eb4e3384fb6c5d2e60ef19
-# 457b50418fda4099a92991824b008fd4
-# ba89c6121b2241ac99029d0a440be1f9
 msgid "返値"
 msgstr "返値"
 
-# dfa99391fbb045d4a5dceee67eea9eb4
-# 9c31dd6d71244645b4b578e786dd4222
-# f33ccb9a71b34ce782af5e6ef36dbb62
-# 1e5639ce57fc4d358b218f2d94267124
-# 89a6b7b744f14db2ac0ce273396949a3
-# 4362d275e1d647bd9049f9934631a5c3
-# 50a20cbb49294ad0b1b4710d9b769586
-# 092e8f0935294d0691df0689fe3ccf71
-# 731e84e751af44439de777fe460c7c46
-# cb9208e92e8d4aedab4538553e88a502
-# 7cceb272312c4c75837f0fcd48424e1d
-# 47576754539740128a41281936237d08
-# b609516997934cc280bf5e7e36dc418d
-# dcb9109edf9b423884de00a3e0d08000
-# 12f6ca7a052b42a4b2e766506c69e962
-# 6f66e4153c4a49ecabc6a50c51efd0e2
 msgid "json形式"
 msgstr "json形式"
 
-# 3c899813167349a188533406c8695279
 msgid "チェックするオブジェクトにより返される値が変わります。"
 msgstr "チェックするオブジェクトにより返される値が変わります。"
 
-# 4574809abce841f3930f1bd87d830dea
 msgid "インデックスカラムの場合::"
 msgstr "インデックスカラムの場合::"
 
-# 05fa57b8e2a043eb81eea56e89dd467f
 msgid "``インデックスの状態`` には下記の項目がハッシュ形式で出力されます。"
 msgstr ""
 
-# 7ce6ba435e3641b8a4d89e74b3fb249b
-# b5983df39f7d46faa0a27c4f9cbf4552
-# 3663a61eb37a45a7b35671577635e5f0
-# 0df8e7d57bb640bf9e19e7678fc45333
 msgid "``flags``"
 msgstr "``flags``"
 
-# dbfab6b41b8c410cb65c747402b8ec67
 msgid "指定されているフラグ値です。16進数で表現されています。"
 msgstr ""
 
-# b0f263ad3e6b42e08486047890401704
-# 0440c20bd123498889aba1be24af580c
 msgid "``max sid``"
 msgstr ""
 
-# 7cea329242374ad68d5225c61a8ac8ce
 msgid "セグメントのうち最も大きなIDです。"
 msgstr ""
 
-# c16322446ac2427e8b4c24f47803775e
 msgid "``number of garbage segments``"
 msgstr ""
 
-# 392081ef38b947578491e7496b58ac57
 msgid "ゴミセグメントの数です。"
 msgstr ""
 
-# af58e3fddc3d49fa8fdb76f1ed39c2b7
 msgid "``number of array segments``"
 msgstr ""
 
-# 11d1559bba4a443f92d0ee0f58c446f7
 msgid "配列セグメントの数です。"
 msgstr ""
 
-# 04e414fefc454c9d8951b64380311274
 msgid "``max id of array segment``"
 msgstr ""
 
-# 3344e6f5a7ee4674a4781ae53dea2249
 msgid "配列セグメントのうち最も大きなIDです。"
 msgstr ""
 
-# 12185cb4ecbe4ac382ad3e3a84ae94f7
 msgid "``number of buffer segments``"
 msgstr ""
 
-# 67182535880e410b9388658a7d90c771
 msgid "バッファセグメントの数です。"
 msgstr ""
 
-# c8e65d80b52d41489c86b84110624090
 msgid "``max id of buffer segment``"
 msgstr ""
 
-# c5f699ffdf864de699663608942aca75
 msgid "バッファセグメントのうち最も大きなIDです。"
 msgstr ""
 
-# 200dbee6946847218e6efcc335ba21d8
 msgid "``max id of physical segment in use``"
 msgstr ""
 
-# 6ddbfe00cf6c4f23b5418e35e05f19ae
 msgid "使用中の論理セグメントのうち最も大きなIDです。"
 msgstr ""
 
-# 97eb022a8e0644b4a04621d235b44ad5
 msgid "``number of unmanaged segments``"
 msgstr ""
 
-# 5dc93de550d942adb68af536c0d54228
 msgid "管理されていないセグメントの数です。"
 msgstr ""
 
-# 858d16c6868f49c897b1332140a19da5
 msgid "``total chunk size``"
 msgstr ""
 
-# b083062a6deb43718b9fb1071ec11e38
 msgid "チャンクサイズの合計です。"
 msgstr ""
 
-# 37769073ef8b4aa6be1878c214c64633
 msgid "``max id of chunk segments in use``"
 msgstr ""
 
-# 083e18cfb3e545d796bd4d988aba4fd9
 msgid "使用中のチャンクセグメントのうち最も大きなIDです。"
 msgstr ""
 
-# 9fd42dfb5eb84f6c8e33f0782d57b730
 msgid "``number of garbage chunk``"
 msgstr ""
 
-# 332053901e6548dc922dae59efbb0c7b
 msgid "各チャンク毎のゴミの数です。"
 msgstr ""
 
-# a07c24b74a0949f9bb825cdfc3c3a47f
 msgid "``バッファの状態`` には下記の項目がハッシュ形式で出力されます。"
 msgstr ""
 
-# 7777b32dd78747a48d2b6ab561bbf5dc
-# f24e7ea44302434ebf68d896fe26c32b
-# 09ee6652100f41b0a72514a7bef7eb56
-# 401e9097289b49128ee3a12e432d2e40
 msgid "``buffer id``"
 msgstr ""
 
-# d8a6b2a581c540129108fe6785271e5d
 msgid "バッファIDです。"
 msgstr ""
 
-# 9b294bff61a74d0689af921532910d69
 msgid "``chunk size``"
 msgstr ""
 
-# 619e7842edb946b8bc00763b8cf551ac
 msgid "チャンクのサイズです。"
 msgstr ""
 
-# 7ade414e8ea14d70a5687e42a70bab0c
 msgid "``buffer term``"
 msgstr ""
 
-# 34dd273902634fecb6588d3f3bd3ff12
 msgid ""
 "バッファ内にある語の一覧です。各語の状態は以下のような配列となっています。"
 msgstr ""
 
-# 67624f9ebd88486e8c7de31e9fb78de1
 msgid ""
 "[語, バッファに登録されている語のID, 用語集に登録されている語のID, バッファ内"
 "でのサイズ, チャンク内でのサイズ]"
 msgstr ""
 
-# 6e1e4422b01e4a0caf4826b28e8c2d32
 msgid "``buffer free``"
 msgstr ""
 
-# 5c30fbd9092f46919a278072a41321a7
 msgid "バッファの空き容量です。"
 msgstr ""
 
-# 8acf99491d804780a9023b19f54e24b0
 msgid "``size in buffer``"
 msgstr ""
 
-# 6899474300c6425fb54602dae1c9f756
 msgid "バッファの使用量です。"
 msgstr ""
 
-# f39321953f394e7fb1e821f4dd642690
 msgid "``nterms``"
 msgstr ""
 
-# 780aa1cfa3344bda86f036036d7bdb81
 msgid "バッファ内にある語の数です。"
 msgstr ""
 
-# 5280950aaa6d463e9c784f52bdd89e99
 msgid "``nterms with chunk``"
 msgstr ""
 
-# c46120984b9846d5bfac7bef90e2fae0
 msgid "バッファ内にある語のうち、チャンクを使っている語の数です。"
 msgstr ""
 
-# 7ca49eb251834eaaafc54ffbe0ebbba0
-# 08325622a48540e9ac1f4b44f2c86c4e
-# 31182730a9724ee095a568199e05971e
-# 6c328438e0f04def890531d2c9dde6f9
-# 7d8c719df891410c810c00357d6ecf85
-# a736ad76ab484e0991a36701969b468f
-# df156aa841e64176b760eef1c4fbe9a0
-# 3343a4a1cd1841ecb1537aa46bf018b8
-# a6e7dc0632944558aeab616699bb0f39
-# e539da8b12cd4d8f9bf7c2782c6bbe71
-# 7fd8a61d54624c198cf8d5f58cc633c3
-# ea567d4f11fa4e0f8a64351210af041f
-# 6b997f0d44284a0db7cc43fae7a5da86
-# ba3b8d4860b24d9887b3b17a8bec49f1
-# c3758a2797ae4e2a914454f515321d00
-# 8b2e54960631473bb3d90212374c7a0c
-# 61d37a13fea64353a023f8c673c4f065
-# df9b0da94a124e0eb6af34d231b4d035
-# 03631e859e3046b19bfb14a102bd07a1
-# 8e9be7b2c03940d49db0a1fc1772c7b4
-# 8df8105658ba4d1da53ca6b932eb9e5b
-# 23587eec46d04914ad1692fcdc4f6120
-# 2bc4ce15a16344ceabb1e20653822411
-# 6d1a76a7b65645bb8362f561458d637d
-# 8f046b72cc364fcf89679654baa02dde
-# cacd01ab7e6240b9bfafbb54ce78595a
-# fb388626cbc5445db457c6488177be3b
-# beab1552a5c94ed389b4a538298b01c2
-# e44a92101aed4a289a8b5b4511156045
 msgid "例"
 msgstr "例"
 
-# a4ea4a614ad04aac8f6276a29d47a7f5
 msgid "テーブルTermsのインデックスカラムnameの状態を表示します。::"
 msgstr "テーブルTermsのインデックスカラムnameの状態を表示します。::"
 
-# a56eb96d6bda46e7bc26eb246fd96d2c
 msgid "clearlock"
 msgstr "clearlock"
 
-# a0950fd455a442808aa4ef79fd00f14c
 msgid "clearlock - オブジェクトにセットされたロックを解除する"
 msgstr "clearlock - オブジェクトにセットされたロックを解除する"
 
-# f08a37d234184a02bbdd6f7455654c07
 msgid ""
 "Groonga組込コマンドの一つであるclearlockについて説明します。組込コマンドは、"
 "groonga実行ファイルの引数、標準入力、またはソケット経由でgroongaサーバにリク"
 "エストを送信することによって実行します。"
 msgstr ""
 
-# a9c79d9f36c448408f51af6bfcf2c1de
 msgid ""
 "clearlockは、対象となるオブジェクト(データベース,テーブル,インデックス等)を指"
 "定し、オブジェクトにかけられたロックを再帰的に解除します。"
@@ -3746,13 +2670,9 @@ msgstr ""
 "clearlockは、対象となるオブジェクト(データベース,テーブル,インデックス等)を指"
 "定し、オブジェクトにかけられたロックを再帰的に解除します。"
 
-# 122a78050958485bb5e37d499ed6ec9a
-# dd02b754ba174a2d9ad25dd254eb4164
 msgid "``objname``"
 msgstr "``objname``"
 
-# cca5e8d0ce2e4894a42598b09c214c63
-# ff0fb9ff4ee0432eba1913f4495a2fd8
 msgid ""
 "対象となるオブジェクト名を指定します。空の場合、開いているdbオブジェクトが対"
 "象となります。"
@@ -3760,75 +2680,36 @@ msgstr ""
 "対象となるオブジェクト名を指定します。空の場合、開いているdbオブジェクトが対"
 "象となります。"
 
-# f1eb27fd83e2459f9d4a7a35f212edc7
-# 4e87a949874740d4baac448962542ec6
-# a627bafd33624a80b4fb8db09597663c
-# 770a350f338e43409adf5d590ef45626
-# 696b2072053146bfb94583bbfd6ba2c5
-# 6671c60c1f844853986e37a00f31582f
-# 8159e11a41454f8383472df037ac2a86
-# 0abaaa35b02a4fc0a0b6c8a4e79798c3
-# 4a4057ba5fcf443a9e6002149dffe9f5
 msgid "``成功かどうかのフラグ``"
 msgstr ""
 
-# 4fa1cf91248c44e49bca7f71c6e5f486
-# 1e84a5a4c03f4c149396ee3c0d6da8bb
-# 10b7f1c130d3432d85d704de4a9d2120
-# 0ed3506ddbcc4652902e6c324ad6e3b5
-# 0dfce8f411fe48d798754d28c20ec65c
-# 40d7ce0e04cd4921b5d264a4b3bec871
-# 79c570f53d234fa4941069c94a4dcb44
-# 8f2c7090bca247f1b9f4ea23c51a7e8b
-# 7fc39b6f4a3e484bb3f73f3706b42ecf
 msgid "エラーが生じなかった場合にはtrue、エラーが生じた場合にはfalseを返す。"
 msgstr ""
 
-# 97839c30c8d44455967884597543b348
 msgid "開いているデータベースのロックをすべて解除する::"
 msgstr "開いているデータベースのロックをすべて解除する::"
 
-# 98ddd6fbdb9d454dbf19c0e7d6bee3f3
 msgid "テーブル名 Entry のカラム body のロックを解除する::"
 msgstr "テーブル名 Entry のカラム body のロックを解除する::"
 
-# 2ee891a6bf6a49f18c568c7ecb00811a
-# cc4025ef0d9f46c98d6ad0b1053eb9cd
-# a2adb73b95384b00bec72fae4a649b94
-# e668ce5eff154359b498ab6628d34162
-# ab077d684198440b83961bae3ca40c77
-# 4d420c2a45704868b66779c16b33185e
-# 27091691c73f46309f823667839a4acf
-# 7b4129f6e38247feb857d9f86a3fcbb0
-# 01e658097c3746eeb0679b9bfae926ad
-# 45f0ca805b464988a3c88563fae4f3bb
 msgid "関連項目"
 msgstr "関連項目"
 
-# 8668bbcdacd74fb0b5ce021b92203897
-# cfb26a3b65b1496a9988e068718882db
-# 8182370cb9114ee885f0ef47858f7ba5
-# 78b56ef6a1014c8389b6c712bd79c0b0
-# 1922aa51da5847a7ba262d42ff224693
 msgid ":doc:`load`"
 msgstr ":doc:`load`"
 
-# 68baf1cf0b444232a1fa7299c43fc58a
 msgid "``column_create``"
 msgstr ""
 
-# 0e3ffa40e635429d90eeb3510e0cd267
 msgid "column_create - カラムの追加"
 msgstr "column_create - カラムの追加"
 
-# cd05d201183f4cb2bd153fc77b836ab0
 msgid ""
 "Groonga組込コマンドの一つであるcolumn_createについて説明します。組込コマンド"
 "は、groonga実行ファイルの引数、標準入力、またはソケット経由でgroongaサーバに"
 "リクエストを送信することによって実行します。"
 msgstr ""
 
-# e4423b2fdb65431fbc70c22ff9b27322
 msgid ""
 "column_createは、使用しているデータベースのテーブルに対してカラムを追加しま"
 "す。"
@@ -3836,11 +2717,9 @@ msgstr ""
 "column_createは、使用しているデータベースのテーブルに対してカラムを追加しま"
 "す。"
 
-# c280214f31844ca3a7a96c86f0b0c225
 msgid "テーブルEntryに、ShortText型の値を格納するカラム、bodyを作成します。::"
 msgstr "テーブルEntryに、ShortText型の値を格納するカラム、bodyを作成します。::"
 
-# 529fe8364fe147aab094559b7c214ae4
 msgid ""
 "テーブルTermに、Entryテーブルのbodyカラムの値を対象とする完全転置インデックス"
 "型カラム、entry_bodyを作成します。::"
@@ -3848,31 +2727,15 @@ msgstr ""
 "テーブルTermに、Entryテーブルのbodyカラムの値を対象とする完全転置インデックス"
 "型カラム、entry_bodyを作成します。::"
 
-# 4c822f633bee43819cb7a8fcd50a5781
-# 3047f898526246e289d6a57de93684b3
-# 754d54236fdb4088a118a22ee51b3fcb
-# c441c763e6b34295ad4132e547bfb663
-# 4860cc9deba14ddb9acfff8579c37ac4
-# 36abefa544074d338ad5a91444128ec7
-# 015920903ac547129ca05cbe4721009e
-# 56b6b4f8187e4a2aa23f98bf54d5b690
-# 707fa8edf67c4a4aa4ae507ba918ea66
 msgid "``table``"
 msgstr "``table``"
 
-# a685d02f362243f297a26c2e356f2672
 msgid "カラムを追加するテーブルの名前を指定します。"
 msgstr "カラムを追加するテーブルの名前を指定します。"
 
-# 01ac102867244232a09a13a982dc2674
-# fbec14912a5f4ff0ab8bed3f41f1aa7c
-# 61e5f3b1454f4c57ab58006f7ab493fd
-# 2ce0e395d9c741c1ac88f9637d7d3ae3
-# 6d23df314d834de0b90c3079f825c1a0
 msgid "``name``"
 msgstr "``name``"
 
-# 45225cedb4da45e3a917cd00cf0340ec
 msgid ""
 "作成するカラムの名前を指定します。カラム名は、テーブルの中で一意でなければな"
 "りません。"
@@ -3880,7 +2743,6 @@ msgstr ""
 "作成するカラムの名前を指定します。カラム名は、テーブルの中で一意でなければな"
 "りません。"
 
-# 39effbd63c644679bc1264f69f5ed87d
 msgid ""
 "ピリオド('.'), コロン(':')を含む名前のカラムは作成できません。また、アンダー"
 "スコア('_')で始まる名前は予約済みであり、使用できません。"
@@ -3888,7 +2750,6 @@ msgstr ""
 "ピリオド('.'), コロン(':')を含む名前のカラムは作成できません。また、アンダー"
 "スコア('_')で始まる名前は予約済みであり、使用できません。"
 
-# 7102c865571d4aa082866a971a8740dc
 msgid ""
 "カラムの属性を表す以下の数値か、パイプ('|')で組み合わせたシンボル名を指定しま"
 "す。"
@@ -3896,31 +2757,24 @@ msgstr ""
 "カラムの属性を表す以下の数値か、パイプ('|')で組み合わせたシンボル名を指定しま"
 "す。"
 
-# f4911db8f8f14941adaf444a9016f100
 msgid "0, ``COLUMN_SCALAR``"
 msgstr ""
 
-# a78b2bf4af8848afb525ab91ac8bacc4
 msgid "単一の値が格納できるカラムを作成します。"
 msgstr "単一の値が格納できるカラムを作成します。"
 
-# 6327d8fb28ba4ad3ab41e81d3abdd526
 msgid "1, ``COLUMN_VECTOR``"
 msgstr ""
 
-# 96b9757a7f76484b894e20b9e03547b2
 msgid "複数の値の配列を格納できるカラムを作成します。"
 msgstr "複数の値の配列を格納できるカラムを作成します。"
 
-# 83c99de57ade4c578328e4bead06cb09
 msgid "2, ``COLUMN_INDEX``"
 msgstr ""
 
-# 17ed72374b2f416ba2894055ca627950
 msgid "インデックス型のカラムを作成します。"
 msgstr "インデックス型のカラムを作成します。"
 
-# 71faa9ae8fa841d0b009dc543b7d05ae
 msgid ""
 "There are two flags to compress the value of column, but you can't specify "
 "these flags for now because there are memory leaks issue `GitHub#6 <https://"
@@ -3928,27 +2782,22 @@ msgid ""
 "issue occurs both of them (zlib and lzo)."
 msgstr ""
 
-# 6be0bc755fa44d598e4f76d8cfb29da8
 msgid "16, ``COMPRESS_ZLIB``"
 msgstr ""
 
-# b946c2ebb6324359840cdd8dee14e770
 msgid ""
 "Reserved. Compress the value of column by using zlib. This flag is disabled "
 "feature even if you build groonga with ``--with-zlib``."
 msgstr ""
 
-# a2b411050c834ddd8a018fb5fc6551cf
 msgid "32, ``COMPRESS_LZO``"
 msgstr ""
 
-# 6d3f133caa71430da8fc7f3f141bb12a
 msgid ""
 "Reserved. Compress the value of column by using lzo. This flag is disabled "
 "feature even if you build groonga with ``--with-lzo``."
 msgstr ""
 
-# 0bc1063383054558a0e8c8d896adade5
 msgid ""
 "インデックス型のカラムについては、flagsの値に以下の値を加えることによって、追"
 "加の属 性を指定することができます。"
@@ -3956,48 +2805,35 @@ msgstr ""
 "インデックス型のカラムについては、flagsの値に以下の値を加えることによって、追"
 "加の属 性を指定することができます。"
 
-# 9637784cf4fe42dbbb66f950be403c92
 msgid "128, ``WITH_SECTION``"
 msgstr ""
 
-# 823e5922c9de459eb7a513ac8a963ac2
 msgid "段落情報を格納するインデックスを作成します。"
 msgstr "段落情報を格納するインデックスを作成します。"
 
-# 7be12e6f12a745c29bab7a9a3ca38173
 msgid "256, ``WITH_WEIGHT``"
 msgstr ""
 
-# 35ba2e8b1aaa449b983962f2c3d63a3f
 msgid "ウェイト情報を格納するインデックスを作成します。"
 msgstr "ウェイト情報を格納するインデックスを作成します。"
 
-# 66ef8d4840ae44a9ba842e339eafdc3d
 msgid "512, ``WITH_POSITION``"
 msgstr ""
 
-# 332c1e6c9fcc40ee8dd16cb319ec88c3
 msgid "位置情報を格納するインデックス(完全転置インデックス)を作成します。"
 msgstr "位置情報を格納するインデックス(完全転置インデックス)を作成します。"
 
-# c8ce7ea2d7d64c01abb79185a10abcd9
-# c8a5faac538d40b485d1a18933b45db6
-# c1ec9388c59842e4b656bf0ffd8838e3
 msgid "``type``"
 msgstr "``type``"
 
-# 495c22a2f9924d33afd4075edc38e288
 msgid ""
 "値の型を指定します。Groongaの組込型か、同一データベースに定義済みのユーザ定義"
 "型、定義済みのテーブルを指定することができます。"
 msgstr ""
 
-# a92879b045a646e38405bfcef882a005
-# f99bd6c47b584fb2b4a7d823158a2fb0
 msgid "``source``"
 msgstr "``source``"
 
-# b7c14ca764274e5e9e5dbea2cf05ea5d
 msgid ""
 "インデックス型のカラムを作成した場合は、インデックス対象となるカラムをsource"
 "引数に指定します。"
@@ -4005,52 +2841,41 @@ msgstr ""
 "インデックス型のカラムを作成した場合は、インデックス対象となるカラムをsource"
 "引数に指定します。"
 
-# 1db91fbbb08d4b97b9a35033e3dd178d
 msgid ""
 "The format of HEADER is [0, UNIX_TIME_WHEN_COMMAND_IS_STARTED, "
 "ELAPSED_TIME]. See :doc:`/reference/command/output_format` about HEADER."
 msgstr ""
 
-# a1cec3bba1e6452b9740b3c94cd9bdb4
 msgid "``SUCCEEDED``"
 msgstr ""
 
-# 3c318e26bdc34c608850713c91e7c44c
 msgid "If command is succeeded, it returns true on success, false otherwise."
 msgstr ""
 
-# ea997739b57e4c90934ad82e43a8418c
 msgid "column_list"
 msgstr "column_list"
 
-# 34f693ba93d9444eb7ef30b8a9afae38
 msgid "column_list - テーブルに定義されているカラムのリスト表示"
 msgstr "column_list - テーブルに定義されているカラムのリスト表示"
 
-# 788f72b5535f46628382bf3a12dcd03c
 msgid ""
 "Groonga組込コマンドの一つであるcolumn_listについて説明します。組込コマンド"
 "は、groonga実行ファイルの引数、標準入力、またはソケット経由でgroongaサーバに"
 "リクエストを送信することによって実行します。"
 msgstr ""
 
-# 55d4096669c64a7bacce6c38e6393094
 msgid "column_listはテーブルに定義されているカラムをリスト表示します。"
 msgstr "column_listはテーブルに定義されているカラムをリスト表示します。"
 
-# b4c2109119cf4a72833ddb5fd36992a4
 msgid "カラム情報を出力するテーブルの名前を指定します。"
 msgstr "カラム情報を出力するテーブルの名前を指定します。"
 
-# f7e4283faa3b40e38a1f54cc833aec86
 msgid "カラム名一覧を以下の形式で返却します。::"
 msgstr "カラム名一覧を以下の形式で返却します。::"
 
-# 9c6ef81ae4e54e14825e96d2a64a0581
 msgid "``カラム情報名n``"
 msgstr "``カラム情報名n``"
 
-# 001bdef38c8142bf8fd0fb65689bb7f0
 msgid ""
 "``カラム情報n`` には複数の情報が含まれますが、そこに入る情報がどんな内容かを"
 "示す名前を出力します。 情報名は以下の通りです。"
@@ -4058,73 +2883,51 @@ msgstr ""
 "``カラム情報n`` には複数の情報が含まれますが、そこに入る情報がどんな内容かを"
 "示す名前を出力します。 情報名は以下の通りです。"
 
-# 7777b32dd78747a48d2b6ab561bbf5dc
-# f24e7ea44302434ebf68d896fe26c32b
-# 09ee6652100f41b0a72514a7bef7eb56
-# 401e9097289b49128ee3a12e432d2e40
 msgid "``id``"
 msgstr "``id``"
 
-# cb50e3136e71427090426a6c99af9c72
 msgid "カラムオブジェクトに割り当てられたID"
 msgstr "カラムオブジェクトに割り当てられたID"
 
-# 7442e98fcd42487bbf72f24666a0ce28
 msgid "カラム名"
 msgstr "カラム名"
 
-# 3f256f3d2a5f449cbc13b6a362618ea5
-# a53025dea1d94ebe99fc1555b8b1b6ea
 msgid "``path``"
 msgstr "``path``"
 
-# 9a9f9563630e487b97e9cf62d48da6ed
 msgid "カラム値を格納するファイル名"
 msgstr "カラム値を格納するファイル名"
 
-# 13b4951e98204c9982daffb25c3f0e4f
 msgid "スカラ型、ベクタ型、インデックス型の種別"
 msgstr "スカラ型、ベクタ型、インデックス型の種別"
 
-# 69dc7d1c489a4ae0b562aa99638fa7a5
 msgid "カラムのflags属性"
 msgstr "カラムのflags属性"
 
-# ed20df417cf4466392ec34935c139d8b
-# d4d5a7204ce346dd80ded0f8d97c667f
 msgid "``domain``"
 msgstr "``domain``"
 
-# 923bd6d542944fb9acfe448842569a6b
 msgid "カラムの値の属する型"
 msgstr "カラムの値の属する型"
 
-# 85cc201955b44676b4db37294bb7b00c
-# 6e2ebf9d535345d09bc134d31398ccf3
 msgid "``range``"
 msgstr "``range``"
 
-# a49947d295fc40749448c89d481556ee
 msgid "テーブルのkeyの型"
 msgstr "テーブルのkeyの型"
 
-# bde2746bb5264ed8a0cf6a3a9311c5d9
 msgid "インデックスカラムのとき、インデックス対象カラム名の配列"
 msgstr "インデックスカラムのとき、インデックス対象カラム名の配列"
 
-# 350f541bb2274ee382a5b4a9ecdc6675
 msgid "``カラム情報型n``"
 msgstr "``カラム情報型n``"
 
-# b8bb848759914bea9512a980988ddad7
 msgid "カラム情報の型を出力します。"
 msgstr "カラム情報の型を出力します。"
 
-# 9f48622e8fbb405687f677a0bb2651e3
 msgid "``カラム情報n``"
 msgstr "``カラム情報n``"
 
-# fb5f81fbca2544b3bfa297893dc43076
 msgid ""
 "``カラム情報名n`` で示された情報の配列を出力します。 情報の順序は ``カラム情"
 "報名n`` の順序と同じです。"
@@ -4132,26 +2935,21 @@ msgstr ""
 "``カラム情報名n`` で示された情報の配列を出力します。 情報の順序は ``カラム情"
 "報名n`` の順序と同じです。"
 
-# a77e16bb12ad4e84bdc5b0822f798bdc
 msgid "注: 実際は改行が入りません。"
 msgstr "注: 実際は改行が入りません。"
 
-# 284c221b3e194c38888ad9b7e9aea113
 msgid "column_remove"
 msgstr "column_remove"
 
-# 17da4edfc1074bc4a62c9d12b26a2451
 msgid "column_remove - テーブルに定義されているカラムの削除"
 msgstr "column_remove - テーブルに定義されているカラムの削除"
 
-# 028c73b9c2ab4780b73fed5c57351589
 msgid ""
 "Groonga組込コマンドの一つであるcolumn_removeについて説明します。組込コマンド"
 "は、groonga実行ファイルの引数、標準入力、またはソケット経由でgroongaサーバに"
 "リクエストを送信することによって実行します。"
 msgstr ""
 
-# d305fef1488b4724b2b4022fd90eab15
 msgid ""
 "column_removeはテーブルに定義されているカラムを削除します。 また、付随するイ"
 "ンデックスも削除されます。[#]_"
@@ -4159,246 +2957,154 @@ msgstr ""
 "column_removeはテーブルに定義されているカラムを削除します。 また、付随するイ"
 "ンデックスも削除されます。[#]_"
 
-# 470dfab5d4fd4e4da029dc559f8cc9ab
-# 97b426d4d7424fa5940064f06f240106
 msgid "削除対象のカラムが定義されているテーブルの名前を指定します。"
 msgstr "削除対象のカラムが定義されているテーブルの名前を指定します。"
 
-# 928290e83045469685a30d9059938b69
 msgid "削除対象のカラム名を指定します。"
 msgstr "削除対象のカラム名を指定します。"
 
-# 6478b12a54b74bb0818a73394212f5b9
-# f4142045e8e144bd8acd07c4a267ff67
-# 9b2540b8900d499db5cf62aa94923d3c
-# 273a9218e75c466eaea8acbedd2915bc
 msgid "脚注"
 msgstr "脚注"
 
-# dd4b5b1614284859b8c9819fd1882ace
 msgid ""
 "マルチセクションインデックスの一部である場合も、インデックスが削除されます。"
 msgstr ""
 "マルチセクションインデックスの一部である場合も、インデックスが削除されます。"
 
-# 284c221b3e194c38888ad9b7e9aea113
 msgid "``column_rename``"
 msgstr ""
 
-# 2d24b03fa7ef4096b9d5ce7a50c95969
 msgid "``column_rename`` command renames specified column name of table."
 msgstr ""
 
-# 432e1247681b4bfb965d443c28e91369
 msgid "``column_rename`` command takes two parameters."
 msgstr ""
 
-# 1eb1184cdea4464ca9cc8a73c9deecf7
 msgid "The required parameter is ``table`` and ``column_name``::"
 msgstr ""
 
-# bf1e94eb0b5a4d81b818a2a97c5a39ad
-# bf1e94eb0b5a4d81b818a2a97c5a39ad
-# bf1e94eb0b5a4d81b818a2a97c5a39ad
-# c4ee6bd61d594fc8ac99ddceb034dcbd
-# 3799cd7cb7b84a4c923af81156c9d3d3
-# bf1e94eb0b5a4d81b818a2a97c5a39ad
-# 491ce5c048964c97a3901465a634f285
-# 3799cd7cb7b84a4c923af81156c9d3d3
-# 491ce5c048964c97a3901465a634f285
-# e13a2895bf5b45d694a5ccd36dbfd75a
-# 491ce5c048964c97a3901465a634f285
-# c4ee6bd61d594fc8ac99ddceb034dcbd
-# 4deda05fde8248d9b4f92a8a8bcea9da
-# c4ee6bd61d594fc8ac99ddceb034dcbd
-# e13a2895bf5b45d694a5ccd36dbfd75a
-# bf1e94eb0b5a4d81b818a2a97c5a39ad
 msgid "Here is a simple example of ``column_rename`` command."
 msgstr ""
 
-# aa6c5a1abc844a978f87b2dd33b26dc6
 msgid "This section describes parameters of ``column_rename``."
 msgstr ""
 
-# f18f26cee4134faa9072c6b02abe4cb1
-# e658f1960e3e490fad2505f2477dd390
 msgid "Required parameter"
 msgstr "Required parameter"
 
-# 8294898fb52244968e09f77b9ccf5c7d
 msgid "There are required parameters, ``table_name`` and ``column_name``."
 msgstr ""
 
-# 4c822f633bee43819cb7a8fcd50a5781
-# 3047f898526246e289d6a57de93684b3
-# 754d54236fdb4088a118a22ee51b3fcb
-# c441c763e6b34295ad4132e547bfb663
-# 4860cc9deba14ddb9acfff8579c37ac4
-# 36abefa544074d338ad5a91444128ec7
-# 015920903ac547129ca05cbe4721009e
-# 56b6b4f8187e4a2aa23f98bf54d5b690
-# 707fa8edf67c4a4aa4ae507ba918ea66
 msgid "``table_name``"
 msgstr ""
 
-# 062998fef3444f42a3e16bb386caaefa
 msgid "It specifies the name of table."
 msgstr ""
 
-# 1bb85c12ead941fc9337f692e1d0a405
-# fc658bcbdc244395a315bc123ec1f1ff
-# 4614e1fa49044fae9d94d0979334d9f1
 msgid "``column_name``"
 msgstr ""
 
-# 4cbd35ee174e45658e8becbb0e0a5ade
 msgid "It specifies the name of column."
 msgstr ""
 
-# 9e065ab6ae2a4351b5fe8a91405db992
 msgid "``SUCCEEDED_OR_NOT``"
 msgstr ""
 
-# cee6106c2e224d8a9c44ca891f248412
-# c925c7988a154d209f47e78df40f1857
 msgid ""
 "If command succeeded, it returns true, otherwise it returns false on error."
 msgstr ""
 
-# 831ad9cf738f4b558a741bd467fc4067
 msgid "define_selector"
 msgstr "define_selector"
 
-# db75bb573d8c4b678502099ecbb0747f
 msgid "define_selector - 検索コマンドを定義"
 msgstr "define_selector - 検索コマンドを定義"
 
-# 0fb45698de1e407bb621021e9a0b50f7
 msgid ""
 "Groonga組込コマンドの一つであるdefine_selectorについて説明します。組込コマン"
 "ドは、groonga実行ファイルの引数、標準入力、またはソケット経由でgroongaサーバ"
 "にリクエストを送信することによって実行します。"
 msgstr ""
 
-# e693b3088f0e43988a925ac8f749e9f8
 msgid ""
 "define_selectorは、検索条件をカスタマイズした新たな検索コマンドを定義します。"
 msgstr ""
 "define_selectorは、検索条件をカスタマイズした新たな検索コマンドを定義します。"
 
-# 5fb361ddb8814073831a31adea828363
 msgid "定義するselectorコマンドの名前を指定します。"
 msgstr "定義するselectorコマンドの名前を指定します。"
 
-# ec50c5ed197e495b8615b8cf51f53406
 msgid "検索対象のテーブルを指定します。"
 msgstr "検索対象のテーブルを指定します。"
 
-# 2b63fc4bbf0b42ffb8aeea95677d334d
-# ebd40d159c0a44e29915935d1ef42b74
 msgid "``match_columns``"
 msgstr "``match_columns``"
 
-# 93599bd23f3c4df8b18d4bd405b0a4c9
 msgid "追加するselectorコマンドのmatch_columns引数のデフォルト値を指定します。"
 msgstr ""
 "追加するselectorコマンドのmatch_columns引数のデフォルト値を指定します。"
 
-# 7a82f6ab7a4140b38058cff04b755d9a
-# 4fad113e14204d84abf1f98a06ed07a5
 msgid "``query``"
 msgstr "``query``"
 
-# 0476e32d0d264941b89d54645723e275
 msgid "追加するselectorコマンドのquery引数のデフォルト値を指定します。"
 msgstr "追加するselectorコマンドのquery引数のデフォルト値を指定します。"
 
-# 6414bcd1b5094eda9c2fe22f83183755
-# e8d4d9add48b4cbd941c6eb1f6377566
-# ceeb45cb2b5042b998a38d790093fd65
 msgid "``filter``"
 msgstr "``filter``"
 
-# f2cc59267504415cb478568379a60d93
 msgid "追加するselectorコマンドのfilter引数のデフォルト値を指定します。"
 msgstr "追加するselectorコマンドのfilter引数のデフォルト値を指定します。"
 
-# 175c7864061e407c9df325dc092b9cc8
-# 90f038de403f4643a37099d043a59cd0
 msgid "``scorer``"
 msgstr "``scorer``"
 
-# d9ef15523fff4355b5308543ab221d95
 msgid "追加するselectorコマンドのscorer引数のデフォルト値を指定します。"
 msgstr "追加するselectorコマンドのscorer引数のデフォルト値を指定します。"
 
-# d0448fadbcb64bf49eb1b507e281e58e
-# b6cedb2507e94dbaaae51533f5bdcabe
 msgid "``sortby``"
 msgstr "``sortby``"
 
-# 4870b06848c2423aaca82ca16bef3391
 msgid "追加するselectorコマンドのsortby引数のデフォルト値を指定します。"
 msgstr "追加するselectorコマンドのsortby引数のデフォルト値を指定します。"
 
-# 3dd6a480f2cb4724a357c35cea69e3d3
-# af2a4de76cbc4963aa64156cad0c3d83
-# 1c67d569b3204ef3bf13b2bed67c01fb
-# 9f2246f14030459396f616c0198b57f5
-# 771a2516835d489686e1e012164277ae
 msgid "``output_columns``"
 msgstr "``output_columns``"
 
-# e6e2560cdfd449df834d9871432d9411
 msgid ""
 "追加するselectorコマンドのoutput_columns引数のデフォルト値を指定します。"
 msgstr ""
 "追加するselectorコマンドのoutput_columns引数のデフォルト値を指定します。"
 
-# fd13a563256e40729db10c254b8cfc2b
-# 8b6e99fdb9bb4eb4b1ae984e7b0bf4b6
 msgid "``offset``"
 msgstr "``offset``"
 
-# 7b457829e02d47b6bc78648e2e789393
 msgid "追加するselectorコマンドのoffset引数のデフォルト値を指定します。"
 msgstr "追加するselectorコマンドのoffset引数のデフォルト値を指定します。"
 
-# 6e6205a95e4f443e85e29e4e9b4b99f0
-# 22e3eeb5e10f4667bcad2371095996a8
 msgid "``limit``"
 msgstr "``limit``"
 
-# 3f87c5d48d9c4387acbbda3e63927016
 msgid "追加するselectorコマンドのlimit引数のデフォルト値を指定します。"
 msgstr "追加するselectorコマンドのlimit引数のデフォルト値を指定します。"
 
-# 399d34bb36e242d7bbf54809047e1b4a
-# a060e57726a94f97a0737594284a3a99
 msgid "``drilldown``"
 msgstr "``drilldown``"
 
-# 91e3364db5e24ddeabbabb2cbaec7fe4
 msgid "追加するselectorコマンドのdrilldown引数のデフォルト値を指定します。"
 msgstr "追加するselectorコマンドのdrilldown引数のデフォルト値を指定します。"
 
-# 5924a1d998fc46a996013f8eafb02a51
-# 3d692594b3e44ecbb3484ce73f6003f7
 msgid "``drilldown_sortby``"
 msgstr "``drilldown_sortby``"
 
-# 14d6a595202b4129b6b1c7d5a78a4fb0
 msgid ""
 "追加するselectorコマンドのdrilldown_sortby引数のデフォルト値を指定します。"
 msgstr ""
 "追加するselectorコマンドのdrilldown_sortby引数のデフォルト値を指定します。"
 
-# 98dccbc5fb29446ea3eaae10a17ba02a
-# 28a80dc97b614263a6c5e99f8863d71f
 msgid "``drilldown_output_columns``"
 msgstr "``drilldown_output_columns``"
 
-# 89e4c562162d4b8bb775b5b7b708a400
 msgid ""
 "追加するselectorコマンドのdrilldown_output_columns引数のデフォルト値を指定し"
 "ます。"
@@ -4406,29 +3112,22 @@ msgstr ""
 "追加するselectorコマンドのdrilldown_output_columns引数のデフォルト値を指定し"
 "ます。"
 
-# bee8d1e248f3462884c7df51733390d7
-# 6aa930257a6e47728f163c5f062b86c1
 msgid "``drilldown_offset``"
 msgstr "``drilldown_offset``"
 
-# 376fb809b62e4078a87fe2c45dd0aba4
 msgid ""
 "追加するselectorコマンドのdrilldown_offset引数のデフォルト値を指定します。"
 msgstr ""
 "追加するselectorコマンドのdrilldown_offset引数のデフォルト値を指定します。"
 
-# 568d741d933f4a38a80d6d35b6a3ef66
-# 93f6db2ccbf04242999129980d966497
 msgid "``drilldown_limit``"
 msgstr "``drilldown_limit``"
 
-# 90b84818d1894077900a30511db6c42a
 msgid ""
 "追加するselectorコマンドのdrilldown_limit引数のデフォルト値を指定します。"
 msgstr ""
 "追加するselectorコマンドのdrilldown_limit引数のデフォルト値を指定します。"
 
-# 57629b8899f44af181e6926572d8d792
 msgid ""
 "テーブルEntryの全レコード・全カラムの値を出力するselectorコマンドを定義しま"
 "す。::"
@@ -4436,27 +3135,21 @@ msgstr ""
 "テーブルEntryの全レコード・全カラムの値を出力するselectorコマンドを定義しま"
 "す。::"
 
-# 257a8b1e0a424cf3807162e2534d2837
-# 73ec2c3dc21241d5b0b795816605eeb2
 msgid ":doc:`/reference/grn_expr`"
 msgstr ":doc:`/reference/grn_expr`"
 
-# b11b5183bee749a29a0ff2b180b6fdfe
 msgid "defrag"
 msgstr "defrag"
 
-# 732ce44ee1544437a9edbe2588a5d144
 msgid "``defrag`` command resolves fragmentation of specified objects."
 msgstr ""
 
-# d1541ef364cb4b9191899c2ed8035daf
 msgid ""
 "Groonga組込コマンドの一つであるdefragについて説明します。組込コマンドは、"
 "groonga実行ファイルの引数、標準入力、またはソケット経由でgroongaサーバにリク"
 "エストを送信することによって実行します。"
 msgstr ""
 
-# 123dc8a20cbb4ab7b8183a2de87c1524
 msgid ""
 "defragは、対象となるオブジェクト(データベースか可変長サイズカラム)を指定し、"
 "オブジェクトのフラグメンテーションを解消します。"
@@ -4464,117 +3157,89 @@ msgstr ""
 "defragは、対象となるオブジェクト(データベースか可変長サイズカラム)を指定し、"
 "オブジェクトのフラグメンテーションを解消します。"
 
-# f4f18111cbd742b4a3776e53c8367a8d
 msgid "``フラグメンテーション解消を実行したセグメントの数``"
 msgstr ""
 
-# 38c0ef5598a14e89bc33bde29400771e
 msgid "フラグメンテーション解消を実行したセグメントの数を返す。"
 msgstr ""
 
-# dca00c2bf42a48c580b461196f6a9e35
 msgid "開いているデータベースのフラグメンテーションを解消する::"
 msgstr "開いているデータベースのフラグメンテーションを解消する::"
 
-# 65c39c720a0b4c85b1ad67605d76a0f8
 msgid "テーブル名 Entry のカラム body のフラグメンテーションを解消する::"
 msgstr "テーブル名 Entry のカラム body のフラグメンテーションを解消する::"
 
-# 59ccf7c2bb4f4901b85a0d8fa48584bf
 msgid "``delete``"
 msgstr ""
 
-# 4d2770a589da414c999626b3cce1b988
 msgid "``delete`` command deletes specified record of table."
 msgstr ""
 
-# 2a0c0de13c9247409023e4f75989aaf1
 msgid "Cascade delete"
 msgstr ""
 
-# 9c0b941ec45345f5b497f1c75a118fdf
 msgid ""
 "There is a case that multiple table is associated. For example, the key of "
 "one table are referenced by other table's records. In such a case, if you "
 "delete the key of one table, other table's records are also removed."
 msgstr ""
 
-# 765661c00e2d4b47bf97826c30d9cf30
 msgid ""
 "Note that the type of other table's column is COLUMN_VECTOR, only the value "
 "of referencing key is removed from the vector value."
 msgstr ""
 
-# c0b6457f2c2e49e9a860d9915eb71fb8
-# dbd7ce67af4b4096b4caa3111a1a9d90
-# 16c671e139ff4fdb986ae5142c5aa3d8
 msgid "Here are a schema definition and sample data to show usage."
 msgstr "Here are a schema definition and sample data to show usage."
 
-# 74e343b64c4a478dbfbd2f30a5495654
 msgid "Delete the record from Entry table which has \"2\" as the key."
 msgstr ""
 
-# 8785ca418cf640be8359a23aeefb2b74
 msgid "Here is the example about cascaded delete."
 msgstr ""
 
-# 32b33706c0f24977a746dcecef6953cc
 msgid "The country column of Users table associates with Country table."
 msgstr ""
 
-# 1264c655b0054329b330cca26767b3e5
 msgid ""
 "\"Cascaded delete\" removes the records which matches specified key and "
 "refers that key."
 msgstr ""
 
-# 062998fef3444f42a3e16bb386caaefa
 msgid "It specifies the name of table to delete the records."
 msgstr ""
 
-# ac04287fbdd6488fb22dcd518300cec2
-# de228aad746b4f2dbfccec9137768c36
-# 1d2cfbb2aa3d42ab9cb8850d00d81c07
-# a584382efce74ba1b3aa4fee8cd22bf5
 msgid "``key``"
 msgstr "``key``"
 
-# cdacdbd872ff420fbe0d2efd4bbcb0ce
 msgid ""
 "It specifies the key of record to delete. If you use the table with "
 "TABLE_NO_KEY, the key is just ignored. (Use ``id`` parameter in such a case)"
 msgstr ""
 
-# 0931495ad39a41cc814de87208f7b788
 msgid ""
 "It specifies the id of record to delete. If you specify ``id`` parameter, "
 "you must not specify ``key`` parameter."
 msgstr ""
 
-# 654c83fbfdbb474c802463fedfb7080d
 msgid ""
 "It specifies the expression of grn_expr to identify the record. If you "
 "specify ``filter`` parameter, you must not specify ``key`` and ``id`` "
 "parameter."
 msgstr ""
 
-# 664485faed9a4017a3cec608d5e4d81f
 msgid "dump"
 msgstr "dump"
 
-# d07e498b06e249dd906e91831bc0633b
 msgid "dump - データベースのスキーマとデータを出力する"
 msgstr "dump - データベースのスキーマとデータを出力する"
 
-# ff6d7ffc59f34841aaf48ef92a5584e1
 msgid ""
 "Groonga組込コマンドの一つであるdumpについて説明します。組込コマンドは、"
 "groonga実行ファイルの引数、標準入力、またはソケット経由でgroongaサーバにリク"
 "エストを送信することによって実行します。"
 msgstr ""
 
-# 49bdae916c154765960cf3a52cd498bf
 msgid ""
 "dumpはデータベースのスキーマとデータを後から読み込めるフォーマットで出力しま"
 "す。dumpの結果は大きくなるため、主にコマンドラインから使うことを想定していま"
@@ -4584,17 +3249,14 @@ msgstr ""
 "す。dumpの結果は大きくなるため、主にコマンドラインから使うことを想定していま"
 "す。データベースのバックアップが主な利用方法です。"
 
-# 41a7e4eead01449d8514201adb9c3b40
 msgid ""
 "dumpが出力するフォーマットは直接Groongaが解釈できるフォーマットです。そのた"
 "め、以下のようにしてデータベースをコピーすることができます。::"
 msgstr ""
 
-# 0da809ee0de94f4c9d176627712966f9
 msgid "``tables``"
 msgstr "``tables``"
 
-# 1e4e92b45af24af18d679cc1abdb6b49
 msgid ""
 "出力対象のテーブルを「,」(カンマ)区切りで指定します。存在しないテーブルを指"
 "定した場合は無視されます。"
@@ -4602,78 +3264,60 @@ msgstr ""
 "出力対象のテーブルを「,」(カンマ)区切りで指定します。存在しないテーブルを指"
 "定した場合は無視されます。"
 
-# 3f6116f08e134a9ea4fa05ddb5315fac
 msgid ""
 "データベースのスキーマとデータをGroongaの組み込みコマンド呼び出し形式で出力し"
 "ます。output_type指定は無視されます。"
 msgstr ""
 
-# c89276bff5fd4317b60fb72fbf93d215
 msgid "データベース内のすべてのデータを出力::"
 msgstr "データベース内のすべてのデータを出力::"
 
-# aa9bc1052b9d45d48fcb4b8484fe87a9
 msgid "データベース内のスキーマと特定のテーブルのデータのみ出力::"
 msgstr "データベース内のスキーマと特定のテーブルのデータのみ出力::"
 
-# 5a03e18bb7ba4ff9aceef940bc7fa33f
 msgid "``load``"
 msgstr ""
 
-# 978220391b884b5caa2802a6a572ed0e
 msgid ""
 "``load`` loads data as records in the current database and updates values of "
 "each columns."
 msgstr ""
 
-# e61662d3ce254a80b8f07959d48c7b17
-# 78fe8de5167543f9ad1a5a7993c6fa35
-# 1e97e4d4081f4f7aaa0d4c76ee4a67b9
 msgid "``values``"
 msgstr "``values``"
 
-# eca64733570a40a18761d0dbbf5cde26
 msgid ""
 "It specifies values loaded to records. Values should satisfy ``input_type`` "
 "format. If you specify \"json\" as ``input_type``, you can choose a format "
 "from below:"
 msgstr ""
 
-# 2322334ddac1454fb8aad537ac649fe0
 msgid ""
 "[[COLUMN_NAME1, COLUMN_NAME2,..], [VALUE1, VALUE2,..], [VALUE1, "
 "VALUE2,..],..]"
 msgstr ""
 
-# 511192979a4d484484ec9801326cb266
-# 6216da4d10cb431c9867b3c6dcea772a
 msgid "``Format 1:``"
 msgstr ""
 
-# d73cf6d120ef4535bed77071c606dc9c
 msgid ""
 "[{COLUMN_NAME1: VALUE1, COLUMN_NAME2: VALUE2}, {COLUMN_NAME1: VALUE1, "
 "COLUMN_NAME2: VALUE2},..]"
 msgstr ""
 
-# 511192979a4d484484ec9801326cb266
-# 6216da4d10cb431c9867b3c6dcea772a
 msgid "``Format 2:``"
 msgstr ""
 
-# fd4862a39c6443dcb30cd50503c8f8bd
 msgid ""
 "``[COLUMN_NAME1, COLUMN_NAME2,..]`` format in ``Format 1`` is effective only "
 "when ``column`` parameter isn't specified."
 msgstr ""
 
-# 143d469955154c17a9c18ab8d6954ea9
 msgid ""
 "When a target table contains primary key, you must specify ``_key`` column "
 "(pseudo column associated primary key) as the one of ``COLUMN_NAME``."
 msgstr ""
 
-# 40002025bbfb46fa9cfe5287fd794600
 msgid ""
 "If ``values`` isn't specified any values, they are read from the standard "
 "input until all opened parenthes match their closed ones. You don't have to "
@@ -4681,31 +3325,23 @@ msgid ""
 "values with ``values`` parameter, you should do."
 msgstr ""
 
-# be90ace8a03844afb23ea68814911ac0
 msgid ""
 "In following values, you also don't have to enclose any spaces (' ') with "
 "single-quotes or double-quotes."
 msgstr ""
 
-# 062998fef3444f42a3e16bb386caaefa
 msgid "It specifies a table name you want to add records."
 msgstr ""
 
-# 1bb85c12ead941fc9337f692e1d0a405
-# fc658bcbdc244395a315bc123ec1f1ff
-# 4614e1fa49044fae9d94d0979334d9f1
 msgid "``columns``"
 msgstr "``columns``"
 
-# a60f41b5061543ec8f0afeb20eb49b76
 msgid "It specifies column names in added records with comma separations."
 msgstr ""
 
-# c6f61cf684fb409292e1500f737c16b0
 msgid "``ifexists``"
 msgstr "``ifexists``"
 
-# beed836a85ee4744a9c90df48858a7dc
 msgid ""
 "It specifies executed ``grn_expr`` string when the same primary key as added "
 "records already exists in your table. If ``ifexists`` specifies ``grn_expr`` "
@@ -4713,77 +3349,57 @@ msgid ""
 "excluding ``_key`` column) columns is updated."
 msgstr ""
 
-# 9a510519a24246099b3aa76c38714a80
 msgid "``input_type``"
 msgstr "``input_type``"
 
-# 9a0ac94297204926aee87c342cd63ef4
 msgid "It specifies an input format for ``values``. It supports JSON only."
 msgstr ""
 
-# 7a36ab15dd10409aa28e0b0975604248
 msgid "Here is an example to add records to \"Entry\" table. ::"
 msgstr ""
 
-# bdd4bd67ec4c460caed6531de8b95f43
 msgid "This example shows how to add values from standard input. ::"
 msgstr ""
 
-# cd2d8d72e2b94331b4fbf01cd38ccd00
 msgid "JSON format"
 msgstr "JSON format"
 
-# 026be9e22a80400ea26018f7f6fea853
 msgid "``load`` returns the number of added records such as ::"
 msgstr ""
 
-# 03bdf580c7c642ed8411d22ad1675059
 msgid "log_level"
 msgstr "log_level"
 
-# 77800e79cf55489f9aeeb225eb3d563b
 msgid "log_level - ログ出力レベルの設定"
 msgstr "log_level - ログ出力レベルの設定"
 
-# 84c1c73f268049f88e7e9760eb202dbd
 msgid ""
 "Groonga組込コマンドの一つであるlog_levelについて説明します。組込コマンドは、"
 "groonga実行ファイルの引数、標準入力、またはソケット経由でgroongaサーバにリク"
 "エストを送信することによって実行します。"
 msgstr ""
 
-# 9d9bfab0ef7f4ed08f976a4539af77f7
 msgid "log_levelは、ログ出力レベルを設定します。"
 msgstr "log_levelは、ログ出力レベルを設定します。"
 
-# 4a3012ccdae34ba78368b652c91f6c5e
-# 3833f39387fa484fbdc58b1171215bf3
 msgid "``level``"
 msgstr "``level``"
 
-# d475a8a549ed4f1ea04e7b08311697b5
-# 97005382920a47f1ba6c1e61ba1ca0ec
 msgid "設定するログ出力レベルの値を以下のいずれかで指定します。"
 msgstr "設定するログ出力レベルの値を以下のいずれかで指定します。"
 
-# 0c2069435f0145b79fc98b4c2b347aff
-# d29628da4d1a4f69936cbbcc3c6db835
 msgid "EMERG ALERT CRIT error warning notice info debug"
 msgstr "EMERG ALERT CRIT error warning notice info debug"
 
-# 4e41025acdd04850958a7d70a31f61e8
 msgid ":doc:`log_put` :doc:`log_reopen`"
 msgstr ":doc:`log_put` :doc:`log_reopen`"
 
-# 9292a696e5bb4449a7b02812d53c08b4
 msgid "log_put"
 msgstr "log_put"
 
-# cdb1ca6173c940c2a1908a1abea59b98
 msgid "log_put - ログ出力"
 msgstr "log_put - ログ出力"
 
-# 597e6087b85641e596469e32e0aa61b1
 msgid ""
 "groonga組込コマンドの一つであるlog_putについて説明します。組込コマンドは、"
 "groonga実行ファイルの引数、標準入力、またはソケット経由でgroongaサーバにリク"
@@ -4793,60 +3409,42 @@ msgstr ""
 "groonga実行ファイルの引数、標準入力、またはソケット経由でgroongaサーバにリク"
 "エストを送信することによって実行します。"
 
-# ba3960d8c15a481b8cdff56827252372
 msgid "log_putは、ログにmessageを出力します。"
 msgstr "log_putは、ログにmessageを出力します。"
 
-# 2749fc416d1145ea8d9debc414713e8a
 msgid "``message``"
 msgstr "``message``"
 
-# bb7610ccb9ff4dd7a5a472fabe8c0701
 msgid "出力する文字列を指定します。"
 msgstr "出力する文字列を指定します。"
 
-# 59c8e3043c98441284c89ce1d673bf59
 msgid ":doc:`log_level` :doc:`log_reopen`"
 msgstr ":doc:`log_level` :doc:`log_reopen`"
 
-# 7b67238544f44a5aa47192403facd2f0
 msgid "log_reopen"
 msgstr "log_reopen"
 
-# 164ae799ad9d491fb4a0097d5e7a6f97
 msgid "log_reopen - ログファイルの再読み込み"
 msgstr "log_reopen - ログファイルの再読み込み"
 
-# ad2f1844fa3e4254a076d0ab9aa22cc4
 msgid ""
 "Groonga組込コマンドの一つであるlog_reopenについて説明します。組込コマンドは、"
 "groonga実行ファイルの引数、標準入力、またはソケット経由でgroongaサーバにリク"
 "エストを送信することによって実行します。"
 msgstr ""
 
-# f4d9fd1fa8374bb0ad008664878233cb
 msgid "log_reopenは、ログファイルを再読み込みします。"
 msgstr "log_reopenは、ログファイルを再読み込みします。"
 
-# 901923d6031d4ce5bf6c3a342082bbca
 msgid "現在、デフォルトのログ関数を用いている場合のみに対応しています。"
 msgstr "現在、デフォルトのログ関数を用いている場合のみに対応しています。"
 
-# f01dfe02085e44299bd0958d8c15f6f0
-# bc608177d95646be885116e4b64beafb
-# 3406a9db8ca8431ca35b30205ad06f92
-# 4dbb756267c84f20a48e0f7a1c42c8a3
-# ac41bd715b7146dc9cf6fd050ba4b36a
-# 08fb8439b2b640eeafe2ec7b43fba4e5
-# a3ae9186a2ec44d2a22584fddb6f913f
 msgid "ありません。"
 msgstr "ありません。"
 
-# dc14afd663e44a5cb9b47e2ed9568ea9
 msgid "log_reopenを用いたログのローテーション"
 msgstr "log_reopenを用いたログのローテーション"
 
-# 6e989fd6d70a40d79c5e4d4e262bbc08
 msgid ""
 "ログファイルをmvなどで移動する。 ログはmvで移動された先のファイルに書き込まれ"
 "る。"
@@ -4854,11 +3452,9 @@ msgstr ""
 "ログファイルをmvなどで移動する。 ログはmvで移動された先のファイルに書き込まれ"
 "る。"
 
-# a03f8ab823804b85b321457f17580116
 msgid "log_reopenコマンドを実行する。"
 msgstr "log_reopenコマンドを実行する。"
 
-# 1032ca584050492984eea4a1ebac344d
 msgid ""
 "既存のログファイル名と同じファイル名で、新たなログファイルが作成される。 今後"
 "のログは新たなログファイルに書き込まれる。"
@@ -4866,83 +3462,53 @@ msgstr ""
 "既存のログファイル名と同じファイル名で、新たなログファイルが作成される。 今後"
 "のログは新たなログファイルに書き込まれる。"
 
-# 39cc2e40112b4e8da58f1ef01ec81494
 msgid ":doc:`log_level` :doc:`log_put`"
 msgstr ":doc:`log_level` :doc:`log_put`"
 
-# a3f805f043d84720b77614098cf4fbd6
 msgid "``normalize``"
 msgstr ""
 
-# 933383eb7a954024b117032a06584714
 msgid ""
 "``normalize`` command is the experimental feature. This command may be "
 "changed in the future."
 msgstr ""
 
-# f9d5af25b10a4f2ea4b3f0dc4d2b4006
 msgid "``normalize`` command normalizes text by the specified normalizer."
 msgstr ""
 
-# c90ce102501a4f879ba0a1b568b7c4e5
 msgid ""
 "There is no need to create table to use ``normalize`` command. It is useful "
 "for you to check the results of normalizer."
 msgstr ""
 
-# 8294898fb52244968e09f77b9ccf5c7d
 msgid ""
 "``normalize`` commands has two required parameters. They are ``normalizer`` "
 "and ``string``."
 msgstr ""
 
-# bf1e94eb0b5a4d81b818a2a97c5a39ad
-# bf1e94eb0b5a4d81b818a2a97c5a39ad
-# bf1e94eb0b5a4d81b818a2a97c5a39ad
-# c4ee6bd61d594fc8ac99ddceb034dcbd
-# 3799cd7cb7b84a4c923af81156c9d3d3
-# bf1e94eb0b5a4d81b818a2a97c5a39ad
-# 491ce5c048964c97a3901465a634f285
-# 3799cd7cb7b84a4c923af81156c9d3d3
-# 491ce5c048964c97a3901465a634f285
-# e13a2895bf5b45d694a5ccd36dbfd75a
-# 491ce5c048964c97a3901465a634f285
-# c4ee6bd61d594fc8ac99ddceb034dcbd
-# 4deda05fde8248d9b4f92a8a8bcea9da
-# c4ee6bd61d594fc8ac99ddceb034dcbd
-# e13a2895bf5b45d694a5ccd36dbfd75a
-# bf1e94eb0b5a4d81b818a2a97c5a39ad
 msgid "Here is a simple example of ``normalize`` command."
 msgstr ""
 
-# aa6c5a1abc844a978f87b2dd33b26dc6
 msgid "This section describes parameters of ``normalizer``."
 msgstr ""
 
-# 8294898fb52244968e09f77b9ccf5c7d
 msgid "There are required parameters, ``normalizer`` and ``string``."
 msgstr ""
 
-# 175c7864061e407c9df325dc092b9cc8
-# 90f038de403f4643a37099d043a59cd0
 msgid "``normalizer``"
 msgstr ""
 
-# 76581cec1d4248d299790591d4833964
 msgid ""
 "It specifies the normalizer name. ``normalize`` command uses the normalizer "
 "that is named ``normalizer``."
 msgstr ""
 
-# 302f21aa293641d195a24eb6074efbc6
 msgid "See :doc:`/reference/normalizers` about built-in normalizers."
 msgstr ""
 
-# 9c5e3be4e47b4fb59f58833c276f7681
 msgid "Here is an example to use built-in ``NormalizerAuto`` normalizer."
 msgstr ""
 
-# dc0995c3f5374a299ee9f2864582c582
 msgid ""
 "If you want to use other normalizers, you need to register additional "
 "normalizer plugin by :doc:`register` command. For example, you can use MySQL "
@@ -4950,142 +3516,105 @@ msgid ""
 "github.com/groonga/groonga-normalizer-mysql>`_."
 msgstr ""
 
-# ffdbd88d1ffd4804bac6c8fa88900a94
 msgid "``string``"
 msgstr ""
 
-# 1470dbeede2a43149fd621e6540b7f7f
 msgid "It specifies any string which you want to normalize."
 msgstr ""
 
-# b6cc654219bb4c53801d42777fe1308b
-# f1dabac6f91f484e9ed7aa3a2f5d1190
 msgid ""
 "If you want to include spaces in ``string``, you need to quote ``string`` by "
 "single quotation (``'``) or double quotation (``\"``)."
 msgstr ""
 
-# d33527e045d045c3aaede186d21b8f69
 msgid "Here is an example to use spaces in ``string``."
 msgstr ""
 
-# de8580f532d847eeba0deb53c6e64b3a
 msgid "Optional parameters"
 msgstr ""
 
-# de8580f532d847eeba0deb53c6e64b3a
 msgid "There are optional parameters."
 msgstr ""
 
-# 1c7f190c556e48848d1d43c2b4581041
 msgid ""
 "It specifies a normalization customize options. You can specify multiple "
 "options separated by \"``|``\". For example, ``REMOVE_BLANK|WITH_TYPES``."
 msgstr ""
 
-# 80df0c929ec94d658daf4c835e8357e2
-# bff9206d7a0947f5a45db16ff5fee0c4
 msgid "Here are available flags."
 msgstr ""
 
-# b44e7135440a45118b59c49b3e4b6e4b
 msgid "Flag"
 msgstr ""
 
-# e9d82dedab7941278d43c8c9fb83dea7
-# e9d82dedab7941278d43c8c9fb83dea7
 msgid "Description"
 msgstr ""
 
-# 64302ed7eaf3497fa9c02a0e364c1d6f
 msgid "``NONE``"
 msgstr ""
 
-# 5dcaaf6665d7413797bd4160c54b0fe5
 msgid "Just ignored."
 msgstr ""
 
-# 47fda14f7e4e41af802bf43c44d5a36b
 msgid "``REMOVE_BLANK``"
 msgstr ""
 
-# 8594ad7fa6fa4278ba26052476845470
 msgid "``WITH_TYPES``"
 msgstr ""
 
-# 8112172a5e264b67b7664f95dee1a3b6
 msgid "``WITH_CHECKS``"
 msgstr ""
 
-# d0272bfb75e443c7b9ab2a5d079aaa66
 msgid "``REMOVE_TOKENIZED_DELIMITER``"
 msgstr ""
 
-# 9904a51be94a4aa8ba6723de0f9d1283
 msgid "Here is an example that uses ``REMOVE_BLANK``."
 msgstr ""
 
-# 0d4e833ca79145d1b9e46a539c512715
 msgid "Here is an example that uses ``WITH_TYPES``."
 msgstr ""
 
-# 51f6cd94623c46cea86a7c6a7fa46da4
 msgid "Here is an example that uses ``REMOVE_TOKENIZED_DELIMITER``."
 msgstr ""
 
-# 875e8f7779e74138ab9ffb30c153ffd4
 msgid "``normalized_text``"
 msgstr ""
 
-# b310aa248a78409eaf7060b0a9e82c0d
 msgid "``normalized_text`` is an object that has the following attributes."
 msgstr ""
 
-# b44e7135440a45118b59c49b3e4b6e4b
 msgid "Name"
 msgstr ""
 
-# a3f805f043d84720b77614098cf4fbd6
 msgid "``normalized``"
 msgstr ""
 
-# 482d514c34784ee1951cdd44065c46a4
 msgid "The normalized text."
 msgstr ""
 
-# c8ce7ea2d7d64c01abb79185a10abcd9
-# c8a5faac538d40b485d1a18933b45db6
-# c1ec9388c59842e4b656bf0ffd8838e3
 msgid "``types``"
 msgstr ""
 
-# 651cedc78ef04e54be700168ffee819f
 msgid ""
 "An array of types of the normalized text. The N-th ``types`` shows the type "
 "of the N-th character in ``normalized``."
 msgstr ""
 
-# 257a8b1e0a424cf3807162e2534d2837
-# 73ec2c3dc21241d5b0b795816605eeb2
 msgid ":doc:`/reference/normalizers`"
 msgstr ""
 
-# 3cc5fb44121d477bbb02ec3f792a3f13
 msgid "quit"
 msgstr "quit"
 
-# 910cd13c485f4fd9a8352d64e56924b2
 msgid "quit - セッション終了"
 msgstr "quit - セッション終了"
 
-# f858e1ff798a4a4fa1356028466a0c4e
 msgid ""
 "Groonga組込コマンドの一つであるquitについて説明します。組込コマンドは、"
 "groonga実行ファイルの引数、標準入力、またはソケット経由でgroongaサーバにリク"
 "エストを送信することによって実行します。"
 msgstr ""
 
-# b03265db65cc41c8a8c36d4abe85b24d
 msgid ""
 "quitは、groongaプロセスとのセッションを終了します。クライアントプロセスならば"
 "groongaプロセスとの接続を切ります。"
@@ -5093,17 +3622,14 @@ msgstr ""
 "quitは、groongaプロセスとのセッションを終了します。クライアントプロセスならば"
 "groongaプロセスとの接続を切ります。"
 
-# 47bd452bd8bf455888fb08205cf93a6b
 msgid "register"
 msgstr ""
 
-# 25ac89023c9c40309a4ddace3904b682
 msgid ""
 "``register`` command registers a plugin. You need to register a plugin "
 "before you use a plugin."
 msgstr ""
 
-# 5a388fcc2d274e6d871b056562a17946
 msgid ""
 "You need just one ``register`` command for a plugin in the same database "
 "because registered plugin information is written into the database.  When "
@@ -5111,169 +3637,131 @@ msgid ""
 "registered plugins without ``register`` command."
 msgstr ""
 
-# 27afd1ff1c9c43f8b59b110b08df3b45
 msgid "Registered plugins can't be removed for now."
 msgstr ""
 
-# 8e507f6f8ef6452b8212aab0dd286116
 msgid "``register`` has a parameter ``path``. It is required parameter::"
 msgstr ""
 
-# d1358c28920641c796cce26c6b2e80f6
 msgid ""
 "Here is a sample that registers ``QueryExpanderTSV`` query expander that is "
 "included in ``${PREFIX}/lib/groonga/plugins/query_expanders/tsv.so``."
 msgstr ""
 
-# 74fbb78f717c4488965862794def5214
 msgid ""
 "You can omit ``${PREFIX}/lib/groonga/plugins/`` and suffix (``.so``). They "
 "are completed automatically."
 msgstr ""
 
-# 71520863478a4c8c8b62e0c1b9ca9270
 msgid ""
 "You can specify absolute path such as ``register /usr/lib/groonga/plugins/"
 "query_expanders/tsv.so``."
 msgstr ""
 
-# a06ca9118fff485c9f38596febb85ffe
 msgid "``register`` returns ``true`` as body on success such as::"
 msgstr ""
 
-# 8384671685bc4d8cb9b255e3845406ee
 msgid "If ``register`` fails, error details are in ``HEADER``."
 msgstr ""
 
-# 2a363ed6995b47dba7508f227986a0cd
 msgid "See :doc:`/reference/command/output_format` for ``HEADER``."
 msgstr ""
 
-# 13b76084b1224839af218528bd15d5e8
 msgid "``ruby_eval``"
 msgstr ""
 
-# 30aeb82c20fb4ccd9f9730d8a700e3c3
 msgid "``ruby_eval`` command evaluates Ruby script and returns the result."
 msgstr ""
 
-# 8f5a87303bf4464d95df4a88adcc94fe
 msgid "``ruby_eval`` has one required parameter::"
 msgstr ""
 
-# 9aa82b1383fc42cb9b5d5a95ec615223
 msgid ""
 "You can execute any scripts which mruby supports by calling ``ruby_eval``."
 msgstr ""
 
-# 655e2e1357a04da2bbe7c50336f967e7
 msgid "Here is an example that just calculate ``1 + 2`` as Ruby script."
 msgstr ""
 
-# 69cccd8bb9f24803850de7b56a9929ae
 msgid "Register ``ruby/eval`` plugin to use ``ruby_eval`` command in advance."
 msgstr ""
 
-# a3c588d19b624b8b87324cbff861462f
 msgid ""
 "Note that ``ruby_eval`` is implemented as an experimental plugin, and the "
 "specification may be changed in the future."
 msgstr ""
 
-# 175c7864061e407c9df325dc092b9cc8
-# 90f038de403f4643a37099d043a59cd0
 msgid "``script``"
 msgstr ""
 
-# 35263083602e425ebb4d660f2ed3e4db
 msgid "It specifies the Ruby script which you want to evaluate."
 msgstr ""
 
-# 166e7253c54a4846b2a68328165f54cf
 msgid ""
 "``ruby_eval`` returns the evaluated result with metadata such as exception "
 "information (Including metadata isn't implemented yet)::"
 msgstr ""
 
-# 210c972d4ff9406899f1037a0e0699df
 msgid "``EVALUATED_VALUE``"
 msgstr ""
 
-# ba19cbd3bf4f4ebe9450f8503a10de77
 msgid "``EVALUATED_VALUE`` is the evaludated value of ``ruby_script``."
 msgstr ""
 
-# 6c7fd84ea6924fa3bb0f502d8f2e5c87
 msgid ""
 "``ruby_eval`` supports only a number for evaluated value for now. Supported "
 "types will be increased in the future."
 msgstr ""
 
-# a0b93b99955541f1a6dae0b50763a369
 msgid "``ruby_load``"
 msgstr ""
 
-# 49648c1e9f274656b15b202b1fade1b6
 msgid "``ruby_load`` command loads specified Ruby script."
 msgstr ""
 
-# aad3759420f548b99a0ec55dd81d28bf
 msgid "``ruby_load`` has one required parameter::"
 msgstr ""
 
-# 914406c1044647efb0f640985d28a289
 msgid ""
 "You can load any script file which mruby supports by calling ``ruby_load``."
 msgstr ""
 
-# bcc612a9fd0e431b968c90fdeccf31b8
 msgid "Here is an example that just load ``expression.rb`` as Ruby script."
 msgstr ""
 
-# 981660804eaf49abb973f2a973958154
 msgid "Register ``ruby/load`` plugin to use ``ruby_load`` command in advance."
 msgstr ""
 
-# 2e48a01a54e54c539ba29ad3aa055297
 msgid ""
 "Note that ``ruby_load`` is implemented as an experimental plugin, and the "
 "specification may be changed in the future."
 msgstr ""
 
-# 3bbc34d6e1fd419c905a8a3ca4c616ae
 msgid "It specifies the Ruby script path which you want to load."
 msgstr ""
 
-# 01bf1e043b1d4083b79f42fe7c393703
 msgid ""
 "``ruby_load`` returns the loaded result with metadata such as exception "
 "information (Including metadata isn't implemented yet)::"
 msgstr ""
 
-# 5b5640ace74e4c708a954a2f8bbe21bc
 msgid "``LOADED_VALUE``"
 msgstr ""
 
-# 4003aa8f495e4d69abdd764bc1223ff2
 msgid "``LOADED_VALUE`` is the loaded value of ruby script."
 msgstr ""
 
-# 953764d551d54c0faa06b87db7497498
 msgid ""
 "``ruby_load`` just return ``null`` as ``LOADED_VALUE`` for now, it will be "
 "supported in the future."
 msgstr ""
 
-# 257a8b1e0a424cf3807162e2534d2837
-# 73ec2c3dc21241d5b0b795816605eeb2
 msgid ":doc:`/reference/commands/ruby_eval`"
 msgstr ""
 
-# 5a34f34403204e66ab5c667346b7ae0e
 msgid "``select``"
 msgstr ""
 
-# 865081ad90874d46bf6e8cbfa695eaa8
 msgid ""
 "``select`` searches records that are matched to specified conditions from a "
 "table and then outputs them."
@@ -5281,7 +3769,6 @@ msgstr ""
 "``select`` searches records that are matched to specified conditions from a "
 "table and then outputs them."
 
-# 9214ae9ce4f14c73850fc599ef62ce3d
 msgid ""
 "``select`` is the most important command in groonga. You need to understand "
 "``select`` to use the full power of groonga."
@@ -5289,7 +3776,6 @@ msgstr ""
 "``select`` is the most important command in groonga. You need to understand "
 "``select`` to use the full power of groonga."
 
-# d5f6f992242344ebbf3098ac356289b0
 msgid ""
 "``select`` has many parameters. The required parameter is only ``table`` and "
 "others are optional::"
@@ -5297,7 +3783,6 @@ msgstr ""
 "``select`` has many parameters. The required parameter is only ``table`` and "
 "others are optional::"
 
-# fa80f7c3b5c444c08ede414e30e9cea7
 msgid ""
 "Let's learn about ``select`` usage with examples. This section shows many "
 "popular usages."
@@ -5305,9 +3790,6 @@ msgstr ""
 "Let's learn about ``select`` usage with examples. This section shows many "
 "popular usages."
 
-# c3e3af99594a4eb0b5ef8247673500cb
-# 7f9695baeee643bcac790e4acff24e58
-# 66fc9b8025d841428421ab9710f7e49b
 msgid ""
 "There is a table, ``Entries``, for blog entries. An entry has title, content "
 "and the number of likes for the entry. Title is key of ``Entries``. Content "
@@ -5319,9 +3801,6 @@ msgstr ""
 "is value of ``Entries.content`` column. The number of likes is value of "
 "``Entries.n_likes`` column."
 
-# afcc57e5e533491ea42b941d491a3bb3
-# 862aaef1c1044d9dbd177aaf4cb79ac1
-# c996fb005384438f8194a2ee7d38b34d
 msgid ""
 "``Entries._key`` column and ``Entries.content`` column are indexed using "
 "``TokenBigram`` tokenizer. So both ``Entries._key`` and ``Entries.content`` "
@@ -5331,17 +3810,12 @@ msgstr ""
 "``TokenBigram`` tokenizer. So both ``Entries._key`` and ``Entries.content`` "
 "are fulltext search ready."
 
-# 4950c1e1d9224cf2b33dbc556be66761
-# 86f103ebb6a94329bbbe5b98d520fcc9
-# fec82ced13ff4717b6b86f3932344b17
 msgid "OK. The schema and data for examples are ready."
 msgstr "OK. The schema and data for examples are ready."
 
-# 71396566264b41d1a7fca5122fc8f8ff
 msgid "Simple usage"
 msgstr "Simple usage"
 
-# daea70270bca4d8c89328df224f06a60
 msgid ""
 "Here is the most simple usage with the above schema and data. It outputs all "
 "records in ``Entries`` table."
@@ -5349,7 +3823,6 @@ msgstr ""
 "Here is the most simple usage with the above schema and data. It outputs all "
 "records in ``Entries`` table."
 
-# 730f54d967d7443ebdb719aac896338b
 msgid ""
 "Why does the command output all records? There are two reasons. The first "
 "reason is that the command doesn't specify any search conditions. No search "
@@ -5365,11 +3838,9 @@ msgstr ""
 "maximum by default. There are only 5 records. It is less than 10. So the "
 "command outputs all records."
 
-# 0aa93bf665bf4fa38b59a1d9709c1ce6
 msgid "Search conditions"
 msgstr "Search conditions"
 
-# 2f800408098b4d12acbd669c3c08d5b0
 msgid ""
 "Search conditions are specified by ``query`` or ``filter``. You can also "
 "specify both ``query`` and ``filter``. It means that selected records must "
@@ -5379,11 +3850,9 @@ msgstr ""
 "specify both ``query`` and ``filter``. It means that selected records must "
 "be matched against both ``query`` and ``filter``."
 
-# 1d7867c9c13c49d0a551757f501a2b0b
 msgid "Search condition: ``query``"
 msgstr "Search condition: ``query``"
 
-# 720bf5fd182f49b3b12912b67e6f175c
 msgid ""
 "``query`` is designed for search box in Web page. Imagine a search box in "
 "google.com. You specify search conditions for ``query`` as space separated "
@@ -5395,7 +3864,6 @@ msgstr ""
 "keywords. For example, ``search engine`` means a matched record should "
 "contain two words, ``search`` and ``engine``."
 
-# ac1dd41efe7b4b85986228b0b1f0fd44
 msgid ""
 "Normally, ``query`` parameter is used for specifying fulltext search "
 "conditions. It can be used for non fulltext search conditions but ``filter`` "
@@ -5405,7 +3873,6 @@ msgstr ""
 "conditions. It can be used for non fulltext search conditions but ``filter`` "
 "is used for the propose."
 
-# 286fbaf808b349e4ba67c70ab28e73a6
 msgid ""
 "``query`` parameter is used with ``match_columns`` parameter when ``query`` "
 "parameter is used for specifying fulltext search conditions. "
@@ -5417,11 +3884,9 @@ msgstr ""
 "``match_columns`` specifies which columnes and indexes are matched against "
 "``query``."
 
-# 40158e10b8a44151b93856fcfe60e599
 msgid "Here is a simple ``query`` usage example."
 msgstr "Here is a simple ``query`` usage example."
 
-# d03a15d7676a47bf9b5a1d895a348454
 msgid ""
 "The ``select`` command searches records that contain a word ``fast`` in "
 "``content`` column value from ``Entries`` table."
@@ -5429,7 +3894,6 @@ msgstr ""
 "The ``select`` command searches records that contain a word ``fast`` in "
 "``content`` column value from ``Entries`` table."
 
-# 4459d8f1eb074804845790e4e4f71133
 msgid ""
 "``query`` has query syntax but its deatils aren't described here. See :doc:`/"
 "reference/grn_expr/query_syntax` for datails."
@@ -5437,11 +3901,9 @@ msgstr ""
 "``query`` has query syntax but its deatils aren't described here. See :doc:`/"
 "reference/grn_expr/query_syntax` for datails."
 
-# 5af05a2d66844c84ae2c5e07ad0a634b
 msgid "Search condition: ``filter``"
 msgstr "Search condition: ``filter``"
 
-# 009187a1aabf4873907ef32e670e1dc0
 msgid ""
 "``filter`` is designed for complex search conditions. You specify search "
 "conditions for ``filter`` as ECMAScript like syntax."
@@ -5449,11 +3911,9 @@ msgstr ""
 "``filter`` is designed for complex search conditions. You specify search "
 "conditions for ``filter`` as ECMAScript like syntax."
 
-# b2564d483dfb407d8043a045be3798ac
 msgid "Here is a simple ``filter`` usage example."
 msgstr "Here is a simple ``filter`` usage example."
 
-# 7a88ccb9d50a4239aafd6d3d498b0777
 msgid ""
 "The ``select`` command searches records that contain a word ``fast`` in "
 "``content`` column value and has ``Groonga`` as ``_key`` from ``Entries`` "
@@ -5467,7 +3927,6 @@ msgstr ""
 "``@`` is fulltext search operator. ``&&`` and ``==`` are the same as "
 "ECMAScript. ``&&`` is logical AND operator and ``==`` is equality operator."
 
-# 2a536ce1a15a488f8398ac542382ba25
 msgid ""
 "``filter`` has more operators and syntax like grouping by ``(...)`` its "
 "deatils aren't described here. See :doc:`/reference/grn_expr/script_syntax` "
@@ -5477,11 +3936,9 @@ msgstr ""
 "deatils aren't described here. See :doc:`/reference/grn_expr/script_syntax` "
 "for datails."
 
-# 0a329f8f513e4394a72e615e48b3809e
 msgid "Paging"
 msgstr "Paging"
 
-# 29ed7f1a4e4f4610be2b65319b211446
 msgid ""
 "You can specify range of outputted records by ``offset`` and ``limit``. Here "
 "is an example to output only the 2nd record."
@@ -5489,7 +3946,6 @@ msgstr ""
 "You can specify range of outputted records by ``offset`` and ``limit``. Here "
 "is an example to output only the 2nd record."
 
-# 73eb86076a704b4e89471c6a15110499
 msgid ""
 "``offset`` is zero-origin. ``--offset 1`` means output range is started from "
 "the 2nd record."
@@ -5497,7 +3953,6 @@ msgstr ""
 "``offset`` is zero-origin. ``--offset 1`` means output range is started from "
 "the 2nd record."
 
-# 6f4fd9f018534d5a8c6a51263ea15823
 msgid ""
 "``limit`` specifies the max number of output records. ``--limit 1`` means "
 "the number of output records is 1 at a maximium. If no records are matched, "
@@ -5507,11 +3962,9 @@ msgstr ""
 "the number of output records is 1 at a maximium. If no records are matched, "
 "``select`` command outputs no records."
 
-# 42d6d0558a2142008ca9e20339bd2457
 msgid "The total number of records"
 msgstr "The total number of records"
 
-# 830e37dd432e4b479ffc693cc34de108
 msgid ""
 "You can use ``--limit 0`` to retrieve the total number of recrods without "
 "any contents of records."
@@ -5519,7 +3972,6 @@ msgstr ""
 "You can use ``--limit 0`` to retrieve the total number of recrods without "
 "any contents of records."
 
-# 12500caffac44acdae7dc7d1b6bc5a58
 msgid ""
 "``--limit 0`` is also useful for retrieving only the number of matched "
 "records."
@@ -5527,27 +3979,21 @@ msgstr ""
 "``--limit 0`` is also useful for retrieving only the number of matched "
 "records."
 
-# aa6c5a1abc844a978f87b2dd33b26dc6
 msgid "This section describes all parameters. Parameters are categorized."
 msgstr "This section describes all parameters. Parameters are categorized."
 
-# 1eb1184cdea4464ca9cc8a73c9deecf7
 msgid "There is a required parameter, ``table``."
 msgstr "There is a required parameter, ``table``."
 
-# d434e8c4ccac4f8593891e54f2a1a151
 msgid "It specifies a table to be searched. ``table`` must be specified."
 msgstr "It specifies a table to be searched. ``table`` must be specified."
 
-# 8f8f22105479405abba7b9adec53bc1f
 msgid "If nonexistent table is specified, an error is returned."
 msgstr "If nonexistent table is specified, an error is returned."
 
-# ddb2532e65a946eba15e95bc6fdda252
 msgid "Search related parameters"
 msgstr "Search related parameters"
 
-# 2a95172b621e4832bc8072d203272044
 msgid ""
 "There are search related parameters. Typically, ``match_columns`` and "
 "``query`` parameters are used for implementing a search box. ``filter`` "
@@ -5557,7 +4003,6 @@ msgstr ""
 "``query`` parameters are used for implementing a search box. ``filter`` "
 "parameters is used for implementing complex search feature."
 
-# 14f2fdc3178d4c1497b89b352edcd3df
 msgid ""
 "If both ``query`` and ``filter`` are specified, selected records must be "
 "matched against both ``query`` and ``filter``. If both ``query`` and "
@@ -5567,7 +4012,6 @@ msgstr ""
 "matched against both ``query`` and ``filter``. If both ``query`` and "
 "``filter`` aren't specified, all records are selected."
 
-# f5bedd39a74a4094bdca3b0a4a552164
 msgid ""
 "It specifies the default target column for fulltext search by ``query`` "
 "parameter value. A target column for fulltext search can be specified in "
@@ -5581,7 +4025,6 @@ msgstr ""
 "is whether weight is supported or not. ``match_columns`` supports weight but "
 "``query`` doesn't."
 
-# 3daeb8c30f8d4759b241db1a7fac2299
 msgid ""
 "Weight is relative importance of target column. A higher weight target "
 "column gets more hit score rather than a lower weight target column when a "
@@ -5591,11 +4034,9 @@ msgstr ""
 "column gets more hit score rather than a lower weight target column when a "
 "record is matched by fulltext search. The default weight is 1."
 
-# 4f898cad7c974baa8a5ae1ceefcb9319
 msgid "Here is a simple ``match_columns`` usage example."
 msgstr "Here is a simple ``match_columns`` usage example."
 
-# 66edff85fcb94fcb9459d057eb62de86
 msgid ""
 "``--match_columns content`` means the default target column for fulltext "
 "search is ``content`` column and its weight is 1. ``--output_columns '_key, "
@@ -5607,7 +4048,6 @@ msgstr ""
 "_score'`` means that the ``select`` command outputs ``_key`` value and "
 "``_score`` value for matched records."
 
-# 935e9abff7464f5b9a39d82eb00d3175
 msgid ""
 "Pay attention to ``_score`` value. ``_score`` value is the number of matched "
 "counts against ``query`` parameter value. In the example, ``query`` "
@@ -5621,7 +4061,6 @@ msgstr ""
 "``fast`` appers in ``content`` column only once.  The fact that ``_score`` "
 "value is 2 means that ``fast`` appears in ``content`` column twice."
 
-# d9162270c52f4a859335da9dab1f66bd
 msgid ""
 "To specify weight, ``column * weight`` syntax is used. Here is a weight "
 "usage example."
@@ -5629,7 +4068,6 @@ msgstr ""
 "To specify weight, ``column * weight`` syntax is used. Here is a weight "
 "usage example."
 
-# 5a2551a83a19455aba7ca74efb7efbb9
 msgid ""
 "``--match_columns 'content * 2'`` means the default target column for "
 "fulltext search is ``content`` column and its weight is 2."
@@ -5637,7 +4075,6 @@ msgstr ""
 "``--match_columns 'content * 2'`` means the default target column for "
 "fulltext search is ``content`` column and its weight is 2."
 
-# 517663d5b8d245abb9d2d0ef8adbd10f
 msgid ""
 "Pay attention to ``_score`` value. ``_score`` value is doubled because "
 "weight is 2."
@@ -5645,7 +4082,6 @@ msgstr ""
 "Pay attention to ``_score`` value. ``_score`` value is doubled because "
 "weight is 2."
 
-# 8267180ca2f54d3b87e1aec54ee1084c
 msgid ""
 "You can specify one or more columns as the default target columns for "
 "fulltext search. If one or more columns are specified, fulltext search is "
@@ -5657,7 +4093,6 @@ msgstr ""
 "done for all columns and scores are accumulated. If one of the columns is "
 "matched against ``query`` parameter value, the record is treated as matched."
 
-# ae8167b78e0242af855e68041899f360
 msgid ""
 "To specify one or more columns, ``column1 * weight1 || column2 * weight2 "
 "|| ...`` syntax is used. ``* weight`` can be omitted. If it is omitted, 1 is "
@@ -5667,7 +4102,6 @@ msgstr ""
 "|| ...`` syntax is used. ``* weight`` can be omitted. If it is omitted, 1 is "
 "used for weight. Here is a one or more columns usage example."
 
-# dcf68c1b14c6491c96d5a0a1b08ffce1
 msgid ""
 "``--match_columns '_key * 10 || content'`` means the default target columns "
 "for fulltext search are ``_key`` and ``content`` columns and ``_key`` "
@@ -5683,7 +4117,6 @@ msgstr ""
 "``content`` column value. In this example, title of blog entry is more "
 "important rather thatn content of blog entry."
 
-# 3d299d5d83b94b289ab221eb3bdd2268
 msgid ""
 "It specifies the query text. Normally, it is used for fulltext search with "
 "``match_columns`` parameter. ``query`` parameter is designed for a fulltext "
@@ -5703,11 +4136,9 @@ msgstr ""
 "OR word2`` means that groogna searches records that contain either ``word1`` "
 "or ``word2``."
 
-# 5eb7014fd4b8473389ce5f9c01ae4c47
 msgid "Here is a simple logical and search example."
 msgstr "Here is a simple logical and search example."
 
-# ce51492e01a749e69f18e114f3bc0351
 msgid ""
 "The ``select`` command searches records that contain two words ``fast`` and "
 "``groonga`` in ``content`` column value from ``Entries`` table."
@@ -5715,11 +4146,9 @@ msgstr ""
 "The ``select`` command searches records that contain two words ``fast`` and "
 "``groonga`` in ``content`` column value from ``Entries`` table."
 
-# c8a3c313dba9426a830d116b86bbe4c9
 msgid "Here is a simple logical or search example."
 msgstr "Here is a simple logical or search example."
 
-# e5cacbdaae1f45deaf1c764cecc7f4b1
 msgid ""
 "The ``select`` command searches records that contain one of two words "
 "``groonga`` or ``mroonga`` in ``content`` column value from ``Entries`` "
@@ -5729,11 +4158,9 @@ msgstr ""
 "``groonga`` or ``mroonga`` in ``content`` column value from ``Entries`` "
 "table."
 
-# b56fdc57ebbf48f9a015ccbcee036fe6
 msgid "See :doc:`/reference/grn_expr/query_syntax` for other syntax."
 msgstr "See :doc:`/reference/grn_expr/query_syntax` for other syntax."
 
-# 19d164f1cd4c47b6bd42cd77a92e673b
 msgid ""
 "It can be used for not only fulltext search but also other conditions. For "
 "example, ``column:value`` means the value of ``column`` column is equal to "
@@ -5745,13 +4172,9 @@ msgstr ""
 "``value``. ``column:<value`` means the value of ``column`` column is less "
 "than ``value``."
 
-# 853676cfc41c4805a1a414db51317b04
-# 39ad6ed7f02541b09ce6eaa3f7eb53a3
 msgid "Here is a simple equality operator search example."
 msgstr "Here is a simple equality operator search example."
 
-# 8e5288312fd7421a8873a5085663c140
-# 1df0fbc2f8074d528b522b4a353ac8b4
 msgid ""
 "The ``select`` command searches records that ``_key`` column value is "
 "``Groonga`` from ``Entries`` table."
@@ -5759,13 +4182,9 @@ msgstr ""
 "The ``select`` command searches records that ``_key`` column value is "
 "``Groonga`` from ``Entries`` table."
 
-# eec639617eb34b25be3ed87129fe3559
-# 6b942af61639452e9f8b65ec1f35f0d1
 msgid "Here is a simple less than operator search example."
 msgstr "Here is a simple less than operator search example."
 
-# 7c0073a37b944a0cbaa9756c96dcc338
-# 592b536283c74c7d94d4598068284f08
 msgid ""
 "The ``select`` command searches records that ``n_likes`` column value is "
 "less than ``11`` from ``Entries`` table."
@@ -5773,11 +4192,9 @@ msgstr ""
 "The ``select`` command searches records that ``n_likes`` column value is "
 "less than ``11`` from ``Entries`` table."
 
-# 4a1bf130fa654db5ade206ae9ed4cf1c
 msgid "See :doc:`/reference/grn_expr/query_syntax` for other operations."
 msgstr "See :doc:`/reference/grn_expr/query_syntax` for other operations."
 
-# 8cad81b13cb648dea0f8f23a440e0229
 msgid ""
 "It specifies the filter text. Normally, it is used for complex search "
 "conditions. ``filter`` can be used with ``query`` parameter. If both "
@@ -5791,7 +4208,6 @@ msgstr ""
 "It means that matched records should be matched against both ``filter`` and "
 "``query``."
 
-# c0d140f82b57460ea91175d717050fa8
 msgid ""
 "``filter`` parameter is designed for complex conditions. A filter text "
 "should be formated in :doc:`/reference/grn_expr/script_syntax`. The syntax "
@@ -5805,19 +4221,15 @@ msgstr ""
 "the value of ``column`` column is equal to ``\"value\"``. ``column < value`` "
 "means that the value of ``column`` column is less than ``value``."
 
-# 7c33e14a98f34d5b92d8c4ca7d190361
 msgid "See :doc:`/reference/grn_expr/script_syntax` for other operators."
 msgstr "See :doc:`/reference/grn_expr/script_syntax` for other operators."
 
-# 69143ede26cc4bddb17d1add66eda3f7
 msgid "Advanced search parameters"
 msgstr "Advanced search parameters"
 
-# a2f0c526d8a14116a31b9af58a5eaa2c
 msgid "``match_escalation_threshold``"
 msgstr "``match_escalation_threshold``"
 
-# cb5519523ef64924a7344694afdf99e7
 msgid ""
 "It specifies threshold to determine whether search storategy escalation is "
 "used or not. The threshold is compared against the number of matched "
@@ -5831,7 +4243,6 @@ msgstr ""
 "threshold, the search storategy escalation is used. See :doc:`/spec/search` "
 "about the search storategy escalation."
 
-# e954c36275f14feb8b20de62288a4b37
 msgid ""
 "The default threshold is 0. It means that search storategy escalation is "
 "used only when no records are matched."
@@ -5839,24 +4250,19 @@ msgstr ""
 "The default threshold is 0. It means that search storategy escalation is "
 "used only when no records are matched."
 
-# c21083c5e7e6422397c96e5ee435c0f0
 msgid "The default threshold can be customized by one of the followings."
 msgstr "The default threshold can be customized by one of the followings."
 
-# 26371a3182dc44b3bdf67d5bc334a613
 msgid "``--with-match-escalation-threshold`` option of configure"
 msgstr "``--with-match-escalation-threshold`` option of configure"
 
-# f3b55559e0474119842c17e17af0c2b2
 msgid "``--match-escalation-threshold`` option of groogna command"
 msgstr "``--match-escalation-threshold`` option of groogna command"
 
-# 9938356ac9584523ac5557eeee22d99b
 msgid "``match-escalation-threshold`` configuration item in configuration file"
 msgstr ""
 "``match-escalation-threshold`` configuration item in configuration file"
 
-# 243d167c8ceb46e1aa968e49258c5f01
 msgid ""
 "Here is a simple ``match_escalation_threshold`` usage example. The first "
 "``select`` doesn't have ``match_escalation_threshold`` parameter. The second "
@@ -5866,7 +4272,6 @@ msgstr ""
 "``select`` doesn't have ``match_escalation_threshold`` parameter. The second "
 "``select`` has ``match_escalation_threshold`` parameter."
 
-# ff0ac207410c482aac93a76e6dc6341a
 msgid ""
 "The first ``select`` command searches records that contain a word ``groo`` "
 "in ``content`` column value from ``Entries`` table. But no records are "
@@ -5880,7 +4285,6 @@ msgid ""
 "(0). One record is matched against ``groo`` by unsplit search."
 msgstr ""
 
-# cf5d411d78474c5988052cc713c3cf7a
 msgid ""
 "The second ``select`` command also searches records that contain a word "
 "``groo`` in ``content`` column value from ``Entries`` table. And it also "
@@ -5896,69 +4300,52 @@ msgstr ""
 "``match_escalation_threshold`` (-1). So no more searches aren't executed. "
 "And no records are matched."
 
-# 72217ef1d842418ab8c29d7974f9168e
 msgid "``query_expansion``"
 msgstr "``query_expansion``"
 
-# 0612880cbf0d4203ae3af8d7f3c1e6ff
 msgid "Deprecated. Use :ref:`query-expander` instead."
 msgstr ""
 
-# 7ce6ba435e3641b8a4d89e74b3fb249b
-# b5983df39f7d46faa0a27c4f9cbf4552
-# 3663a61eb37a45a7b35671577635e5f0
-# 0df8e7d57bb640bf9e19e7678fc45333
 msgid "``query_flags``"
 msgstr ""
 
-# 46b6da5f00834dfa86cbe29b0367b9b8
 msgid ""
 "It customs ``query`` parameter syntax. You cannot update column value by "
 "``query`` parameter by default. But if you specify ``ALLOW_COLUMN|"
 "ALLOW_UPDATE`` as ``query_flags``, you can update column value by ``query``."
 msgstr ""
 
-# 80df0c929ec94d658daf4c835e8357e2
-# bff9206d7a0947f5a45db16ff5fee0c4
 msgid "Here are available values:"
 msgstr "Here are available values:"
 
-# f677425433de420cb2205e6a16d71096
 msgid "``ALLOW_PRAGMA``"
 msgstr ""
 
-# f84d2e63bdb14533adb6934920379e5b
 msgid "``ALLOW_COLUMN``"
 msgstr ""
 
-# 09900a3b9b074ea9b0e38b362218e8fb
 msgid "``ALLOW_UPDATE``"
 msgstr ""
 
-# 0057c814ab354837963fbc7b7cddfcb6
 msgid "``ALLOW_LEADING_NOT``"
 msgstr ""
 
-# 442d5f7f303146279235e5f211bca879
 msgid ""
 "``ALLOW_PRAGMA`` enables pragma at the head of ``query``. This is not "
 "implemented yet."
 msgstr ""
 
-# 2d84afe9a5bc4af296a18d2c64e7c7d9
 msgid ""
 "``ALLOW_COLUMN`` enables search againt columns that are not included in "
 "``match_columns``. To specify column, there are ``COLUMN:...`` syntaxes."
 msgstr ""
 
-# 966dfabc01dc4f2a9d7471daaf2e9e54
 msgid ""
 "``ALLOW_UPDATE`` enables column update by ``query`` with ``COLUMN:"
 "=NEW_VALUE`` syntax. ``ALLOW_COLUMN`` is also required to update column "
 "because the column update syntax specifies column."
 msgstr ""
 
-# 408813ebe7e24f3aa11ae180bc240dfa
 msgid ""
 "``ALLOW_LEADING_NOT`` enables leading NOT condition with ``-WORD`` syntax. "
 "The query searches records that doesn't match ``WORD``. Leading NOT "
@@ -5967,55 +4354,44 @@ msgid ""
 "use the flag."
 msgstr ""
 
-# 126de47bd391454e81b147ad78c2b1cb
 msgid "``NONE`` is just ignores. You can use ``NONE`` for specifying no flags."
 msgstr ""
 
-# 8510b54ea9854b83809d1a06d9b66b1c
 msgid ""
 "They can be combined by separated ``|`` such as ``ALLOW_COLUMN|"
 "ALLOW_UPDATE``."
 msgstr ""
 
-# 25a88a3a400a438c80c4332cf04b43e0
 msgid "The default value is ``ALLOW_PRAGMA|ALLOW_COLUMN``."
 msgstr ""
 
-# 55f853a60386424aae878f2d6b091a3b
 msgid "Here is a usage example of ``ALLOW_COLUMN``."
 msgstr ""
 
-# d03a15d7676a47bf9b5a1d895a348454
 msgid ""
 "The ``select`` command searches records that contain ``mroonga`` in "
 "``content`` column value from ``Entries`` table."
 msgstr ""
 
-# 55f853a60386424aae878f2d6b091a3b
 msgid "Here is a usage example of ``ALLOW_UPDATE``."
 msgstr ""
 
-# b96e00753efc48eda3071e677b20858f
 msgid ""
 "The first ``select`` command sets ``age`` column value of all records to "
 "``19``. The second ``select`` command outputs updated ``age`` column values."
 msgstr ""
 
-# 55f853a60386424aae878f2d6b091a3b
 msgid "Here is a usage example of ``ALLOW_LEADING_NOT``."
 msgstr ""
 
-# d03a15d7676a47bf9b5a1d895a348454
 msgid ""
 "The ``select`` command searches records that don't contain ``mroonga`` in "
 "``content`` column value from ``Entries`` table."
 msgstr ""
 
-# 55f853a60386424aae878f2d6b091a3b
 msgid "Here is a usage example of ``NONE``."
 msgstr ""
 
-# e5cacbdaae1f45deaf1c764cecc7f4b1
 msgid ""
 "The ``select`` command searches records that contain one of two words "
 "``mroonga`` or ``_key:Groonga`` in ``content`` from ``Entries`` table. Note "
@@ -6023,15 +4399,12 @@ msgid ""
 "equal to ``Groonga``. Because ``ALLOW_COLUMN`` flag is not specified."
 msgstr ""
 
-# e8444044dfa741d3b70dc4687921d3ff
 msgid "See also :doc:`/reference/grn_expr/query_syntax`."
 msgstr ""
 
-# 72217ef1d842418ab8c29d7974f9168e
 msgid "``query_expander``"
 msgstr ""
 
-# f76b6ecd83a04d32a39967b1bfb3d9b0
 msgid ""
 "It's for query expansion. Query expansion substitutes specific words to "
 "another words in query. Nomally, it's used for synonym search."
@@ -6039,7 +4412,6 @@ msgstr ""
 "It's for query expansion. Query expansion substitutes specific words to "
 "another words in query. Nomally, it's used for synonym search."
 
-# e17e3a26c8514c5eaa7c135afcab48a8
 msgid ""
 "It specifies a column that is used to substitute ``query`` parameter value. "
 "The format of this parameter value is \"``${TABLE}.${COLUMN}``\". For "
@@ -6051,7 +4423,6 @@ msgstr ""
 "example, \"``Terms.synonym``\" specifies ``synonym`` column in ``Terms`` "
 "table."
 
-# 67c3da0498ea4e7ab836a981327d099a
 msgid ""
 "Table for query expansion is called \"substitution table\". Substitution "
 "table's key must be ``ShortText``. So array table (``TABLE_NO_KEY``) can't "
@@ -6061,7 +4432,6 @@ msgstr ""
 "table's key must be ``ShortText``. So array table (``TABLE_NO_KEY``) can't "
 "be used for query expansion. Because array table doesn't have key."
 
-# 1fc72ba9cbec44a2978879a03a305f13
 msgid ""
 "Column for query expansion is called \"substitution column\". Substitution "
 "column's value type must be ``ShortText``. Column type must be vector "
@@ -6071,7 +4441,6 @@ msgstr ""
 "column's value type must be ``ShortText``. Column type must be vector "
 "(``COLUMN_VECTOR``)."
 
-# 6c6ad77335f44447b140efce8015a463
 msgid ""
 "Query expansion substitutes key of substitution table in query with values "
 "in substitution column. If a word in ``query`` is a key of substitution "
@@ -6085,13 +4454,11 @@ msgstr ""
 "associated with the key. Substition isn't performed recursively. It means "
 "that substitution target words in substituted query aren't substituted."
 
-# 4c3a37d85323468aa1baa421ed095852
 msgid ""
 "Here is a sample substitution table to show a simple ``query_expander`` "
 "usage example."
 msgstr ""
 
-# c95eb2311bbe4c54ad94059c3816ea3d
 msgid ""
 "``Thesaurus`` substitution table has two synonyms, ``\"mroonga\"`` and ``"
 "\"groonga\"``. If an user searches with ``\"mroonga\"``, groonga searches "
@@ -6102,7 +4469,6 @@ msgid ""
 "matched in case insensitive manner."
 msgstr ""
 
-# 2121b68499b64326a9dff15addabe2e4
 msgid ""
 "Note that those synonym values include the key value such as ``\"mroonga\"`` "
 "and ``\"groonga\"``. It's recommended that you include the key value. If you "
@@ -6120,11 +4486,9 @@ msgstr ""
 "should not include the original word. For example, you can implement \"stop "
 "words\" by an empty vector value."
 
-# 55cc96858dd84ebcbf3c5f1197f7e724
 msgid "Here is a simple ``query_expander`` usage example."
 msgstr ""
 
-# 3d7602dce55f419d8bf0b0c0daff8de2
 msgid ""
 "The first ``select`` command doesn't use query expansion. So a record that "
 "has ``\"tritonn\"`` isn't found. The second ``select`` command uses query "
@@ -6138,7 +4502,6 @@ msgstr ""
 "``select`` command doesn't use query expansion but it is same as the second "
 "``select`` command. The third one uses expanded query."
 
-# c0eed73c732744a183662e4e075fadf6
 msgid ""
 "Each substitute value can contain any :doc:`/reference/grn_expr/"
 "query_syntax` syntax such as ``(...)`` and ``OR``. You can use complex "
@@ -6148,11 +4511,9 @@ msgstr ""
 "query_syntax` syntax such as ``(...)`` and ``OR``. You can use complex "
 "substitution by using those syntax."
 
-# d23e091b9058403aac923ffc7390e2c1
 msgid "Here is a complex substitution usage example that uses query syntax."
 msgstr "Here is a complex substitution usage example that uses query syntax."
 
-# 4f681601e9334ebf8d7263e0fd540e52
 msgid ""
 "The ``load`` command registers a new synonym ``\"popular\"``. It is "
 "substituted with ``((popular) OR (n_likes:>=10))``. The substituted query "
@@ -6164,7 +4525,6 @@ msgstr ""
 "means that \"popular\" is containing the word \"popular\" or 10 or more "
 "liked entries."
 
-# 33660bca8c1745259c3412cce24e8c1f
 msgid ""
 "The ``select`` command outputs records that ``n_likes`` column value is "
 "equal to or more than ``10`` from ``Entries`` table."
@@ -6172,24 +4532,19 @@ msgstr ""
 "The ``select`` command outputs records that ``n_likes`` column value is "
 "equal to or more than ``10`` from ``Entries`` table."
 
-# 94660f86284f4d6eab1ab606bb719ff1
 msgid "Output related parameters"
 msgstr "Output related parameters"
 
-# 3860cf07ab6b4e728d24d949ec05ee93
 msgid "It specifies output columns separated by ``,``."
 msgstr "It specifies output columns separated by ``,``."
 
-# e916ecc8c4d349fcba2673c6ece7cdab
 msgid "Here is a simple ``output_columns`` usage example."
 msgstr "Here is a simple ``output_columns`` usage example."
 
-# dc4212d9346f41e3b5773c7fa122bff2
 msgid "The ``select`` command just outputs ``_id`` and ``_key`` column values."
 msgstr ""
 "The ``select`` command just outputs ``_id`` and ``_key`` column values."
 
-# d4d1f6791d8346b3a4af6c334368f6e1
 msgid ""
 "``*`` is a special value. It means that all columns that are not :doc:`/"
 "reference/pseudo_column`."
@@ -6197,11 +4552,9 @@ msgstr ""
 "``*`` is a special value. It means that all columns that are not :doc:`/"
 "reference/pseudo_column`."
 
-# 55f853a60386424aae878f2d6b091a3b
 msgid "Here is a ``*`` usage example."
 msgstr "Here is a ``*`` usage example."
 
-# e25dd22657c44ed0855bea61d9b2f5e5
 msgid ""
 "The ``select`` command outputs ``_key`` pseudo column, ``content`` column "
 "and ``n_likes`` column values but doesn't output ``_id`` pseudo column value."
@@ -6209,7 +4562,6 @@ msgstr ""
 "The ``select`` command outputs ``_key`` pseudo column, ``content`` column "
 "and ``n_likes`` column values but doesn't output ``_id`` pseudo column value."
 
-# 5231e731dbaf4cf7baf15fed8a2ea539
 msgid ""
 "The default value is ``_id, _key, *``. It means that all column values "
 "except ``_score`` are outputted."
@@ -6217,17 +4569,14 @@ msgstr ""
 "The default value is ``_id, _key, *``. It means that all column values "
 "except ``_score`` are outputted."
 
-# ee50178e3aa547e989cd4717d21fac75
 msgid ""
 "It specifies sort keys separated by ``,``. Each sort key is column name."
 msgstr ""
 "It specifies sort keys separated by ``,``. Each sort key is column name."
 
-# 305fd8429e10462b83aed569aa88ad0c
 msgid "Here is a simple ``sortby`` usage example."
 msgstr "Here is a simple ``sortby`` usage example."
 
-# bfd90f9a51224e5b90d6a50fff6523e0
 msgid ""
 "The ``select`` command sorts by ``n_likes`` column value in ascending order. "
 "For records that has the same ``n_likes`` are sorted by ``_id`` in ascending "
@@ -6237,15 +4586,12 @@ msgstr ""
 "For records that has the same ``n_likes`` are sorted by ``_id`` in ascending "
 "order. ``\"Good-bye Senna\"`` and ``\"Good-bye Tritonn\"`` are the case."
 
-# b04d3e442bb1444d9d4574bec95825df
 msgid "If you want to sort in descending order, add ``-`` before column name."
 msgstr "If you want to sort in descending order, add ``-`` before column name."
 
-# cdd1e9fa7c5e465c97cde5afa947b330
 msgid "Here is a descending order ``sortby`` usage example."
 msgstr "Here is a descending order ``sortby`` usage example."
 
-# 79aba9b088e8456eaa4054d064b52932
 msgid ""
 "The ``select`` command sorts by ``n_likes`` column value in descending "
 "order. But ascending order is used for sorting by ``_id``."
@@ -6253,7 +4599,6 @@ msgstr ""
 "The ``select`` command sorts by ``n_likes`` column value in descending "
 "order. But ascending order is used for sorting by ``_id``."
 
-# bdd6b0fa67994808a3e18cc45bd86e85
 msgid ""
 "You can use ``_score`` pseudo column in ``sortby`` if you use ``query`` or "
 "``filter`` parameter."
@@ -6261,7 +4606,6 @@ msgstr ""
 "You can use ``_score`` pseudo column in ``sortby`` if you use ``query`` or "
 "``filter`` parameter."
 
-# 11f0fc8dd18e47db921d2538c698e9ce
 msgid ""
 "The ``select`` command sorts matched records by hit score in descending "
 "order and outputs record key and hit score."
@@ -6269,7 +4613,6 @@ msgstr ""
 "The ``select`` command sorts matched records by hit score in descending "
 "order and outputs record key and hit score."
 
-# 7d689f844f084180a523380db3baee27
 msgid ""
 "If you use ``_score`` without ``query`` nor ``filter`` parameters, it's just "
 "ignored but get a warning in log file."
@@ -6277,7 +4620,6 @@ msgstr ""
 "If you use ``_score`` without ``query`` nor ``filter`` parameters, it's just "
 "ignored but get a warning in log file."
 
-# 4a3fffb9f04d4bd592dd2288907e74a5
 msgid ""
 "It specifies offset to determine output records range. Offset is zero-"
 "origin. ``--offset 1`` means output range is started from the 2nd record."
@@ -6285,11 +4627,9 @@ msgstr ""
 "It specifies offset to determine output records range. Offset is zero-"
 "origin. ``--offset 1`` means output range is started from the 2nd record."
 
-# 6118c15af56b4a92a39e7ddc1405f758
 msgid "The ``select`` command outputs from the 4th record."
 msgstr "The ``select`` command outputs from the 4th record."
 
-# ec0b21541d5d4343b2b2d57f36435d6e
 msgid ""
 "You can specify negative value. It means that ``the number of matched "
 "records + offset``. If you have 3 matched records and specify ``--offset "
@@ -6299,7 +4639,6 @@ msgstr ""
 "records + offset``. If you have 3 matched records and specify ``--offset "
 "-2``, you get records from the 1st (``3 + -2 = 1``) record to the 3rd record."
 
-# 87447051c39f4a419af0e339cd909c42
 msgid ""
 "The ``select`` command outputs from the 4th record because the total number "
 "of records is ``5``."
@@ -6307,11 +4646,9 @@ msgstr ""
 "The ``select`` command outputs from the 4th record because the total number "
 "of records is ``5``."
 
-# 25a88a3a400a438c80c4332cf04b43e0
 msgid "The default value is ``0``."
 msgstr "The default value is ``0``."
 
-# b47d7556418147d7a532883af7f0f86c
 msgid ""
 "It specifies the max number of output records. If the number of matched "
 "records is less than ``limit``, all records are outputted."
@@ -6319,15 +4656,12 @@ msgstr ""
 "It specifies the max number of output records. If the number of matched "
 "records is less than ``limit``, all records are outputted."
 
-# 34f473de33bd43ce80a9b38d4e6b35cc
 msgid "Here is a simple ``limit`` usage example."
 msgstr "Here is a simple ``limit`` usage example."
 
-# ef60941da3c640f3b4b2aa3090e71d9d
 msgid "The ``select`` command outputs the 3rd, the 4th and the 5th records."
 msgstr "The ``select`` command outputs the 3rd, the 4th and the 5th records."
 
-# d668d529637b48c88a0e0058d973742b
 msgid ""
 "You can specify negative value. It means that ``the number of matched "
 "records + limit + 1``. For example, ``--limit -1`` outputs all records. It's "
@@ -6337,30 +4671,18 @@ msgstr ""
 "records + limit + 1``. For example, ``--limit -1`` outputs all records. It's "
 "very useful value to show all records."
 
-# cd57e629e7384a1ebe96e1e15fc8967e
 msgid "Here is a simple negative ``limit`` value usage example."
 msgstr "Here is a simple negative ``limit`` value usage example."
 
-# 4ff8b4e2a4454353b3f48bebf3276966
 msgid "The ``select`` command outputs all records."
 msgstr "The ``select`` command outputs all records."
 
-# d1cf97d8a7ee4821b3a9cec54cd28061
 msgid "The default value is ``10``."
 msgstr "The default value is ``10``."
 
-# 8b53a05cadaf4a98afdf48b14d407863
-# f944a95f5d474b779722734fd423af9f
-# 4f00b82f50254f218b89b33679171169
-# 0cc3d71f118c4bf7b9069a6c9a68dc5f
-# c4291b4bac1c478db7daf83b5e035d36
-# 56348216b69d433e947c4a5b63c4f597
-# 4ba8e203844446b08fa94d54f710ec9c
-# 2c7a8f35ef76498bad80becc92830b13
 msgid "TODO: write in English and add example."
 msgstr "TODO: write in English and add example."
 
-# 8913490f7809457fb4c456cffa40d3f3
 msgid ""
 "検索条件にマッチする全てのレコードに対して適用するgrn_exprをscript形式で指定"
 "します。"
@@ -6368,7 +4690,6 @@ msgstr ""
 "検索条件にマッチする全てのレコードに対して適用するgrn_exprをscript形式で指定"
 "します。"
 
-# 9e8bcdcb7a8f469e95e9a4636c32a8f0
 msgid ""
 "scorerは、検索処理が完了し、ソート処理が実行される前に呼び出されます。従っ"
 "て、各レコードのスコアを操作する式を指定しておけば、検索結果のソート順序をカ"
@@ -6378,11 +4699,9 @@ msgstr ""
 "て、各レコードのスコアを操作する式を指定しておけば、検索結果のソート順序をカ"
 "スタマイズできるようになります。"
 
-# 7203caa1384341fd81a359827ee4e75b
 msgid "Facet related parameters"
 msgstr "Facet related parameters"
 
-# 367b5b009bc34c16bdd87e03908a32f8
 msgid ""
 "グループ化のキーとなるカラム名のリストをカンマ(',')区切りで指定します。検索条"
 "件にマッチした各レコードを出力したのちに、drilldownに指定されたカラムの値が同"
@@ -6392,7 +4711,6 @@ msgstr ""
 "件にマッチした各レコードを出力したのちに、drilldownに指定されたカラムの値が同"
 "一であるレコードをとりまとめて、それぞれについて結果レコードを出力します。"
 
-# d0d38fd45b31470cb80e9e2071ff9df7
 msgid ""
 "drilldown条件に指定されたカラムの値毎にとりまとめられたレコードについて、ソー"
 "トキーとなるカラム名のリストをカンマ(',')区切りで指定します。sortbyパラメータ"
@@ -6402,7 +4720,6 @@ msgstr ""
 "トキーとなるカラム名のリストをカンマ(',')区切りで指定します。sortbyパラメータ"
 "と同様に昇降順を指定できます。"
 
-# 8dd649be24914ec98dab47239189eb2e
 msgid ""
 "drilldown条件に指定されたカラムの値毎にとりまとめられたレコードについて、出力"
 "するカラム名のリストをカンマ(',')区切りで指定します。"
@@ -6410,7 +4727,6 @@ msgstr ""
 "drilldown条件に指定されたカラムの値毎にとりまとめられたレコードについて、出力"
 "するカラム名のリストをカンマ(',')区切りで指定します。"
 
-# a66099ad930c420ea6d850dd758fe729
 msgid ""
 "drilldown条件に指定されたカラムの値毎にとりまとめられたレコードについて、出力"
 "対象となる最初のレコードの番号を0ベースで指定します。デフォルト値は0です。"
@@ -6422,7 +4738,6 @@ msgstr ""
 "drilldown_offsetに負の値を指定した場合は、ヒットした件数 + drilldown_offsetに"
 "よって算出される値が指定されたものとみなされます。"
 
-# cc5e9fdc43e342bea7d0172f46c14513
 msgid ""
 "drilldown条件に指定されたカラムの値毎にとりまとめられたレコードについて、出力"
 "を行うレコードの件数を指定します。デフォルト値は10です。実際には、"
@@ -6436,23 +4751,18 @@ msgstr ""
 "出力されます。drilldown_limitに負の値を指定した場合は、ヒットした件数 + "
 "drilldown_limit + 1 によって算出される値が指定されたものとみなされます。"
 
-# c323ac50877a4c1f84d3c8fcbb170e46
 msgid "Cache related parameter"
 msgstr "Cache related parameter"
 
-# 8820d997f92c4fbb9cee896aa11e3694
 msgid "``cache``"
 msgstr "``cache``"
 
-# 32ea2313f457485bbf15a3631246cfc0
 msgid "クエリキャッシュに関する動作を設定します。"
 msgstr "クエリキャッシュに関する動作を設定します。"
 
-# a3f805f043d84720b77614098cf4fbd6
 msgid "``no``"
 msgstr "``no``"
 
-# d77dfd88af614cfea50ee54e238b9f76
 msgid ""
 "検索結果をクエリキャッシュに残しません。キャッシュして再利用される可能性が低"
 "いクエリに対して用います。キャッシュ容量は有限です。有効なキャッシュが多く"
@@ -6462,24 +4772,12 @@ msgstr ""
 "いクエリに対して用います。キャッシュ容量は有限です。有効なキャッシュが多く"
 "ヒットするために、このパラメータは有効です。"
 
-# aab36579c7164ea0ac65b0eaa1022aa0
-# 73ee72eda02e4c1eb5b2b84a2f9804f1
-# e9df67f0af234ea7a1174dcb5740ea59
-# d8072ebd1049418b8133cefdd9343868
 msgid "以下のようなjson形式で値が返却されます。"
 msgstr "以下のようなjson形式で値が返却されます。"
 
-# 3c273c87d3a046d1ba538d77905eb71a
-# b03e77112d964338975cb1fe81c4d8b8
-# 6d682062d6f2428b995ff6a19e237333
-# 3a83aacd08ae42d29c785f3d77685271
 msgid "``リターンコード``"
 msgstr "``リターンコード``"
 
-# 1b0852feb4cd4219b9016507ee109b27
-# 5bae7ad833ca41acae2aded6444c4c9d
-# 5a6fc42ca0b146f1bb87a20603fecc67
-# 663023b5d5db4fcb85c4d3a194488758
 msgid ""
 "grn_rcに対応する数値が返されます。0(GRN_SUCCESS)以外の場合は、続いてエラー内"
 "容を示す 文字列が返されます。"
@@ -6487,17 +4785,9 @@ msgstr ""
 "grn_rcに対応する数値が返されます。0(GRN_SUCCESS)以外の場合は、続いてエラー内"
 "容を示す 文字列が返されます。"
 
-# 91d8fe514978430ebdf2a7c0d154f7bd
-# 2028535849e94f96b87b35abf15fed99
-# f97cb12bd1ef4c8fa25e6e1d9cea96c7
-# 58f5210adc0a410e8f98ae531a03ffc0
 msgid "``処理開始時間``"
 msgstr "``処理開始時間``"
 
-# d045a0718960467c931a2a5e6dfcccff
-# 78ddd8160bc840feba665103568d6850
-# a8d7b637ad8244b083922b28345b84cf
-# 400f21a544504384ad77e6d7b278c87a
 msgid ""
 "処理を開始した時間について、1970年1月1日0時0分0秒を起点とした秒数を小数で返し"
 "ます。"
@@ -6505,66 +4795,46 @@ msgstr ""
 "処理を開始した時間について、1970年1月1日0時0分0秒を起点とした秒数を小数で返し"
 "ます。"
 
-# a4be1b2dfc7d40f4a496e4558246cfe6
-# 1771ded1d42344ec9805780be53bf2ca
-# 812d875e0c5b430da7ea69a9241e979c
-# 7c01d3bc5c4f4dcb9be1b0d7af93f3ab
 msgid "``処理時間``"
 msgstr "``処理時間``"
 
-# d8489eafb35e403ca89900815668aefe
-# 7df8088d5d60475dbdf3f1be58812cb6
-# 3903b83c01624043be5d7e0778586b73
-# 33d8ac2ff7164b24900c816b73dff275
 msgid "処理にかかった秒数を返します。"
 msgstr "処理にかかった秒数を返します。"
 
-# 80f962364edc4a3e96efa3bb49927b61
 msgid "``検索結果``"
 msgstr "``検索結果``"
 
-# 7774624362ee48438978e4286a96b9c0
 msgid "drilldown条件が実行される前の検索結果が以下のように出力されます。::"
 msgstr "drilldown条件が実行される前の検索結果が以下のように出力されます。::"
 
-# 9eedc56547d54b46ab1bec965ae4b256
 msgid "``ヒット数``"
 msgstr ""
 
-# 702365b437954216b6757949cd68a6db
 msgid ""
 "検索条件にヒットしたレコードの数が出力されます。 ``--limit`` オプションで出力"
 "件数を制限した場合は出力するレコード数と一致しません。 ``ヒット数`` は ``--"
 "limit`` オプションに関係なく常にヒットしたレコードの数になります。"
 msgstr ""
 
-# cca6768c7da141d783cb03a456b7d05e
-# 757b9b4867b94eb3bfa41ee72110a92c
 msgid "``カラム名n``"
 msgstr "``カラム名n``"
 
-# 32c3cd6dad23409382ecaa05b97d3e8f
 msgid ""
 "output_columnsに指定された条件に従って、対象となるカラム名が出力されます。"
 msgstr ""
 "output_columnsに指定された条件に従って、対象となるカラム名が出力されます。"
 
-# 321780c6ce5d45d68e140042a9db95cd
-# 19141cb3f12245ffb1d4feabf6a1edfe
 msgid "``カラム型n``"
 msgstr "``カラム型n``"
 
-# 027c6405cb04402ea3297991f46bbb9e
 msgid ""
 "output_columnsに指定された条件に従って、対象となるカラム型が出力されます。"
 msgstr ""
 "output_columnsに指定された条件に従って、対象となるカラム型が出力されます。"
 
-# 9ce80667db0143c5b3e4758915e01232
 msgid "``検索結果n``"
 msgstr "``検索結果n``"
 
-# 96690ef2898f419fbf326fb787cdbeda
 msgid ""
 "output_columns, offset, limitによって指定された条件に従って各レコードの値が出"
 "力されます。"
@@ -6572,23 +4842,18 @@ msgstr ""
 "output_columns, offset, limitによって指定された条件に従って各レコードの値が出"
 "力されます。"
 
-# 82b2836b7f704ed2a98a5775804bcdd8
 msgid "``drilldown結果``"
 msgstr "``drilldown結果``"
 
-# 2583e457fd3d48beb7beda280f40600e
 msgid "drilldown処理の結果が以下のように出力されます。::"
 msgstr "drilldown処理の結果が以下のように出力されます。::"
 
-# 1651decac5894ad49579691a0406e728
 msgid "``件数``"
 msgstr "``件数``"
 
-# dbfab6b41b8c410cb65c747402b8ec67
 msgid "drilldownに指定されたカラムの値の異なり数が出力されます。"
 msgstr "drilldownに指定されたカラムの値の異なり数が出力されます。"
 
-# de232594173a41899fbffd6f28b391f4
 msgid ""
 "drilldown_output_columnsに指定された条件に従って、対象となるカラム名が出力さ"
 "れます。"
@@ -6596,7 +4861,6 @@ msgstr ""
 "drilldown_output_columnsに指定された条件に従って、対象となるカラム名が出力さ"
 "れます。"
 
-# cd470c2393cd4736aa9f5c2537d7e2be
 msgid ""
 "drilldown_output_columnsに指定された条件に従って、対象となるカラム型が出力さ"
 "れます。"
@@ -6604,11 +4868,9 @@ msgstr ""
 "drilldown_output_columnsに指定された条件に従って、対象となるカラム型が出力さ"
 "れます。"
 
-# 4b23cb34df5e432180619a6804086353
 msgid "``ドリルダウン結果n``"
 msgstr "``ドリルダウン結果n``"
 
-# cd39aa50cad74956a357af6c2ef5dfc3
 msgid ""
 "drilldown_output_columns, drilldown_offset, drilldown_limitによって指定された"
 "条件に従って各レコードの値が出力されます。"
@@ -6616,41 +4878,33 @@ msgstr ""
 "drilldown_output_columns, drilldown_offset, drilldown_limitによって指定された"
 "条件に従って各レコードの値が出力されます。"
 
-# ac43fa35b77e4ac7a322326a79c05bf0
 msgid "shutdown"
 msgstr "shutdown"
 
-# b87e78e4e03c4e5384c14e7af9257be7
 msgid "shutdown - サーバプロセスの停止"
 msgstr "shutdown - サーバプロセスの停止"
 
-# c7bf32ad96d942d4822680a53cfa5d9e
 msgid ""
 "Groonga組込コマンドの一つであるshutdownについて説明します。組込コマンドは、"
 "groonga実行ファイルの引数、標準入力、またはソケット経由でgroongaサーバにリク"
 "エストを送信することによって実行します。"
 msgstr ""
 
-# c121fc7750514099a26a8badfecc7301
 msgid "shutdownは、接続しているgroongaサーバプロセスを停止します。"
 msgstr "shutdownは、接続しているgroongaサーバプロセスを停止します。"
 
-# f4250157116440dc9fd15098644ad117
 msgid "status"
 msgstr "status"
 
-# 5f102a94bda644ceb429e8a000bcdf93
 msgid "status - groongaプロセスの状態表示"
 msgstr "status - groongaプロセスの状態表示"
 
-# 620288965b094f81bcf86cb8bbd7b071
 msgid ""
 "Groonga組込コマンドの一つであるstatusについて説明します。組込コマンドは、"
 "groonga実行ファイルの引数、標準入力、またはソケット経由でgroongaサーバにリク"
 "エストを送信することによって実行します。"
 msgstr ""
 
-# 0aedfe5cad0f45bcac524b28eef1f9ec
 msgid ""
 "statusコマンドは、groongaプロセスの状態を表示します。主にgroongaサーバプロセ"
 "スに対して使用することを想定しています。"
@@ -6658,11 +4912,9 @@ msgstr ""
 "statusコマンドは、groongaプロセスの状態を表示します。主にgroongaサーバプロセ"
 "スに対して使用することを想定しています。"
 
-# 7d3601a185b44246a578f3624f4477e8
 msgid "``alloc_count``"
 msgstr ""
 
-# ee7830e48a6147758742d864ceac0335
 msgid ""
 "groongaプロセスの内部でアロケートされ、まだ解放されてないメモリブロックの数を"
 "示します。Groongaをbuildする際に、configureオプションで --enable-exact-alloc-"
@@ -6670,27 +4922,21 @@ msgid ""
 "返す場合があります。"
 msgstr ""
 
-# cc23913e493940d6a9e3537b602e46db
 msgid "``starttime``"
 msgstr ""
 
-# ae5489c6783a4e28852f7534326b81cc
 msgid "groongaプロセスが起動した時刻のtvsec値を返します。"
 msgstr ""
 
-# cc23913e493940d6a9e3537b602e46db
 msgid "``uptime``"
 msgstr ""
 
-# ae5489c6783a4e28852f7534326b81cc
 msgid "groongaプロセスが起動してから経過した秒数を返します。"
 msgstr ""
 
-# a07eabb71f184ea0a02597671abd87f8
 msgid "suggest"
 msgstr "suggest"
 
-# a962e3538a0948cc9b7ad2c18c1af2e4
 msgid ""
 "The suggest feature specification isn't stable. The specification may be "
 "changed."
@@ -6698,25 +4944,19 @@ msgstr ""
 "The suggest feature specification isn't stable. The specification may be "
 "changed."
 
-# 99cd25247a634f328b81ab9ef9780fdb
-# d1d5e90602ec45879f5761f50191eea9
 msgid "NAME"
 msgstr "NAME"
 
-# f693a9d123564d76b32cea071db0de77
 msgid "suggest - returns completion, correction and/or suggestion for a query."
 msgstr ""
 "suggest - returns completion, correction and/or suggestion for a query."
 
-# 620e20144460409bbb6075c300bc1d5d
 msgid "SYNOPSIS"
 msgstr "SYNOPSIS"
 
-# fccd9ec98717470cac31309fb681a88b
 msgid "DESCRIPTION"
 msgstr "DESCRIPTION"
 
-# c7bd4767a1994284860f8c70e15c8447
 msgid ""
 "The suggest command returns completion, correction and/or suggestion for a "
 "specified query."
@@ -6724,70 +4964,52 @@ msgstr ""
 "The suggest command returns completion, correction and/or suggestion for a "
 "specified query."
 
-# 54c74982538e45da9d28cc74d2dd6534
 msgid ""
 "See :doc:`/suggest/introduction` about completion, correction and suggestion."
 msgstr ""
 "See :doc:`/suggest/introduction` about completion, correction and suggestion."
 
-# 95e3825522a245968068307f4d31eb27
-# 352faca4bd8f4c62a4dcece2f6b9d2c5
 msgid "OPTIONS"
 msgstr "OPTIONS"
 
-# ac2a1501346644ed9a19a1c3c5787737
 msgid "It specifies what types are returned by the suggest command."
 msgstr "It specifies what types are returned by the suggest command."
 
-# daa65c7f30bc4b81860a848a48bbe468
 msgid "Here are available types:"
 msgstr "Here are available types:"
 
-# 0790aaec7d5f4092b855fdb91c6035de
 msgid "The suggest command does completion."
 msgstr "The suggest command does completion."
 
-# 1bb85c12ead941fc9337f692e1d0a405
-# fc658bcbdc244395a315bc123ec1f1ff
-# 4614e1fa49044fae9d94d0979334d9f1
 msgid "``complete``"
 msgstr ""
 
-# 742cefaf9c2d47aba431261347ac10a2
 msgid "The suggest command does correction."
 msgstr "The suggest command does correction."
 
-# dcda7a4ec4c140c8a63e7c3d8608532b
 msgid "``correct``"
 msgstr ""
 
-# 4a9e3de4cc20467aa6e9ec6b286729ee
 msgid "The suggest command does suggestion."
 msgstr "The suggest command does suggestion."
 
-# a07eabb71f184ea0a02597671abd87f8
 msgid "``suggest``"
 msgstr ""
 
-# 0bb3da46768f4491ac7dfbf4df8939ce
 msgid ""
 "You can specify one or more types separated by ``|``. Here are examples:"
 msgstr ""
 "You can specify one or more types separated by ``|``. Here are examples:"
 
-# b7ba8260b87e4257991e24dffa5674d6
 msgid "It returns correction::"
 msgstr "It returns correction::"
 
-# 19c887ad509940b5a9130c4ec80fe95c
 msgid "It returns correction and suggestion::"
 msgstr "It returns correction and suggestion::"
 
-# b908416490024abbb5ed22d415aff032
 msgid "It returns complete, correction and suggestion::"
 msgstr "It returns complete, correction and suggestion::"
 
-# 4a569ca58d8a45ff8e7fdc395d849cc3
 msgid ""
 "It specifies table name that has ``item_${DATA_SET_NAME}`` format. For "
 "example, ``item_query`` is a table name if you created dataset by the "
@@ -6797,66 +5019,44 @@ msgstr ""
 "example, ``item_query`` is a table name if you created dataset by the "
 "following command::"
 
-# a994b4d076de40418a672e2ca9b4fb7a
 msgid ""
 "It specifies a column name that has furigana in Katakana in ``table`` table."
 msgstr ""
 "It specifies a column name that has furigana in Katakana in ``table`` table."
 
-# 1bb85c12ead941fc9337f692e1d0a405
-# fc658bcbdc244395a315bc123ec1f1ff
-# 4614e1fa49044fae9d94d0979334d9f1
 msgid "``column``"
 msgstr ""
 
-# a478975666fb47aea5805bab6163e4c0
 msgid "It specifies query for completion, correction and/or suggestion."
 msgstr "It specifies query for completion, correction and/or suggestion."
 
-# e65d717fd4e048b9aa59953679feeef6
 msgid "It specifies sort key."
 msgstr "It specifies sort key."
 
-# 0cacd705d93a416a9256f89d7c400bf3
-# 765089823e554cddb6430342fbaed9dc
-# 1365cceadec248568a0a2e1144097f53
-# 7f407b492e2d41c4afa41eb6c6a19899
-# 305f5daf96bf45faa82bce53336033aa
-# cd56ba7cb0a847bfb520beef3d194acc
-# b967cc20da584ec19070bfa5057a843e
-# debccf39b76c4c2f87fe38a6df241587
 msgid "Default:"
 msgstr ""
 
-# 09577c4d381241f58e6b5f7893450264
 msgid "``-_score``"
 msgstr "``-_score``"
 
-# 4cbd35ee174e45658e8becbb0e0a5ade
 msgid "It specifies output columns."
 msgstr "It specifies output columns."
 
-# 6c96b2b1b8d042328f4e160a16532c75
 msgid "``_key,_score``"
 msgstr "``_key,_score``"
 
-# a60f41b5061543ec8f0afeb20eb49b76
 msgid "It specifies returned records offset."
 msgstr "It specifies returned records offset."
 
-# a489e62528684840be62257dfaa9ee6b
 msgid "``0``"
 msgstr "``0``"
 
-# 062998fef3444f42a3e16bb386caaefa
 msgid "It specifies number of returned records."
 msgstr "It specifies number of returned records."
 
-# 24439f337c1d4c0f879e553e32f0e7dd
 msgid "``10``"
 msgstr "``10``"
 
-# 0a4181b6515c41d09ad7a7463aacfdea
 msgid ""
 "It specifies threshold for item frequency. Returned records must have "
 "``_score`` that is greater than or equal to ``frequency_threshold``."
@@ -6864,19 +5064,15 @@ msgstr ""
 "It specifies threshold for item frequency. Returned records must have "
 "``_score`` that is greater than or equal to ``frequency_threshold``."
 
-# 35906e35f9f84a7a95740dd67762c176
 msgid "``100``"
 msgstr "``100``"
 
-# a2f0c526d8a14116a31b9af58a5eaa2c
 msgid "``frequency_threshold``"
 msgstr ""
 
-# cadf44b5c39144559950d71652533ed9
 msgid "``conditional_probability_threshold``"
 msgstr "``conditional_probability_threshold``"
 
-# 19e02456d3304bafbf7d0050880ee1c5
 msgid ""
 "It specifies threshold for conditional probability. Conditional probability "
 "is used for learned data. It is probability of query submission when "
@@ -6888,88 +5084,67 @@ msgstr ""
 "``query`` is occurred. Returned records must have conditional probability "
 "that is greater than or equal to ``conditional_probability_threshold``."
 
-# 7ebea408676747299fcb949cd4c3d21a
 msgid "``0.2``"
 msgstr "``0.2``"
 
-# a1540dcaafe1475ca84cba70dd7cc87d
 msgid ""
 "It specifies whether optional prefix search is used or not in completion."
 msgstr ""
 "It specifies whether optional prefix search is used or not in completion."
 
-# 67216fa966e641ce9d9a15ba4780b122
 msgid "Prefix search is always used."
 msgstr "Prefix search is always used."
 
-# 0da809ee0de94f4c9d176627712966f9
 msgid "``yes``"
 msgstr ""
 
-# 1fe42777b2b9459f944a9012956eff9f
 msgid "Prefix search is never used."
 msgstr "Prefix search is never used."
 
-# fdbe879ecfc441f29b684d91697e91cf
 msgid "Prefix search is used only when other search can't find any records."
 msgstr "Prefix search is used only when other search can't find any records."
 
-# 28901975d2f646e0b7b7e735d9c1f1c5
-# 01e9b473207c46189d0a72ac77e358da
 msgid "``auto``"
 msgstr "``auto``"
 
-# e0ae3c9fea334fcab6683aaf02e0bc4a
 msgid "``prefix_search``"
 msgstr ""
 
-# 174254d32cf44c87ba58e30548ab350c
 msgid ""
 "It specifies whether optional similar search is used or not in correction."
 msgstr ""
 "It specifies whether optional similar search is used or not in correction."
 
-# 61b3db73548b4fa685bea67412dc2c98
 msgid "Similar search is always used."
 msgstr "Similar search is always used."
 
-# 951db73249244994aa58f3878b702e76
 msgid "Similar search is never used."
 msgstr "Similar search is never used."
 
-# 7b661f39b9c14e059cc35b1b18390748
 msgid "Similar search is used only when other search can't find any records."
 msgstr "Similar search is used only when other search can't find any records."
 
-# 57e6e3be4cf44dd293de630ccc26de36
 msgid "``similar_search``"
 msgstr ""
 
-# dd6a15d484e74bf7855f248920351414
 msgid "RETURN VALUE"
 msgstr "RETURN VALUE"
 
-# a3cc841967a34a779030f75ed949133e
 msgid "Here is a returned JSON format::"
 msgstr "Here is a returned JSON format::"
 
-# c197f176e27c41bbaf04e393d0ed3fa0
 msgid "A type specified by ``types``."
 msgstr "A type specified by ``types``."
 
-# d480bdf9f09c47eb8c093076288a601a
 msgid "``candidate``"
 msgstr "``candidate``"
 
-# c32d324456ae4d809581aaa2d7803ed1
 msgid "A candidate for completion, correction or suggestion."
 msgstr "A candidate for completion, correction or suggestion."
 
-# cce527c84dde42a9a95299b931c3d8b2
 msgid "``score of candidate``"
 msgstr "``score of candidate``"
 
-# f45202acce2f4fb49cc9edb11a6379fe
 msgid ""
 "A score of corresponding ``candidate``. It means that higher score candidate "
 "is more likely candidate for completion, correction or suggestion. Returned "
@@ -6979,165 +5154,129 @@ msgstr ""
 "is more likely candidate for completion, correction or suggestion. Returned "
 "candidates are sorted by ``score of candidate`` descending by default."
 
-# 5d09935ea7cc42d4905ba72d4c110bdd
-# 2a36f4e14ae54e259d030f335bf0a3a7
 msgid "EXAMPLE"
 msgstr "EXAMPLE"
 
-# 5d7586fd69bd4be8be2cc1d794c5c90c
 msgid "Here are learned data for completion."
 msgstr "Here are learned data for completion."
 
-# f0e93ddcf06b42589eb3fd94b7490cb2
 msgid "Here are learned data for correction."
 msgstr "Here are learned data for correction."
 
-# 98798e9294004afda83ef2300789e7a1
 msgid "Here are learned data for suggestion."
 msgstr "Here are learned data for suggestion."
 
-# 87da1110ead5414db1118501b13f02fa
 msgid "Here is a completion example."
 msgstr "Here is a completion example."
 
-# 8157a459f56d4c498d67d54f8b289b4d
 msgid "Here is a correction example."
 msgstr "Here is a correction example."
 
-# 30e6ba860727447597f488552e703537
 msgid "Here is a suggestion example."
 msgstr "Here is a suggestion example."
 
-# 924c7c33c4c744a3bf6473eb954b4be5
 msgid "Here is a mixed example."
 msgstr "Here is a mixed example."
 
-# 0f12567fa64a4e668fdfad6309d209ab
-# 025c1b32ea294a2d98e7d4899be17ccb
 msgid "SEE ALSO"
 msgstr "SEE ALSO"
 
-# 3b77ec6d9bb94fd8a22b8da8a1a29d37
 msgid ":doc:`/suggest`"
 msgstr ":doc:`/suggest`"
 
-# f5dabd7e4afb4818be9db8c5617f2021
 msgid ":doc:`/reference/executables/groonga-suggest-create-dataset`"
 msgstr ":doc:`/reference/executables/groonga-suggest-create-dataset`"
 
-# 1051548e611b4a4884fb7252930a4ed0
 msgid "``table_create``"
 msgstr ""
 
-# ff87ae17bba04ef4acfd101b931422ee
 msgid ""
 "``table_create`` creates a new table in the current database. You need to "
 "create one or more tables to store and search data."
 msgstr ""
 
-# d5f6f992242344ebbf3098ac356289b0
 msgid ""
 "``table_create`` has many parameters. The required parameter is only "
 "``name`` and otehrs are optional::"
 msgstr ""
 
-# ad345fe964b2498c89dde342ef9845f9
 msgid ""
 "``table_create`` command creates a new persistent table. See :doc:`/"
 "reference/tables` for table details."
 msgstr ""
 
-# 21622f376c6e4beab69b5b2ed531fb3b
 msgid "Create data store table"
 msgstr ""
 
-# cd6e9c4273444a1ab7babd4c218e0017
 msgid ""
 "You can use all table types for data store table. See :doc:`/reference/"
 "tables` for all table types."
 msgstr ""
 
-# a06b289041c44f43a666094099f6fd84
 msgid "Table type is specified as ``TABLE_${TYPE}`` to ``flags`` parameter."
 msgstr ""
 
-# e10bd1926dc54a64b068402bcf5ee89d
 msgid "Here is an example to create ``TABLE_NO_KEY`` table:"
 msgstr ""
 
-# f7b6fa109a144e78913270895c1ff68d
 msgid ""
 "The ``table_create`` command creates a table that is named ``Logs`` and is "
 "``TABLE_NO_KEY`` type."
 msgstr ""
 
-# 9a14216b260f4713be7b3165cadd80f5
 msgid ""
 "If your records aren't searched by key, ``TABLE_NO_KEY`` type table is "
 "suitable. Because ``TABLE_NO_KEY`` doesn't support key but it is fast and "
 "small table. Storing logs into Groonga database is the case."
 msgstr ""
 
-# c9e34d8b38094173a37109c66fd06cd3
 msgid ""
 "If your records are searched by key or referenced by one or more columns, "
 "``TABLE_NO_KEY`` type isn't suitable. Lexicon for fulltext search is the "
 "case."
 msgstr ""
 
-# 187febc98adb4546b7acd7ffcffa570c
 msgid "Create lexicon table"
 msgstr ""
 
-# 26d8ac44ada84f82aac03643ada55dc8
 msgid ""
 "You can use all table types except ``TABLE_NO_KEY`` for lexicon table. "
 "Lexicon table needs key support but ``TABLE_NO_KEY`` doesn't support key."
 msgstr ""
 
-# 6c681428814449babb52466eac4c18fd
 msgid "Here is an example to create ``TABLE_PAT_KEY`` table:"
 msgstr ""
 
-# b920c2ef80194817be7dc738d30e25a2
 msgid "The ``table_create`` command creates the following table:"
 msgstr ""
 
-# fa1521de4b0f4233a9dbd641d565c975
 msgid "The table is named ``Lexicon``."
 msgstr ""
 
-# 23e72122f4bf437e948512591a27b465
 msgid "The table is ``TABLE_PAT_KEY`` type table."
 msgstr ""
 
-# faee402dcb394657a0817ac320cacfd1
 msgid "The table's key is ``ShortText`` type."
 msgstr ""
 
-# 81cd05475e14404989289b1e3c8beb3e
 msgid ""
 "The table uses ``TokenBigram`` tokenizer to extract tokens from a normalized "
 "text."
 msgstr ""
 
-# cf33c7a9b5c248cc86f4c8a3077c65ff
 msgid "The table uses ``NormalizerAuto`` normalizer to normalize a text."
 msgstr ""
 
-# 347fa40b81e64f14b35c3e7c5f37c94f
 msgid ""
 "``TABLE_PAT_KEY`` is suitable table type for lexicon table. Lexicon table is "
 "used for fulltext search."
 msgstr ""
 
-# b6abbc535206479dab6fe58cb6455298
 msgid ""
 "In fulltext search, predictive search may be used for fuzzy search. "
 "Predictive search is supported by ``TABLE_PAT_KEY`` and ``TABLE_DAT_KEY``."
 msgstr ""
 
-# 8d66470e571f415b8418a9d2fe9f4133
 msgid ""
 "Lexicon table has many keys because a fulltext target text has many tokens. "
 "Table that has many keys should consider table size because large table "
@@ -7146,45 +5285,37 @@ msgid ""
 "``TABLE_PAT_KEY`` is less table size than ``TABLE_DAT_KEY``."
 msgstr ""
 
-# 5be2301efaa543d7b7e5a0a3fa940968
 msgid ""
 "Because of the above reasons, ``TABLE_PAT_KEY`` is suitable table type for "
 "lexicon table."
 msgstr ""
 
-# 7d412f9dffcb496692e22cddf746de27
 msgid "Create tag index table"
 msgstr ""
 
-# 18faf0a349c142bbbd7ef46f80ec0489
 msgid ""
 "You can use all table types except ``TABLE_NO_KEY`` for tag index table. Tag "
 "index table needs key support but ``TABLE_NO_KEY`` doesn't support key."
 msgstr ""
 
-# fa8e415fc2c94df5b1922b77382cc9ee
 msgid "Here is an example to create ``TABLE_HASH_KEY`` table:"
 msgstr ""
 
-# 7f4c584886344bbd98dfe9c577c0eefa
 msgid ""
 "The ``table_create`` command creates a table that is named ``Tags``, is "
 "``TABLE_HASH_KEY`` type and has ``ShortText`` type key."
 msgstr ""
 
-# 83ea8b78aee145048790a362239624af
 msgid ""
 "``TABLE_HASH_KEY`` or ``TABLE_DAT_KEY`` are suitable table types for tag "
 "index table."
 msgstr ""
 
-# dcfe3ebb7c6c46848ba4f9d783334bcf
 msgid ""
 "If you need only exact match tag search feature, ``TABLE_HASH_KEY`` is "
 "suitable. It is the common case."
 msgstr ""
 
-# 67a1926212724819b4ba897e9c7d5f59
 msgid ""
 "If you also need predictive tag search feature (for example, searching ``"
 "\"groonga\"`` by ``\"gr\"`` keyword.), ``TABLE_DAT_KEY`` is suitable. "
@@ -7192,210 +5323,159 @@ msgid ""
 "number of tags will not be large."
 msgstr ""
 
-# c86c823bf2d443459ab6261fd98c9ca8
 msgid "Create range index table"
 msgstr ""
 
-# 75f24e79e6bf4ccab81580ea622eab91
 msgid ""
 "You can use ``TABLE_PAT_KEY`` and ``TABLE_DAT_KEY`` table types for range "
 "index table. Range index table needs range search support but "
 "``TABLE_NO_KEY`` and ``TABLE_HASH_KEY`` don't support it."
 msgstr ""
 
-# 23e72122f4bf437e948512591a27b465
 msgid "Here is an example to create ``TABLE_DAT_KEY`` table:"
 msgstr ""
 
-# b920c2ef80194817be7dc738d30e25a2
 msgid ""
 "The ``table_create`` command creates a table that is named ``Ages``, is "
 "``TABLE_DAT_KEY`` type and has ``UInt32`` type key."
 msgstr ""
 
-# 4bddfaf82e60429b82e6ab2a8b213673
 msgid ""
 "``TABLE_PAT_KEY`` and ``TABLE_DAT_KEY`` are suitable table types for range "
 "index table."
 msgstr ""
 
-# a0de111db9ac4fe48215f8d6f7f9e4bb
 msgid ""
 "If you don't have many indexed items, ``TABLE_DAT_KEY`` is suitable. Index "
 "for age is the case in the above example. Index for age will have only 0-100 "
 "items because human doesn't live so long."
 msgstr ""
 
-# 34c5c8e0d07a49f0a3676cb87e8b02ea
 msgid ""
 "If you have many indexed items, ``TABLE_PAT_KEY`` is suitable. Because "
 "``TABLE_PAT_KEY`` is smaller than ``TABLE_DAT_KEY``."
 msgstr ""
 
-# d434e8c4ccac4f8593891e54f2a1a151
 msgid "It specifies a table name to be created. ``name`` must be specified."
 msgstr ""
 
-# daa65c7f30bc4b81860a848a48bbe468
 msgid "Here are available characters:"
 msgstr ""
 
-# dcae00a26e4441ad8acbbbdbbfe81687
 msgid "``0`` .. ``9`` (digit)"
 msgstr ""
 
-# 9c3b988451944dba947a6827a4ba73ea
 msgid "``a`` .. ``z`` (alphabet, lower case)"
 msgstr ""
 
-# 4c1484e857c143f1835d0f6a3d8d1f2c
 msgid "``A`` .. ``Z`` (alphabet, upper case)"
 msgstr ""
 
-# 9207e32594a848099c2ace181d1d3757
 msgid "``#`` (hash)"
 msgstr ""
 
-# 92a6105f425d4cdaa4d4a14c860ebadf
 msgid "``@`` (at mark)"
 msgstr ""
 
-# 480d62d22ca04d8e92181e87974eb534
 msgid "``-`` (hyphen)"
 msgstr ""
 
-# e34e476e492f42a7ba5b724d2af933a7
 msgid ""
 "``_`` (underscore) (NOTE: Underscore can't be used as the first character.)"
 msgstr ""
 
-# 1c00e586ef464c94b76945219d0265a5
 msgid ""
 "You need to create a name with one or more the above chracters. Note that "
 "you cannot use ``_`` as the first character such as ``_name``."
 msgstr ""
 
-# d434e8c4ccac4f8593891e54f2a1a151
 msgid "It specifies a table type and table customize options."
 msgstr ""
 
-# 80df0c929ec94d658daf4c835e8357e2
-# bff9206d7a0947f5a45db16ff5fee0c4
 msgid "Here are available flags:"
 msgstr ""
 
-# 679ca3073dd248478f45a390a25f3925
 msgid "description"
 msgstr ""
 
-# 7ce6ba435e3641b8a4d89e74b3fb249b
-# b5983df39f7d46faa0a27c4f9cbf4552
-# 3663a61eb37a45a7b35671577635e5f0
-# 0df8e7d57bb640bf9e19e7678fc45333
 msgid "flags"
 msgstr ""
 
-# 04c5d329596b4d15a49a02e8863b46cb
 msgid "Array table."
 msgstr ""
 
-# 39a4f852879747498982961405129cdb
-# 8483e52f429144ed96f58a107b2d28fc
 msgid "``TABLE_NO_KEY``"
 msgstr ""
 
-# 8a42ec76891247e0a4325754f2e00603
 msgid "Hash table."
 msgstr ""
 
-# 66ab5c8fd6b94d838fe45ade834d9db5
 msgid "``TABLE_HASH_HEY``"
 msgstr ""
 
-# da42830f90354e37b15038739d807d6b
 msgid "Patricia trie."
 msgstr ""
 
-# 379004876f1647b19cbfc5851af30c16
-# ba6489e424ce457eb02b4dfb0ac6f169
 msgid "``TABLE_PAT_KEY``"
 msgstr ""
 
-# a849e07a859941f7a56934e4a8d867b1
 msgid "Double Array trie."
 msgstr ""
 
-# 59aae8d022be41918167427e6d532e25
-# b9af718845494414b58b04f82177bdc9
 msgid "``TABLE_DAT_KEY``"
 msgstr ""
 
-# e416dedc97a4450d9eae12dde877c514
 msgid "Enable Semi Infinite String. Require ``TABLE_PAT_KEY``."
 msgstr ""
 
-# 30a80283db9548fda87cb4f7f54db0bf
 msgid "``KEY_WITH_SIS``"
 msgstr ""
 
-# ee64079f41d14e0086862c3e7ea3b098
 msgid ""
 "Since Groonga 2.1.0 ``KEY_NORMALIZE`` flag is deprecated. Use ``normalizer`` "
 "option with ``NormalizerAuto`` instead."
 msgstr ""
 
-# faff875f1c964337b6bf1aae7309d660
 msgid ""
 "You must specify one of ``TABLE_${TYPE}`` flags. You cannot specify two or "
 "more ``TABLE_${TYPE}`` flags. For example, ``TABLE_NO_KEY|TABLE_HASH_KEY`` "
 "is invalid."
 msgstr ""
 
-# 9c72735cc9d2409f9291fb350b22f616
 msgid ""
 "You can combine flags with ``|`` (vertical bar) such as ``TABLE_PAT_KEY|"
 "KEY_WITH_SIS``."
 msgstr ""
 
-# 6bfed24fa3ff45cbbfb8b3585c9855b5
 msgid "See :doc:`/reference/tables` for difference between table types."
 msgstr ""
 
-# fa1521de4b0f4233a9dbd641d565c975
 msgid "The default flags are ``TABLE_HASH_KEY``."
 msgstr ""
 
-# 07e3b8a525b14114afbef9fb03ebaefe
 msgid "``key_type``"
 msgstr "``key_type``"
 
-# e65d717fd4e048b9aa59953679feeef6
 msgid "It specifies key type."
 msgstr ""
 
-# 241113396d6940fda18b3452f933054d
 msgid ""
 "If you specify ``TABLE_HASH_KEY``, ``TABLE_PAT_KEY`` or ``TABLE_DAT_KEY`` as "
 "``flags`` parameter, you need to specify ``key_type`` option."
 msgstr ""
 
-# 6aa7b4b0af4e41ed8869757682f89526
 msgid "See :doc:`/reference/types` for all types."
 msgstr ""
 
-# 25a88a3a400a438c80c4332cf04b43e0
 msgid "The default value is none."
 msgstr ""
 
-# ff31ad7d5b704277ae7b846a84df7328
 msgid "``value_type``"
 msgstr "``value_type``"
 
-# e65d717fd4e048b9aa59953679feeef6
 msgid "It specifies value type."
 msgstr ""
 
-# 191d4074b39c4237b9d699a01b1d594f
 msgid ""
 "You can use value when you specify ``TABLE_NO_KEY``, ``TABLE_HASH_KEY`` or "
 "``TABLE_PAT_KEY`` as ``flags`` parameter. Value type must be a fixed size "
@@ -7403,102 +5483,77 @@ msgid ""
 "Use columns instead of value."
 msgstr ""
 
-# 19a375eb54c84047bec3b8ffa93cccb1
 msgid "``default_tokenizer``"
 msgstr "``default_tokenizer``"
 
-# c2b1726a55f84a43a3a2d7896a015ede
 msgid ""
 "It specifies the default tokenizer that is used on searching and data "
 "loading."
 msgstr ""
 
-# f955800d58084f5da018d1999daa8f6a
 msgid ""
 "You cannot use ``default_tokenizer`` with ``TABLE_NO_KEY`` because "
 "``TABLE_NO_KEY`` cannot be used for index."
 msgstr ""
 
-# 6d554271222b42fb9a5bc9b842ef25d1
 msgid ""
 "You must specify ``default_tokenizer`` for a table that is used for fulltext "
 "search index."
 msgstr ""
 
-# 6bfed24fa3ff45cbbfb8b3585c9855b5
 msgid "See :doc:`/reference/tokenizers` for all tokenizers"
 msgstr ""
 
-# cf33c7a9b5c248cc86f4c8a3077c65ff
 msgid "It specifies a normalizer that is used to normalize key."
 msgstr ""
 
-# e565511ab5d94b28b51e8a80f6e782e0
 msgid ""
 "You cannot use ``normalizer`` with ``TABLE_NO_KEY`` because ``TABLE_NO_KEY`` "
 "doesn't support key."
 msgstr ""
 
-# 6bfed24fa3ff45cbbfb8b3585c9855b5
 msgid "See :doc:`/reference/normalizers` for all normalizsers."
 msgstr ""
 
-# e0958df7fe214c209ee8dd27d05dc1a6
 msgid "``table_create`` returns ``true`` as body on success such as::"
 msgstr ""
 
-# 1904e24a18514270b43a075bd8532b45
 msgid "If ``table_create`` fails, error details are in ``HEADER``."
 msgstr ""
 
-# 257a8b1e0a424cf3807162e2534d2837
-# 73ec2c3dc21241d5b0b795816605eeb2
 msgid ":doc:`/reference/tables`"
 msgstr ""
 
-# 257a8b1e0a424cf3807162e2534d2837
-# 73ec2c3dc21241d5b0b795816605eeb2
 msgid ":doc:`/reference/commands/column_create`"
 msgstr ""
 
-# 257a8b1e0a424cf3807162e2534d2837
-# 73ec2c3dc21241d5b0b795816605eeb2
 msgid ":doc:`/reference/tokenizers`"
 msgstr ""
 
-# 257a8b1e0a424cf3807162e2534d2837
-# 73ec2c3dc21241d5b0b795816605eeb2
 msgid ":doc:`/reference/command/output_format`"
 msgstr ""
 
-# 6586677da16f411e92eb429eda5c9dcd
 msgid "table_list"
 msgstr "table_list"
 
-# fd35ba3b0b334d418128a763ce9d2be9
 msgid "table_list - DBに定義されているテーブルをリスト表示"
 msgstr "table_list - DBに定義されているテーブルをリスト表示"
 
-# 61ea87d7144e473e9709701caf220d8e
 msgid ""
 "Groonga組込コマンドの一つであるtable_listについて説明します。組込コマンドは、"
 "groonga実行ファイルの引数、標準入力、またはソケット経由でgroongaサーバにリク"
 "エストを送信することによって実行します。"
 msgstr ""
 
-# 8993b5fecec144e19e1d5c70c248b04c
 msgid "table_listは、DBに定義されているテーブルのリストを表示します。"
 msgstr "table_listは、DBに定義されているテーブルのリストを表示します。"
 
-# f1af1551aead4ea8a6f8150148d9e978
 msgid "テーブル名一覧が以下の形式で返却されます。::"
 msgstr "テーブル名一覧が以下の形式で返却されます。::"
 
-# 4ff1a70149b64f0eaf5f2ab2217eac9b
 msgid "``テーブル情報名n``"
 msgstr "``テーブル情報名n``"
 
-# 1fd04fa13bfe4fb1b8172b260a3d9d44
 msgid ""
 "``テーブル情報n`` には複数の情報が含まれますが、そこに入る情報がどんな内容か"
 "を示す名前を出力します。 情報名は以下の通りです。"
@@ -7506,43 +5561,33 @@ msgstr ""
 "``テーブル情報n`` には複数の情報が含まれますが、そこに入る情報がどんな内容か"
 "を示す名前を出力します。 情報名は以下の通りです。"
 
-# cf1b4ef1ea974fd1bcbc463da45034eb
 msgid "テーブルオブジェクトに割り当てられたID"
 msgstr "テーブルオブジェクトに割り当てられたID"
 
-# 9941fdb820864c91b980c54d0a48ffdd
 msgid "テーブル名"
 msgstr "テーブル名"
 
-# 6c9798f031f64f3ab89d62a352011c34
 msgid "テーブルのレコードを格納するファイル名"
 msgstr "テーブルのレコードを格納するファイル名"
 
-# 061b8b93b3e64157996bbae2e6e5dfb6
 msgid "テーブルのflags属性"
 msgstr "テーブルのflags属性"
 
-# 3b101cdf7b24467dbdf1a054586acd83
 msgid "主キー値の属する型"
 msgstr "主キー値の属する型"
 
-# 47a8c8e84ebf4b6eb84be38d286667bc
 msgid "valueが属する型"
 msgstr "valueが属する型"
 
-# b413ec077a73460ea9462326f7701556
 msgid "``テーブル情報型n``"
 msgstr "``テーブル情報型n``"
 
-# 21cc068a28f44701848921b25ad5875e
 msgid "テーブル情報の型を出力します。"
 msgstr "テーブル情報の型を出力します。"
 
-# 1d69979dbea94499857c92cf5deb5e66
 msgid "``テーブル情報n``"
 msgstr "``テーブル情報n``"
 
-# d2da33fcb03a4f60aa7593dc9690372b
 msgid ""
 "``テーブル情報名n`` で示された情報の配列を出力します。 情報の順序は ``テーブ"
 "ル情報名n`` の順序と同じです。"
@@ -7550,15 +5595,12 @@ msgstr ""
 "``テーブル情報名n`` で示された情報の配列を出力します。 情報の順序は ``テーブ"
 "ル情報名n`` の順序と同じです。"
 
-# 5ca042d66a114237868b152fe102048e
 msgid "table_remove"
 msgstr "table_remove"
 
-# 20c1b2103bec480693dbad7317867a94
 msgid "table_remove - テーブルの削除"
 msgstr "table_remove - テーブルの削除"
 
-# 8077a2ebaa434ee093b4c2703cf5d632
 msgid ""
 "groonga組込コマンドの一つであるtable_removeについて説明します。組込コマンド"
 "は、groonga実行ファイルの引数、標準入力、またはソケット経由でgroongaサーバに"
@@ -7568,7 +5610,6 @@ msgstr ""
 "は、groonga実行ファイルの引数、標準入力、またはソケット経由でgroongaサーバに"
 "リクエストを送信することによって実行します。"
 
-# a576c3bb40e747a99011c57c0564560e
 msgid ""
 "table_removeはテーブルと定義されているカラムを削除します。カラムに付随するイ"
 "ンデックスも再帰的に削除されます。"
@@ -7576,42 +5617,22 @@ msgstr ""
 "table_removeはテーブルと定義されているカラムを削除します。カラムに付随するイ"
 "ンデックスも再帰的に削除されます。"
 
-# 19a375eb54c84047bec3b8ffa93cccb1
 msgid "``tokenize``"
 msgstr ""
 
-# 1a5d46d190ee412289b40fe5d18bbdf3
 msgid ""
 "``tokenize`` command tokenizes text by the specified tokenizer. It is useful "
 "to debug tokenization."
 msgstr ""
 
-# 5c200e0b57234da394c25bdae15bbf26
 msgid ""
 "``tokenize`` command has required parameters and optional parameters. "
 "``tokenizer`` and ``string`` are required parameters. Others are optional::"
 msgstr ""
 
-# bf1e94eb0b5a4d81b818a2a97c5a39ad
-# bf1e94eb0b5a4d81b818a2a97c5a39ad
-# bf1e94eb0b5a4d81b818a2a97c5a39ad
-# c4ee6bd61d594fc8ac99ddceb034dcbd
-# 3799cd7cb7b84a4c923af81156c9d3d3
-# bf1e94eb0b5a4d81b818a2a97c5a39ad
-# 491ce5c048964c97a3901465a634f285
-# 3799cd7cb7b84a4c923af81156c9d3d3
-# 491ce5c048964c97a3901465a634f285
-# e13a2895bf5b45d694a5ccd36dbfd75a
-# 491ce5c048964c97a3901465a634f285
-# c4ee6bd61d594fc8ac99ddceb034dcbd
-# 4deda05fde8248d9b4f92a8a8bcea9da
-# c4ee6bd61d594fc8ac99ddceb034dcbd
-# e13a2895bf5b45d694a5ccd36dbfd75a
-# bf1e94eb0b5a4d81b818a2a97c5a39ad
 msgid "Here is a simple example."
 msgstr "Here is a simple example."
 
-# ac706954e25e499da1cd728517270201
 msgid ""
 "It has only required parameters. ``tokenizer`` is ``TokenBigram`` and "
 "``string`` is ``\"Fulltext Search\"``. It returns tokens that is generated "
@@ -7619,34 +5640,26 @@ msgid ""
 "doesn't normalize ``\"Fulltext Search\"``."
 msgstr ""
 
-# f18f26cee4134faa9072c6b02abe4cb1
-# e658f1960e3e490fad2505f2477dd390
 msgid "Required parameters"
 msgstr ""
 
-# 8294898fb52244968e09f77b9ccf5c7d
 msgid "There are required parameters, ``tokenizer`` and ``string``."
 msgstr ""
 
-# 19a375eb54c84047bec3b8ffa93cccb1
 msgid "``tokenizer``"
 msgstr ""
 
-# b84e5c5ca1a346648843c6bc84c7fa18
 msgid ""
 "It specifies the tokenizer name. ``tokenize`` command uses the tokenizer "
 "that is named ``tokenizer``."
 msgstr ""
 
-# 302f21aa293641d195a24eb6074efbc6
 msgid "See :doc:`/reference/tokenizers` about built-in tokenizers."
 msgstr ""
 
-# 8b580c9b97454c649d29c5432f7f1b49
 msgid "Here is an example to use built-in ``TokenTrigram`` tokenizer."
 msgstr ""
 
-# d46366c68ba94e669753b04650d3643d
 msgid ""
 "If you want to use other tokenizers, you need to register additional "
 "tokenizer plugin by :doc:`register` command. For example, you can use `KyTea "
@@ -7654,100 +5667,63 @@ msgid ""
 "``tokenizers/kytea``."
 msgstr ""
 
-# 0361bcc2238d49aaa2f7a6b5538a7162
 msgid "It specifies any string which you want to tokenize."
 msgstr ""
 
-# fb21320ce9c149e4897950d331806c2f
 msgid ""
 "It specifies the normalizer name. ``tokenize`` command uses the normalizer "
 "that is named ``normalizer``. Normalizer is important for N-gram family "
 "tokenizers such as ``TokenBigram``."
 msgstr ""
 
-# 0a8a4a1a9de643cc8274eea61072847b
 msgid ""
 "Normalizer detects character type for each character while normalizing. N-"
 "gram family tokenizers use character types while tokenizing."
 msgstr ""
 
-# eec639617eb34b25be3ed87129fe3559
-# 6b942af61639452e9f8b65ec1f35f0d1
 msgid "Here is an example that doesn't use normalizer."
 msgstr ""
 
-# 4c832b1ca41147c889f370e200e70b6f
 msgid ""
 "All alphabets are tokenized by two characters. For example, ``Fu`` is a "
 "token."
 msgstr ""
 
-# 2c1116c047a249269a2270188225710e
-# 2c1116c047a249269a2270188225710e
-# 2c1116c047a249269a2270188225710e
-# 2c1116c047a249269a2270188225710e
-# 2c1116c047a249269a2270188225710e
-# 2c1116c047a249269a2270188225710e
-# 2c1116c047a249269a2270188225710e
-# 2c1116c047a249269a2270188225710e
-# 2c1116c047a249269a2270188225710e
-# 2c1116c047a249269a2270188225710e
-# b8b481fc700a4070979cf73e56bd9031
-# efa9ee514a0048a6a51f0ccea9327f05
-# 2c1116c047a249269a2270188225710e
-# 2c1116c047a249269a2270188225710e
-# 2c1116c047a249269a2270188225710e
-# e13a2895bf5b45d694a5ccd36dbfd75a
-# e13a2895bf5b45d694a5ccd36dbfd75a
-# e13a2895bf5b45d694a5ccd36dbfd75a
-# e13a2895bf5b45d694a5ccd36dbfd75a
-# e13a2895bf5b45d694a5ccd36dbfd75a
-# e13a2895bf5b45d694a5ccd36dbfd75a
-# e13a2895bf5b45d694a5ccd36dbfd75a
-# e13a2895bf5b45d694a5ccd36dbfd75a
 msgid "Here is an example that uses normalizer."
 msgstr ""
 
-# 490e6c22a4e345109b235220352443a9
 msgid ""
 "Continuous alphabets are tokenized as one token. For example, ``fulltext`` "
 "is a token."
 msgstr ""
 
-# d55d8149191a4628ae3fe35b5f3cbf31
 msgid ""
 "If you want to tokenize by two characters with noramlizer, use "
 "``TokenBigramSplitSymbolAlpha``."
 msgstr ""
 
-# 6d8cf9bb52404044a2f6531faa0b0ab6
 msgid ""
 "All alphabets are tokenized by two characters. And they are normalized to "
 "lower case characters. For example, ``fu`` is a token."
 msgstr ""
 
-# 5978252ab8f44406a957a0957b9c3f12
 msgid ""
 "It specifies a tokenization customize options. You can specify multiple "
 "options separated by \"``|``\". For example, ``NONE|"
 "ENABLE_TOKENIZED_DELIMITER``."
 msgstr ""
 
-# 1b315a2d3a73443a8b7a6c8d2d8a5afc
 msgid "``ENABLE_TOKENIZED_DELIMITER``"
 msgstr ""
 
-# c6f6d696a6554dbca2fd080774a2dd0c
 msgid ""
 "Enables tokenized delimiter. See :doc:`/reference/tokenizers` about "
 "tokenized delimiter details."
 msgstr ""
 
-# 6d76f1067e5c4ec485d63dae0d8d0fbb
 msgid "Here is an example that uses ``ENABLE_TOKENIZED_DELIMITER``."
 msgstr ""
 
-# aadf5e7713bf4241831fcd0f73ca1792
 msgid ""
 "``TokenDelimit`` tokenizer is one of tokenized delimiter supported "
 "tokenizer. ``ENABLE_TOKENIZED_DELIMITER`` enables tokenized delimiter. "
@@ -7759,104 +5735,65 @@ msgid ""
 "tokenizes by tokenized delimiter."
 msgstr ""
 
-# c875a0225f1340c096d24fbff448104d
 msgid ""
 "``tokenize`` command returns tokenized tokens. Each token has some "
 "attributes except token itself. The attributes will be increased in the "
 "feature::"
 msgstr ""
 
-# 1bb85c12ead941fc9337f692e1d0a405
-# fc658bcbdc244395a315bc123ec1f1ff
-# 4614e1fa49044fae9d94d0979334d9f1
 msgid "``tokens``"
 msgstr ""
 
-# 0fe856bbcbe445a8b9ab2853921e61ba
 msgid ""
 "``tokens`` is an array of token. Token is an object that has the following "
 "attributes."
 msgstr ""
 
-# e61662d3ce254a80b8f07959d48c7b17
-# 78fe8de5167543f9ad1a5a7993c6fa35
-# 1e97e4d4081f4f7aaa0d4c76ee4a67b9
 msgid "``value``"
 msgstr ""
 
-# 380d55e2098f4466bc73bd08c1ea4256
 msgid "Token itself."
 msgstr ""
 
-# 741d325b03e9439ea8f02aeca40f60af
-# 9f627ffeb389406ca3063796b51a9de7
 msgid "``position``"
 msgstr ""
 
-# 59561c159f5b4709adb0aa9149b39b26
 msgid "The N-th token."
 msgstr ""
 
-# d480bdf9f09c47eb8c093076288a601a
 msgid "``truncate``"
 msgstr ""
 
-# c86967810f834f33aca4a1619f2108ad
 msgid "``truncate`` command deletes all records from specified table."
 msgstr ""
 
-# 2ba7134945c64d3e9383adf137839a0a
 msgid "``truncate`` command takes only one parameter."
 msgstr ""
 
-# 1eb1184cdea4464ca9cc8a73c9deecf7
 msgid "The required parameter is only ``table``::"
 msgstr ""
 
-# bf1e94eb0b5a4d81b818a2a97c5a39ad
-# bf1e94eb0b5a4d81b818a2a97c5a39ad
-# bf1e94eb0b5a4d81b818a2a97c5a39ad
-# c4ee6bd61d594fc8ac99ddceb034dcbd
-# 3799cd7cb7b84a4c923af81156c9d3d3
-# bf1e94eb0b5a4d81b818a2a97c5a39ad
-# 491ce5c048964c97a3901465a634f285
-# 3799cd7cb7b84a4c923af81156c9d3d3
-# 491ce5c048964c97a3901465a634f285
-# e13a2895bf5b45d694a5ccd36dbfd75a
-# 491ce5c048964c97a3901465a634f285
-# c4ee6bd61d594fc8ac99ddceb034dcbd
-# 4deda05fde8248d9b4f92a8a8bcea9da
-# c4ee6bd61d594fc8ac99ddceb034dcbd
-# e13a2895bf5b45d694a5ccd36dbfd75a
-# bf1e94eb0b5a4d81b818a2a97c5a39ad
 msgid "Here is a simple example of ``truncate`` command."
 msgstr ""
 
-# aa6c5a1abc844a978f87b2dd33b26dc6
 msgid "This section describes parameters of ``truncate``."
 msgstr ""
 
-# 1eb1184cdea4464ca9cc8a73c9deecf7
 msgid "There is required parameter, ``table_name``."
 msgstr ""
 
-# 77b05c0b45004f28af72aff2c9e52c03
 msgid "実行ファイル"
 msgstr "実行ファイル"
 
-# 248783b7142c4b1c93baa74bbd0a3c5d
 msgid "groongaパッケージが提供する実行ファイルについて説明します。"
 msgstr "groongaパッケージが提供する実行ファイルについて説明します。"
 
-# 004f4a6a8ead42dd882f615a8b5b62f6
 msgid "grnslap"
 msgstr "grnslap"
 
-# fe68ab050123490095118c78c7eff247
 msgid "grnslap - groongaプロセスの通信層のパフォーマンスをチェックするツール"
 msgstr "grnslap - groongaプロセスの通信層のパフォーマンスをチェックするツール"
 
-# c88d45e2800e4235b888c4e97b7b0325
 msgid ""
 "grnslapは、groongaプロセスに対してリクエストを多重に行い、パフォーマンスを"
 "チェックするためのツールです。"
@@ -7864,13 +5801,11 @@ msgstr ""
 "grnslapは、groongaプロセスに対してリクエストを多重に行い、パフォーマンスを"
 "チェックするためのツールです。"
 
-# 655301bd2db044dcb8c1547035346ea8
 msgid ""
 "Groonga独自プロトコルであるGQTPと、httpの両プロトコルでリクエストを行うことが"
 "できます。また、リクエストの多重度を指定することができます。"
 msgstr ""
 
-# 3e48178dab8b405f86e7427320c56b31
 msgid ""
 "クエリの内容を標準入力から与えることができます。実稼動環境でのクエリパタンに"
 "近いクエリを標準入力に与えることによって、実稼動環境に近い状態での検証を行う"
@@ -7880,25 +5815,18 @@ msgstr ""
 "近いクエリを標準入力に与えることによって、実稼動環境に近い状態での検証を行う"
 "ことができます。"
 
-# b7f3f011fcae4f07856e355f877981d7
 msgid "現在は、make installしてもインストールは行われない。"
 msgstr "現在は、make installしてもインストールは行われない。"
 
-# 819c88641fbb4c0aa303ac134e8d0e9d
-# a5cdef0ed3494dd3b3e073b1be5d7c63
-# 7066c117754948d3a6cd38639fa90370
 msgid "オプション"
 msgstr "オプション"
 
-# d38a23db1ad14ed1a63068e06ea71130
 msgid "リクエストのプロトコルを指定します。"
 msgstr "リクエストのプロトコルを指定します。"
 
-# 112f4cf5ce4c4cf48cbb5403c5917320
 msgid "`http`"
 msgstr "`http`"
 
-# b9f3dc280183478395599447680942d4
 msgid ""
 "httpでリクエストします。対象のhttpのパス群(GETパラメータを含む)をLF区切り形式"
 "で標準入力に与えると、それらのパスに順次アクセスします。"
@@ -7906,11 +5834,9 @@ msgstr ""
 "httpでリクエストします。対象のhttpのパス群(GETパラメータを含む)をLF区切り形式"
 "で標準入力に与えると、それらのパスに順次アクセスします。"
 
-# 2c424818849c46a7913a7911dfa52aed
 msgid "`gqtp`"
 msgstr "`gqtp`"
 
-# 3cae613a0c024018a52995cf7ba3e7e1
 msgid ""
 "gqtpでリクエストします。gqtpのリクエストをLF区切り形式で標準入力に与えると、"
 "それらのリクエストを順次行います。"
@@ -7918,11 +5844,9 @@ msgstr ""
 "gqtpでリクエストします。gqtpのリクエストをLF区切り形式で標準入力に与えると、"
 "それらのリクエストを順次行います。"
 
-# bfb31b7f38e445419447c1591eac5af6
 msgid "リクエストの多重度を指定します。初期値は10です。"
 msgstr "リクエストの多重度を指定します。初期値は10です。"
 
-# 6d2f1d5118b24b348166842e36ee4e42
 msgid ""
 "接続先のホスト名とポート番号をを指定します(デフォルト値は'localhost:10041')。"
 "ポート番号を指定しない場合には、10041が指定されたものとします。"
@@ -7930,28 +5854,21 @@ msgstr ""
 "接続先のホスト名とポート番号をを指定します(デフォルト値は'localhost:10041')。"
 "ポート番号を指定しない場合には、10041が指定されたものとします。"
 
-# 388cac0cca37446b9b64d3ede94fbf04
-# 5dae18633ea84e7897eb6c885824171c
 msgid "サンプル"
 msgstr "サンプル"
 
-# d67944e6d76748b599460f7dfb186b5d
 msgid "http://localhost:10041/d/status に、多重度100でリクエストを行う。"
 msgstr "http://localhost:10041/d/status に、多重度100でリクエストを行う。"
 
-# 0ccb7725dfad4f5883be15ee76db6135
 msgid "groonga-benchmark"
 msgstr ""
 
-# 97ff348e442e489a9c57bb9f605c9bf5
 msgid "groonga-benchmark - groongaテストプログラム"
 msgstr ""
 
-# 5425f7940d0d4cceaa6050e7b1a4506b
 msgid "groonga-benchmarkは、groonga汎用ベンチマークツールです。"
 msgstr ""
 
-# ac1d017f6d084a8abfb4a56a7d8e8dfd
 msgid ""
 "groongaを単独のプロセスとして利用する場合はもちろん、サーバプログラムとして利"
 "用する場合の動作確認や実行速度測定が可能です。"
@@ -7959,7 +5876,6 @@ msgstr ""
 "groongaを単独のプロセスとして利用する場合はもちろん、サーバプログラムとして利"
 "用する場合の動作確認や実行速度測定が可能です。"
 
-# 37a40753c7c74d7489afdf4a45508fe1
 msgid ""
 "groonga-benchmark用のデータファイルは自分で作成することも既存のものを利用する"
 "こともできます。既存のデータファイルは、ftp.groonga.orgから必要に応じダウン"
@@ -7968,7 +5884,6 @@ msgid ""
 "きます。"
 msgstr ""
 
-# 23e9a01f4c66451cabdc4eaf0731ce4f
 msgid ""
 "現在は、Linux 及びWindows上で動作します。make installしてもインストールは行わ"
 "れません。"
@@ -7976,7 +5891,6 @@ msgstr ""
 "現在は、Linux 及びWindows上で動作します。make installしてもインストールは行わ"
 "れません。"
 
-# 2146692891f6450aa11d8cc9ad85f7e7
 msgid ""
 "接続するgroongaサーバを、ipアドレスまたはホスト名で指定します。指定先に"
 "groongaサーバが立ち上がっていない場合、接続不能となることに注意してください。"
@@ -7984,7 +5898,6 @@ msgid ""
 "サーバを起動して接続します。"
 msgstr ""
 
-# 77d4401166a24adfbc936928f29fc743
 msgid ""
 "自動的に起動するgroongaサーバ、または明示的に指定した接続先のgroonga サーバが"
 "利用するポート番号を指定します。接続先のgroongaサーバが利用しているポートと、"
@@ -7996,11 +5909,9 @@ msgstr ""
 "このオプションで指定したポート番号が異なる場合、接続不能となることに注意して"
 "ください。"
 
-# 2b2274a03644417d9b018b3311fc87a7
 msgid "ftp.groonga.org に用意されているスクリプトファイルを表示します。"
 msgstr "ftp.groonga.org に用意されているスクリプトファイルを表示します。"
 
-# 3dce0e59358a4736bb00e09cc2edc2c4
 msgid ""
 "ftp.groonga.orgとFTP通信を行い、scriptファイルの同期やログファイルの送信を行"
 "います。"
@@ -8008,14 +5919,12 @@ msgstr ""
 "ftp.groonga.orgとFTP通信を行い、scriptファイルの同期やログファイルの送信を行"
 "います。"
 
-# b1431cec3d804d36867ab3d1140b56b2
 msgid ""
 "デフォルトでは、groonga-benchmark終了後のログファイルの出力先ははカレントディ"
 "レクトリです。このオプションを利用すると、任意のディレクトリに出力先を変更す"
 "ることができます。"
 msgstr ""
 
-# acd3a548e78a41c2847f6d19fdc6a093
 msgid ""
 "groongaコマンドのパスを指定します。デフォルトでは、PATHの中からgroongaコマン"
 "ドを探します。"
@@ -8023,19 +5932,16 @@ msgstr ""
 "groongaコマンドのパスを指定します。デフォルトでは、PATHの中からgroongaコマン"
 "ドを探します。"
 
-# 5dac5fabbc9049488a240d829cb1a0fd
 msgid ""
 "groongaコマンドが使うプロトコルとして `gqtp` または `http` を指定します。"
 msgstr ""
 "groongaコマンドが使うプロトコルとして `gqtp` または `http` を指定します。"
 
-# 111234efca0e4533b54778153adc0f17
 msgid ""
 "groonga-benchmarkの動作方法(以下、groonga-benchmark命令と呼びます)を記述した"
 "テキストファイルです。拡張子は.scrです。"
 msgstr ""
 
-# 073a24c98d364f12bbba1065962b5f02
 msgid ""
 "groonga-benchmarkが利用するgroonga データベースです。指定されたデータベースが"
 "存在しない場合、groonga-benchmarkが新規に作成します。またgroonga サーバを自動"
@@ -8044,19 +5950,15 @@ msgid ""
 "使用中のデータベースになることに注意してください。"
 msgstr ""
 
-# 22efde45bab146168bcafe72254f56e6
 msgid "使い方"
 msgstr "使い方"
 
-# 5f15d0d0aa8d457a9c9cdd8a6cbe98bc
 msgid "まず、シェル上(Windowsならコマンドプロンプト上)で::"
 msgstr "まず、シェル上(Windowsならコマンドプロンプト上)で::"
 
-# ea58a36e892d43f1aab42ab4cc5306c1
 msgid "とタイプしてください。もしgroonga-benchmarkが正常に動作すれば、::"
 msgstr ""
 
-# 1d20b531f9f24048886e3d5b67b6160a
 msgid ""
 "というファイルが作成されるはずです。作成されない場合、このドキュメントの「ト"
 "ラブルシューティング」の章を参照してください。"
@@ -8064,11 +5966,9 @@ msgstr ""
 "というファイルが作成されるはずです。作成されない場合、このドキュメントの「ト"
 "ラブルシューティング」の章を参照してください。"
 
-# b43ad192b80245d2ba8c7f6998aaa860
 msgid "スクリプトファイル"
 msgstr "スクリプトファイル"
 
-# 65bb4c17744e4257bd06f3e2454008cc
 msgid ""
 "スクリプトファイルは、groonga-benchmark命令を記述したテキストファイルです。 "
 "\";\"セミコロンを利用して、一行に複数のgroonga-benchmark命令を記述することが"
@@ -8076,19 +5976,15 @@ msgid ""
 "ます。 \"#\"で始まる行はコメントとして扱われます。"
 msgstr ""
 
-# 9af2d5f89cd24caeae7d7e27b1aa94a4
 msgid "groonga-benchmark命令"
 msgstr ""
 
-# e3f4537d7ee647acab0d92f9477bf629
 msgid "現在サポートされているgroonga-benchmark命令は以下の8つです。"
 msgstr ""
 
-# f79d2e56d963495cafd7eb7c51b53cc5
 msgid "do_local コマンドファイル [スレッド数] [繰り返し数]"
 msgstr "do_local コマンドファイル [スレッド数] [繰り返し数]"
 
-# 509cc40830fc4a958b42f0642423bef2
 msgid ""
 "コマンドファイルをgroonga-benchmark単体で実行します。スレッド数が指定されてい"
 "る場合、複数のスレッドで同じコマンドファイルを同時に実行します。繰り返し数が"
@@ -8097,11 +5993,9 @@ msgid ""
 "ンドファイル 1 [繰り返し数]と明示的に指定してください。"
 msgstr ""
 
-# e41b8e9ad32d4c75ac7fad9294119f62
 msgid "do_gqpt コマンドファイル [スレッド数] [繰り返し数]"
 msgstr "do_gqpt コマンドファイル [スレッド数] [繰り返し数]"
 
-# 3f1ac511d44c4b0883266e72f962b319
 msgid ""
 "コマンドファイルをgroongaサーバで実行します。スレッド数や繰り返し数の意味は"
 "do_localの場合と同じです。"
@@ -8109,20 +6003,16 @@ msgstr ""
 "コマンドファイルをgroongaサーバで実行します。スレッド数や繰り返し数の意味は"
 "do_localの場合と同じです。"
 
-# d6d97155c42a40f4b7d88c244286c06a
 msgid "rep_local コマンドファイル [スレッド数] [繰り返し数]"
 msgstr "rep_local コマンドファイル [スレッド数] [繰り返し数]"
 
-# feb93f63f8f24e4f8b4705a17a290c0d
 msgid ""
 "コマンドファイルをgroonga-benchmark単体で実行し、より詳細な報告を行います。"
 msgstr ""
 
-# 220c9465968c4a6e9b161ffe78cd710d
 msgid "rep_gqpt コマンドファイル [スレッド数] [繰り返し数]"
 msgstr "rep_gqpt コマンドファイル [スレッド数] [繰り返し数]"
 
-# a0862b5954e349159ee3ae7f2502646d
 msgid ""
 "コマンドファイルをgroongaサーバで実行し、より詳細な報告を行います。 スレッド"
 "数や繰り返し数の意味はdo_localと 同じです。"
@@ -8130,11 +6020,9 @@ msgstr ""
 "コマンドファイルをgroongaサーバで実行し、より詳細な報告を行います。 スレッド"
 "数や繰り返し数の意味はdo_localと 同じです。"
 
-# 557d099d0b6d424d842435c642c30f77
 msgid "out_local コマンドファイル 入力ファイル名"
 msgstr "out_local コマンドファイル 入力ファイル名"
 
-# 0f2c08e462c945758befec43910223a6
 msgid ""
 "コマンドファイルをgroonga-benchmark単体で実行し、各コマンドの実行結果をすべ"
 "て”出力ファイル\"に書きだします。この結果は、test_local, test_gqtp命令で利用"
@@ -8143,15 +6031,12 @@ msgid ""
 "外、::"
 msgstr ""
 
-# 5590ca42dd7c4667887b618e6df941bf
 msgid "とした場合と同じです。"
 msgstr "とした場合と同じです。"
 
-# f9230f114db347168ba608a0b3fcabb0
 msgid "out_gqtp コマンドファイル 出力ファイル名"
 msgstr "out_gqtp コマンドファイル 出力ファイル名"
 
-# 32b88843b12948d9856029ea6decfaa4
 msgid ""
 "コマンドファイルをgroongaサーバで実行します。その他はout_local命令と同等で"
 "す。"
@@ -8159,22 +6044,18 @@ msgstr ""
 "コマンドファイルをgroongaサーバで実行します。その他はout_local命令と同等で"
 "す。"
 
-# 3a8a478871a045e59b1245ad7673a2cc
 msgid ""
 "コマンドファイルをgroonga-benchmark単体で実行し、各コマンドの実行結果を入力"
 "ファイルと比較します。処理時間など本質的要素以外に差分があった場合、差分を、"
 "入力ファイル.diffというファイルに書きだします。"
 msgstr ""
 
-# 557d099d0b6d424d842435c642c30f77
 msgid "test_local コマンドファイル 入力ファイル名"
 msgstr ""
 
-# e8141db1a2004256a3404eae0e868361
 msgid "コマンドファイル"
 msgstr "コマンドファイル"
 
-# d996d44609bd405f8723aaf7a96c4e54
 msgid ""
 "コマンドファイルは、groonga組み込みコマンドを1行に1つずつ記述したテキストファ"
 "イルです。拡張子に制限はありません。groonga組み込みコマンドに関しては :doc:`/"
@@ -8184,46 +6065,36 @@ msgstr ""
 "イルです。拡張子に制限はありません。groonga組み込みコマンドに関しては :doc:`/"
 "reference/commands` を参照してください。"
 
-# 889f2767b77c4906bbf4cb14d0c6633f
 msgid "スクリプトファイルのサンプルです。::"
 msgstr "スクリプトファイルのサンプルです。::"
 
-# 6b8e90ab9d5d4c6286792615a970ffa0
 msgid "上記の意味は以下のとおりです。"
 msgstr "上記の意味は以下のとおりです。"
 
-# 6129d79058e74d03a6e01cde1181e0b0
 msgid "1行目"
 msgstr ""
 
-# 8d3b8e31350b4bbbada055f37b129b64
 msgid "コメント行。"
 msgstr "コメント行。"
 
-# 83f0c3288d36403b8aa6d3b816c78af6
 msgid "2行目"
 msgstr ""
 
-# bdf2bf9ea63f4d62b4113b331cbcefac
 msgid "test.dll というコマンドファイルをgroonga単体で実行し、詳細に報告する。"
 msgstr "test.dll というコマンドファイルをgroonga単体で実行し、詳細に報告する。"
 
-# 65e495b40a6647ab82cab48a46b62f96
 msgid "3行目"
 msgstr ""
 
-# 866ee4ba93434ee2a81474be682314df
 msgid ""
 "test.load というコマンドファイルをgroonga単体で実行する。(最後の\";\"セミコロ"
 "ンは複数のgroonga-benchmark命令を記述する場合に必要ですが、この例のように1つ"
 "のgroonga-benchmark命令を実行する場合に付与しても問題ありません。)"
 msgstr ""
 
-# de223f07fae4400ab5f7a4abfc291f14
 msgid "4行目"
 msgstr ""
 
-# 5d9ae5b2130f405b88fde3b01c8ce4b1
 msgid ""
 "test.select というコマンドファイルをgroongaサーバで10個のスレッドで同時に実行"
 "する。各スレッドはtest.selectの中身を10回繰り返す。また同時に、groonga単体で"
@@ -8233,11 +6104,9 @@ msgstr ""
 "する。各スレッドはtest.selectの中身を10回繰り返す。また同時に、groonga単体で"
 "test.statusというコマンドファイルを10個のスレッドで実行する。"
 
-# 342cdcaf583f489aba8560688615f30b
 msgid "特殊命令"
 msgstr "特殊命令"
 
-# dafa69bb558c452fb857dfbf5cbf7ac4
 msgid ""
 "スクリプトファイルのコメント行には特殊コマンドを埋め込むことが可能です。現在"
 "サポートされている特殊命令は以下の二つです。"
@@ -8245,11 +6114,9 @@ msgstr ""
 "スクリプトファイルのコメント行には特殊コマンドを埋め込むことが可能です。現在"
 "サポートされている特殊命令は以下の二つです。"
 
-# 464ba4b8a2fb493191aa288f74e7d362
 msgid "#SET_HOST <ip/hostname>"
 msgstr ""
 
-# c963091b884241c0adeb2ce0b6db3f10
 msgid ""
 "-i, --hostオプションと同等の機能です。コマンドラインオプションに指定したIPア"
 "ドレス/ホスト名と、SET_HOSTで指定したIPアドレス/ホスト名が異なる場合、またコ"
@@ -8263,7 +6130,6 @@ msgstr ""
 "SET_HOSTを利用した場合、サーバが自動的には起動されないのもコマンドラインオプ"
 "ションで指定した場合と同様です。"
 
-# b311998720674b6592f5710363a799e2
 msgid ""
 "-p, --port オプションと同等の機能です。コマンドラインオプションに指定したポー"
 "ト番号とSET_PORTで指定したポート番号が異なる場合、またコマンドラインオプショ"
@@ -8273,11 +6139,9 @@ msgstr ""
 "ト番号とSET_PORTで指定したポート番号が異なる場合、またコマンドラインオプショ"
 "ンを指定しなかった場合にもSET_PORTが優先されます。"
 
-# 12fd64e80e104f08b100b1b68f03d52c
 msgid "#SET_PORT <port number>"
 msgstr ""
 
-# e2e645abed484ece8cfdf8517abad16a
 msgid ""
 "特殊命令はスクリプトファイルの任意の場所に書き込むことができます。同一ファイ"
 "ル内に複数回特殊命令を記述した場合、「最後の」特殊命令が有効となります。"
@@ -8285,25 +6149,20 @@ msgstr ""
 "特殊命令はスクリプトファイルの任意の場所に書き込むことができます。同一ファイ"
 "ル内に複数回特殊命令を記述した場合、「最後の」特殊命令が有効となります。"
 
-# 1e39cca90d2142a4864d4374b2274873
 msgid "例えば、"
 msgstr "例えば、"
 
-# 0bd349dd3c4e4c3a8181aa9b52a35868
 msgid "とコマンド上でポートを指定した場合でも、もしtest.scrの中身が"
 msgstr "とコマンド上でポートを指定した場合でも、もしtest.scrの中身が"
 
-# 5b16cf81143a4f26a1ce970b3a5c1dac
 msgid ""
 "であれば、自動的に起動されるgroongaサーバはポート番号10400を利用します。"
 msgstr ""
 "であれば、自動的に起動されるgroongaサーバはポート番号10400を利用します。"
 
-# 50fef89cf33843e1a6eab7cc4e82d598
 msgid "groonga-benchmark実行結果"
 msgstr ""
 
-# 46403576afbe4328955f707bb4f96248
 msgid ""
 "groonga-benchmarkが正常に終了すると、(拡張子を除いた)スクリプト名-ユーザ名-実"
 "行開始時刻.logという形式のログファイルがカレントディレクトリに作られます。ロ"
@@ -8311,37 +6170,30 @@ msgid ""
 "なjson形式のテキストです。"
 msgstr ""
 
-# 7371db44385741eeb0928cc148a2c30b
 msgid "制限事項"
 msgstr "制限事項"
 
-# bf2816737c4c440fac94832d3a7711c3
 msgid ""
 "スクリプトファイルの一行には複数のgroonga-benchmark命令を記述できますが、すべ"
 "てのスレッド数の合計は最大64までに制限されます。"
 msgstr ""
 
-# 2b318a4154a84faa8e00594567a7ebae
 msgid "コマンドファイル中のgroongaコマンドの長さは最長5000000byteです。"
 msgstr "コマンドファイル中のgroongaコマンドの長さは最長5000000byteです。"
 
-# 9ba2c3fa92ad460886542f96b495111a
 msgid "トラブルシューティング"
 msgstr "トラブルシューティング"
 
-# 2a6afa3cb5b64a0e83318870b6513d35
 msgid ""
 "もし、groonga-benchmarkが正常に動作しない場合、まず以下を確認してください。"
 msgstr ""
 
-# bd42c11b7bd543389564be66d87c9c63
 msgid ""
 "インターネットに接続しているか? `--ftp` オプションを指定すると、groonga-"
 "benchmarkは動作のたびにftp.groonga.orgと通信します。ftp.groonga.orgと通信可能"
 "でない場合、groonga-benchmarkは正常に動作しません。"
 msgstr ""
 
-# a967ed73120c49aeb4acdb709a86aa21
 msgid ""
 "groonga サーバが動作していないか? groonga-benchmarkは、-i, --host オプショ"
 "ンで明示的にサーバを指定しないかぎり、自動的にlocalhostのgroongaサーバを立ち"
@@ -8349,7 +6201,6 @@ msgid ""
 "作しない可能性があります。"
 msgstr ""
 
-# b0154eec6e0042c381de27ed75b40a52
 msgid ""
 "指定したDBが適切か? groonga-benchmarkは、引数で指定したDBの中身はチェックし"
 "ません。もし指定されたDBが存在しなければ自動的にDBを作成しますが、もしファイ"
@@ -8357,17 +6208,14 @@ msgid ""
 "性があります。"
 msgstr ""
 
-# 0261e3b065f84838af73ea5fa0a7797e
 msgid ""
 "以上の原因でなければ、問題はgroonga-benchmarkかgroongaにあります。ご報告をお"
 "願いします。"
 msgstr ""
 
-# 4890c35327b3439090ef08d70e318f08
 msgid "groonga-httpd"
 msgstr "groonga-httpd"
 
-# 1ca4320e90394306868c823ba70bab51
 msgid ""
 "groonga-httpd is a program to communicate with a groonga server using the "
 "HTTP protocol. It functions as same as :doc:`groonga-server-http`. Although :"
@@ -8377,7 +6225,6 @@ msgid ""
 "by nginx is also available in groonga-httpd."
 msgstr ""
 
-# 5a122b19ad1a40bf916b8b9637bcc985
 msgid ""
 "groonga-httpd has an Web-based administration tool implemented with HTML and "
 "JavaScript. You can access to it from http://hostname:port/."
@@ -8385,22 +6232,18 @@ msgstr ""
 "groonga-httpd has an Web-based administration tool implemented with HTML and "
 "JavaScript. You can access to it from http://hostname:port/."
 
-# 512897cffc5543b7ac69facf806214f3
 msgid "Synopsis"
 msgstr "Synopsis"
 
-# f5923903018549c8a995a64783dc466b
 msgid "Set up"
 msgstr "Set up"
 
-# 6aa4f76471db4cf481986742057053cb
 msgid ""
 "First, you'll need to edit the groonga-httpd configuration file to specify a "
 "database. Edit /etc/groonga/httpd/groonga-httpd.conf to enable the "
 "``groonga_database`` directive like this::"
 msgstr ""
 
-# 42fc5bb314dc4a979a922410eed990d9
 msgid ""
 "Then, run groonga-httpd. Note that the control immediately returns back to "
 "the console because groonga-httpd runs as a daemon process by default.::"
@@ -8408,19 +6251,15 @@ msgstr ""
 "Then, run groonga-httpd. Note that the control immediately returns back to "
 "the console because groonga-httpd runs as a daemon process by default.::"
 
-# cb0f0513b7f34895b81bdf92a1524e4d
 msgid "Request queries"
 msgstr "Request queries"
 
-# 3814078eaabf47a3a529ccadc79808b4
 msgid "To check, request a simple query (:doc:`/reference/commands/status`)."
 msgstr ""
 
-# 865baf4fcff24136956a64ff6cf79e7f
 msgid "Browse the administration tool"
 msgstr "Browse the administration tool"
 
-# 2eeb43f9f8ef4f17b0ab271b9f0c0991
 msgid ""
 "Also, you can browse Web-based administration tool at http://"
 "localhost:10041/."
@@ -8428,25 +6267,20 @@ msgstr ""
 "Also, you can browse Web-based administration tool at http://"
 "localhost:10041/."
 
-# bbbe808c176e427f896cdf363a0171d7
 msgid "Shut down"
 msgstr "Shut down"
 
-# cb670170fd754905895d8a061cd72f3a
 msgid "Finally, to terminate the running groonga-httpd daemon, run this::"
 msgstr "Finally, to terminate the running groonga-httpd daemon, run this::"
 
-# a0695ed5a74c45f2a7c274d52b2b2fdb
 msgid "Configuration directives"
 msgstr "Configuration directives"
 
-# 68c0f6e9bb4f4005a65787a9432cd569
 msgid ""
 "This section decribes only important directives. They are groonga-httpd "
 "specific directives and performance related directives."
 msgstr ""
 
-# 1d1b54df43e24421863e467bf5b01042
 msgid ""
 "The following directives can be used in the groonga-httpd configuration "
 "file. By default, it's located at /etc/groonga/httpd/groonga-httpd.conf."
@@ -8454,92 +6288,59 @@ msgstr ""
 "The following directives can be used in the groonga-httpd configuration "
 "file. By default, it's located at /etc/groonga/httpd/groonga-httpd.conf."
 
-# f915242ce3a6441abd11b97a4139aea4
 msgid "Groonga-httpd specific directives"
 msgstr ""
 
-# 3b0b33a0cb8849a5a3c44ad4c4cd4150
 msgid ""
 "The following directives aren't provided by nginx. They are provided by "
 "groonga-httpd to configure groonga-httpd specific configurations."
 msgstr ""
 
-# 9579ad0b3efb4199bd5ee9cc26be46ea
 msgid "``groonga``"
 msgstr ""
 
-# 512897cffc5543b7ac69facf806214f3
 msgid "Synopsis::"
 msgstr ""
 
-# 2caa2a058174490a9fd0007d16284a90
-# 966b96572efa4ffbb71f72d7754dcfad
-# 821e38c8dcab4f57a6ba027280d1a700
 msgid "Default"
 msgstr ""
 
-# 9579ad0b3efb4199bd5ee9cc26be46ea
 msgid "``groonga off;``"
 msgstr ""
 
-# ae588637aaeb43249d0062102490516f
-# ff57c76de6ee40ab94999d04ba1c9c75
-# d95f98820f9348339b6f529056fa990a
 msgid "Context"
 msgstr ""
 
-# 586a8cc4f2b64e3e8677c126d0b4be33
-# 1afbe947c1eb48a193a87fb9c1f6d6ca
 msgid "``location``"
 msgstr ""
 
-# 3365dcf510d94435a0af7121440da1e2
 msgid ""
 "Specifies whether groonga is enabled in the ``location`` block. The default "
 "is ``off``. You need to specify ``on`` to enable groonga."
 msgstr ""
 
-# f65970f3a4264e33b0ed18b5521f53ae
-# c41e9a5775254864920a3c5d413bc3f0
-# dbae9c01ac594defa0f2e485e76c0929
-# b07bab7cb2fd41b0998402e48dcf382b
-# 091b051231aa46808e77dacc6fc5032e
-# a3d0d9e778ae4795ae25444729bacc43
-# c718f34b2a0b454896badee8ac487d5b
-# 11d6f67d10cf49079fc7504fe656d181
-# 5f705ad5205b47bba758a79939864e9c
-# 63706a8aa5aa4123ba3331add4d09cea
-# 08d03411c4b5418b8db31591c1d7b59d
-# f6b8093f5a4f4cd89e30878bedd1c37f
 msgid "Examples::"
 msgstr ""
 
-# 9579ad0b3efb4199bd5ee9cc26be46ea
 msgid "``groonga_database``"
 msgstr "``groonga_database``"
 
-# 7a7f1bd40c8846348a808f6581c36fdf
 msgid "``groonga_database /usr/local/var/lib/groonga/db/db;``"
 msgstr ""
 
-# 34af65cbfcc64c85a60b748c94644adf
 msgid "``http``, ``server``, ``location``"
 msgstr ""
 
-# 8cd8b9225fa14ceebf751a11aecb704a
 msgid ""
 "Specifies the path to a groonga database. This is the required directive."
 msgstr ""
 
-# 9579ad0b3efb4199bd5ee9cc26be46ea
 msgid "``groonga_database_auto_create``"
 msgstr ""
 
-# 9579ad0b3efb4199bd5ee9cc26be46ea
 msgid "``groonga_database_auto_create on;``"
 msgstr ""
 
-# 5b5ecdafd1784964b7b1d915c6605d46
 msgid ""
 "Specifies whether groonga database is created automatically or not. If the "
 "value is ``on`` and the groonga database specified by :ref:`groonga-"
@@ -8547,26 +6348,21 @@ msgid ""
 "the groonga database exists, groonga-httpd does nothing."
 msgstr ""
 
-# 12b88b2711014c928e3639cca058d32e
 msgid ""
 "If parent directory doesn't exist, parent directory is also created "
 "recursively."
 msgstr ""
 
-# d5f0488f16ba4d749f9adcc13279995f
 msgid ""
 "The default value is ``on``. Normally, the value doesn't need to be changed."
 msgstr ""
 
-# 9579ad0b3efb4199bd5ee9cc26be46ea
 msgid "``groonga_base_path``"
 msgstr ""
 
-# 25a88a3a400a438c80c4332cf04b43e0
 msgid "The same value as ``location`` name."
 msgstr ""
 
-# fdb12b525ade47e4ac408a7119f197a4
 msgid ""
 "Specifies the base path in URI. groonga uses ``/d/command?"
 "parameter1=value1&...`` path to run ``command``. The form of path in used in "
@@ -8577,82 +6373,66 @@ msgid ""
 "groonga can always uses ``/d/command?parameter1=value1&...`` form."
 msgstr ""
 
-# 55732efdbbc7446aa43e4669eb0e7275
 msgid ""
 "Nomally, this directive isn't needed. It is needed for per command "
 "configuration."
 msgstr ""
 
-# 0075568d8a5b46e0a314cc11204c32b4
 msgid ""
 "Here is an example configuration to add authorization to :doc:`/reference/"
 "commands/shutdown` command::"
 msgstr ""
 
-# 9579ad0b3efb4199bd5ee9cc26be46ea
 msgid "``groonga_log_path``"
 msgstr ""
 
-# d6fd7fcc0af941c998ad2bac1575d90c
 msgid "``/var/log/groonga/httpd/groonga.log``"
 msgstr ""
 
-# 556ba36a35ae4caaa77b987f58495546
 msgid ""
 "Specifies groonga log path in the ``http``, ``server`` or ``location`` "
 "block. The default is ``/var/log/groonga/httpd/groonga.log``. You can "
 "disable logging to specify ``off``."
 msgstr ""
 
-# 9579ad0b3efb4199bd5ee9cc26be46ea
 msgid "``groonga_log_level``"
 msgstr ""
 
-# a3f805f043d84720b77614098cf4fbd6
 msgid "``notice``"
 msgstr ""
 
-# 7de1b908d5ab4af3ad7909ab2f6f1b58
 msgid ""
 "Specifies groonga log level in the ``http``, ``server`` or ``location`` "
 "block. The default is ``notice``. You can disable logging by specifying "
 "``none`` as log level."
 msgstr ""
 
-# 9579ad0b3efb4199bd5ee9cc26be46ea
 msgid "``groonga_query_log_path``"
 msgstr ""
 
-# d79ab69fbddc4323aa26d01ef85f19b8
 msgid "``/var/log/groonga/httpd/groonga-query.log``"
 msgstr ""
 
-# 4e2f3b5df26d4ecd8923ff1b1a0f2e01
 msgid ""
 "Specifies groonga's query log path in the ``http``, ``server`` or "
 "``location`` block. The default is ``/var/log/groonga/httpd/groonga-query."
 "log``.  You can disable logging to specify ``off``."
 msgstr ""
 
-# 89c4cd351226489a879d044e7cb9e982
 msgid "Query log is useful for the following cases:"
 msgstr ""
 
-# bd7d74c7c42744b7a294ade712b3ee07
 msgid "Detecting slow query."
 msgstr ""
 
-# cede500510ac487183f096fa76b4319c
 msgid "Debugging."
 msgstr ""
 
-# d1ed94941bf04c18bc98afca542d33e4
 msgid ""
 "You can analyze your query log by `groonga-query-log package <https://github."
 "com/groonga/groonga-query-log>`_. The package provides useful tools."
 msgstr ""
 
-# 302707979ad04228937fae6ee2c7b602
 msgid ""
 "For example, there is a tool that analyzing your query log. It can detect "
 "slow queries from your query log. There is a tool that replaying same "
@@ -8660,21 +6440,17 @@ msgid ""
 "production environment."
 msgstr ""
 
-# 723ec18bf5454137a8231898c00bc1d4
 msgid "Performance related directives"
 msgstr ""
 
-# 8aa355587214422b8970d46bfa635365
 msgid ""
 "The following directives are related to the performance of groonga-httpd."
 msgstr ""
 "The following directives are related to the performance of groonga-httpd."
 
-# dc35e446557f43659f04dbdb958fdb4f
 msgid "``worker_processes``"
 msgstr "``worker_processes``"
 
-# 17df48c3426142ec91dffdd6376a94f6
 msgid ""
 "For optimum performance, set this to be equal to the number of CPUs or "
 "cores. In many cases, groonga queries may be CPU-intensive work, so to fully "
@@ -8684,7 +6460,6 @@ msgstr ""
 "cores. In many cases, groonga queries may be CPU-intensive work, so to fully "
 "utilize multi-CPU/core systems, it's essential to set this accordingly."
 
-# 1b6f66a5e61f4760a2fb5133b687423d
 msgid ""
 "This isn't a groonga-httpd specific directive, but an nginx's one. For "
 "details, see http://wiki.nginx.org/CoreModule#worker_processes."
@@ -8692,52 +6467,42 @@ msgstr ""
 "This isn't a groonga-httpd specific directive, but an nginx's one. For "
 "details, see http://wiki.nginx.org/CoreModule#worker_processes."
 
-# dcb5cf07f3f44cb88da1becb68a60ed2
 msgid "By default, this is set to 1. It is nginx's default."
 msgstr "By default, this is set to 1. It is nginx's default."
 
-# 9579ad0b3efb4199bd5ee9cc26be46ea
 msgid "``groonga_cache_limit``"
 msgstr ""
 
-# 8a0c9695950b4130b231fdb916a2d6f6
 msgid ""
 "This directive is introduced to customize cache limit for each worker "
 "process."
 msgstr ""
 
-# 35906e35f9f84a7a95740dd67762c176
 msgid "100"
 msgstr ""
 
-# 753ea80d3b6344d2a7f4dcf0029e65b1
 msgid ""
 "Specifies groonga's limit of query cache in the ``http``, ``server`` or "
 "``location`` block. The default value is 100. You can disable query cache to "
 "specify 0 to ``groonga_cache_limit`` explicitly."
 msgstr ""
 
-# 8820d997f92c4fbb9cee896aa11e3694
 msgid "``proxy_cache``"
 msgstr ""
 
-# 50c1b0b6a5e14a1389e355132fd668cf
 msgid ""
 "In short, you can use nginx's reverse proxy and cache mechanism instead of "
 "groonga's built-in query cache feature."
 msgstr ""
 
-# 27cb760cec714088b6fda733b9aa2ddc
 msgid "Query cache"
 msgstr ""
 
-# dbe31d92446141108800a1c883ee45d0
 msgid ""
 "Groonga has query cache feature for :doc:`/reference/commands/select` "
 "command. The feature improves performance in many cases."
 msgstr ""
 
-# e810f2ab55eb4d728f26a49ceffea788
 msgid ""
 "Query cache feature works well on groonga-httpd except you use :doc:`/"
 "reference/commands/cache_limit` command on 2 or more workers. Normally, :doc:"
@@ -8745,13 +6510,11 @@ msgid ""
 "on many cases."
 msgstr ""
 
-# cb64be7f052c454d8a8528306c269a3c
 msgid ""
 "Here is a description about a problem of using :doc:`/reference/commands/"
 "cache_limit` command on 2 or more workers."
 msgstr ""
 
-# 395c2aa5765c4416a2a23b72954587ab
 msgid ""
 "Groonga's query cache is available in the same process. It means that "
 "workers can't share the cache. If you don't change cache size, it isn't a "
@@ -8759,108 +6522,86 @@ msgid ""
 "cache_limit` command, there is a problem."
 msgstr ""
 
-# 8d897a597da445ca986d6f73cdfeda89
 msgid "There is no portable ways to change cache size for all workers."
 msgstr ""
 
-# 129f10a46ac3418aaa2afcdb0aaa2411
 msgid "For example, there are 3 workers::"
 msgstr ""
 
-# dbe31d92446141108800a1c883ee45d0
 msgid ""
 "The client requests :doc:`/reference/commands/cache_limit` command and the "
 "worker 1 receives it::"
 msgstr ""
 
-# dbe31d92446141108800a1c883ee45d0
 msgid ""
 "The client requests :doc:`/reference/commands/cache_limit` command again and "
 "the worker 1 receives it again::"
 msgstr ""
 
-# c323820ea36846c1947103d0fd967940
 msgid ""
 "In this case, the worker 2 and the worker 3 aren't received any requests. So "
 "they don't change cache size."
 msgstr ""
 
-# 395c2aa5765c4416a2a23b72954587ab
 msgid ""
 "You can't choose a worker. So you can't change cache sizes of all workers "
 "by :doc:`/reference/commands/cache_limit` command."
 msgstr ""
 
-# 6c461c2d2b0f49159c0223b24ec59304
 msgid "Reverse proxy and cache"
 msgstr ""
 
-# fb53da516a0442b6b6023e2eef689737
 msgid "You can use nginx's reverse proxy and cache feature for query cache::"
 msgstr ""
 
-# c75e49d7df2e42c7a61b2b18ed2247e2
 msgid ""
 "You can use the same cache configuration for all workers but you can't "
 "change cache configuration dynamically by HTTP."
 msgstr ""
 
-# 37b289d90c8240c9a7e1cd9afb082610
 msgid "Here is a sample configuration::"
 msgstr ""
 
-# f398e092713a4c86bf5e4c8e17c65871
 msgid "See the following nginx documentations for parameter details:"
 msgstr ""
 
-# 653dc43af758451ebe651c091353dfb2
 msgid ""
 "http://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_cache_path"
 msgstr ""
 
-# cddd9c82f2334bc5ac47b45eaf5ecc75
 msgid ""
 "http://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_cache_valid"
 msgstr ""
 
-# 47418b8c63d246a5b39f9fab9ed6b7af
 msgid "http://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_cache"
 msgstr ""
 
-# b672612c1b504103829c609de2c584bd
 msgid "http://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_pass"
 msgstr ""
 
-# a269885fe7b64929a1dff25909a5e220
 msgid ""
 "Note that you need to remove cache files created by nginx by hand after you "
 "load new data to groonga. For the above sample configuration, run the "
 "following command to remove cache files::"
 msgstr ""
 
-# 65799437f7f9477780e0f100f55f6a4b
 msgid ""
 "If you use groonga's query cache feature, you don't need to expire cache by "
 "hand. It is done automatically."
 msgstr ""
 
-# b889cdac2da04de299d1584d4756abad
 msgid "Available nginx modules"
 msgstr "Available nginx modules"
 
-# e8d176cec8db4336ad2cff6ad712dabf
 msgid ""
 "All standard HTTP modules are available. HttpRewriteModule is disabled when "
 "you don't have PCRE (Perl Compatible Regular Expressions). For the list of "
 "standard HTTP modules, see http://wiki.nginx.org/Modules."
 msgstr ""
 
-# f77cb2f8d1ed40c49b1edc63e1c9b6ad
-# ed1da1c12c324d0fbefcefe7ecd345e3
 msgid "groonga HTTPサーバー"
 msgstr "groonga HTTPサーバー"
 
-# 28dc980ccc26490ba878f1c05e698d9c
 msgid ""
 "groongaサーバを起動する時に--protocolオプションにhttpを指定すると、httpで通信"
 "可能になります。また、--document-root によって静的ページのパスを指定すると、"
@@ -8872,7 +6613,6 @@ msgstr ""
 "httpリクエストに指定されたURIに対応する、パス配下に置かれたファイルを出力しま"
 "す。"
 
-# 3356a692f21e418ead5cfa85a523dc1d
 msgid ""
 "groongaにはHTML + JavaScriptで実装された管理ツールが標準で付属しています。--"
 "document-rootを指定しない場合は管理ツールがインストールされているパスが指定さ"
@@ -8884,13 +6624,9 @@ msgstr ""
 "れたとみなされますので、ウェブブラウザでhttp://hostname:port/にアクセスする"
 "と、管理ツールを利用できます。"
 
-# 3560d552640e4d90ab517075a0f286e4
-# 85c8599dab7b46ff9716a67ba57a73d0
-# 8cff4eb08f374e8fa71effe9aa5d69db
 msgid "コマンド"
 msgstr "コマンド"
 
-# 8b2fe065953d4696b469332fab3d5f2d
 msgid ""
 "httpを指定して起動したgroongaサーバに対しても、他のモードで起動したgroongaと"
 "同じコマンドが使用できます。"
@@ -8898,7 +6634,6 @@ msgstr ""
 "httpを指定して起動したgroongaサーバに対しても、他のモードで起動したgroongaと"
 "同じコマンドが使用できます。"
 
-# 9bf76710928e4039aec72a963f005683
 msgid ""
 "コマンドは、複数の引数をとります。引数にはそれぞれ名前があります。また、特殊"
 "な引数である「output_type」と「command_version」があります。"
@@ -8906,7 +6641,6 @@ msgstr ""
 "コマンドは、複数の引数をとります。引数にはそれぞれ名前があります。また、特殊"
 "な引数である「output_type」と「command_version」があります。"
 
-# b1bd7f30284e420e820e4b4a1b380639
 msgid ""
 "スタンドアロンやクライアントモードでは、コマンドは以下のような形式で指定しま"
 "す。"
@@ -8914,15 +6648,12 @@ msgstr ""
 "スタンドアロンやクライアントモードでは、コマンドは以下のような形式で指定しま"
 "す。"
 
-# 0e3211e039144be391ea33deafbd6c47
 msgid "形式1: コマンド名 値1 値2,.."
 msgstr "形式1: コマンド名 値1 値2,.."
 
-# 87381a8dc1ef418b959f4ab1001fd8b9
 msgid "形式2: コマンド名 --引数名1 値1 --引数名2 値2,.."
 msgstr "形式2: コマンド名 --引数名1 値1 --引数名2 値2,.."
 
-# 7186b0d048d14c59b9e80e882633e852
 msgid ""
 "形式1と形式2は混在させることができます。これらの形式では、output_typeという引"
 "数名を用いてoutput_typeを指定します。"
@@ -8930,7 +6661,6 @@ msgstr ""
 "形式1と形式2は混在させることができます。これらの形式では、output_typeという引"
 "数名を用いてoutput_typeを指定します。"
 
-# 7a5d5cd51986464196fb058cb0b1f1a5
 msgid ""
 "httpでgroongaサーバと通信する際には、以下のような形式でコマンドを指定しま"
 "す。::"
@@ -8938,19 +6668,15 @@ msgstr ""
 "httpでgroongaサーバと通信する際には、以下のような形式でコマンドを指定しま"
 "す。::"
 
-# 5d4211ef5f0b4afdb54c5e9977ce88df
 msgid "ただし、コマンド名、引数名、値はURLエンコードが必要です。"
 msgstr "ただし、コマンド名、引数名、値はURLエンコードが必要です。"
 
-# 0b5057d156f04aa68bff169ca4ea9dca
 msgid "GETメソッドのみが使用可能です。"
 msgstr "GETメソッドのみが使用可能です。"
 
-# 3b479f421961427d816f7e15486afc71
 msgid "output_typeにはjson, tsv, xmlが指定可能です。"
 msgstr "output_typeにはjson, tsv, xmlが指定可能です。"
 
-# badde8bb9d1e4ddb9edd7b098c85f53a
 msgid ""
 "command_versionはコマンドの仕様の互換性を指定します。詳細は :doc:`/reference/"
 "command/command_version` を参照してください。"
@@ -8958,29 +6684,23 @@ msgstr ""
 "command_versionはコマンドの仕様の互換性を指定します。詳細は :doc:`/reference/"
 "command/command_version` を参照してください。"
 
-# 20ebdb37c19846ac957b83b79fd15561
 msgid "output_typeの指定に従って、コマンドの実行結果を出力します。"
 msgstr "output_typeの指定に従って、コマンドの実行結果を出力します。"
 
-# 82a8aa1dde0e460392fd3ddc51eabaa5
 msgid "groonga-suggest-create-dataset"
 msgstr "groonga-suggest-create-dataset"
 
-# 4f9f636a67dd44d092e5bc5a0555b7d5
 msgid ""
 "groonga-suggest-create-dataset - Defines schema for a suggestion dataset"
 msgstr ""
 "groonga-suggest-create-dataset - Defines schema for a suggestion dataset"
 
-# ca8b7abc9354479ea297b9d0a15fa02a
 msgid "SYNOPSTIS"
 msgstr "SYNOPSTIS"
 
-# d4993ef0ff9e4efd98bae9e8d16f9bbf
 msgid "DESCTIPION"
 msgstr "DESCTIPION"
 
-# 71ae5e1b8b324aa78cb16bb2325cfd88
 msgid ""
 "groonga-suggest-create-dataset creates a dataset for :doc:`/suggest`. A "
 "database has many datasets. This command just defines schema for a "
@@ -8990,134 +6710,101 @@ msgstr ""
 "database has many datasets. This command just defines schema for a "
 "suggestion dataset."
 
-# bb617bc55ac9469fa69f5d2ecb46c0c5
 msgid "This command generates some tables and columns for :doc:`/suggest`."
 msgstr ""
 
-# b578a2f0026346eba01ab8c3fb145a02
 msgid ""
 "Here is the list of such tables. If you specify 'query' as dataset name, "
 "following '_DATASET' suffix are replaced. Thus, 'item_query', 'pair_query', "
 "'sequence_query', 'event_query' tables are generated."
 msgstr ""
 
-# 2c515495bd4445a3b943a187eec945a8
 msgid "event_type"
 msgstr ""
 
-# b776f7a09a134654b313e2fb9b60981e
 msgid "bigram"
 msgstr ""
 
-# b4db8a327b534fceb31a9a87e639eb99
 msgid "kana"
 msgstr ""
 
-# 63d2f8c313b14b3984d9815063b9e31e
 msgid "item_DATASET"
 msgstr ""
 
-# ae6d38f2c2b8486f9fd02304566e227e
 msgid "pair_DATASET"
 msgstr ""
 
-# 0011fee73c8e4f29bfd8f4b12c4b74c2
 msgid "sequence_DATASET"
 msgstr ""
 
-# 8bd982007ea346adaf7d54b85bc3b16b
 msgid "event_DATASET"
 msgstr ""
 
-# 6213e846b33c45a18f52912176cd11de
 msgid "configuration"
 msgstr ""
 
-# bb653724c1dd4e209370a00538272c81
 msgid "None."
 msgstr "None."
 
-# f3b039d4f6154e7a9bfe9efbbfbfb48b
 msgid "EXIT STATUS"
 msgstr "EXIT STATUS"
 
-# 4c3012bf76754efda064742b6c6642ce
 msgid "FILES"
 msgstr "FILES"
 
-# 4ee0a011614344bfba4e0d1030727b78
 msgid ""
 ":doc:`/suggest` :doc:`groonga-suggest-httpd` :doc:`groonga-suggest-learner`"
 msgstr ""
 
-# 4890c35327b3439090ef08d70e318f08
 msgid "groonga-suggest-httpd"
 msgstr ""
 
-# 8bf2bfeaefa24bb1bb498b5fd3eeff28
-# 8caa2f97f24d4f42a026591ca6f79d20
 msgid "Options"
 msgstr ""
 
-# 0f0062536bd34430a99e81f86dd1f47b
 msgid "Specify http server port number. The default value is 8080."
 msgstr ""
 
-# fd5e9f4114f24ca59f632ea4bf398444
 msgid "Specify number of threads. The default value is 8."
 msgstr ""
 
-# 4c4cfd5c657c45eb8331f1448b152299
 msgid "Specify endpoint for sender."
 msgstr ""
 
-# 94e2117746d1417681612f10f86cba59
 msgid "Specify endpoint for receiver."
 msgstr ""
 
-# cdb3ba027ecb42e8b1ec1ae2e4cc0ae0
 msgid "Specify path prefix of log."
 msgstr ""
 
-# 4df82e6c8a9c467bac34e4bdd43ca71c
 msgid ""
 "Specify the number of lines in a log file. The default value is 1,000,000."
 msgstr ""
 
-# cdb3ba027ecb42e8b1ec1ae2e4cc0ae0
 msgid "Specify this option to daemonize."
 msgstr ""
 
-# 85c78641b6e0469c9d634e8de3716199
 msgid "Specify this option to disable checking max fd on start."
 msgstr ""
 
-# 1eb1184cdea4464ca9cc8a73c9deecf7
 msgid "There is one required parameter - ``database_path``."
 msgstr ""
 
-# 9579ad0b3efb4199bd5ee9cc26be46ea
 msgid "``database_path``"
 msgstr ""
 
-# cdb3ba027ecb42e8b1ec1ae2e4cc0ae0
-# 68b231f9d8234cd894edf0b2446738ec
 msgid "Specifies the path to a groonga database."
 msgstr ""
 
-# 82a8aa1dde0e460392fd3ddc51eabaa5
 msgid "groonga-suggest-learner"
 msgstr ""
 
-# 0ccb7725dfad4f5883be15ee76db6135
 msgid "groonga command"
 msgstr "groonga command"
 
-# ef44e99b86234f3491ec7e63003b9b92
 msgid "groonga - 列指向データベース機能を持つ全文検索エンジンソフトウェア"
 msgstr "groonga - 列指向データベース機能を持つ全文検索エンジンソフトウェア"
 
-# 964371bfdd9041bebca5cc92dc2249a0
 msgid ""
 "Groongaは列指向のデータベース機能を持つ高速でスケーラブルな全文検索エンジンで"
 "す。 Groongaのデータベースは、groongaコマンドかCライブラリインタフェースを通"
@@ -9125,23 +6812,18 @@ msgid ""
 "について説明します。"
 msgstr ""
 
-# 04bdc06ed6dc4e848582d2cf203c2859
 msgid "新たなデータベースを作成します。"
 msgstr "新たなデータベースを作成します。"
 
-# 95bbbf71a3164ada8633e12b854f0d2b
 msgid "クライアントモードで実行します。"
 msgstr "クライアントモードで実行します。"
 
-# ccb5b50230f34236bb67d02bdc52e569
 msgid "サーバモードで実行します。"
 msgstr "サーバモードで実行します。"
 
-# 329b3a29e0594df88d37f50635e2084f
 msgid "デーモンモードで実行します。(forkする点がサーバモードと異なる)"
 msgstr "デーモンモードで実行します。(forkする点がサーバモードと異なる)"
 
-# da19d22b1a3546bdb475661ee026d780
 msgid ""
 "データベースで使用する文字エンコーディング方式を指定します。新たなデータベー"
 "スを作成する時のみ有効です。none, euc, utf8, sjis, latin, koi8rのいずれかが指"
@@ -9151,7 +6833,6 @@ msgstr ""
 "スを作成する時のみ有効です。none, euc, utf8, sjis, latin, koi8rのいずれかが指"
 "定できます。"
 
-# 6c518574e28b432baea5fded7d6db16f
 msgid ""
 "ログレベルを指定します。0〜8までの数値が指定可能で、数が大きいほど多くのログ"
 "が出力されます。"
@@ -9159,11 +6840,9 @@ msgstr ""
 "ログレベルを指定します。0〜8までの数値が指定可能で、数が大きいほど多くのログ"
 "が出力されます。"
 
-# 8f593eb6fb274321b531bd4fddcdbd61
 msgid "Use :option:`--bind-address` instead."
 msgstr ""
 
-# c86ef38374cd40aa86239a4f8efb66e2
 msgid ""
 "サーバモードかデーモンモードで実行するとき、listenするアドレスを指定します。"
 "(デフォルトは `hostname` の返すホスト名)"
@@ -9171,7 +6850,6 @@ msgstr ""
 "サーバモードかデーモンモードで実行するとき、listenするアドレスを指定します。"
 "(デフォルトは `hostname` の返すホスト名)"
 
-# ba40a3a9ead94a86bffce06e7d2b28b1
 msgid ""
 "クライアント、サーバ、またはデーモンモードで使用するTCPポート番号。 (デフォル"
 "トは10041番)"
@@ -9179,7 +6857,6 @@ msgstr ""
 "クライアント、サーバ、またはデーモンモードで使用するTCPポート番号。 (デフォル"
 "トは10041番)"
 
-# a074c16be8d24ff088d12a2eac503e54
 msgid ""
 "サーバモードかデーモンモードで実行するとき、サーバのIDとなるアドレスを指定し"
 "ます。(デフォルトは`hostname`の返すホスト名)"
@@ -9187,11 +6864,9 @@ msgstr ""
 "サーバモードかデーモンモードで実行するとき、サーバのIDとなるアドレスを指定し"
 "ます。(デフォルトは`hostname`の返すホスト名)"
 
-# e6a6ab3756dc4d1f8a8a326fd9e0d864
 msgid "ヘルプメッセージを出力します。"
 msgstr "ヘルプメッセージを出力します。"
 
-# 4e7986d4e1a14d519e578ac019d77848
 msgid ""
 "httpサーバとしてgroongaを使用する場合に静的ページを格納するディレクトリを指定"
 "します。"
@@ -9199,7 +6874,6 @@ msgstr ""
 "httpサーバとしてgroongaを使用する場合に静的ページを格納するディレクトリを指定"
 "します。"
 
-# fcfd5e6b99364f8988615f66981fd07a
 msgid ""
 "デフォルトでは、データベースを管理するための汎用的なページに対応するファイル"
 "が/usr/share/groonga/admin_html以下にインストールされます。このディレクトリを"
@@ -9213,11 +6887,9 @@ msgstr ""
 "hostname:port/index.htmlにアクセスすると、ウェブベースのデータベース管理ツー"
 "ルを使用できます。"
 
-# b32431e4380046db8d51f7eeb3c9f9f7
 msgid "http,gqtpのいずれかを指定します。(デフォルトはgqtp)"
 msgstr "http,gqtpのいずれかを指定します。(デフォルトはgqtp)"
 
-# 181a786b46484d35bbbe8ec7ec36c9e5
 msgid ""
 "ログを出力するファイルのパスを指定します。(デフォルトは/var/log/groonga/"
 "groonga.logです)"
@@ -9225,7 +6897,6 @@ msgstr ""
 "ログを出力するファイルのパスを指定します。(デフォルトは/var/log/groonga/"
 "groonga.logです)"
 
-# 7a51d838d15e4f789439e8d935d25d71
 msgid ""
 "クエリーログを出力するファイルのパスを指定します。(デフォルトでは出力されませ"
 "ん)"
@@ -9233,7 +6904,6 @@ msgstr ""
 "クエリーログを出力するファイルのパスを指定します。(デフォルトでは出力されませ"
 "ん)"
 
-# 4614b854ef8346e180adaa6c46b0856c
 msgid ""
 "最大で利用するスレッド数を指定します。(デフォルトはマシンのCPUコア数と同じ数"
 "です)"
@@ -9241,11 +6911,9 @@ msgstr ""
 "最大で利用するスレッド数を指定します。(デフォルトはマシンのCPUコア数と同じ数"
 "です)"
 
-# 0c1ac89d1a13468fa8092e9420cb1a6a
 msgid "PIDを保存するパスを指定します。(デフォルトでは保存しません)"
 msgstr "PIDを保存するパスを指定します。(デフォルトでは保存しません)"
 
-# 0c6dec1ea4ac485b9243c657ea605144
 msgid ""
 "設定ファイルのパスを指定します。設定ファイルは以下のようなフォーマットになり"
 "ます。::"
@@ -9253,19 +6921,15 @@ msgstr ""
 "設定ファイルのパスを指定します。設定ファイルは以下のようなフォーマットになり"
 "ます。::"
 
-# 45c69122404144159b6a8a5ffa04258c
 msgid "キャッシュ数の最大値を指定します。(デフォルトは100です)"
 msgstr "キャッシュ数の最大値を指定します。(デフォルトは100です)"
 
-# 9fba2e28497a4791878667fe06e32747
 msgid "検索の挙動をエスカレーションする閾値を指定します。(デフォルトは0です)"
 msgstr "検索の挙動をエスカレーションする閾値を指定します。(デフォルトは0です)"
 
-# 65eb2f34dab44c7cb9a82b94f8742d15
 msgid "使用するデータベースのパス名を指定します。"
 msgstr "使用するデータベースのパス名を指定します。"
 
-# c04fd767c5114758bb11ac1f52227bac
 msgid ""
 "クライアントモードの場合は接続先のホスト名とポート番号を指定します(デフォルト"
 "値は'localhost:10041')。ポート番号を指定しない場合には、10041が指定されたもの"
@@ -9275,7 +6939,6 @@ msgstr ""
 "値は'localhost:10041')。ポート番号を指定しない場合には、10041が指定されたもの"
 "とします。"
 
-# ea1fcb1f92a548989ca59841615d2d2a
 msgid ""
 "スタンドアロンおよびクライアントモードの場合は、実行するコマンドとその引数を"
 "コマンドライン引数に指定できます。コマンドライン引数にcommandを与えなかった場"
@@ -9287,7 +6950,6 @@ msgstr ""
 "合は、標準入力から一行ずつEOFに達するまでコマンド文字列を読み取り、順次実行し"
 "ます。"
 
-# 64e1cd2f6a474f11a74f6cad62757fe3
 msgid ""
 "groongaコマンドを通してデータベースを操作する命令をコマンドと呼びます。コマン"
 "ドは主にC言語で記述され、groongaプロセスにロードすることによって使用できるよ"
@@ -9297,11 +6959,9 @@ msgstr ""
 "ドは主にC言語で記述され、groongaプロセスにロードすることによって使用できるよ"
 "うになります。 それぞれのコマンドは一意な名前と、0個以上の引数を持ちます。"
 
-# 4344c9647a674745bcb4ce53428ef47d
 msgid "引数は以下の2種類の方法のいずれかで指定することができます。::"
 msgstr "引数は以下の2種類の方法のいずれかで指定することができます。::"
 
-# 81002711f9fc40d094efd8d5545db6be
 msgid ""
 "形式1でコマンドを実行する場合は、定義された順番で値を指定しなければならず、途"
 "中の引数の値を省略することはできません。形式2でコマンドを実行する場合は、「--"
@@ -9313,7 +6973,6 @@ msgstr ""
 "引数名」のように引数の名前を明示しなければならない代わりに、任意の順番で引数"
 "を指定することが可能で、途中の引数の指定を省略することもできます。"
 
-# 01893a2e55474bfbbc0a2c00f07abdd0
 msgid ""
 "標準入力からコマンド文字列を与える場合は、コマンド名と引数名と値は、空白( )で"
 "区切ります。空白や、記号「\"'()\\」のうちいずれかを含む値を指定したい場合は、"
@@ -9331,250 +6990,190 @@ msgstr ""
 "バックスラッシュ文字自身を値として指定する場合には、その前にバックスラッシュ"
 "を指定します。"
 
-# e50f0a46c53142698608c7c19474461a
 msgid ""
 "You can write command list with continuous line which is represented by '\\"
 "\\' character.::"
 msgstr ""
 
-# d6689cab03844a52b277e245cd0c9e5a
 msgid "組み込みコマンド"
 msgstr "組み込みコマンド"
 
-# 36bb4d3da5164dac9a2e53040280c39f
 msgid "以下のコマンドは組み込みコマンドとして予め定義されています。"
 msgstr "以下のコマンドは組み込みコマンドとして予め定義されています。"
 
-# f4250157116440dc9fd15098644ad117
 msgid "``status``"
 msgstr ""
 
-# ae5489c6783a4e28852f7534326b81cc
 msgid "groongaプロセスの状態を表示します。"
 msgstr "groongaプロセスの状態を表示します。"
 
-# 93d57ef172e34d158be630bb174125d8
 msgid "DBに定義されているテーブルのリストを表示します。"
 msgstr "DBに定義されているテーブルのリストを表示します。"
 
-# 6586677da16f411e92eb429eda5c9dcd
 msgid "``table_list``"
 msgstr ""
 
-# ea997739b57e4c90934ad82e43a8418c
 msgid "``column_list``"
 msgstr ""
 
-# bed67f5ff73e4697a5052f6d48b0da1a
 msgid "テーブルに定義されているカラムのリストを表示します。"
 msgstr "テーブルに定義されているカラムのリストを表示します。"
 
-# 3e33d26ca8544b209fbc7f9d81971461
 msgid "DBにテーブルを追加します。"
 msgstr "DBにテーブルを追加します。"
 
-# 1cf238009043408087088ed70616bb57
 msgid "テーブルにカラムを追加します。"
 msgstr "テーブルにカラムを追加します。"
 
-# 28eb95f281cf4647923740acde44b623
 msgid "DBに定義されているテーブルを削除します。"
 msgstr "DBに定義されているテーブルを削除します。"
 
-# 5ca042d66a114237868b152fe102048e
 msgid "``table_remove``"
 msgstr ""
 
-# 284c221b3e194c38888ad9b7e9aea113
 msgid "``column_remove``"
 msgstr ""
 
-# d4823a11a70747ef9f8b4560b05e0f2b
 msgid "テーブルに定義されているカラムを削除します。"
 msgstr "テーブルに定義されているカラムを削除します。"
 
-# ff7998336e2943c78c2ae9adf7eb56ed
 msgid "テーブルにレコードを挿入します。"
 msgstr "テーブルにレコードを挿入します。"
 
-# 44c3c529516941408b29f193e65da146
 msgid "テーブルに含まれるレコードを検索して表示します。"
 msgstr "テーブルに含まれるレコードを検索して表示します。"
 
-# 831ad9cf738f4b558a741bd467fc4067
 msgid "``define_selector``"
 msgstr ""
 
-# b88913fc752c4f3fa46342a982cf983c
 msgid "検索条件をカスタマイズした新たな検索コマンドを定義します。"
 msgstr "検索条件をカスタマイズした新たな検索コマンドを定義します。"
 
-# 7a82f6ab7a4140b38058cff04b755d9a
-# 4fad113e14204d84abf1f98a06ed07a5
 msgid "``quit``"
 msgstr ""
 
-# 303d490c7da043d2b3e02be0d93f4d1e
 msgid "データベースとのセッションを終了します。"
 msgstr "データベースとのセッションを終了します。"
 
-# ac43fa35b77e4ac7a322326a79c05bf0
 msgid "``shutdown``"
 msgstr ""
 
-# 21e9a6a21b0349678f1f61a861aa091a
 msgid "サーバ(デーモン)プロセスを停止します。"
 msgstr "サーバ(デーモン)プロセスを停止します。"
 
-# 03bdf580c7c642ed8411d22ad1675059
 msgid "``log_level``"
 msgstr ""
 
-# 072fee93132d41268a65e4e3d68fedde
 msgid "ログ出力レベルを設定します。"
 msgstr "ログ出力レベルを設定します。"
 
-# 9292a696e5bb4449a7b02812d53c08b4
 msgid "``log_put``"
 msgstr ""
 
-# df4ce17714144ab585c25ad85f8fe882
 msgid "ログ出力を行います。"
 msgstr "ログ出力を行います。"
 
-# 51ec3260fbb0429b899a2d4738546ce0
 msgid "ロックを解除します。"
 msgstr "ロックを解除します。"
 
-# a56eb96d6bda46e7bc26eb246fd96d2c
 msgid "``clearlock``"
 msgstr ""
 
-# d07a85896a294bfb97bd6aadbf91f3d2
 msgid "新しいデータベースを作成します。::"
 msgstr "新しいデータベースを作成します。::"
 
-# 07aa942ebd33400584139d8955fc35a8
 msgid "作成済みのデータベースにテーブルを定義します。::"
 msgstr "作成済みのデータベースにテーブルを定義します。::"
 
-# e8a5833cd98e44039d369c0f06d14f34
 msgid "サーバを起動します。::"
 msgstr "サーバを起動します。::"
 
-# f97430d493a9498db29de7abbf1f829a
 msgid "httpサーバとして起動します。::"
 msgstr "httpサーバとして起動します。::"
 
-# e73989e0edd74052870469bab121d5d7
 msgid "サーバに接続し、テーブル一覧を表示します。::"
 msgstr "サーバに接続し、テーブル一覧を表示します。::"
 
-# 47da8d00432c4d358852d3730066ce10
 msgid "Function"
 msgstr ""
 
-# 7b7d9d35afd94e9ea97e3a407a45394d
 msgid ""
 "Function can be used in some commands. For example, you can use function in "
 "``--filter``, ``--scorer`` and ``output_columns`` options of :doc:`commands/"
 "select`."
 msgstr ""
 
-# d72c1f083ec6463a8bcaca1ac746b88a
 msgid "This section describes about function and built-in functions."
 msgstr ""
 
-# 9821eb41f4264a1791dba22de4d9b400
 msgid "TODO: Add documentations about function."
 msgstr ""
 
-# 7012cb6afb674fd487f4518a38e7b76c
 msgid "between"
 msgstr ""
 
-# 440ab438069845988d8022872599bd97
 msgid ""
 "``between`` is used for checking the specified value exists in the specific "
 "range. It is often used for combination with :ref:`select-filter` option in :"
 "doc:`/reference/commands/select`."
 msgstr ""
 
-# 87bd96ef7bbd4dfaa238cdb94371195b
 msgid "``between`` has five parameters::"
 msgstr ""
 
-# c0b6457f2c2e49e9a860d9915eb71fb8
-# dbd7ce67af4b4096b4caa3111a1a9d90
-# 16c671e139ff4fdb986ae5142c5aa3d8
 msgid "Here are a schema definition and sample data to show usage.::"
 msgstr ""
 
-# f719090a33d94547951e39203989eade
 msgid "Here is the query to show the persons to match PG-13 rating (MPAA)."
 msgstr ""
 
-# 425bceb4e2f14f4dbdf068e11f16649c
 msgid "It returns 13, 14, 15 and 16 years old users."
 msgstr ""
 
-# 1caa7e8b482b4fb5b31e5a1a2461058f
 msgid ""
 "``between`` function accepts not only a column of table, but also the value."
 msgstr ""
 
-# 394b0bcd46db46349b20f592d1439f0c
 msgid ""
 "If you specify the value as 1st parameter, it is checked whether the value "
 "is included or not. if it matches to the specified range, it returns the all "
 "records because ``between`` function returns true."
 msgstr ""
 
-# a2e8fc9be20b48f790016e4fe68b24ed
 msgid ""
 "If it doesn't match to the specified range, it returns no records because "
 "``between`` function returns false."
 msgstr ""
 
-# addf55d294334773b9cd9214c26adeda
 msgid ""
 "In the above case, it returns all the records, because 14 exists in between "
 "13 and 16. This behavior is used for checking the specified value exists or "
 "not in the table."
 msgstr ""
 
-# b62aeba4e45a485cb2c513b9904857ab
 msgid ""
 "There are five required parameters, ``column_or_value``, and ``min``, "
 "``min_border``, ``max`` and ``max_border``."
 msgstr ""
 
-# 5fa646c09bf24b35b246a58b6a1a57fe
 msgid "``column_or_value``"
 msgstr ""
 
-# 3d7b9c39971345e59f00e70ff68a5914
 msgid "It specifies a column of the table or the value."
 msgstr ""
 
-# ed20df417cf4466392ec34935c139d8b
-# d4d5a7204ce346dd80ded0f8d97c667f
 msgid "``min``"
 msgstr ""
 
-# 1acc06e16bc849bf842b334630e5cabb
 msgid ""
 "It specifies the minimal border value of the range. You can control the "
 "behavior that the value of ``max`` is included or excluded by ``max_border`` "
 "parameter."
 msgstr ""
 
-# 175c7864061e407c9df325dc092b9cc8
-# 90f038de403f4643a37099d043a59cd0
 msgid "``min_border``"
 msgstr ""
 
-# 93b496aa273a47d4a09924cbf6a28713
 msgid ""
 "It specifies whether the specified range contains the value of ``min`` or "
 "not. The value of ``min_border`` are either \"include\" or \"exclude\". If "
@@ -9582,19 +7181,15 @@ msgid ""
 "value is not included."
 msgstr ""
 
-# 58adabb2a5d64b23a9fe4a7ad35cddb9
 msgid ""
 "It specifies the maximum border value of the range. You can control the "
 "behavior that the value of ``max`` is included or excluded by ``max_border`` "
 "parameter."
 msgstr ""
 
-# b0f263ad3e6b42e08486047890401704
-# 0440c20bd123498889aba1be24af580c
 msgid "``max_border``"
 msgstr ""
 
-# 68c567fdf9914fd6a4e5e05ee1c2d801
 msgid ""
 "It specifies whether the specified range contains the value of ``max`` or "
 "not. The value of ``max_border`` are either \"include\" or \"exclude\". If "
@@ -9602,28 +7197,23 @@ msgid ""
 "value is not included."
 msgstr ""
 
-# 30517de0c5db403087481c73960ab5ae
 msgid ""
 "``between`` returns whether the value of column exists in specified the "
 "value of range or not. If record is matched to specified the value of range, "
 "it returns true. Otherwise, it returns false."
 msgstr ""
 
-# 153584d43dcc466d855893ba28b98721
 msgid "edit_distance"
 msgstr "edit_distance"
 
-# 5da805df625f495fa0f10fdddae3582a
 msgid "edit_distance - 指定した2つの文字列の編集距離を計算する"
 msgstr "edit_distance - 指定した2つの文字列の編集距離を計算する"
 
-# 4b90ae04eb384334a0051fc817f270a7
 msgid ""
 "Groonga組込関数の一つであるedit_distanceについて説明します。組込関数は、"
 "script形式のgrn_expr中で呼び出すことができます。"
 msgstr ""
 
-# 637e560d04a14bd8a2447911cbedb82d
 msgid ""
 "edit_distance() 関数は、string1に指定した文字列とstring2に指定した文字列の間"
 "の編集距離を求めます。"
@@ -9631,31 +7221,24 @@ msgstr ""
 "edit_distance() 関数は、string1に指定した文字列とstring2に指定した文字列の間"
 "の編集距離を求めます。"
 
-# ffdbd88d1ffd4804bac6c8fa88900a94
 msgid "``string1``"
 msgstr "``string1``"
 
-# 9ff13e3fccf14788903877412638ac4f
 msgid "文字列を指定します"
 msgstr "文字列を指定します"
 
-# 208c8ebeb4034cc2909c32c4b0fb2ccd
 msgid "``string2``"
 msgstr "``string2``"
 
-# fe7c96b0c322441783d772794a967cd5
 msgid "もうひとつの文字列を指定します"
 msgstr "もうひとつの文字列を指定します"
 
-# 6e6eeaea5b8445bbb7c48842052c9960
 msgid "指定した2つ文字列の編集距離をUint32型の値として返します。"
 msgstr "指定した2つ文字列の編集距離をUint32型の値として返します。"
 
-# 7567cefdb3a146058b271d9ec2ffe825
 msgid "geo_distance"
 msgstr "geo_distance"
 
-# b358e0eb4a404e459287bc4be7288d3b
 msgid ""
 "``geo_distance`` calculates the value of distance between specified two "
 "points."
@@ -9663,7 +7246,6 @@ msgstr ""
 "``geo_distance`` calculates the value of distance between specified two "
 "points."
 
-# 64ba8ebc912748348284bbd9da18e61c
 msgid ""
 "``geo_distance`` requires two point. The parameter ``approximate_type`` is "
 "optional::"
@@ -9671,7 +7253,6 @@ msgstr ""
 "``geo_distance`` requires two point. The parameter ``approximate_type`` is "
 "optional::"
 
-# 22287d46ab1d4edb95865d8a5f7b28cd
 msgid ""
 "The default value of ``approximate_type`` is ``\"rectangle\"``. If you omit "
 "``approximate_type``, ``geo_distance`` calculates the value of distance as "
@@ -9681,15 +7262,12 @@ msgstr ""
 "``approximate_type``, ``geo_distance`` calculates the value of distance as "
 "if ``\"rectangle\"`` was specified."
 
-# 7136dd4e544e46f6860ff5d33fd03f56
 msgid "``geo_distance`` is one of the Groonga builtin functions."
 msgstr ""
 
-# 0cc551f0a7a340f9bc7e7118b14085ef
 msgid "You can call a builtin function in :doc:`/reference/grn_expr`"
 msgstr "You can call a builtin function in :doc:`/reference/grn_expr`"
 
-# 97a792d675a0441ab72d8b6616a21269
 msgid ""
 "``geo_distance`` function calculates the value of distance (approximate "
 "value) between the coordinate of ``point1`` and the coordinate of ``point2``."
@@ -9697,7 +7275,6 @@ msgstr ""
 "``geo_distance`` function calculates the value of distance (approximate "
 "value) between the coordinate of ``point1`` and the coordinate of ``point2``."
 
-# 18216e6b2b774704860b28bc526eb6b0
 msgid ""
 "Groonga provides three built in functions for calculating the value of "
 "distance. There are ``geo_distance()``, ``geo_distance2()`` and "
@@ -9708,7 +7285,6 @@ msgid ""
 "\"ellipsoid\")`` instead of ``geo_distance3(point1, point2)``."
 msgstr ""
 
-# f7ed52c1d4614bdca0603f55ab274b1c
 msgid ""
 "Lets's learn about ``geo_distance`` usage with examples. This section shows "
 "simple usages."
@@ -9716,20 +7292,17 @@ msgstr ""
 "Lets's learn about ``geo_distance`` usage with examples. This section shows "
 "simple usages."
 
-# b9cb012862ab405aa8eeedbc5ffd9bd0
 msgid ""
 "Here are two schema definition and sample data to show the difference "
 "according to the usage. Those samples show how to calculate the value of "
 "distance between New York City and London."
 msgstr ""
 
-# cbc8d7274ae743efb6868e476270a05b
 msgid ""
 "Using the column value of location for calculating the distance (``Cities`` "
 "table)"
 msgstr ""
 
-# 666f017918de4f0aaaa31007fcb6dd10
 msgid ""
 "Using the explicitly specified coordinates for calculating the distance "
 "(``Geo`` table)"
@@ -9737,24 +7310,20 @@ msgstr ""
 "Using the explicitly specified coordinates for calculating the distance "
 "(``Geo`` table)"
 
-# 11030e581aee4affb10165944f951f90
 msgid "Using the column value of location"
 msgstr "Using the column value of location"
 
-# ef4dd88fad0f4c4db2466892adfa0c77
 msgid ""
 "Here are a schema definition of ``Cities`` table and sample data to show "
 "usage."
 msgstr ""
 
-# 7afe42f25b0241f88be42a0e63d1bcbc
 msgid ""
 "This execution example creates a table named ``Cities`` which has one column "
 "named ``location``. ``location`` column stores the value of coordinate. The "
 "coordinate of Tokyo is stored as sample data."
 msgstr ""
 
-# 105414e7628547ae80b6a7084a8cccd5
 msgid ""
 "This sample shows that ``geo_distance`` use the value of ``location`` column "
 "and the value of coordinate to calculate distance."
@@ -9762,23 +7331,19 @@ msgstr ""
 "This sample shows that ``geo_distance`` use the value of ``location`` column "
 "and the value of coordinate to calculate distance."
 
-# 36277feeed154e99af6184c4d426edf1
 msgid ""
 "The value (\"185428000x-461000\") passed to ``geo_distance`` as the second "
 "argument is the coordinate of London."
 msgstr ""
 
-# 9ab15fb7c6254404ab9537cd6d9e6d74
 msgid "Using the explicitly specified value of location"
 msgstr "Using the explicitly specified value of location"
 
-# ef4dd88fad0f4c4db2466892adfa0c77
 msgid ""
 "Here are a schema definition of ``Geo`` table and sample data to show usage."
 msgstr ""
 "Here are a schema definition of ``Geo`` table and sample data to show usage."
 
-# e921c0c0bb3043069c964060280a2d52
 msgid ""
 "This execution example creates a table named ``Geo`` which has one column "
 "named ``distance``. ``distance`` column stores the value of distance."
@@ -9786,21 +7351,17 @@ msgstr ""
 "This execution example creates a table named ``Geo`` which has one column "
 "named ``distance``. ``distance`` column stores the value of distance."
 
-# f847744fe0b04ae285268cbf4a896ca8
 msgid ""
 "This sample shows that ``geo_distance`` use the coordinate of London and the "
 "coordinate of New York to calculate distance."
 msgstr ""
 
-# 8294898fb52244968e09f77b9ccf5c7d
 msgid "There are two required parameter, ``point1`` and ``point2``."
 msgstr "There are two required parameter, ``point1`` and ``point2``."
 
-# f8294a16c2dc4e978809834fb4a6b2e9
 msgid "``point1``"
 msgstr "``point1``"
 
-# 481837f1b1174c48992f7425a83d1c0a
 msgid ""
 "It specifies the start point that you want to calculate the value of "
 "distance between two points."
@@ -9808,19 +7369,15 @@ msgstr ""
 "It specifies the start point that you want to calculate the value of "
 "distance between two points."
 
-# 33cd8d0b4c064e1d9dd6aeeb28d9e1ff
 msgid "You can specify the value of GeoPoint type. [#]_"
 msgstr "You can specify the value of GeoPoint type. [#]_"
 
-# 6aa7b4b0af4e41ed8869757682f89526
 msgid "See :doc:`/reference/types` about GeoPoint."
 msgstr ""
 
-# 3570a3f6f01a4164b343ab4bfaab0582
 msgid "``point2``"
 msgstr "``point2``"
 
-# 669a3a51369b46cd80e7e3008153f6fc
 msgid ""
 "It specifies the end point that you want to calculate the value of distance "
 "between two points."
@@ -9828,7 +7385,6 @@ msgstr ""
 "It specifies the end point that you want to calculate the value of distance "
 "between two points."
 
-# c5e903f76d9d40f8b35c4d23cdc81ac5
 msgid ""
 "You can specify the value of GeoPoint type or the string indicating the "
 "coordinate."
@@ -9836,24 +7392,18 @@ msgstr ""
 "You can specify the value of GeoPoint type or the string indicating the "
 "coordinate."
 
-# 25aedc7e436944129ae0d392602cd246
 msgid "See :doc:`/reference/types` about GeoPoint and the coordinate."
 msgstr ""
 
-# de8580f532d847eeba0deb53c6e64b3a
 msgid "Optional parameter"
 msgstr "Optional parameter"
 
-# 1e37dba8fadf426fb1b317b030f19946
 msgid "There is a optional parameter, ``approximate_type``."
 msgstr "There is a optional parameter, ``approximate_type``."
 
-# ad84426a40d043f1953e0af9b09f47dc
-# 574393958c3a4c2bb124a7a10c9bbd72
 msgid "``approximate_type``"
 msgstr "``approximate_type``"
 
-# ca23b04cb5f44e91975350c2074cec64
 msgid ""
 "It specifies how to approximate the geographical features for calculating "
 "the value of distance."
@@ -9861,28 +7411,20 @@ msgstr ""
 "It specifies how to approximate the geographical features for calculating "
 "the value of distance."
 
-# e24baa590a08487eae65cc2474a9ee4b
 msgid ""
 "You can specify the value of ``approximate_type`` by one of the followings."
 msgstr ""
 "You can specify the value of ``approximate_type`` by one of the followings."
 
-# 83ad03d336d5461badb1d6bede1cf3ec
-# fccb4eb90c49414eb2f8cb8357c0218f
 msgid "``rectangle``"
 msgstr "``rectangle``"
 
-# 79d9bff38f3a48e0ad05b2f8e4782660
-# cf7d015020e9412988ea521ca618bda9
 msgid "``sphere``"
 msgstr "``sphere``"
 
-# eecc540f59514a40aa2ed22538e26be9
-# e47066aee34645d19f85394a475c737a
 msgid "``ellipsoid``"
 msgstr "``ellipsoid``"
 
-# ec7347dbdb95488bbff9ce136c0b2d4c
 msgid ""
 "There is a limitation about ``geo_distance``. ``geo_distance`` can not "
 "calculate the value of distance between two points across meridian, equator "
@@ -9892,7 +7434,6 @@ msgid ""
 "in the future release."
 msgstr ""
 
-# 38daeb6dc3124f30a57cdcbf136800de
 msgid ""
 "This parameter require to approximate the geographical features by square "
 "approximation for calculating the distance."
@@ -9900,7 +7441,6 @@ msgstr ""
 "This parameter require to approximate the geographical features by square "
 "approximation for calculating the distance."
 
-# 766f793248a446f48f3309d0d0437f8b
 msgid ""
 "Since the value of distance is calculated by simple formula, you can "
 "calculate the value of distance fast. But, the error of distance increases "
@@ -9910,19 +7450,14 @@ msgstr ""
 "calculate the value of distance fast. But, the error of distance increases "
 "as it approaches the pole."
 
-# f9c7cc3b234c4384bee3598cf4f1f79e
 msgid "You can also specify ``rect`` as abbrev expression."
 msgstr "You can also specify ``rect`` as abbrev expression."
 
-# c811c037bb684f77b5ca0ea3d796d48e
-# ec5924b983394892a875751fff19689c
-# 7483f21bdbbc4b7cb4861bfaff9b4e6a
 msgid ""
 "Here is a sample about calculating the value of distance with column value."
 msgstr ""
 "Here is a sample about calculating the value of distance with column value."
 
-# 2125030d9b25444393655f07c42af8f4
 msgid ""
 "Here is a sample about calculating the value of distance with explicitly "
 "specified point."
@@ -9930,20 +7465,17 @@ msgstr ""
 "Here is a sample about calculating the value of distance with explicitly "
 "specified point."
 
-# 2125030d9b25444393655f07c42af8f4
 msgid ""
 "Here are samples about calculating the value of distance with explicitly "
 "specified point across meridian, equator, the date line."
 msgstr ""
 
-# 40d47f18a47c4ce28c53c42e2b04b7c0
 msgid ""
 "This sample shows the value of distance across meridian. The return value of "
 "``geo_distance(\"175904000x8464000\", \"145508000x-13291000\", \"rectangle\")"
 "`` is the value of distance from Paris, Flance to Madrid, Spain."
 msgstr ""
 
-# bd6c8c7ac29640a391b6c69cb74b0b1b
 msgid ""
 "This sample shows the value of distance across equator. The return value of "
 "``geo_distance(\"146566000x-266422000\", \"-56880000x-172310000\", "
@@ -9951,7 +7483,6 @@ msgid ""
 "to Brasillia, Brasil."
 msgstr ""
 
-# 9a639b60f27a4c46961f8289c8c3e425
 msgid ""
 "This sample shows the value of distance across the date line. The return "
 "value of ``geo_distance(\"143660000x419009000\", \"135960000x-440760000\", "
@@ -9959,7 +7490,6 @@ msgid ""
 "Francisco, The United States."
 msgstr ""
 
-# 32f234e7cf7a453b8a7d5d4dd11c16c4
 msgid ""
 "``geo_distance`` uses square approximation as default. If you omit "
 "``approximate_type``, ``geo_distance`` behaves like ``rectangle`` was "
@@ -9969,7 +7499,6 @@ msgstr ""
 "``approximate_type``, ``geo_distance`` behaves like ``rectangle`` was "
 "specified."
 
-# 3db6e83b55814c5e90515b51ee9187e3
 msgid ""
 "``geo_distance`` accepts the string indicating the coordinate as the value "
 "of ``point1`` when the value of ``approximate_type`` is ``\"rectangle\"``. "
@@ -9983,7 +7512,6 @@ msgstr ""
 "``point1`` with ``sphere`` or ``ellipsoid``, ``geo_distance`` returns 0 as "
 "the value of distance."
 
-# d19835de509f4b829b24e3fd531f39b4
 msgid ""
 "This parameter require to approximate the geographical features by spherical "
 "approximation for calculating the distance."
@@ -9991,7 +7519,6 @@ msgstr ""
 "This parameter require to approximate the geographical features by spherical "
 "approximation for calculating the distance."
 
-# 11149249defb4e95a3bb78c49be24aa7
 msgid ""
 "It is slower than ``rectangle``, but the error of distance becomes smaller "
 "than ``rectangle``."
@@ -9999,11 +7526,9 @@ msgstr ""
 "It is slower than ``rectangle``, but the error of distance becomes smaller "
 "than ``rectangle``."
 
-# 409e559ad2864b0cb5491b0e609a5db7
 msgid "You can also specify ``sphr`` as abbrev expression."
 msgstr "You can also specify ``sphr`` as abbrev expression."
 
-# bda4e11d552f4c44a0ae824ceb1c401a
 msgid ""
 "This parameter require to approximate the geographical features by ellipsoid "
 "approximation for calculating the distance."
@@ -10011,7 +7536,6 @@ msgstr ""
 "This parameter require to approximate the geographical features by ellipsoid "
 "approximation for calculating the distance."
 
-# 3b6b1a463935424b8bca213143c79ecf
 msgid ""
 "It uses the calculation of distance by the formula of Hubeny. It is slower "
 "than ``sphere``, but the error of distance becomes smaller than ``sphere``."
@@ -10019,11 +7543,9 @@ msgstr ""
 "It uses the calculation of distance by the formula of Hubeny. It is slower "
 "than ``sphere``, but the error of distance becomes smaller than ``sphere``."
 
-# 091dcad8b44f42bfa6bdea55df6554b1
 msgid "You can also specify ``ellip`` as abbrev expression."
 msgstr "You can also specify ``ellip`` as abbrev expression."
 
-# cc0505f2cb4647a5a9c0623a3fa9008d
 msgid ""
 "``geo_distance`` returns the value of distance in float type. The unit of "
 "return value is meter."
@@ -10031,29 +7553,23 @@ msgstr ""
 "``geo_distance`` returns the value of distance in float type. The unit of "
 "return value is meter."
 
-# 3bb2466b476446d6aed34789437f907c
 msgid "Footnote"
 msgstr "Footnote"
 
-# 980538abb363453d8badd5e2d6067cd7
 msgid "You can specify whether TokyoGeoPoint or WGS84GeoPoint."
 msgstr "You can specify whether TokyoGeoPoint or WGS84GeoPoint."
 
-# fab33e407c7442849b12a6a26c26f40a
 msgid "geo_in_circle"
 msgstr "geo_in_circle"
 
-# 48e8ef32a35942d5afed217369b8536b
 msgid "geo_in_circle - 座標が円の範囲内に存在するかどうかを調べます。"
 msgstr "geo_in_circle - 座標が円の範囲内に存在するかどうかを調べます。"
 
-# 85ea2caf64f9463e96ca9ace1cf8bd2a
 msgid ""
 "Groonga組込関数の一つであるgeo_in_circleについて説明します。組込関数は、"
 "script形式のgrn_expr中で呼び出すことができます。"
 msgstr ""
 
-# 5d993791acec4c9f85077d4ee4a22160
 msgid ""
 "geo_in_circle() 関数は、pointに指定した座標が、centerに指定した座標を中心とす"
 "る円の範囲内にあるかどうかを調べます。"
@@ -10061,12 +7577,9 @@ msgstr ""
 "geo_in_circle() 関数は、pointに指定した座標が、centerに指定した座標を中心とす"
 "る円の範囲内にあるかどうかを調べます。"
 
-# 741d325b03e9439ea8f02aeca40f60af
-# 9f627ffeb389406ca3063796b51a9de7
 msgid "``point``"
 msgstr "``point``"
 
-# d6c936142976480a9265b4ca7fb976bf
 msgid ""
 "円の範囲内に存在するかどうかを調べる座標を指定します。Point型の値を指定できま"
 "す。 [#]_"
@@ -10074,11 +7587,9 @@ msgstr ""
 "円の範囲内に存在するかどうかを調べる座標を指定します。Point型の値を指定できま"
 "す。 [#]_"
 
-# f39321953f394e7fb1e821f4dd642690
 msgid "``center``"
 msgstr "``center``"
 
-# 99c8b18488ec4819a653a6b1df6000fa
 msgid ""
 "円の中心となる座標を指定します。Point型の値、あるいは座標を示す文字列を指定で"
 "きます。"
@@ -10086,11 +7597,9 @@ msgstr ""
 "円の中心となる座標を指定します。Point型の値、あるいは座標を示す文字列を指定で"
 "きます。"
 
-# d67613d7133c409983e6f1e8e020925f
 msgid "``radious_or_point``"
 msgstr "``radious_or_point``"
 
-# 3e6fd27561164bcf955e2e4a39365ac6
 msgid ""
 "円の半径を指定します。数値を指定した場合には、半径(単位:メートル)が指定された"
 "ものとみなします。 Point型の値、あるいは座標を示す文字列を指定した場合は、円"
@@ -10100,7 +7609,6 @@ msgstr ""
 "ものとみなします。 Point型の値、あるいは座標を示す文字列を指定した場合は、円"
 "周上の点の一つの座標が指定されたものとみなします。"
 
-# e0c0e18a7556412882a2d06f2925dde4
 msgid ""
 "半径からの距離を求めるために地形をどのように近似するかを指定します。指定でき"
 "る値は以下の通りです。"
@@ -10108,11 +7616,9 @@ msgstr ""
 "半径からの距離を求めるために地形をどのように近似するかを指定します。指定でき"
 "る値は以下の通りです。"
 
-# 3da5e3b59cca4205beab11d62a4d0aba
 msgid "``\"rectangle\"``"
 msgstr "``\"rectangle\"``"
 
-# 9ab62f23d4f7424bacd261a455dfafce
 msgid ""
 "方形近似で近似します。単純な計算式で距離を求めることができるため高速ですが、"
 "極付近では誤差が大きくなります。"
@@ -10120,11 +7626,9 @@ msgstr ""
 "方形近似で近似します。単純な計算式で距離を求めることができるため高速ですが、"
 "極付近では誤差が大きくなります。"
 
-# aa6cf923f0eb44e6a487b1a31efda028
 msgid "``\"rect\"`` と省略して指定することもできます。"
 msgstr "``\"rect\"`` と省略して指定することもできます。"
 
-# f283095b95644e2eb22080c712934e6a
 msgid ""
 "この近似方法がデフォルト値です。 ``approximate_type`` を省略した場合は方形近"
 "似になります。"
@@ -10132,11 +7636,9 @@ msgstr ""
 "この近似方法がデフォルト値です。 ``approximate_type`` を省略した場合は方形近"
 "似になります。"
 
-# a2a673539dfd4979b8827ac51ef3fa89
 msgid "``\"sphere\"``"
 msgstr "``\"sphere\"``"
 
-# 73eb1e01ac0040f5a715fc8fd735a9f7
 msgid ""
 "球面近似で近似します。 ``\"rectangle\"`` よりも遅くなりますが、誤差は小さいで"
 "す。"
@@ -10144,15 +7646,12 @@ msgstr ""
 "球面近似で近似します。 ``\"rectangle\"`` よりも遅くなりますが、誤差は小さいで"
 "す。"
 
-# 79504084489c4b1c9a31aa6819367930
 msgid "``\"sphr\"`` と省略して指定することもできます。"
 msgstr "``\"sphr\"`` と省略して指定することもできます。"
 
-# 9fc5ff41d0024607b5d09b123fef4654
 msgid "``\"ellipsoid\"``"
 msgstr "``\"ellipsoid\"``"
 
-# 7e32ac5a58c64ad2b4f71a1bf85e5edc
 msgid ""
 "楕円体近似で近似します。距離の計算にはヒュベニの距離計算式を用います。 ``"
 "\"sphere\"`` よりも遅くなりますが、誤差は小さくなります。"
@@ -10160,16 +7659,12 @@ msgstr ""
 "楕円体近似で近似します。距離の計算にはヒュベニの距離計算式を用います。 ``"
 "\"sphere\"`` よりも遅くなりますが、誤差は小さくなります。"
 
-# 6fc5360fe52b40fbbe76ba5d09367aa0
 msgid "``\"ellip\"`` と省略して指定することもできます。"
 msgstr "``\"ellip\"`` と省略して指定することもできます。"
 
-# 1fcfe31a16d14063b9c99f5ee0a8ab4f
 msgid "pointに指定した座標が円の範囲内にあるかどうかをBool型の値で返します。"
 msgstr "pointに指定した座標が円の範囲内にあるかどうかをBool型の値で返します。"
 
-# 1b8b7e64690c44c9b40d5e7e7f7e8910
-# a4c4af33d1eb42e8abc61e4a91c44919
 msgid ""
 "TokyoGeoPoint(日本測地系座標)かWGS84GeoPoint(世界測地系座標)のいずれかを指定"
 "できます。"
@@ -10177,21 +7672,17 @@ msgstr ""
 "TokyoGeoPoint(日本測地系座標)かWGS84GeoPoint(世界測地系座標)のいずれかを指定"
 "できます。"
 
-# a47dfc197df2415d80726432ce113a55
 msgid "geo_in_rectangle"
 msgstr "geo_in_rectangle"
 
-# 021bda0ab2d74f10a421eb02709a1deb
 msgid "geo_in_rectangle - 座標が矩形の範囲内に存在するかどうかを調べます。"
 msgstr "geo_in_rectangle - 座標が矩形の範囲内に存在するかどうかを調べます。"
 
-# 9ed468979479423e9da7baf7e8a4776d
 msgid ""
 "Groonga組込関数の一つであるgeo_in_rectangleについて説明します。組込関数は、"
 "script形式のgrn_expr中で呼び出すことができます。"
 msgstr ""
 
-# 87599d913278466ca9ef0a37f1675f99
 msgid ""
 "geo_in_rectangle() 関数は、pointに指定した座標が、top_leftとbottom_rightがな"
 "す矩形の範囲内にあるかどうかを調べます。"
@@ -10199,7 +7690,6 @@ msgstr ""
 "geo_in_rectangle() 関数は、pointに指定した座標が、top_leftとbottom_rightがな"
 "す矩形の範囲内にあるかどうかを調べます。"
 
-# 371066bbdbb546039ddb85213562c38a
 msgid ""
 "矩形の範囲内に存在するかどうかを調べる座標を指定します。Point型の値を指定でき"
 "ます。 [#]_"
@@ -10207,11 +7697,9 @@ msgstr ""
 "矩形の範囲内に存在するかどうかを調べる座標を指定します。Point型の値を指定でき"
 "ます。 [#]_"
 
-# 026dbca2c8514138ae12cd19209ef3b8
 msgid "``top_left``"
 msgstr "``top_left``"
 
-# be47f30924ee4b7fbd079ff3e68651d4
 msgid ""
 "矩形の左上隅となる座標を指定します。Point型の値、あるいは座標を示す文字列を指"
 "定できます。"
@@ -10219,11 +7707,9 @@ msgstr ""
 "矩形の左上隅となる座標を指定します。Point型の値、あるいは座標を示す文字列を指"
 "定できます。"
 
-# 4fa18366bd6c4f1cad8d38181a57dee8
 msgid "``bottom_right``"
 msgstr "``bottom_right``"
 
-# 93c18c0b8f664186b2d81514a1cd95ec
 msgid ""
 "矩形の右下隅となる座標を指定します。Point型の値、あるいは座標を示す文字列を指"
 "定できます。"
@@ -10231,111 +7717,84 @@ msgstr ""
 "矩形の右下隅となる座標を指定します。Point型の値、あるいは座標を示す文字列を指"
 "定できます。"
 
-# 6f8aed2e5655402c88de94e0593f4a0a
 msgid "pointに指定した座標が矩形の範囲内にあるかどうかをBool型の値で返します。"
 msgstr ""
 "pointに指定した座標が矩形の範囲内にあるかどうかをBool型の値で返します。"
 
-# b7eaa688207945a5be51ce35e950609d
 msgid "html_untag"
 msgstr ""
 
-# 164bfdbdaa0e47439a01601a7fe5c05a
 msgid "``html_untag`` strips HTML tags from HTML and outputs plain text."
 msgstr ""
 
-# 15c17f68d70648399cde069ce2a91f3e
 msgid ""
 "``html_untag`` is used in ``--output_columns`` described at :ref:"
 "`output_columns`."
 msgstr ""
 
-# 03114b0339ad470699c17748c6ab8cb0
 msgid "``html_untag`` requires only one argument. It is ``html``."
 msgstr ""
 
-# f18f26cee4134faa9072c6b02abe4cb1
-# e658f1960e3e490fad2505f2477dd390
 msgid "Requirements"
 msgstr ""
 
-# 8255d9f7a9384bcdb42f571e7c0c7c41
 msgid "``html_untag`` requires Groonga 3.0.5 or later."
 msgstr ""
 
-# c2da6ac76f8d4b10b45af1834ffe5485
 msgid ""
 "``html_untag`` requires :doc:`/reference/command/command_version` 2 or later."
 msgstr ""
 
-# 3a8233a365154ae693896a4c5becc3e3
-# cb222ca16b7545e580558c441d3e9349
 msgid "Sample schema:"
 msgstr ""
 
-# 3a8233a365154ae693896a4c5becc3e3
-# cb222ca16b7545e580558c441d3e9349
 msgid "Sample data:"
 msgstr ""
 
-# da96f5a001984fa6afb936a84830cb57
 msgid ""
 "Here is the simple usage of ``html_untag`` function which strips HTML tags "
 "from content of column."
 msgstr ""
 
-# c8f122450c0d46bb847219d69641e854
 msgid ""
 "When executing the above query, you can see \"span\" tag with \"class\" "
 "attribute is stripped. Note that you must specify ``--command_version 2`` to "
 "use ``html_untag`` function."
 msgstr ""
 
-# 1eb1184cdea4464ca9cc8a73c9deecf7
 msgid "There is one required parameter, ``html``."
 msgstr ""
 
-# 3cc19ff93b2640128f6d9d6dbb74cff1
 msgid "``html``"
 msgstr ""
 
-# 4cbd35ee174e45658e8becbb0e0a5ade
 msgid "It specifies HTML text to be untagged."
 msgstr ""
 
-# e3339e1730fb4a979c8e4a78fbe2295a
 msgid ""
 "``html_untag`` returns plain text which is stripped HTML tags from HTML text."
 msgstr ""
 
-# 0b1fbf0c37c44d17bc5fc953f002de93
 msgid "now"
 msgstr "now"
 
-# 093b2a9386e5421da3f7ecc9c40fa25f
 msgid "now - 現在時刻を返す"
 msgstr "now - 現在時刻を返す"
 
-# deb890001b354c2a924a026349e23c3f
 msgid ""
 "Groonga組込関数の一つであるnowについて説明します。組込関数は、script形式の"
 "grn_expr中で呼び出すことができます。"
 msgstr ""
 
-# aa9c2f1241ca4b3e930d8429166adba9
 msgid "now() 関数は現在時刻に対応するTime型の値を返します。"
 msgstr "now() 関数は現在時刻に対応するTime型の値を返します。"
 
-# b64f2ad3c7cb4583a4bf8e4d343d87ac
 msgid "現在時刻に対応するTime型のオブジェクトを返します。"
 msgstr "現在時刻に対応するTime型のオブジェクトを返します。"
 
-# 7a82f6ab7a4140b38058cff04b755d9a
-# 4fad113e14204d84abf1f98a06ed07a5
 msgid "query"
 msgstr ""
 
-# b79c5af0eba544fca29ccd8f0272df22
 msgid ""
 "``query`` provides ``--match_columns`` and ``--query`` parameters of :doc:`/"
 "reference/commands/select` feature as function. You can specify multiple "
@@ -10343,156 +7802,125 @@ msgid ""
 "select`."
 msgstr ""
 
-# caeb62f387d04db1824feda4d2bddddd
 msgid ""
 "Because of such flexibility, you can control full text search behavior by "
 "combination of multiple ``query`` functions."
 msgstr ""
 
-# e69485a4441244be9c634bee7f664546
 msgid ""
 "``query`` can be used in only ``--filter`` in :doc:`/reference/commands/"
 "select`."
 msgstr ""
 
-# bf458f47e7254e97a3116adbeee50b20
 msgid ""
 "``query`` requires two arguments - ``match_columns`` and ``query_string``."
 msgstr ""
 
-# f6d48d9af4814e1e962667fa9c0b34ea
 msgid "The parameter ``query_expander`` or ``substitution_table`` is optional."
 msgstr ""
 
-# b831ac9a71e444f9a20d50d3a5b08727
 msgid ""
 "Here is the simple usage of ``query`` function which execute full text "
 "search by keyword 'alice' without using ``--match_columns`` and ``--query`` "
 "arguments in ``--filter``."
 msgstr ""
 
-# 9536082c56ee43caa47acc68efea3221
 msgid ""
 "When executing above query, the keyword 'alice' is weighted to the value - "
 "'10'."
 msgstr ""
 
-# 26782216f5d245928d40b28819384152
 msgid "Here are the contrasting examples with/without ``query``."
 msgstr ""
 
-# 83d0e86d22da4c048f434c633b6b4fdc
 msgid ""
 "In this case, the keywords 'groonga' and 'mroonga' and 'user' are given same "
 "weight value. You can't pass different weight value to each keyword in this "
 "way."
 msgstr ""
 
-# 0fcc748b034c41a9908a2aca5a5ded5f
 msgid ""
 "On the other hand, by specifying multiple ``query``, the keywords 'groonga' "
 "and 'mroonga' and 'user' are given different value of weight."
 msgstr ""
 
-# 5cfb283147404344867423e0cd302b20
 msgid ""
 "As a result, you can control full text search result by giving different "
 "weight to the keywords on your purpose."
 msgstr ""
 
-# 8294898fb52244968e09f77b9ccf5c7d
 msgid ""
 "There are two required parameter, ``match_columns`` and ``query_string``."
 msgstr ""
 
-# f8668f16bf2d47a49c0cf6bc6dcea3d4
 msgid ""
 "It specifies the default target column for fulltext search by "
 "``query_string`` parameter value. It is the same role as :ref:`select-match-"
 "columns` parameter in ``select``."
 msgstr ""
 
-# 72217ef1d842418ab8c29d7974f9168e
 msgid "``query_string``"
 msgstr ""
 
-# 2106a26bb2234a38874c07c50871223b
 msgid ""
 "It specifies the search condition in :doc:`/reference/grn_expr/"
 "query_syntax`. It is the same role as ``query`` parameter in ``select``."
 msgstr ""
 
-# 55b2aa7325224c6784752c6b80b775d7
 msgid ""
 "See :ref:`select-match-columns` about ``query`` parameter in ``select``."
 msgstr ""
 
-# de8580f532d847eeba0deb53c6e64b3a
 msgid "There are some optional parameters."
 msgstr ""
 
-# db60025b81f142eeb2449944fd5b7e58
 msgid "It specifies the plugin name for query expansion."
 msgstr ""
 
-# fddc764408f6474a979abf8f45a0116f
 msgid ""
 "There is one plugin bundled in official release - :doc:`/reference/"
 "query_expanders/tsv`."
 msgstr ""
 
-# 302f21aa293641d195a24eb6074efbc6
 msgid "See :doc:`/reference/query_expanders/tsv` about details."
 msgstr ""
 
-# 41123c3580d642a88ea02dc5da66cafa
 msgid "``substitution_table``"
 msgstr ""
 
-# 0a406eee325b4e89a93e84b4a917ac6b
 msgid ""
 "It specifies the substitution table and substitution column name by "
 "following format such as ``${TABLE}.${COLUMN}`` for query expansion."
 msgstr ""
 
-# 302f21aa293641d195a24eb6074efbc6
 msgid "See :ref:`query-expander` about details."
 msgstr ""
 
-# 136160405829417f9eb3f229a3bbbe57
 msgid ""
 "``query`` returns whether any record is matched or not. If one or more "
 "records are matched, it returns ``true``. Otherwise, it returns ``false``."
 msgstr ""
 
-# 0279c9478f0c430a8222b777850c443e
 msgid "Support query_flags"
 msgstr ""
 
-# 257a8b1e0a424cf3807162e2534d2837
-# 73ec2c3dc21241d5b0b795816605eeb2
 msgid ":doc:`/reference/commands/select`"
 msgstr ""
 
-# 2c22395e2a9f4934ad3286ac22b89c25
 msgid "rand"
 msgstr "rand"
 
-# af94f5b4ddd94274ae9d4d90ba8bc2ba
 msgid "rand - 乱数を生成する"
 msgstr "rand - 乱数を生成する"
 
-# 027a5488c9d948eaa974ba1d3f808bd7
 msgid ""
 "Groonga組込関数の一つであるrandについて説明します。組込関数は、script形式の"
 "grn_expr中で呼び出すことができます。"
 msgstr ""
 
-# 5c610f1820b344d188b65f734218d4a6
 msgid "rand() 関数は 0 から max の間の疑似乱数整数を返します。"
 msgstr "rand() 関数は 0 から max の間の疑似乱数整数を返します。"
 
-# 30f74418fbfd44ceb7dd893b73496356
 msgid ""
 "返値の最大値を指定します。省略した場合は RAND_MAX が指定されたものとみなされ"
 "ます。"
@@ -10500,19 +7928,15 @@ msgstr ""
 "返値の最大値を指定します。省略した場合は RAND_MAX が指定されたものとみなされ"
 "ます。"
 
-# 1202eb28c89846619f062b2d7fb6213f
 msgid "0 と max の間の数を表すInt32型の値を返します。"
 msgstr "0 と max の間の数を表すInt32型の値を返します。"
 
-# 311c5a84894244dbb8f0e7b32af659e9
 msgid "snippet_html"
 msgstr ""
 
-# 0447de5710004f64b2a4f579795937ad
 msgid "This feature is experimental. API will be changed."
 msgstr ""
 
-# 0e26f3a3027648d7b196594f9cd2e0c7
 msgid ""
 "``snippet_html`` extracts snippets of target text around search keywords "
 "(``KWIC``. ``KeyWord In Context``). The snippets are prepared for embedding "
@@ -10523,42 +7947,35 @@ msgid ""
 "&lt;3``."
 msgstr ""
 
-# 8aff2c6c38d741958a359d14864aa18b
 msgid "``snippet_html`` has only one parameter::"
 msgstr ""
 
-# 6c6cef3120874516a91cf96a84eb15dd
 msgid ""
 "``snippet_html`` has many parameters internally but they can't be specified "
 "for now. You will be able to custom those parameters soon."
 msgstr ""
 
-# e69485a4441244be9c634bee7f664546
 msgid ""
 "``snippet_html`` can be used in only ``--output_columns`` in :doc:`/"
 "reference/commands/select`."
 msgstr ""
 
-# a448890e7b9d466db3f51c12dee7bc5d
 msgid ""
 "You need to specify ``--command_version 2`` argument explicitly because "
 "function call in ``--output_columns`` is experimental feature in Groonga "
 "2.0.9. It will be enabled by default soon."
 msgstr ""
 
-# 4fa881e8d87c4e74b12be5aaf93a4cc4
 msgid ""
 "You also need to specify ``--query`` and/or ``--filter``. Keywords are "
 "extracted from ``--query`` and ``--filter`` arguments."
 msgstr ""
 
-# a66fc233723d4ec0902928f8d145fee2
 msgid ""
 "The following example uses ``--query \"fast performance\"``. In this case, "
 "``fast`` and ``performance`` are used as keywords."
 msgstr ""
 
-# f68ef8116c4a40ac80882774f2494773
 msgid ""
 "``--query \"fast performance\"`` matches to only the first record's content. "
 "``snippet_html(content)`` extracts two text parts that include the keywords "
@@ -10566,147 +7983,115 @@ msgid ""
 "\"keyword\">`` and ``</span>``."
 msgstr ""
 
-# 46107ff06cd3488195f8d64cfe9803eb
 msgid ""
 "The max number of text parts is 3. If there are 4 or more text parts that "
 "include the keywords, only the leading 3 parts are only used."
 msgstr ""
 
-# d0310584655a43daa5dd47af2e2ce613
 msgid ""
 "The max size of a text part is 200byte. The unit is bytes not chracters. The "
 "size doesn't include inserted ``<span keyword=\"keyword\">`` and ``</span>``."
 msgstr ""
 
-# bcc615edce22436195c01f18e52d1baa
 msgid ""
 "Both the max number of text parts and the max size of a text part aren't "
 "customizable."
 msgstr ""
 
-# 392504417bca4f09998f50de3c8c73a8
 msgid "You can specify string literal instead of column."
 msgstr ""
 
-# ffb32b374d9343adbca66adfb175f422
 msgid ""
 "``snippet_html`` returns an array of string. An element of array is a "
 "snippet::"
 msgstr ""
 
-# 26e4411e681d4cea9e8c585d936a1937
 msgid ""
 "A snippet includes one or more keywords. The max byte size of a snippet "
 "except ``<span keyword=\"keyword\">`` and ``</span>`` is 200byte. The unit "
 "isn't the number of chracters."
 msgstr ""
 
-# e8e0b475b3b14268aef4b4baaff6c88a
 msgid ""
 "The array size is larger than or equal to 0 and less than or equal to 3. The "
 "max size 3 will be customizable soon."
 msgstr ""
 
-# ccc411ab185e4ec1b884cc913dc015c7
 msgid "Make the max number of text parts customizable."
 msgstr ""
 
-# 5cc482b577924a829ea040b9e8cf00fa
 msgid "Make the max size of a text part customizable."
 msgstr ""
 
-# 59c4f6a582c74ca3b2bc3cbd3779d380
 msgid "Make keywords customizable."
 msgstr ""
 
-# 1386be0cc95f4e5fa0d8c3a7aeba7b63
 msgid "Make tag that surrounds a keyword customizable."
 msgstr ""
 
-# 43cf20b961e14962bef76798c8c1411a
 msgid "Make normalization customizable."
 msgstr ""
 
-# 76f138a3a1594f8e9366bda6adf8b568
 msgid "Support options by object literal."
 msgstr ""
 
-# 6414bcd1b5094eda9c2fe22f83183755
-# e8d4d9add48b4cbd941c6eb1f6377566
-# ceeb45cb2b5042b998a38d790093fd65
 msgid "sub_filter"
 msgstr ""
 
-# 23a8895f3c50420288733270b88adcd7
 msgid "``sub_filter`` evaluates ``filter_string`` in ``scope`` context."
 msgstr ""
 
-# e69485a4441244be9c634bee7f664546
 msgid ""
 "``sub_filter`` can be used in only ``--filter`` in :doc:`/reference/commands/"
 "select`."
 msgstr ""
 
-# 23a8895f3c50420288733270b88adcd7
 msgid ""
 "``sub_filter`` requires two arguments. They are ``scope`` and "
 "``filter_string``."
 msgstr ""
 
-# f87bfbc6e5d7463fa8828d4408a9aeb0
 msgid ""
 "Here is the simple usage of ``sub_filter`` function which extracts the blog "
 "entry"
 msgstr ""
 
-# 7e6ebdb56fac42d5a5825e3666ae0470
 msgid "user 'A' commented out."
 msgstr ""
 
-# a7a0328448a1429aab0e3f0bfa12dc6c
 msgid ""
 "When executing the above query, not only \"groonga's blog\", but also "
 "\"mroonga's blog\". This is not what you want because user \"A\" does not "
 "mention \"groonga\" to \"mroonga's blog\"."
 msgstr ""
 
-# bbcf3a45eada478590831b7e2b697abb
 msgid "Without sub_filter, it means that following conditions are met."
 msgstr ""
 
-# 50736f47032443399f17a8ca0b70c64e
 msgid "There is at least one record that user \"A\" commented out."
 msgstr ""
 
-# 610356ca3cfd47529f560101b3f8ec80
 msgid "There is at least one record that mentioned about \"groonga\"."
 msgstr ""
 
-# 1a5f16329b6b4456b80ee9d81110bee7
 msgid ""
 "On the other hand, executing the above query returns the intended result. "
 "Because the arguments of sub_filter is evaluated in comments column's "
 "context."
 msgstr ""
 
-# 5402d137c07a4dffad0d34be21399caf
 msgid "It means that sub_filter requires the following condition is met."
 msgstr ""
 
-# 5f74c1b631c943809e3d57e274d6be93
 msgid "There are the records that user \"A\" mentions about \"groonga\"."
 msgstr ""
 
-# 8294898fb52244968e09f77b9ccf5c7d
 msgid "There are two required parameter, ``scope`` and ``filter_string``."
 msgstr ""
 
-# 175c7864061e407c9df325dc092b9cc8
-# 90f038de403f4643a37099d043a59cd0
 msgid "``scope``"
 msgstr ""
 
-# 6f7583c049cc4c9890bb110ab359d0e1
 msgid ""
 "It specifies a column of the table that is specified by ``table`` parameter "
 "in ``select``. The column has a limitation. The limitation is described "
@@ -10715,41 +8100,32 @@ msgid ""
 "filter FILTER_STRING``."
 msgstr ""
 
-# 846d2f405e3a45208e07188754f1d34c
 msgid ""
 "The specified column type must be a table. In other words, the column type "
 "must be reference type."
 msgstr ""
 
-# 68b50fdbdb5b4ec0a6e4a06283fb3e24
 msgid ""
 "You can chain columns by ``COLUMN_1.COLUMN_2.COLUMN_3...COLUMN_N`` syntax. "
 "For example, ``user.group.name``."
 msgstr ""
 
-# 0975822820bd4f1dbe1217adf156918e
 msgid "See :ref:`select-table` about ``table`` parameter in ``select``."
 msgstr ""
 
-# 6414bcd1b5094eda9c2fe22f83183755
-# e8d4d9add48b4cbd941c6eb1f6377566
-# ceeb45cb2b5042b998a38d790093fd65
 msgid "``filter_string``"
 msgstr ""
 
-# fb8f91e8d0e544e9aa871331d8e52202
 msgid ""
 "It specifies a search condition in :doc:`/reference/grn_expr/script_syntax`. "
 "It is evaluated in ``scope`` context."
 msgstr ""
 
-# 0b80de0cac62438bb4cb862c1e034840
 msgid ""
 "``sub_filter`` returns whether any record is matched or not. If one or more "
 "records are matched, it returns ``true``. Otherwise, it returns ``false``."
 msgstr ""
 
-# 7f8eea1a258e46249d8d77bf964675ab
 msgid ""
 "Grn_expr is an object that searches records with specified conditions and "
 "manipulates a database. It's pronounced as ``gurun expression``."
@@ -10757,7 +8133,6 @@ msgstr ""
 "Grn_expr is an object that searches records with specified conditions and "
 "manipulates a database. It's pronounced as ``gurun expression``."
 
-# f05c6b8ca35840b8aed6b8c80b07fa12
 msgid ""
 "Conditions for searching records from a database can be represented by "
 "conbining condition expressions such as ``equal condition expression`` and "
@@ -10779,23 +8154,18 @@ msgstr ""
 "with high-recall algolithm dinamically. To determine whether re-searching or "
 "not, the number of matched rescords is used."
 
-# c01690e9cec24a14ab91b0bea25b25a3
 msgid "There are three ways to create grn_expr:"
 msgstr "There are three ways to create grn_expr:"
 
-# b17e3310c7854707a28db8413e229e2c
 msgid "Parsing :doc:`/reference/grn_expr/query_syntax` string."
 msgstr "Parsing :doc:`/reference/grn_expr/query_syntax` string."
 
-# fb8f91e8d0e544e9aa871331d8e52202
 msgid "Parsing :doc:`/reference/grn_expr/script_syntax` string."
 msgstr "Parsing :doc:`/reference/grn_expr/script_syntax` string."
 
-# 60e6aa822fc84a5c908a94f934e65d88
 msgid "Calling grn_expr related APIs."
 msgstr "Calling grn_expr related APIs."
 
-# e028e83a2ac047918b60ebf26e94f78f
 msgid ""
 ":doc:`/reference/grn_expr/query_syntax` is for common search form in "
 "Internet search site. It's simple and easy to use but it has a limitation. "
@@ -10809,7 +8179,6 @@ msgstr ""
 "reference/grn_expr/query_syntax`. You can use :doc:`/reference/grn_expr/"
 "query_syntax` with ``query`` option in :doc:`/reference/commands/select`."
 
-# 5df6778fba334245a8b2c227b8fb59f7
 msgid ""
 ":doc:`/reference/grn_expr/script_syntax` is ECMAScript like syntax. You can "
 "use all condition expresssions and set operations in :doc:`/reference/"
@@ -10823,7 +8192,6 @@ msgstr ""
 "script_syntax` with ``filter`` option and ``scorer`` option in :doc:`/"
 "reference/commands/select`."
 
-# 238e43723be7422fb9f5028b4ec8e070
 msgid ""
 "You can use groonga as a library and create a grn_expr by calling grn_expr "
 "related APIs. You can use full features with calling APIs like :doc:`/"
@@ -10833,15 +8201,12 @@ msgid ""
 "can create a grn_expr by Ruby's syntax instead of parsing string."
 msgstr ""
 
-# 04de8cb2dc5442b1a865c95ed233013d
 msgid ":doc:`/reference/api/grn_expr`: grn_expr related APIs"
 msgstr ":doc:`/reference/api/grn_expr`: grn_expr related APIs"
 
-# 27cb760cec714088b6fda733b9aa2ddc
 msgid "Query syntax"
 msgstr "Query syntax"
 
-# a27a2f82997a47d0b884d8847335c94e
 msgid ""
 "Query syntax is a syntax to specify search condition for common Web search "
 "form. It is similar to the syntax of Google's search form. For example, "
@@ -10855,7 +8220,6 @@ msgstr ""
 "``word1`` and ``word2``. ``word1 OR word2`` means that groogna searches "
 "records that contain either ``word1`` or ``word2``."
 
-# b8a5d2d66dab4307b1426677f02717c9
 msgid ""
 "Query syntax consists of ``conditional expression``, ``combind expression`` "
 "and ``assignment expression``. Nomrally ``assignment expression`` can be "
@@ -10869,7 +8233,6 @@ msgstr ""
 "of :doc:`/reference/commands/select`. You can use it if you use groonga as "
 "library and customize query syntax parser options."
 
-# 470afb5505b842d39935fe3b9e812752
 msgid ""
 "``Conditinal expression`` specifies an condition. ``Combinded expression`` "
 "consists of one or more ``conditional expression``, ``combined expression`` "
@@ -10881,16 +8244,12 @@ msgstr ""
 "or ``assignment expression``. ``Assignment expression`` can assigns a column "
 "to a value."
 
-# 3a8233a365154ae693896a4c5becc3e3
-# cb222ca16b7545e580558c441d3e9349
 msgid "Sample data"
 msgstr "Sample data"
 
-# b162dcbfae4b474f9a872d0ff9b3e29f
 msgid "Escape"
 msgstr "Escape"
 
-# d742727abe85439485e61589734cc8c9
 msgid ""
 "There are special characters in query syntax. To use a special character as "
 "itself, it should be escaped by prepending ``\\``. For example, ``\"`` is a "
@@ -10900,38 +8259,30 @@ msgstr ""
 "itself, it should be escaped by prepending ``\\``. For example, ``\"`` is a "
 "special character. It is escaped as ``\\\"``."
 
-# 37b289d90c8240c9a7e1cd9afb082610
 msgid "Here is a special character list:"
 msgstr "Here is a special character list:"
 
-# 88d7ee90d2db46f79d537405822136e4
 msgid ""
 "``[space]`` (escaped as ``[backslash][space]``) (You should substitute ``"
 "[space]`` with a white space character that is 0x20 in ASCII and ``"
 "[backslash]`` with ``\\\\``.)"
 msgstr ""
 
-# f141f2696dcc4bf49e2604d5613774a3
 msgid "``\"`` (escaped as ``\\\"``)"
 msgstr "``\"`` (escaped as ``\\\"``)"
 
-# d09d698f348748fe881651ae5b190cf7
 msgid "``'`` (escaped as ``\\'``)"
 msgstr "``'`` (escaped as ``\\'``)"
 
-# 6864d82d1dd84d6b8e3f0d1674d4e365
 msgid "``(`` (escaped as ``\\(``)"
 msgstr "``(`` (escaped as ``\\(``)"
 
-# aed5d9b135ae44be9181951bc15c3ce6
 msgid "``)`` (escaped as ``\\)``)"
 msgstr "``)`` (escaped as ``\\)``)"
 
-# 1e8de710dba74a6c87db1a0a3eff479e
 msgid "``\\`` (escaped as ``\\\\``)"
 msgstr "``\\`` (escaped as ``\\\\``)"
 
-# 48222d84d2c3419aa67b1290c5d84ab0
 msgid ""
 "You can use quote instead of escape. Quote syntax is ``\"...\"`` or "
 "``'...'``. You need escape ``\"`` as ``\\\"`` in ``\"...\"`` quote syntax. "
@@ -10945,7 +8296,6 @@ msgstr ""
 "``Alice's brother (Bob)`` can be quoted ``\"Alice's brother (Bob)\"`` or "
 "``'Alice\\'s brother (Bob)'``."
 
-# 21852421a049449e9e0a4b445c3f5255
 msgid ""
 "There is a important point which you have to care. The ''\\\\'' (backslash) "
 "character is interpreted by command line shell. So if you want to search "
@@ -10956,23 +8306,18 @@ msgid ""
 "search by groonga, confirm whether special character is escaped properly."
 msgstr ""
 
-# fb89f29d97674662986a477e4228c4ac
 msgid "Conditional expression"
 msgstr "Conditional expression"
 
-# 0ad40a7833b247c38c839e22614caa10
 msgid "Here is available conditional expression list."
 msgstr "Here is available conditional expression list."
 
-# 69135be4ddda4d4ebff9346e2fd8884b
 msgid "Full text search condition"
 msgstr "Full text search condition"
 
-# 70e25dc65201461bbde973f8f27c0f2d
 msgid "Its syntax is ``keyword``."
 msgstr "Its syntax is ``keyword``."
 
-# d3e8d8b7727a4a1aa7acc5b53b611257
 msgid ""
 "``Full text search condition`` specifies a full text search condition "
 "against the default match columns. Match columns are full text search target "
@@ -10982,8 +8327,6 @@ msgstr ""
 "against the default match columns. Match columns are full text search target "
 "columns."
 
-# 2fdec10f7dce4111beaff021c3e62da7
-# 2fdec10f7dce4111beaff021c3e62da7
 msgid ""
 "You should specify the default match columns for full text search. They can "
 "be specified by ``--match_columns`` option of :doc:`/reference/commands/"
@@ -10995,7 +8338,6 @@ msgstr ""
 "select`. If you don't specify the default match columns, this conditional "
 "expression fails."
 
-# e9a3bb35a07b463db6ba8202ef8ac43f
 msgid ""
 "This conditional expression does full text search with ``keyword``. "
 "``keyword`` should not contain any spaces. If ``keyword`` contains a space "
@@ -11011,35 +8353,9 @@ msgstr ""
 "one or more spaces, you can use ``phrase search condition`` that is "
 "described below."
 
-# 2c1116c047a249269a2270188225710e
-# 2c1116c047a249269a2270188225710e
-# 2c1116c047a249269a2270188225710e
-# 2c1116c047a249269a2270188225710e
-# 2c1116c047a249269a2270188225710e
-# 2c1116c047a249269a2270188225710e
-# 2c1116c047a249269a2270188225710e
-# 2c1116c047a249269a2270188225710e
-# 2c1116c047a249269a2270188225710e
-# 2c1116c047a249269a2270188225710e
-# b8b481fc700a4070979cf73e56bd9031
-# efa9ee514a0048a6a51f0ccea9327f05
-# 2c1116c047a249269a2270188225710e
-# 2c1116c047a249269a2270188225710e
-# 2c1116c047a249269a2270188225710e
-# e13a2895bf5b45d694a5ccd36dbfd75a
-# e13a2895bf5b45d694a5ccd36dbfd75a
-# e13a2895bf5b45d694a5ccd36dbfd75a
-# e13a2895bf5b45d694a5ccd36dbfd75a
-# e13a2895bf5b45d694a5ccd36dbfd75a
-# e13a2895bf5b45d694a5ccd36dbfd75a
-# e13a2895bf5b45d694a5ccd36dbfd75a
-# e13a2895bf5b45d694a5ccd36dbfd75a
 msgid "Here is a simple exmaple."
 msgstr "Here is a simple exmaple."
 
-# 0758ed4268de421ba415cef1d7c8f551
-# 0758ed4268de421ba415cef1d7c8f551
-# cce97411ab1143c2a67a76b791c3e1a6
 msgid ""
 "The expression matches records that contain a word ``fast`` in ``content`` "
 "column value."
@@ -11047,20 +8363,15 @@ msgstr ""
 "The expression matches records that contain a word ``fast`` in ``content`` "
 "column value."
 
-# e3054afd4de245179580f50623c733d6
-# e3054afd4de245179580f50623c733d6
 msgid "``content`` column is the default match column."
 msgstr "``content`` column is the default match column."
 
-# fd0f23cc3b884dd2aa6fd4316a91f2b6
 msgid "Phrase search condition"
 msgstr "Phrase search condition"
 
-# 212fe8ef2b814af0834df06dddcc8645
 msgid "Its syntax is ``\"search keyword\"``."
 msgstr "Its syntax is ``\"search keyword\"``."
 
-# 4eddcb7b314941bcbbd75e4fa7815ca2
 msgid ""
 "``Phrase search condition`` specifies a phrase search condition against the "
 "default match columns."
@@ -11068,7 +8379,6 @@ msgstr ""
 "``Phrase search condition`` specifies a phrase search condition against the "
 "default match columns."
 
-# 56341615a4614f0b83ef2b05e74336ef
 msgid ""
 "This conditional expression does phrase search with ``search keyword``. "
 "Phrase search searches records that contain ``search`` and ``keyword`` and "
@@ -11082,8 +8392,6 @@ msgstr ""
 "search keyword in the form`` is matched but ``Search by the keyword`` and "
 "``There is a keyword. Search by it!`` aren't matched."
 
-# 6537517b63f546ae9b75e5846a8aac89
-# 6537517b63f546ae9b75e5846a8aac89
 msgid ""
 "The expression matches records that contain a phrase ``I started`` in "
 "``content`` column value. ``I also started`` isn't matched because ``I`` and "
@@ -11093,15 +8401,12 @@ msgstr ""
 "``content`` column value. ``I also started`` isn't matched because ``I`` and "
 "``started`` aren't adjacent."
 
-# 51be5fc8a0914f9f9a73ade32aa90a1e
 msgid "Full text search condition (with explicit match column)"
 msgstr "Full text search condition (with explicit match column)"
 
-# cc5d96fd5d2941e7aefdc4483c95d649
 msgid "Its syntax is ``column:@keyword``."
 msgstr "Its syntax is ``column:@keyword``."
 
-# 9892fb5b39f84ce0a0453273a5209752
 msgid ""
 "It's similar to ``full text search condition`` but it doesn't require the "
 "default match columns. You need to specify match column for the full text "
@@ -11113,7 +8418,6 @@ msgstr ""
 "search condition by ``column:`` instead of ``--match_columns`` option of :"
 "doc:`/reference/commands/select`."
 
-# ae251a7c38a748c0b4ceebf752b1c327
 msgid ""
 "This condtional expression is useful when you want to use two or more full "
 "text search against different columns. The default match columns specified "
@@ -11125,7 +8429,6 @@ msgstr ""
 "by ``--match_columns`` option can't be specified multiple times. You need to "
 "specify the second match column by this conditional expression."
 
-# de8c8fac78d5446497dafe99b6e277a4
 msgid ""
 "The different between ``full text search condition`` and ``full text search "
 "condition (with explicit match column)`` is whether advanced match columns "
@@ -11139,19 +8442,15 @@ msgstr ""
 "columns but ``full text search condition (with explicit match column)`` "
 "isn't supported. Advanced match columns has the following features:"
 
-# cd55e30f83b6432fb2ed23a5170483cf
 msgid "Weight is supported."
 msgstr "Weight is supported."
 
-# b8814a9e97af49f685b440f525652304
 msgid "Using multiple columns are supported."
 msgstr "Using multiple columns are supported."
 
-# 8500e96d20dc449180e28a1df8a15d8c
 msgid "Using index column as a match column is supported."
 msgstr "Using index column as a match column is supported."
 
-# e69485a4441244be9c634bee7f664546
 msgid ""
 "See description of ``--match_columns`` option of :doc:`/reference/commands/"
 "select` about them."
@@ -11159,15 +8458,12 @@ msgstr ""
 "See description of ``--match_columns`` option of :doc:`/reference/commands/"
 "select` about them."
 
-# 6b7bde2b9f34431b8753d62c5b91ee2a
 msgid "Phrase search condition (with explicit match column)"
 msgstr "Phrase search condition (with explicit match column)"
 
-# 0857e163bdd647bab66a99885a50dfb5
 msgid "Its syntax is ``column:@\"search keyword\"``."
 msgstr "Its syntax is ``column:@\"search keyword\"``."
 
-# 5f0332e5de484e59bd712aaf33f0d2d4
 msgid ""
 "It's similar to ``phrase search condition`` but it doesn't require the "
 "default match columns. You need to specify match column for the phrase "
@@ -11179,7 +8475,6 @@ msgstr ""
 "search condition by ``column:`` instead of ``--match_columns`` option of :"
 "doc:`/reference/commands/select`."
 
-# 8c7cfedfefe5418ebecb143aa27641e7
 msgid ""
 "The different between ``phrase search condition`` and ``phrase search "
 "condition (with explicit match column)`` is similar to between ``full text "
@@ -11197,15 +8492,12 @@ msgstr ""
 "See description of ``full text search condition (with explicit match column)"
 "`` about advanced match columns."
 
-# a266b4cf513243cdb4cc5629fafc311e
 msgid "Prefix search condition"
 msgstr "Prefix search condition"
 
-# 6b007f8374eb412ebc1245a01c9c1a24
 msgid "Its syntax is ``column:^value`` or ``value*``."
 msgstr "Its syntax is ``column:^value`` or ``value*``."
 
-# d72c90d808dc4c57b6c8b2b97826c9d9
 msgid ""
 "This conditional expression does prefix search with ``value``. Prefix search "
 "searches records that contain a word that starts with ``value``."
@@ -11213,8 +8505,6 @@ msgstr ""
 "This conditional expression does prefix search with ``value``. Prefix search "
 "searches records that contain a word that starts with ``value``."
 
-# 23f2ee5f4c6b48e4acbc5796487c4c29
-# ce2c5b9b7cd946dfba0995e2a6d22ed2
 msgid ""
 "You can use fast prefix search against a column. The column must be indexed "
 "and index table must be patricia trie table (``TABLE_PAT_KEY``) or double "
@@ -11228,8 +8518,6 @@ msgstr ""
 "against ``_key`` pseudo column of patricia trie table or double array trie "
 "table. You don't need to index ``_key``."
 
-# 9f78384306a4463bad6d726182515db3
-# 85412f88435441b2a40f723870ff8fe8
 msgid ""
 "Prefix search can be used with other table types but it causes all records "
 "scan. It's not problem for small records but it spends more time for large "
@@ -11239,14 +8527,6 @@ msgstr ""
 "scan. It's not problem for small records but it spends more time for large "
 "records."
 
-# e70114c19168486ab0fad68215ff2e52
-# e70114c19168486ab0fad68215ff2e52
-# e70114c19168486ab0fad68215ff2e52
-# e70114c19168486ab0fad68215ff2e52
-# e70114c19168486ab0fad68215ff2e52
-# e70114c19168486ab0fad68215ff2e52
-# e70114c19168486ab0fad68215ff2e52
-# e70114c19168486ab0fad68215ff2e52
 msgid ""
 "It doesn't require the default match columns such as ``full text search "
 "condition`` and ``phrase search condition``."
@@ -11254,8 +8534,6 @@ msgstr ""
 "It doesn't require the default match columns such as ``full text search "
 "condition`` and ``phrase search condition``."
 
-# 5bb6d6c1af5048328c3c797266ec9173
-# 175148314aad46938963d10172f99ac1
 msgid ""
 "The expression matches records that contain a word that starts with ``Goo`` "
 "in ``_key`` pseudo column value. ``Good-bye Senna`` and ``Good-bye Tritonn`` "
@@ -11265,15 +8543,12 @@ msgstr ""
 "in ``_key`` pseudo column value. ``Good-bye Senna`` and ``Good-bye Tritonn`` "
 "are matched with the expression."
 
-# d6124289fae94697a7229ca441ea2c10
 msgid "Suffix search condition"
 msgstr "Suffix search condition"
 
-# 41d72a3b02714a6a9ebd79cbe62ddd8c
 msgid "Its syntax is ``column:$value``."
 msgstr "Its syntax is ``column:$value``."
 
-# a7318ce27c884c4f8fcd851b6ea10fa3
 msgid ""
 "This conditional expression does suffix search with ``value``. Suffix search "
 "searches records that contain a word that ends with ``value``."
@@ -11281,8 +8556,6 @@ msgstr ""
 "This conditional expression does suffix search with ``value``. Suffix search "
 "searches records that contain a word that ends with ``value``."
 
-# ea4870c71f454fa599bc9122afb523d2
-# 0aec38aa67f9410ebeec6ebb48ee8083
 msgid ""
 "You can use fast suffix search against a column. The column must be indexed "
 "and index table must be patricia trie table (``TABLE_PAT_KEY``) with "
@@ -11304,8 +8577,6 @@ msgstr ""
 "registered substrings. (TODO: write document about suffix search and link to "
 "it from here.)"
 
-# 1ed3fea19d034ff79ea7db88631e65ea
-# ff82e348af5f4f5394ec447384df8c2b
 msgid ""
 "Fast suffix search can be used only for non-ASCII characters such as "
 "hiragana in Japanese. You cannot use fast suffix search for ASCII character."
@@ -11313,8 +8584,6 @@ msgstr ""
 "Fast suffix search can be used only for non-ASCII characters such as "
 "hiragana in Japanese. You cannot use fast suffix search for ASCII character."
 
-# 8c3115abe2d844a5868d8db2ef1e9583
-# ac439b31f6ed445b94bdbd9aaddcebd3
 msgid ""
 "Suffix search can be used with other table types or patricia trie table "
 "without ``KEY_WITH_SIS`` flag but it causes all records scan. It's not "
@@ -11324,8 +8593,6 @@ msgstr ""
 "without ``KEY_WITH_SIS`` flag but it causes all records scan. It's not "
 "problem for small records but it spends more time for large records."
 
-# eac0b1a308e644ce9ef7fcf471e5b176
-# d5c77fbd25334927ab6741ea2f07539f
 msgid ""
 "Here is a simple exmaple. It uses fast suffix search for hiragana in "
 "Japanese that is one of non-ASCII characters."
@@ -11333,8 +8600,6 @@ msgstr ""
 "Here is a simple exmaple. It uses fast suffix search for hiragana in "
 "Japanese that is one of non-ASCII characters."
 
-# cc628d6f5fab483fb42b58e61cda0dea
-# 847684e3233f46bd85cf27da5ebbb917
 msgid ""
 "The expression matches records that have value that ends with ``んが`` in "
 "``content`` column value. ``ぐるんが`` and ``むるんが`` are matched with the "
@@ -11344,19 +8609,15 @@ msgstr ""
 "``content`` column value. ``ぐるんが`` and ``むるんが`` are matched with the "
 "expression."
 
-# 2e8dfe947d1740fc9e0dfb6985beff59
 msgid "Equal condition"
 msgstr "Equal condition"
 
-# f7b13fbf2cf74c7f956b704c80844efa
 msgid "Its syntax is ``column:value``."
 msgstr "Its syntax is ``column:value``."
 
-# 8effe641625f4aa5a1e68317a458f555
 msgid "It matches records that ``column`` value is equal to ``value``."
 msgstr "It matches records that ``column`` value is equal to ``value``."
 
-# 1f66891918824749a9a976104b76893a
 msgid ""
 "The expression matches records that ``_key`` column value is equal to "
 "``Groonga``."
@@ -11364,19 +8625,15 @@ msgstr ""
 "The expression matches records that ``_key`` column value is equal to "
 "``Groonga``."
 
-# 87f6d5357a614954b686a654cc579e8d
 msgid "Not equal condition"
 msgstr "Not equal condition"
 
-# 487a8f16619041699500df52494a51a4
 msgid "Its syntax is ``column:!value``."
 msgstr "Its syntax is ``column:!value``."
 
-# 85be03da1a4844eca68c603d2d725aee
 msgid "It matches records that ``column`` value isn't equal to ``value``."
 msgstr "It matches records that ``column`` value isn't equal to ``value``."
 
-# 41cca2ce6334432da86eea9e6752ea03
 msgid ""
 "The expression matches records that ``_key`` column value is not equal to "
 "``Groonga``."
@@ -11384,22 +8641,15 @@ msgstr ""
 "The expression matches records that ``_key`` column value is not equal to "
 "``Groonga``."
 
-# 4eed63d5436847ed9335398853865765
 msgid "Less than condition"
 msgstr "Less than condition"
 
-# e1c6e667df3d4084b2b4d2f39d408bd6
 msgid "Its syntax is ``column:<value``."
 msgstr "Its syntax is ``column:<value``."
 
-# f10956ea4d08424cabae867b119a007a
 msgid "It matches records that ``column`` value is less than ``value``."
 msgstr "It matches records that ``column`` value is less than ``value``."
 
-# 51b38215a16e44c58de4b7ebaedbedf1
-# 51b38215a16e44c58de4b7ebaedbedf1
-# 51b38215a16e44c58de4b7ebaedbedf1
-# 51b38215a16e44c58de4b7ebaedbedf1
 msgid ""
 "If ``column`` type is numerical type such as ``Int32``, ``column`` value and "
 "``value`` are compared as number. If ``column`` type is text type such as "
@@ -11409,7 +8659,6 @@ msgstr ""
 "``value`` are compared as number. If ``column`` type is text type such as "
 "``ShortText``, ``column`` value and ``value`` are compared as bit sequence."
 
-# 2272075c997c4b2788cfceb7d93583f9
 msgid ""
 "The expression matches records that ``n_likes`` column value is less than "
 "``10``."
@@ -11417,19 +8666,15 @@ msgstr ""
 "The expression matches records that ``n_likes`` column value is less than "
 "``10``."
 
-# f895178588d642d1a1a3fcedf4fe4e09
 msgid "Greater than condition"
 msgstr "Greater than condition"
 
-# 2a4b34a7d79446e8a1472224d9fec739
 msgid "Its syntax is ``column:>value``."
 msgstr "Its syntax is ``column:>value``."
 
-# 91f2cf644e2a488ba017caf84f16185d
 msgid "It matches records that ``column`` value is greater than ``value``."
 msgstr "It matches records that ``column`` value is greater than ``value``."
 
-# 46788b556f9944eab262d45997bb0d5f
 msgid ""
 "The expression matches records that ``n_likes`` column value is greater than "
 "``10``."
@@ -11437,21 +8682,17 @@ msgstr ""
 "The expression matches records that ``n_likes`` column value is greater than "
 "``10``."
 
-# fcfbe51fc7c84c76b80ff6e236481a50
 msgid "Less than or equal to condition"
 msgstr "Less than or equal to condition"
 
-# 3a6ba350f808472a912af2f314c02a66
 msgid "Its syntax is ``column:<=value``."
 msgstr "Its syntax is ``column:<=value``."
 
-# 992662fc41f54004957489e7fb425b63
 msgid ""
 "It matches records that ``column`` value is less than or equal to ``value``."
 msgstr ""
 "It matches records that ``column`` value is less than or equal to ``value``."
 
-# 2d81e90e0ee04e7babd676213dc50a7b
 msgid ""
 "The expression matches records that ``n_likes`` column value is less than or "
 "equal to ``10``."
@@ -11459,15 +8700,12 @@ msgstr ""
 "The expression matches records that ``n_likes`` column value is less than or "
 "equal to ``10``."
 
-# b0aaceeb7bd04efaa376924012b53a99
 msgid "Greater than or equal to condition"
 msgstr "Greater than or equal to condition"
 
-# 4f9bff5a1f304a38a8f49bc21b7a66a5
 msgid "Its syntax is ``column:>=value``."
 msgstr "Its syntax is ``column:>=value``."
 
-# 31d2633780f24ca7a3d948bfab935412
 msgid ""
 "It matches records that ``column`` value is greater than or equal to "
 "``value``."
@@ -11475,7 +8713,6 @@ msgstr ""
 "It matches records that ``column`` value is greater than or equal to "
 "``value``."
 
-# 12acd54a32064de8b44234b9233bda5b
 msgid ""
 "The expression matches records that ``n_likes`` column value is greater than "
 "or equal to ``10``."
@@ -11483,25 +8720,18 @@ msgstr ""
 "The expression matches records that ``n_likes`` column value is greater than "
 "or equal to ``10``."
 
-# 01cacc1cb4c94e88b16d6d378ebafdd4
 msgid "Combined expression"
 msgstr "Combined expression"
 
-# 72aad0f5f9304f6788bfba12f8ea662d
 msgid "Here is available combined expression list."
 msgstr "Here is available combined expression list."
 
-# f49897892c274f0fb52583c44c4c0204
 msgid "Logical OR"
 msgstr "Logical OR"
 
-# ad19c17d6c2a45b299bcc971ca5ebf78
 msgid "Its syntax is ``a OR b``."
 msgstr "Its syntax is ``a OR b``."
 
-# 0c39f12bc6c24216b16530568f2be44c
-# 0c39f12bc6c24216b16530568f2be44c
-# 0c39f12bc6c24216b16530568f2be44c
 msgid ""
 "``a`` and ``b`` are conditional expressions, conbinded expressions or "
 "assignment expressions."
@@ -11509,11 +8739,9 @@ msgstr ""
 "``a`` and ``b`` are conditional expressions, conbinded expressions or "
 "assignment expressions."
 
-# dc20fb92ccde442a88c0851ee340138b
 msgid "If at least one of ``a`` and ``b`` are matched, ``a OR b`` is matched."
 msgstr "If at least one of ``a`` and ``b`` are matched, ``a OR b`` is matched."
 
-# 0db722d1d593436681b1343b17e7b22d
 msgid ""
 "The expression matches records that ``n_likes`` column value is greater than "
 "``10`` or contain a word ``senna`` in ``content`` column value."
@@ -11521,19 +8749,15 @@ msgstr ""
 "The expression matches records that ``n_likes`` column value is greater than "
 "``10`` or contain a word ``senna`` in ``content`` column value."
 
-# db3e1b0036224ae19fd7b4bd9512db9b
 msgid "Logical AND"
 msgstr "Logical AND"
 
-# 860e2c9ddb31405caa82db2297bb0fb9
 msgid "Its syntax is ``a + b`` or just ``a b``."
 msgstr "Its syntax is ``a + b`` or just ``a b``."
 
-# fbed36b4a01f4238afd7669ffea22b1f
 msgid "If both ``a`` and ``b`` are matched, ``a + b`` is matched."
 msgstr "If both ``a`` and ``b`` are matched, ``a + b`` is matched."
 
-# 17df3061887e4f949a1c2ea2420763fc
 msgid ""
 "You can specify ``+`` the first expression such as ``+a``. The ``+`` is just "
 "ignored."
@@ -11541,7 +8765,6 @@ msgstr ""
 "You can specify ``+`` the first expression such as ``+a``. The ``+`` is just "
 "ignored."
 
-# ead14c9ed8824fdc86d1c2c8a9083c02
 msgid ""
 "The expression matches records that ``n_likes`` column value is greater than "
 "or equal to ``10`` and contain a word ``groonga`` in ``content`` column "
@@ -11551,19 +8774,15 @@ msgstr ""
 "or equal to ``10`` and contain a word ``groonga`` in ``content`` column "
 "value."
 
-# 65f52b4de36d49c5aa3b9b9a5aaa10e8
 msgid "Logical NOT"
 msgstr "Logical NOT"
 
-# 9986ff929cd74c3ca587ff88c3ef54ff
 msgid "Its syntax is ``a - b``."
 msgstr "Its syntax is ``a - b``."
 
-# 8f0a1e4daf884de09ce402ff7dc4029d
 msgid "If ``a`` is matched and ``b`` is not matched, ``a - b`` is matched."
 msgstr "If ``a`` is matched and ``b`` is not matched, ``a - b`` is matched."
 
-# bd0869f749b64732aec049aefff2c316
 msgid ""
 "You can not specify ``-`` the first expression such as ``-a``. It's syntax "
 "error."
@@ -11571,7 +8790,6 @@ msgstr ""
 "You can not specify ``-`` the first expression such as ``-a``. It's syntax "
 "error."
 
-# 28b0d8101c114004b463e23c3773e19c
 msgid ""
 "The expression matches records that ``n_likes`` column value is greater than "
 "or equal to ``10`` and don't contain a word ``groonga`` in ``content`` "
@@ -11581,17 +8799,12 @@ msgstr ""
 "or equal to ``10`` and don't contain a word ``groonga`` in ``content`` "
 "column value."
 
-# 70127c87e2194d5981fbcddce991d1fd
-# dc07bae7a50842ab84559650f4bcc21e
 msgid "Grouping"
 msgstr "Grouping"
 
-# 34d1cb50042c4ac2abd0a3177f30ed79
-# 1d2221fd856c453dacb408324f67bf45
 msgid "Its syntax is ``(...)``. ``...`` is space separated expression list."
 msgstr "Its syntax is ``(...)``. ``...`` is space separated expression list."
 
-# af17c1ad89e847f3b9a2454bbe2d7821
 msgid ""
 "``(...)`` groups one ore more expressions and they can be processed as an "
 "expression. ``a b OR c`` means that ``a`` and ``b`` are matched or ``c`` is "
@@ -11603,7 +8816,6 @@ msgstr ""
 "matched. ``a (b OR c)`` means that ``a`` and one of ``b`` and ``c`` are "
 "matched."
 
-# 676b4123f3704b7daf6feb650a83bf1a
 msgid ""
 "The first expression doesn't use grouping. It matches records that ``n_likes:"
 "<5`` and ``content:@senna`` are matched or ``content:@fast`` is matched."
@@ -11611,7 +8823,6 @@ msgstr ""
 "The first expression doesn't use grouping. It matches records that ``n_likes:"
 "<5`` and ``content:@senna`` are matched or ``content:@fast`` is matched."
 
-# 6f65c73f575f4a0ebd84ac15199c12f6
 msgid ""
 "The second expression uses grouping. It matches records that ``n_likes:<5`` "
 "and one of ``content:@senna`` or ``content:@fast`` are matched."
@@ -11619,11 +8830,9 @@ msgstr ""
 "The second expression uses grouping. It matches records that ``n_likes:<5`` "
 "and one of ``content:@senna`` or ``content:@fast`` are matched."
 
-# 76a42f686400419e8118118c5f07baf4
 msgid "Assignment expression"
 msgstr "Assignment expression"
 
-# 161cb65a412047f69b23dcba3fe21447
 msgid ""
 "This section is for advanced users. Because assignment expression is "
 "disabled in ``--query`` option of :doc:`/reference/commands/select` by "
@@ -11631,7 +8840,6 @@ msgid ""
 "query_flags`` option value to enable assignment expression."
 msgstr ""
 
-# dba347f723134d3c88c9554883f2a2ad
 msgid ""
 "Assignment expression in query syntax has some limitations. So you should "
 "use :doc:`/reference/grn_expr/script_syntax` instead of query syntax for "
@@ -11641,13 +8849,11 @@ msgstr ""
 "use :doc:`/reference/grn_expr/script_syntax` instead of query syntax for "
 "assignment."
 
-# 7b8f18f07c774ce3aa4af2afa72a83d5
 msgid ""
 "There is only one syntax for assignment expression. It's ``column:=value``."
 msgstr ""
 "There is only one syntax for assignment expression. It's ``column:=value``."
 
-# 847391a8be954219b1826b16605cb403
 msgid ""
 "``value`` is assigend to ``column``. ``value`` is always processed as string "
 "in query syntax. ``value`` is casted to the type of ``column`` "
@@ -11663,15 +8869,12 @@ msgstr ""
 "need to use empty string for ``false`` but query syntax doesn't support "
 "``column:=`` syntax."
 
-# 302f21aa293641d195a24eb6074efbc6
 msgid "See :doc:`/reference/cast` about cast."
 msgstr "See :doc:`/reference/cast` about cast."
 
-# faddcaab18054635b7f7d9dd33880d41
 msgid "Script syntax"
 msgstr "Script syntax"
 
-# 2a7be72e27154aeba24af54441cbf80c
 msgid ""
 "Script syntax is a syntax to specify complex search condition. It is similar "
 "to ECMAScript. For example, ``_key == \"book\"`` means that groonga searches "
@@ -11687,7 +8890,6 @@ msgstr ""
 "is string, ``1`` is integer, ``TokenBigram`` is the object whose name is "
 "``TokenBigram`` and so on."
 
-# ce6c60d32bb34248a85ffb14f073b33c
 msgid ""
 "Script syntax doesn't support full ECMAScript syntax. For example, script "
 "syntax doesn't support statement such as ``if`` control statement, ``for`` "
@@ -11701,15 +8903,12 @@ msgstr ""
 "not supported too. But script syntax addes the original additional "
 "operators.  They are described after ECMAScript syntax is described."
 
-# 74224267b96c4bf697a05f90286eb350
 msgid "Literals"
 msgstr "Literals"
 
-# 54b035a54de7409d9adc5a52c98665c7
 msgid "Integer"
 msgstr "Integer"
 
-# 907f4466f55345398bae077119b53aec
 msgid ""
 "Integer literal is sequence of ``0`` to ``9`` such as ``1234567890``. ``+`` "
 "or ``-`` can be prepended as sign such as ``+29`` and ``-29``. Integer "
@@ -11719,7 +8918,6 @@ msgstr ""
 "or ``-`` can be prepended as sign such as ``+29`` and ``-29``. Integer "
 "literal must be decimal. Octal notation, hex and so on can't be used."
 
-# 210ce417e66045b4898ffabd868ca5dd
 msgid ""
 "The maximum value of integer literal is ``9223372036854775807`` (``= 2 ** 63 "
 "- 1``). The minimum value of integer literal is ``-9223372036854775808`` "
@@ -11729,11 +8927,9 @@ msgstr ""
 "- 1``). The minimum value of integer literal is ``-9223372036854775808`` "
 "(``= -(2 ** 63)``)."
 
-# f6bc4ad117fb44d880bb9abdc5df4569
 msgid "Float"
 msgstr "Float"
 
-# b25fa51461684a3fb59be3d67a573f22
 msgid ""
 "Float literal is sequence of ``0`` to ``9``, ``.`` and ``0`` to ``9`` such "
 "as ``3.14``. ``+`` or ``-`` can be prepended as sign such as ``+3.14`` and "
@@ -11745,11 +8941,9 @@ msgstr ""
 "``-3.14``. ``${RADIX}e${EXPORNENTIAL}`` and ``${RADIX}E${EXPORNENTIAL}`` "
 "formats are also supported. For example, ``314e-2`` is the same as ``3.14``."
 
-# 290863dded684ab088a638fafbcdf9f7
 msgid "String"
 msgstr "String"
 
-# 6c057dddb2374d30bb5a8f148955e2aa
 msgid ""
 "String literal is ``\"...\"``. You need to escape ``\"`` in literal by "
 "prepending ``\\\\'' such as ``\\\"``. For example, ``\"Say \\\"Hello!\\\"."
@@ -11759,7 +8953,6 @@ msgstr ""
 "prepending ``\\\\'' such as ``\\\"``. For example, ``\"Say \\\"Hello!\\\"."
 "\"`` is a literal for ``Say \"Hello!\".`` string."
 
-# 5abb4cf59940420bbcdeab27a00ecf57
 msgid ""
 "String encoding must be the same as encoding of database. The default "
 "encoding is UTF-8. It can be changed by ``--with-default-encoding`` "
@@ -11771,11 +8964,9 @@ msgstr ""
 "configure option, ``--encodiong`` :doc:`/reference/executables/groonga` "
 "option and so on."
 
-# 04f51d4ce51240318f69a1f5af13b8e2
 msgid "Boolean"
 msgstr "Boolean"
 
-# c63337254b904ed4bb11372a503ee1fb
 msgid ""
 "Boolean literal is ``true`` and ``false``. ``true`` means true and ``false`` "
 "means false."
@@ -11783,11 +8974,9 @@ msgstr ""
 "Boolean literal is ``true`` and ``false``. ``true`` means true and ``false`` "
 "means false."
 
-# 60b258d1a85542c99e73d903539f465b
 msgid "Null"
 msgstr "Null"
 
-# 6ec95b281a3542d886f85bb0ae7ff4bf
 msgid ""
 "Null literal is ``null``. Groonga doesn't support null value but null "
 "literal is supported."
@@ -11795,16 +8984,12 @@ msgstr ""
 "Null literal is ``null``. Groonga doesn't support null value but null "
 "literal is supported."
 
-# 03c31324260f4a118ae0109b57fa8636
 msgid "Time"
 msgstr "Time"
 
-# 457f9acbd3874a2c956ee990090f6d0a
-# 457f9acbd3874a2c956ee990090f6d0a
 msgid "This is the groonga original notation."
 msgstr "This is the groonga original notation."
 
-# 8344b3974a014fe4a8a23b68b5b15e5f
 msgid ""
 "Time literal doesn't exit. There are string time notation, integer time "
 "notation and float time notation."
@@ -11812,7 +8997,6 @@ msgstr ""
 "Time literal doesn't exit. There are string time notation, integer time "
 "notation and float time notation."
 
-# 41857b69ea3e41be975202a17e091720
 msgid ""
 "String time notation is ``\"YYYY/MM/DD hh:mm:ss.uuuuuu\"`` or ``\"YYYY-MM-DD "
 "hh:mm:ss.uuuuuu\"``. ``YYYY`` is year, ``MM`` is month, ``DD`` is day, "
@@ -11826,49 +9010,39 @@ msgstr ""
 "second. It is local time. For example, ``\"2012/07/23 02:41:10.436218\"`` is "
 "``2012-07-23T02:41:10.436218`` in ISO 8601 format."
 
-# 1cc1b22183b749249d7a2bc2723da102
 msgid ""
 "Integer time notation is the number of seconds that have elapsed since "
 "midnight UTC, January 1, 1970. It is also known as POSIX time. For example, "
 "``1343011270`` is ``2012-07-23T02:41:10Z`` in ISO 8601 format."
 msgstr ""
 
-# 92e696261dac4cb3b85c517ef5a8c76f
 msgid ""
 "Float time notation is the number of seconds and micro seconds that have "
 "elapsed since midnight UTC, January 1, 1970. For example, "
 "``1343011270.436218`` is ``2012-07-23T02:41:10.436218Z`` in ISO 8601 format."
 msgstr ""
 
-# 4b8a78739dda4691ab398647972ba0f5
 msgid "Geo point"
 msgstr "Geo point"
 
-# 39d42ced85da40b89581a6907244af8d
 msgid "Geo point literal doesn't exist. There is string geo point notation."
 msgstr "Geo point literal doesn't exist. There is string geo point notation."
 
-# 7dd9db6d82eb4ab69e5b617e604b89af
 msgid "String geo point notation has the following patterns:"
 msgstr "String geo point notation has the following patterns:"
 
-# c4372a68619049efb9a8cf44d937fe8b
 msgid "``\"LATITUDE_IN_MSECxLONGITUDE_IN_MSEC\"``"
 msgstr "``\"LATITUDE_IN_MSECxLONGITUDE_IN_MSEC\"``"
 
-# 6701d9d439b144d987bfd41a6ecf5d7d
 msgid "``\"LATITUDE_IN_MSEC,LONGITUDE_IN_MSEC\"``"
 msgstr "``\"LATITUDE_IN_MSEC,LONGITUDE_IN_MSEC\"``"
 
-# c69abbd27a784b6aa26cb51c38144fff
 msgid "``\"LATITUDE_IN_DEGREExLONGITUDE_IN_DEGREE\"``"
 msgstr "``\"LATITUDE_IN_DEGREExLONGITUDE_IN_DEGREE\"``"
 
-# c1a0250a45524ab9bde2cb3a952e8e20
 msgid "``\"LATITUDE_IN_DEGREE,LONGITUDE_IN_DEGREE\"``"
 msgstr "``\"LATITUDE_IN_DEGREE,LONGITUDE_IN_DEGREE\"``"
 
-# a5627cc9cc5844e1b8b68e848acedd08
 msgid ""
 "``x`` and ``,`` can be used for separator. Latitude and longitude can be "
 "represented in milliseconds or degree."
@@ -11876,19 +9050,15 @@ msgstr ""
 "``x`` and ``,`` can be used for separator. Latitude and longitude can be "
 "represented in milliseconds or degree."
 
-# 760db752e03b450f93b8925037acd9d3
 msgid "Array"
 msgstr "Array"
 
-# 06b5f768b1b243418ba5e662ee3c9d44
 msgid "Array literal is ``[element1, element2, ...]``."
 msgstr "Array literal is ``[element1, element2, ...]``."
 
-# 64537ed19ec34d09ad40d99b39e10836
 msgid "Object literal"
 msgstr "Object literal"
 
-# 7a63bc3d0f034eb1af13540ba9d17a92
 msgid ""
 "Object literal is ``{name1: value1, name2: value2, ...}``. Groonga doesn't "
 "support object literal yet."
@@ -11896,11 +9066,9 @@ msgstr ""
 "Object literal is ``{name1: value1, name2: value2, ...}``. Groonga doesn't "
 "support object literal yet."
 
-# af2e409d2f424fdfacfd90afc1ed9abf
 msgid "Control syntaxes"
 msgstr "Control syntaxes"
 
-# dec3665a718345e7a3fefce4a23b7534
 msgid ""
 "Script syntax doesn't support statement. So you cannot use control statement "
 "such as ``if``. You can only use ``A ? B : C`` expression as control syntax."
@@ -11908,11 +9076,9 @@ msgstr ""
 "Script syntax doesn't support statement. So you cannot use control statement "
 "such as ``if``. You can only use ``A ? B : C`` expression as control syntax."
 
-# 87e709ec83754c6586b948113275f020
 msgid "``A ? B : C`` returns ``B`` if ``A`` is true, ``C`` otherwise."
 msgstr "``A ? B : C`` returns ``B`` if ``A`` is true, ``C`` otherwise."
 
-# fcaa3629df6140e4a96ab96af4fe1175
 msgid ""
 "The expression matches records that ``_id`` column value is equal to ``1`` "
 "and ``n_likes`` column value is equal to ``5`` or ``_id`` column value is "
@@ -11922,12 +9088,9 @@ msgstr ""
 "and ``n_likes`` column value is equal to ``5`` or ``_id`` column value is "
 "not equal to 1 and ``n_likes`` column value is equal to ``3``."
 
-# 34d1cb50042c4ac2abd0a3177f30ed79
-# 1d2221fd856c453dacb408324f67bf45
 msgid "Its syntax is ``(...)``. ``...`` is comma separated expression list."
 msgstr ""
 
-# 5f41fe9da8b444ea87d7fb705d718e0f
 msgid ""
 "``(...)`` groups one ore more expressions and they can be processed as an "
 "expression. ``a && b || c`` means that ``a`` and ``b`` are matched or ``c`` "
@@ -11939,7 +9102,6 @@ msgstr ""
 "is matched. ``a && (b || c)`` means that ``a`` and one of ``b`` and ``c`` "
 "are matched."
 
-# 22fdf9297ad84abfa7e31e0f128a8104
 msgid ""
 "The first expression doesn't use grouping. It matches records that ``n_likes "
 "< 5`` and ``content @ \"senna\"`` are matched or ``content @ \"fast\"`` is "
@@ -11949,7 +9111,6 @@ msgstr ""
 "< 5`` and ``content @ \"senna\"`` are matched or ``content @ \"fast\"`` is "
 "matched."
 
-# 8a1b5a8925014040a9dcfbbe2db4951b
 msgid ""
 "The second expression uses grouping. It matches records that ``n_likes < 5`` "
 "and one of ``content @ \"senna\"`` or ``content @ \"fast\"`` are matched."
@@ -11957,15 +9118,12 @@ msgstr ""
 "The second expression uses grouping. It matches records that ``n_likes < 5`` "
 "and one of ``content @ \"senna\"`` or ``content @ \"fast\"`` are matched."
 
-# 47da8d00432c4d358852d3730066ce10
 msgid "Function call"
 msgstr "Function call"
 
-# 06b5f768b1b243418ba5e662ee3c9d44
 msgid "Its syntax is ``name(arugment1, argument2, ...)``."
 msgstr "Its syntax is ``name(arugment1, argument2, ...)``."
 
-# eccf4d2f8c4344f193d650e767a24450
 msgid ""
 "``name(argument1, argument2, ...)`` calls a function that is named ``name`` "
 "with arguments ``argument1``, ``argument2`` and ``...``."
@@ -11973,11 +9131,9 @@ msgstr ""
 "``name(argument1, argument2, ...)`` calls a function that is named ``name`` "
 "with arguments ``argument1``, ``argument2`` and ``...``."
 
-# 6bfed24fa3ff45cbbfb8b3585c9855b5
 msgid "See :doc:`/reference/function` for available functin list."
 msgstr "See :doc:`/reference/function` for available functin list."
 
-# bb065470a7294393a91978519976f039
 msgid ""
 "The expression uses :doc:`/reference/functions/edit_distance`. It matches "
 "records that ``_key`` column value is similar to ``\"Groonga\"``. Similality "
@@ -11986,35 +9142,27 @@ msgid ""
 "\"Groonga\"`` and ``\"Mroonga\"`` are treated as similar."
 msgstr ""
 
-# 5b0e32239b0b4cbd801be3a8a4f590b0
 msgid "Basic operators"
 msgstr "Basic operators"
 
-# 548d3fb356a34ce698a32ff702c40134
 msgid "Groonga supports operators defined in ECMAScript."
 msgstr "Groonga supports operators defined in ECMAScript."
 
-# 82b912af86ec4a539d26a33c92a90ce5
 msgid "Arithmetic operators"
 msgstr ""
 
-# e825825248c94988a955ec1beab28a4b
 msgid "Here are arithmetic operators."
 msgstr ""
 
-# 8e6f472e6ec740d093ec0fae58d66002
 msgid "Addition operator"
 msgstr "Addition operator"
 
-# 07bc011feb144d88ac2e97912235e64e
 msgid "Its syntax is ``number1 + number2``."
 msgstr "Its syntax is ``number1 + number2``."
 
-# 22d448563e6444d4b9372ad0d1118256
 msgid "The operator adds ``number1`` and ``number2`` and returns the result."
 msgstr "The operator adds ``number1`` and ``number2`` and returns the result."
 
-# fcaa3629df6140e4a96ab96af4fe1175
 msgid ""
 "The expression matches records that ``n_likes`` column value is equal to "
 "``15`` (= ``10 + 5``)."
@@ -12022,21 +9170,17 @@ msgstr ""
 "The expression matches records that ``n_likes`` column value is equal to "
 "``15`` (= ``10 + 5``)."
 
-# 0f0e84a85705451eaebe40fcd4f71fe3
 msgid "Subtraction operator"
 msgstr "Subtraction operator"
 
-# 4f930e67a5b34ef48199a7ef04a60893
 msgid "Its syntax is ``number1 - number2``."
 msgstr "Its syntax is ``number1 - number2``."
 
-# 016da9cfea8c441cb7a3d7e1b92f57b9
 msgid ""
 "The operator subtracts ``number2`` from ``number1`` and returns the result."
 msgstr ""
 "The operator subtracts ``number2`` from ``number1`` and returns the result."
 
-# fcaa3629df6140e4a96ab96af4fe1175
 msgid ""
 "The expression matches records that ``n_likes`` column value is equal to "
 "``15`` (= ``20 - 5``)."
@@ -12044,21 +9188,17 @@ msgstr ""
 "The expression matches records that ``n_likes`` column value is equal to "
 "``15`` (= ``20 - 5``)."
 
-# daa1fb3aee8948b3bb6139b8338afbd0
 msgid "Multiplication operator"
 msgstr "Multiplication operator"
 
-# 48cdda74c34e4a02a583c5b5f6295909
 msgid "Its syntax is ``number1 * number2``."
 msgstr "Its syntax is ``number1 * number2``."
 
-# eb5ace8e54054491be49a2ba7726babc
 msgid ""
 "The operator multiplies ``number1`` and ``number2`` and returns the result."
 msgstr ""
 "The operator multiplies ``number1`` and ``number2`` and returns the result."
 
-# cce97411ab1143c2a67a76b791c3e1a6
 msgid ""
 "The expression matches records that ``n_likes`` column value is equal to "
 "``15`` (= ``3 * 5``)."
@@ -12066,15 +9206,12 @@ msgstr ""
 "The expression matches records that ``n_likes`` column value is equal to "
 "``15`` (= ``3 * 5``)."
 
-# e7b91b2246fd40ceb17c10073f0e5d08
 msgid "Division operator"
 msgstr "Division operator"
 
-# b7d8da6421e04c9dbbb0e06a2d134566
 msgid "Its syntax is ``number1 / number2`` and ``number1 % number2``."
 msgstr "Its syntax is ``number1 / number2`` and ``number1 % number2``."
 
-# 6b2d06768ae84cac83087261950d6157
 msgid ""
 "The operator divides ``number2`` by ``number1``. ``/`` returns the quotient "
 "of result. ``%`` returns the remainder of result."
@@ -12082,11 +9219,9 @@ msgstr ""
 "The operator divides ``number2`` by ``number1``. ``/`` returns the quotient "
 "of result. ``%`` returns the remainder of result."
 
-# c4ee6bd61d594fc8ac99ddceb034dcbd
 msgid "Here is simple examples."
 msgstr "Here is simple examples."
 
-# cce97411ab1143c2a67a76b791c3e1a6
 msgid ""
 "The expression matches records that ``n_likes`` column value is equal to "
 "``3`` (= ``26 / 7``)."
@@ -12094,7 +9229,6 @@ msgstr ""
 "The expression matches records that ``n_likes`` column value is equal to "
 "``3`` (= ``26 / 7``)."
 
-# cce97411ab1143c2a67a76b791c3e1a6
 msgid ""
 "The expression matches records that ``n_likes`` column value is equal to "
 "``5`` (= ``26 % 7``)."
@@ -12102,28 +9236,21 @@ msgstr ""
 "The expression matches records that ``n_likes`` column value is equal to "
 "``5`` (= ``26 % 7``)."
 
-# 8f87d5d0015d47e490ae2710cbdef21e
 msgid "Logical operators"
 msgstr ""
 
-# 1eec1d5f952143a28fd5fca347a4078b
 msgid "Here are logical operators."
 msgstr ""
 
-# 02cd8833aa484433bdd35711b7e635eb
 msgid "Logical NOT operator"
 msgstr "Logical NOT operator"
 
-# 2ab2c6fc0a77419389de3c6749ba7142
 msgid "Its syntax is ``!condition``."
 msgstr "Its syntax is ``!condition``."
 
-# 9732dc53f4534a6fa40d3c2d21d419b4
 msgid "The operator inverts boolean value of ``condition``."
 msgstr "The operator inverts boolean value of ``condition``."
 
-# cce97411ab1143c2a67a76b791c3e1a6
-# cce97411ab1143c2a67a76b791c3e1a6
 msgid ""
 "The expression matches records that ``n_likes`` column value is not equal to "
 "``5``."
@@ -12131,15 +9258,12 @@ msgstr ""
 "The expression matches records that ``n_likes`` column value is not equal to "
 "``5``."
 
-# 35b7eb0d931342768a8e4ddb38aa69fe
 msgid "Logical AND operator"
 msgstr "Logical AND operator"
 
-# 9321544046e84941bc2e3b367a683944
 msgid "Its syntax is ``condition1 && condition2``."
 msgstr "Its syntax is ``condition1 && condition2``."
 
-# 1c235f8fc7d640d182d49e60e1bcca40
 msgid ""
 "The operator returns true if both of ``condition1`` and ``condition2`` are "
 "true, false otherwise."
@@ -12147,7 +9271,6 @@ msgstr ""
 "The operator returns true if both of ``condition1`` and ``condition2`` are "
 "true, false otherwise."
 
-# fcaa3629df6140e4a96ab96af4fe1175
 msgid ""
 "The expression matches records that ``content`` column value has the word "
 "``fast`` and ``n_likes`` column value is greater or equal to ``10``."
@@ -12155,15 +9278,12 @@ msgstr ""
 "The expression matches records that ``content`` column value has the word "
 "``fast`` and ``n_likes`` column value is greater or equal to ``10``."
 
-# 8f87d5d0015d47e490ae2710cbdef21e
 msgid "Logical OR operator"
 msgstr "Logical OR operator"
 
-# 85484834cdb44faca018fecbf9265462
 msgid "Its syntax is ``condition1 || condition2``."
 msgstr "Its syntax is ``condition1 || condition2``."
 
-# e035b6936d424352a67a352ada3a190c
 msgid ""
 "The operator returns true if either ``condition1`` or ``condition2`` is "
 "true, false otherwise."
@@ -12171,7 +9291,6 @@ msgstr ""
 "The operator returns true if either ``condition1`` or ``condition2`` is "
 "true, false otherwise."
 
-# cce97411ab1143c2a67a76b791c3e1a6
 msgid ""
 "The expression matches records that ``n_likes`` column value is equal to "
 "``5`` or ``10``."
@@ -12179,15 +9298,12 @@ msgstr ""
 "The expression matches records that ``n_likes`` column value is equal to "
 "``5`` or ``10``."
 
-# 02cd8833aa484433bdd35711b7e635eb
 msgid "Logical AND NOT operator"
 msgstr ""
 
-# 8a913d5874124096998bbc6964199e17
 msgid "Its syntax is ``condition1 &! condition2``."
 msgstr "Its syntax is ``condition1 &! condition2``."
 
-# 0ed54c1db0374adc89bfb0a8c530d570
 msgid ""
 "The operator returns true if ``condition1`` is true but ``condition2`` is "
 "false, false otherwise. It returns difference set."
@@ -12195,7 +9311,6 @@ msgstr ""
 "The operator returns true if ``condition1`` is true but ``condition2`` is "
 "false, false otherwise. It returns difference set."
 
-# 847684e3233f46bd85cf27da5ebbb917
 msgid ""
 "The expression matches records that ``content`` column value has the word "
 "``fast`` but doesn't have the word ``mroonga``."
@@ -12203,45 +9318,35 @@ msgstr ""
 "The expression matches records that ``content`` column value has the word "
 "``fast`` but doesn't have the word ``mroonga``."
 
-# 8b7b6f52579a42b8b5eaa870712114a3
 msgid "Bitwise operators"
 msgstr ""
 
-# 8b7b6f52579a42b8b5eaa870712114a3
 msgid "Here are bitwise operators."
 msgstr ""
 
-# 4435a7db6a964e9ba144932f311cb2a4
 msgid "Bitwise NOT operator"
 msgstr "Bitwise NOT operator"
 
-# b6ba630377ab470a8ce5cde5ea4619ae
 msgid "Its syntax is ``~number``."
 msgstr "Its syntax is ``~number``."
 
-# e7b933281d5e4f7a926be0bb4e82294e
 msgid "The operator returns bitwise NOT of ``number``."
 msgstr "The operator returns bitwise NOT of ``number``."
 
-# fcaa3629df6140e4a96ab96af4fe1175
 msgid ""
 "The expression matches records that ``n_likes`` column value is equal to "
 "``5`` because bitwise NOT of ``5`` is equal to ``-6``."
 msgstr ""
 
-# e33b0677419b4a289bec5e557e9a0c8a
 msgid "Bitwise AND operator"
 msgstr "Bitwise AND operator"
 
-# c45632e795c247428a49dc58830e0602
 msgid "Its syntax is ``number1 & number2``."
 msgstr "Its syntax is ``number1 & number2``."
 
-# 7bcd00d74bff426eb45c56eadf7c4a59
 msgid "The operator returns bitwise AND between ``number1`` and ``number2``."
 msgstr "The operator returns bitwise AND between ``number1`` and ``number2``."
 
-# 78994911ce7b44b48245611485df6b9f
 msgid ""
 "The expression matches records that ``n_likes`` column value is even number "
 "because bitwise AND between an even number and ``1`` is equal to ``1`` and "
@@ -12251,19 +9356,15 @@ msgstr ""
 "because bitwise AND between an even number and ``1`` is equal to ``1`` and "
 "bitwise AND between an odd number and ``1`` is equal to ``0``."
 
-# 8b7b6f52579a42b8b5eaa870712114a3
 msgid "Bitwise OR operator"
 msgstr "Bitwise OR operator"
 
-# 72c39b2e91ee4957a50be5e2ab7dc9e6
 msgid "Its syntax is ``number1 | number2``."
 msgstr "Its syntax is ``number1 | number2``."
 
-# edc7fef632524ee9934afae2df47bbb7
 msgid "The operator returns bitwise OR between ``number1`` and ``number2``."
 msgstr "The operator returns bitwise OR between ``number1`` and ``number2``."
 
-# cce97411ab1143c2a67a76b791c3e1a6
 msgid ""
 "The expression matches records that ``n_likes`` column value is equal to "
 "``5`` (= ``1 | 4``)."
@@ -12271,19 +9372,15 @@ msgstr ""
 "The expression matches records that ``n_likes`` column value is equal to "
 "``5`` (= ``1 | 4``)."
 
-# 55bb0320a2da44eda5f33a67ff60490a
 msgid "Bitwise XOR operator"
 msgstr "Bitwise XOR operator"
 
-# 33acb01207bd40159c9b7beed4bcf2e5
 msgid "Its syntax is ``number1 ^ number2``."
 msgstr "Its syntax is ``number1 ^ number2``."
 
-# 31717f2e9521495aad34a2be7b3ba202
 msgid "The operator returns bitwise XOR between ``number1`` and ``number2``."
 msgstr "The operator returns bitwise XOR between ``number1`` and ``number2``."
 
-# fcaa3629df6140e4a96ab96af4fe1175
 msgid ""
 "The expression matches records that ``n_likes`` column value is equal to "
 "``5`` (= ``10 ^ 15``)."
@@ -12291,23 +9388,18 @@ msgstr ""
 "The expression matches records that ``n_likes`` column value is equal to "
 "``5`` (= ``10 ^ 15``)."
 
-# eae7e2f319ac4deeabd53cc594eaa642
 msgid "Shift operators"
 msgstr ""
 
-# eae7e2f319ac4deeabd53cc594eaa642
 msgid "Here are shift operators."
 msgstr ""
 
-# eae7e2f319ac4deeabd53cc594eaa642
 msgid "Left shift operator"
 msgstr "Left shift operator"
 
-# 4ffd288394a844f8bdcc1bc97059bee0
 msgid "Its syntax is ``number1 << number2``."
 msgstr "Its syntax is ``number1 << number2``."
 
-# e7660e5e5c014135959ad97d5ecb6a58
 msgid ""
 "The operator performs a bitwise left shift operation on ``number1`` by "
 "``number2``."
@@ -12315,7 +9407,6 @@ msgstr ""
 "The operator performs a bitwise left shift operation on ``number1`` by "
 "``number2``."
 
-# fcaa3629df6140e4a96ab96af4fe1175
 msgid ""
 "The expression matches records that ``n_likes`` column value is equal to "
 "``10`` (= ``5 << 1``)."
@@ -12323,15 +9414,12 @@ msgstr ""
 "The expression matches records that ``n_likes`` column value is equal to "
 "``10`` (= ``5 << 1``)."
 
-# 41ed8963109d44b9b61112296eb7d45c
 msgid "Signed right shift operator"
 msgstr "Signed right shift operator"
 
-# 25df9da992a64f978836bbb50cb01350
 msgid "Its syntax is ``number1 >> number2``."
 msgstr "Its syntax is ``number1 >> number2``."
 
-# dc7d622dfa73419691ea230576d8d1cd
 msgid ""
 "The operator shifts bits of ``number1`` to right by ``number2``. The sign of "
 "the result is the same as ``number1``."
@@ -12339,7 +9427,6 @@ msgstr ""
 "The operator shifts bits of ``number1`` to right by ``number2``. The sign of "
 "the result is the same as ``number1``."
 
-# fcaa3629df6140e4a96ab96af4fe1175
 msgid ""
 "The expression matches records that ``n_likes`` column value is equal to "
 "``5`` (= ``-(-10 >> 1)`` = ``-(-5)``)."
@@ -12347,15 +9434,12 @@ msgstr ""
 "The expression matches records that ``n_likes`` column value is equal to "
 "``5`` (= ``-(-10 >> 1)`` = ``-(-5)``)."
 
-# 41846d3e2e714899af142d76a781ca04
 msgid "Unsigned right shift operator"
 msgstr "Unsigned right shift operator"
 
-# 99dd0cce2b834d70947e081629825a51
 msgid "Its syntax is ``number1 >>> number2``."
 msgstr "Its syntax is ``number1 >>> number2``."
 
-# dc7d622dfa73419691ea230576d8d1cd
 msgid ""
 "The operator shifts bits of ``number1`` to right by ``number2``. The "
 "leftmost ``number2`` bits are filled by ``0``."
@@ -12363,7 +9447,6 @@ msgstr ""
 "The operator shifts bits of ``number1`` to right by ``number2``. The "
 "leftmost ``number2`` bits are filled by ``0``."
 
-# fcaa3629df6140e4a96ab96af4fe1175
 msgid ""
 "The expression matches records that ``n_likes`` column value is equal to "
 "``5`` (= ``2147483648 - (-10 >>> 1)`` = ``2147483648 - 2147483643``)."
@@ -12371,23 +9454,18 @@ msgstr ""
 "The expression matches records that ``n_likes`` column value is equal to "
 "``5`` (= ``2147483648 - (-10 >>> 1)`` = ``2147483648 - 2147483643``)."
 
-# e7b91b2246fd40ceb17c10073f0e5d08
 msgid "Comparison operators"
 msgstr ""
 
-# 87da1110ead5414db1118501b13f02fa
 msgid "Here are comparison operators."
 msgstr ""
 
-# e2b25dca48cd42bcad030376e975189f
 msgid "Equal operator"
 msgstr "Equal operator"
 
-# c1e5d0ae5e25429fb2cd4e53de7ae3d8
 msgid "Its syntax is ``object1 == object2``."
 msgstr "Its syntax is ``object1 == object2``."
 
-# 4158e7d888c645aba0b59375cac3e856
 msgid ""
 "The operator returns true if ``object1`` equals to ``object2``, false "
 "otherwise."
@@ -12395,7 +9473,6 @@ msgstr ""
 "The operator returns true if ``object1`` equals to ``object2``, false "
 "otherwise."
 
-# cce97411ab1143c2a67a76b791c3e1a6
 msgid ""
 "The expression matches records that ``n_likes`` column value is equal to "
 "``5``."
@@ -12403,15 +9480,12 @@ msgstr ""
 "The expression matches records that ``n_likes`` column value is equal to "
 "``5``."
 
-# 4782dcc26fd741f598778c4dce6ccbda
 msgid "Not equal operator"
 msgstr "Not equal operator"
 
-# 2f541d86cf53477ea7a1749d60d2fbca
 msgid "Its syntax is ``object1 != object2``."
 msgstr "Its syntax is ``object1 != object2``."
 
-# 6e0d4e23eefa4e0683bb67341b97eb53
 msgid ""
 "The operator returns true if ``object1`` does not equal to ``object2``, "
 "false otherwise."
@@ -12419,317 +9493,249 @@ msgstr ""
 "The operator returns true if ``object1`` does not equal to ``object2``, "
 "false otherwise."
 
-# 4eed63d5436847ed9335398853865765
 msgid "Less than operator"
 msgstr ""
 
-# 956c7de696bb4f669873385b500927fd
 msgid "TODO: ..."
 msgstr "TODO: ..."
 
-# fcfbe51fc7c84c76b80ff6e236481a50
 msgid "Less than or equal to operator"
 msgstr ""
 
-# f895178588d642d1a1a3fcedf4fe4e09
 msgid "Greater than operator"
 msgstr ""
 
-# b0aaceeb7bd04efaa376924012b53a99
 msgid "Greater than or equal to operator"
 msgstr ""
 
-# 82b912af86ec4a539d26a33c92a90ce5
 msgid "Assignment operators"
 msgstr "Assignment operators"
 
-# 82b912af86ec4a539d26a33c92a90ce5
 msgid "Addition assignment operator"
 msgstr ""
 
-# 526970e733ef443a99fc1223880c81bd
 msgid "Its syntax is ``column1 += column2``."
 msgstr ""
 
-# e7660e5e5c014135959ad97d5ecb6a58
 msgid ""
 "The operator performs addition assginment operation on column1 by column2."
 msgstr ""
 
-# cbba79347d244786b68df2e23c13fc00
 msgid ""
 "The value of ``_score`` by ``--filter`` is always 1 in this case, then "
 "performs addition assignment operation such as '_score = _score + n_likes' "
 "for each records."
 msgstr ""
 
-# 05afa20b25c04bdb88f8777b84de00ca
-# d19b7904048f448a90b15c33f5d2fbfa
-# 28ca27bb71184f4089ab0246ed92349a
-# c76a2435213b40caa4338644e9fe4051
-# b3c7cff52a6d4f5a9f1c4b4d9029497c
-# 4fed550a096d4e1c85fbff4db832b94d
-# 84d8871ed5d3403c809141274c58c415
 msgid ""
 "For example, the value of ``_score`` about the record which stores \"Good-"
 "bye Senna\" as the ``_key`` is 3."
 msgstr ""
 
-# 9257b66eb42f43459c9b051884c9aaae
 msgid ""
 "So the expression ``1 + 3`` is evaluated and stored to ``_score`` column as "
 "the execution result."
 msgstr ""
 
-# 0f0e84a85705451eaebe40fcd4f71fe3
 msgid "Subtraction assignment operator"
 msgstr ""
 
-# 526970e733ef443a99fc1223880c81bd
 msgid "Its syntax is ``column1 -= column2``."
 msgstr ""
 
-# e7660e5e5c014135959ad97d5ecb6a58
 msgid ""
 "The operator performs subtraction assginment operation on column1 by column2."
 msgstr ""
 
-# 977c4a5ae8104bef9495f86f7ffbc4e7
 msgid ""
 "The value of ``_score`` by ``--filter`` is always 1 in this case, then "
 "performs subtraction assignment operation such as '_score = _score - "
 "n_likes' for each records."
 msgstr ""
 
-# 2be895b30f1345f0a3d177ea93ab8a3c
 msgid ""
 "So the expression ``1 - 3`` is evaluated and stored to ``_score`` column as "
 "the execution result."
 msgstr ""
 
-# daa1fb3aee8948b3bb6139b8338afbd0
 msgid "Multiplication assignment operator"
 msgstr ""
 
-# e29833dc5a2e498481f3fc80ffa5b2cf
 msgid "Its syntax is ``column1 *= column2``."
 msgstr ""
 
-# e7660e5e5c014135959ad97d5ecb6a58
 msgid ""
 "The operator performs multiplication assginment operation on column1 by "
 "column2."
 msgstr ""
 
-# 37f573b6ca7448c99254a38c8aa03027
 msgid ""
 "The value of ``_score`` by ``--filter`` is always 1 in this case, then "
 "performs subtraction assignment operation such as '_score = _score * "
 "n_likes' for each records."
 msgstr ""
 
-# 651859d9bcd04235a9e1b235820d9085
 msgid ""
 "So the expression ``1 * 3`` is evaluated and stored to ``_score`` column as "
 "the execution result."
 msgstr ""
 
-# e7b91b2246fd40ceb17c10073f0e5d08
 msgid "Division assignment operator"
 msgstr ""
 
-# 526970e733ef443a99fc1223880c81bd
 msgid "Its syntax is ``column1 /= column2``."
 msgstr ""
 
-# e7660e5e5c014135959ad97d5ecb6a58
 msgid ""
 "The operator performs division assginment operation on column1 by column2."
 msgstr ""
 
-# 61469501512a432ba7e29bf4550e9c6f
 msgid ""
 "The value of ``_score`` by ``--filter`` is always 1 in this case, then "
 "performs subtraction assignment operation such as '_score = _score / "
 "n_likes' for each records."
 msgstr ""
 
-# feec8cba945c493a928e5d4be20ab2d8
 msgid ""
 "So the expression ``1 / 3`` is evaluated and stored to ``_score`` column as "
 "the execution result."
 msgstr ""
 
-# 82b912af86ec4a539d26a33c92a90ce5
 msgid "Modulo assignment operator"
 msgstr ""
 
-# 526970e733ef443a99fc1223880c81bd
 msgid "Its syntax is ``column1 %= column2``."
 msgstr ""
 
-# e7660e5e5c014135959ad97d5ecb6a58
 msgid ""
 "The operator performs modulo assginment operation on column1 by column2."
 msgstr ""
 
-# a4f5d3e03e644ee4bb7a2d947d0f0f4b
 msgid ""
 "The value of ``_score`` by ``--filter`` is always 1 in this case, then "
 "performs subtraction assignment operation such as '_score = _score % "
 "n_likes' for each records."
 msgstr ""
 
-# 7b60b2a6dd704da0b1971e6d19d18f46
 msgid ""
 "So the expression ``1 % 3`` is evaluated and stored to ``_score`` column as "
 "the execution result."
 msgstr ""
 
-# eae7e2f319ac4deeabd53cc594eaa642
 msgid "Bitwise left shift assignment operator"
 msgstr ""
 
-# 3a6ba350f808472a912af2f314c02a66
 msgid "Its syntax is ``column1 <<= column2``."
 msgstr ""
 
-# e7660e5e5c014135959ad97d5ecb6a58
 msgid ""
 "The operator performs left shift assginment operation on column1 by column2."
 msgstr ""
 
-# 1601bf04d2d34ddf9edb00bd5638e032
 msgid ""
 "The value of ``_score`` by ``--filter`` is always 1 in this case, then "
 "performs subtraction assignment operation such as '_score = _score << "
 "n_likes' for each records."
 msgstr ""
 
-# c853213c636740b496030a6952fd2c75
 msgid ""
 "So the expression ``1 << 3`` is evaluated and stored to ``_score`` column as "
 "the execution result."
 msgstr ""
 
-# 41846d3e2e714899af142d76a781ca04
 msgid "Bitwise signed right shift assignment operator"
 msgstr ""
 
-# 4f9bff5a1f304a38a8f49bc21b7a66a5
 msgid "Its syntax is ``column2 >>= column2``."
 msgstr ""
 
-# e7660e5e5c014135959ad97d5ecb6a58
 msgid ""
 "The operator performs signed right shift assginment operation on column1 by "
 "column2."
 msgstr ""
 
-# 41846d3e2e714899af142d76a781ca04
 msgid "Bitwise unsigned right shift assignment operator"
 msgstr ""
 
-# 4f9bff5a1f304a38a8f49bc21b7a66a5
 msgid "Its syntax is ``column1 >>>= column2``."
 msgstr ""
 
-# e7660e5e5c014135959ad97d5ecb6a58
 msgid ""
 "The operator performs unsigned right shift assginment operation on column1 "
 "by column2."
 msgstr ""
 
-# e33b0677419b4a289bec5e557e9a0c8a
 msgid "Bitwise AND assignment operator"
 msgstr ""
 
-# 526970e733ef443a99fc1223880c81bd
 msgid "Its syntax is ``column1 &= column2``."
 msgstr ""
 
-# e7660e5e5c014135959ad97d5ecb6a58
 msgid ""
 "The operator performs bitwise AND assignment operation on column1 by column2."
 msgstr ""
 
-# 922be0729a424e669d60330477ecccdd
 msgid ""
 "The value of ``_score`` by ``--filter`` is always 1 in this case, then "
 "performs subtraction assignment operation such as '_score = _score & "
 "n_likes' for each records."
 msgstr ""
 
-# ac0e3852785c4810b01abf46f66ad015
-# 5a1fb5292ecd492396e8a597ee8e1921
 msgid ""
 "For example, the value of ``_score`` about the record which stores \"Groonga"
 "\" as the ``_key`` is 10."
 msgstr ""
 
-# ec4ba572ad6f4940bf63bea36cd095c5
 msgid ""
 "So the expression ``1 & 10`` is evaluated and stored to ``_score`` column as "
 "the execution result."
 msgstr ""
 
-# 8b7b6f52579a42b8b5eaa870712114a3
 msgid "Bitwise OR assignment operator"
 msgstr ""
 
-# 526970e733ef443a99fc1223880c81bd
 msgid "Its syntax is ``column1 |= column2``."
 msgstr ""
 
-# e7660e5e5c014135959ad97d5ecb6a58
 msgid ""
 "The operator performs bitwise OR assignment operation on column1 by column2."
 msgstr ""
 
-# 3c41901119e04f9794c49d9eeb78936c
 msgid ""
 "The value of ``_score`` by ``--filter`` is always 1 in this case, then "
 "performs subtraction assignment operation such as '_score = _score | "
 "n_likes' for each records."
 msgstr ""
 
-# 0dede11b56ce41639567e1920a52c27a
 msgid ""
 "So the expression ``1 | 10`` is evaluated and stored to ``_score`` column as "
 "the execution result."
 msgstr ""
 
-# 55bb0320a2da44eda5f33a67ff60490a
 msgid "Bitwise XOR assignment operator"
 msgstr ""
 
-# 196c62f8d0c244b2a0a8c8851f26046d
 msgid "Its syntax is ``column1 ^= column2``."
 msgstr ""
 
-# e7660e5e5c014135959ad97d5ecb6a58
 msgid ""
 "The operator performs bitwise XOR assginment operation on column1 by column2."
 msgstr ""
 
-# ad65864c09dc4d829725de65e3c3f31c
 msgid ""
 "The value of ``_score`` by ``--filter`` is always 1 in this case, then "
 "performs subtraction assignment operation such as '_score = _score ^ "
 "n_likes' for each records."
 msgstr ""
 
-# 304d471d469843709ddcb15f4d54f75b
 msgid ""
 "So the expression ``1 ^ 3`` is evaluated and stored to ``_score`` column as "
 "the execution result."
 msgstr ""
 
-# 1eec1d5f952143a28fd5fca347a4078b
 msgid "Original operators"
 msgstr "Original operators"
 
-# a75041857c0c48d5a76676ca36ebde2e
 msgid ""
 "Script syntax adds the original binary opearators to ECMAScript syntax. They "
 "operate search specific operations. They are starts with ``@`` or ``*``."
@@ -12737,15 +9743,12 @@ msgstr ""
 "Script syntax adds the original binary opearators to ECMAScript syntax. They "
 "operate search specific operations. They are starts with ``@`` or ``*``."
 
-# 7e946f418f06440782c902f41cefd2e2
 msgid "Match operator"
 msgstr "Match operator"
 
-# 526970e733ef443a99fc1223880c81bd
 msgid "Its syntax is ``column @ value``."
 msgstr "Its syntax is ``column @ value``."
 
-# b728ff3ca10c4af99e79bc815cd212a5
 msgid ""
 "The operator searches ``value`` by inverted index of ``column``. Normally, "
 "full text search is operated but tag search can be operated. Because tag "
@@ -12755,19 +9758,15 @@ msgstr ""
 "full text search is operated but tag search can be operated. Because tag "
 "search is also implemented by inverted index."
 
-# 73fe9e2bd1a942c6875a4e1b824101c4
 msgid ":doc:`query_syntax` uses this operator by default."
 msgstr ":doc:`query_syntax` uses this operator by default."
 
-# 2f5f775bd49e420888d3d520ff3836e4
 msgid "Prefix search operator"
 msgstr "Prefix search operator"
 
-# 196c62f8d0c244b2a0a8c8851f26046d
 msgid "Its syntax is ``column @^ value``."
 msgstr "Its syntax is ``column @^ value``."
 
-# df0a793b8b424e4a805f5244700a1f06
 msgid ""
 "The operator does prefix search with ``value``. Prefix search searches "
 "records that contain a word that starts with ``value``."
@@ -12775,15 +9774,12 @@ msgstr ""
 "The operator does prefix search with ``value``. Prefix search searches "
 "records that contain a word that starts with ``value``."
 
-# aa3102bdb5ec4d31bc2882227371f301
 msgid "Suffix search operator"
 msgstr "Suffix search operator"
 
-# c639415664f2404b8b028184f598a592
 msgid "Its syntax is ``column @$ value``."
 msgstr "Its syntax is ``column @$ value``."
 
-# a6bcab1a59414300908a11cb3e6d303b
 msgid ""
 "This operator does suffix search with ``value``. Suffix search searches "
 "records that contain a word that ends with ``value``."
@@ -12791,15 +9787,12 @@ msgstr ""
 "This operator does suffix search with ``value``. Suffix search searches "
 "records that contain a word that ends with ``value``."
 
-# e825825248c94988a955ec1beab28a4b
 msgid "Near search operator"
 msgstr "Near search operator"
 
-# 7190375cd8414cd496988737f4dce381
 msgid "Its syntax is ``column *N \"word1 word2 ...\"``."
 msgstr "Its syntax is ``column *N \"word1 word2 ...\"``."
 
-# 02169959d4734aa9b8c157a3280908ea
 msgid ""
 "The operator does near search with words ``word1 word2 ...``. Near search "
 "searches records that contain the words and the words are appeared in the "
@@ -12813,7 +9806,6 @@ msgstr ""
 "distance is the number of characters in N-gram family tokenizers and the "
 "number of words in morphological analysis family tokenizers."
 
-# 9635cfed2fb6496a982df4c4a406829a
 msgid ""
 "(TODO: Add a description about ``TokenBigram`` doesn't split ASCII only word "
 "into tokens. So the unit for ASCII words with ``TokenBigram`` is the number "
@@ -12823,8 +9815,6 @@ msgstr ""
 "into tokens. So the unit for ASCII words with ``TokenBigram`` is the number "
 "of words even if ``TokenBigram`` is a N-gram family tokenizer.)"
 
-# 260beb09250a46c6913d8865efee2087
-# 260beb09250a46c6913d8865efee2087
 msgid ""
 "Note that an index column for full text search must be defined for "
 "``column``."
@@ -12832,7 +9822,6 @@ msgstr ""
 "Note that an index column for full text search must be defined for "
 "``column``."
 
-# b9094217a43a47518a6e1f169231dbe3
 msgid ""
 "The first expression matches records that contain ``I`` and ``fast`` and the "
 "near distance of those words are in 10 words. So the record that its content "
@@ -12844,7 +9833,6 @@ msgstr ""
 "is ``I also started to use mroonga. It's also very fast! ...`` is matched. "
 "The number of words between ``I`` and ``fast`` is just 10."
 
-# 8883f17b69454fd88aa74f0a392cd95c
 msgid ""
 "The second expression matches records that contain ``I`` and ``Really`` and "
 "the near distance of those words are in 10 words. So the record that its "
@@ -12856,7 +9844,6 @@ msgstr ""
 "content is ``I also started to use mroonga. It's also very fast! Really fast!"
 "`` is not matched. The number of words between ``I`` and ``Really`` is 11."
 
-# 62f1b0811c2e42848eea868142283def
 msgid ""
 "The third expression matches records that contain ``also`` and ``Really`` "
 "and the near distance of those words are in 10 words. So the record that its "
@@ -12870,15 +9857,12 @@ msgstr ""
 "fast!`` is matched. The number of words between ``also`` and ``Really`` is "
 "10."
 
-# 57e6e3be4cf44dd293de630ccc26de36
 msgid "Similar search"
 msgstr "Similar search"
 
-# e29833dc5a2e498481f3fc80ffa5b2cf
 msgid "Its syntax is ``column *S \"document\"``."
 msgstr "Its syntax is ``column *S \"document\"``."
 
-# 9dfd4bbdea264365a230a9a6aec2fa70
 msgid ""
 "The operator does similar search with document ``document``. Similar search "
 "searches records that have similar content to ``document``."
@@ -12886,7 +9870,6 @@ msgstr ""
 "The operator does similar search with document ``document``. Similar search "
 "searches records that have similar content to ``document``."
 
-# 6e433ae9401246e09cedbecb056b69b7
 msgid ""
 "The expression matches records that have similar content to ``I migrated all "
 "Solr system!``. In this case, records that have ``I migrated all XXX system!"
@@ -12896,15 +9879,12 @@ msgstr ""
 "Solr system!``. In this case, records that have ``I migrated all XXX system!"
 "`` content are matched."
 
-# 8317c605934241ec8d800e934efa7eab
 msgid "Term extract operator"
 msgstr "Term extract operator"
 
-# 3c4e0fbb1a04435a8d6cbd9b35e06ed1
 msgid "Its syntax is ``_key *T \"document\"``."
 msgstr "Its syntax is ``_key *T \"document\"``."
 
-# c9b4999216e14ccdad8e13be97043b06
 msgid ""
 "The operator extracts terms from ``document``. Terms must be registered as "
 "keys of the table of ``_key``."
@@ -12912,7 +9892,6 @@ msgstr ""
 "The operator extracts terms from ``document``. Terms must be registered as "
 "keys of the table of ``_key``."
 
-# aaa4d65227b642d187abfbfd77590513
 msgid ""
 "Note that the table must be patricia trie (``TABLE_PAT_KEY``) or double "
 "array trie (``TABLE_DAT_KEY``). You can't use hash table "
@@ -12921,7 +9900,6 @@ msgid ""
 "implement the operator."
 msgstr ""
 
-# 5381a3efec304cfea597d0385d1905a4
 msgid ""
 "The expression extrcts terms that included in document ``Groonga is the "
 "successor project to Senna.``. In this case, ``KEY_NORMALIZE`` flag is "
@@ -12933,21 +9911,17 @@ msgstr ""
 "specified to ``Words``. So ``Groonga`` can be extracted even if it is loaded "
 "as ``groonga`` into ``Words``. All of extracted terms are also normalized."
 
-# 69ec63a65fa44726aa82b09d29cb91b1
 msgid "Indexing"
 msgstr "Indexing"
 
-# 0eeedbc8d7ee432d887e09c878c07da2
 msgid ""
 "Groonga supports both online index construction and offline index "
 "construction since 2.0.0."
 msgstr ""
 
-# c5b0cb69adf642e8a337fa2d82d82788
 msgid "Online index construction"
 msgstr "Online index construction"
 
-# 377afbc4a0cb428db3ef9609629710a6
 msgid ""
 "In online index construction, registered documents can be searchable quickly "
 "while indexing. But indexing requires more cost rather than indexing by "
@@ -12957,7 +9931,6 @@ msgstr ""
 "while indexing. But indexing requires more cost rather than indexing by "
 "offline index construction."
 
-# 9c17311e696e421bbdb4f63612811cca
 msgid ""
 "Online index construction is suitable for a search system that values "
 "freshness. For example, a search system for tweets, news, blog posts and so "
@@ -12969,11 +9942,9 @@ msgstr ""
 "on will value freshness. Online index construction can make fresh documents "
 "searchable and keep searchable while indexing."
 
-# 0e68ed2d15674d9ca49f89401b7ea226
 msgid "Offline index construction"
 msgstr "Offline index construction"
 
-# 625990818a6f4c70967be50459999bed
 msgid ""
 "In offline index construction, indexing cost is less than indexing cost by "
 "online index construction. Indexing time will be shorter. Index will be "
@@ -12985,7 +9956,6 @@ msgstr ""
 "smaller. Resources required for indexing will be smaller. But a registering "
 "document cannot be searchable until all registered documents are indexed."
 
-# ddf7a797ab31477ea1f558e79bc42574
 msgid ""
 "Offline index construction is suitable for a search system that values less "
 "required resources. If a search system doesn't value freshness, offline "
@@ -12999,11 +9969,9 @@ msgstr ""
 "system doesn't value freshness because a reference manual will be updated "
 "only at a release."
 
-# ca99931b759c44d98ff777781b88ced4
 msgid "How to use"
 msgstr "How to use"
 
-# 2c15c7aa1ec745ca974ea35e1a7c844d
 msgid ""
 "Groonga uses online index construction by default. We register a document, "
 "we can search it quickly."
@@ -13011,7 +9979,6 @@ msgstr ""
 "Groonga uses online index construction by default. We register a document, "
 "we can search it quickly."
 
-# e38d943057214917b3df80c8495ca608
 msgid ""
 "Groonga uses offline index construction by adding an index to a column that "
 "already has data."
@@ -13019,19 +9986,15 @@ msgstr ""
 "Groonga uses offline index construction by adding an index to a column that "
 "already has data."
 
-# 6904d09ebfc443aa9ab369bf3776a4ea
 msgid "We define a schema:"
 msgstr "We define a schema:"
 
-# 47bd452bd8bf455888fb08205cf93a6b
 msgid "We register data:"
 msgstr "We register data:"
 
-# f4d3f1a0be66461db983f3da4d5d1c0b
 msgid "We search without index. We get no result:"
 msgstr "We search without index. We get no result:"
 
-# 0a0f3298434f42cb818b86996473dc4f
 msgid ""
 "We create index for ``Tweets.content``. Already registered data in ``Tweets."
 "content`` are indexed by offline index construction:"
@@ -13039,23 +10002,18 @@ msgstr ""
 "We create index for ``Tweets.content``. Already registered data in ``Tweets."
 "content`` are indexed by offline index construction:"
 
-# 06e84dbb21414dde8cb324a5b2d71208
 msgid "We search with index. We get a matched record:"
 msgstr "We search with index. We get a matched record:"
 
-# 6601379fc494471d9c08d5a6c2636dd0
 msgid "We register data again. They are indexed by online index construction:"
 msgstr "We register data again. They are indexed by online index construction:"
 
-# 5b52a5d53e5a4d92a84ff578a6867c71
 msgid "We can also get newly registered records by searching:"
 msgstr "We can also get newly registered records by searching:"
 
-# 8835f99991d54f80aa4e18751f4405b2
 msgid "Log"
 msgstr "Log"
 
-# 3b4343b2e57044f8a5d458547d64c892
 msgid ""
 "Groonga has two log files. They are process log and query log. Process log "
 "is for all of :doc:`executables/groonga` works. Query log is just for query "
@@ -13065,11 +10023,9 @@ msgstr ""
 "is for all of :doc:`executables/groonga` works. Query log is just for query "
 "processing."
 
-# d68d2019af4d4314b97d646aff93ed09
 msgid "Process log"
 msgstr "Process log"
 
-# e294e361f1a647fc82c0acba8da71f1a
 msgid ""
 "Process log is enabled by default. Log path can be customized by :option:`--"
 "log-path` option.  Each log has its log level. If a log is smaller than "
@@ -13081,205 +10037,132 @@ msgstr ""
 "groonga process' log level, it's not logged. Log level can be customized by :"
 "option:`-l` or :doc:`commands/log_level`."
 
-# 511192979a4d484484ec9801326cb266
-# 6216da4d10cb431c9867b3c6dcea772a
 msgid "Format"
 msgstr "Format"
 
-# ba439c327bde4b39be432639bdfb46aa
 msgid "Process log uses the following format::"
 msgstr "Process log uses the following format::"
 
-# 4f79c1a1225a4cac86489cb6d85810fb
-# b27a7d696c0742dc965417fa263fb33b
 msgid "It's time stamp uses the following format::"
 msgstr "It's time stamp uses the following format::"
 
-# ab20c8364c2b4886bf0ea603a84a3e8a
-# c4a7cd4d25e7440aa4b035b99ae33066
 msgid "YYYY"
 msgstr ""
 
-# d9ae4386b9d744acbaf476ca222a0358
-# 569d6b61ae504836a3a2d53eb582ac50
 msgid "Year with four digits."
 msgstr "Year with four digits."
 
-# 3f0822c111574fbf87504173dc8d43ff
-# ac2afb0feb184dc7b9c371c6f907fee5
 msgid "MM"
 msgstr ""
 
-# d94bddc0b6c644ab8506da7aab7ced37
-# 6fee816701c244fe99ac7ea2427816c7
 msgid "Month with two digits."
 msgstr "Month with two digits."
 
-# 03f8dbb2cbba464bb205f5759c9b36f6
-# 65f07c14427a429a93febd527754210e
 msgid "DD"
 msgstr ""
 
-# bef4fac76c154437a53c407ab73aab8d
-# cfded4516d074a62842f9fd1c450e031
 msgid "Day with two digits."
 msgstr "Day with two digits."
 
-# 9d5bc459dc98448eb1cd195542bdbd82
-# 9fb724ce5ba14136b90ba45f29ae223f
 msgid "Hour with two digits."
 msgstr "Hour with two digits."
 
-# 6352ff736d1e469fb29508e659346ed3
-# e9579eb291624d26a6375fe401c7da3c
 msgid "hh"
 msgstr ""
 
-# 27504e820b6342b99698c3c6fe2f6eda
-# f9e59e789ecd41019e7c8efc971581ab
 msgid "Minute with two digits."
 msgstr "Minute with two digits."
 
-# d17a1a84842e4700bd166cd7f8847c03
-# 5b354c9d17344d09943cf91b11c3264c
 msgid "mm"
 msgstr ""
 
-# 24495716f8d44e64bda2b10849d0db5f
-# 821a8a96422e4db2aede10cc7dbcf576
 msgid "Second with two digits."
 msgstr "Second with two digits."
 
-# 99864a840d01447fb50bbd212802e04b
-# 6a7b72df94884ab7a02f6a3b1c809431
 msgid "ss"
 msgstr ""
 
-# 5d0682eea1a84d25b37674827965fdd5
-# da97d33d8f5f4d258f328950188c3a31
 msgid "Microsecond with six digits."
 msgstr "Microsecond with six digits."
 
-# f3bcddf59a324ee6b0aa8fa377d1eb35
-# 3e3b39dbb28f4d11adc7c7906ddf28fd
 msgid "SSSSSS"
 msgstr ""
 
-# f65970f3a4264e33b0ed18b5521f53ae
-# c41e9a5775254864920a3c5d413bc3f0
-# dbae9c01ac594defa0f2e485e76c0929
-# b07bab7cb2fd41b0998402e48dcf382b
-# 091b051231aa46808e77dacc6fc5032e
-# a3d0d9e778ae4795ae25444729bacc43
-# c718f34b2a0b454896badee8ac487d5b
-# 11d6f67d10cf49079fc7504fe656d181
-# 5f705ad5205b47bba758a79939864e9c
-# 63706a8aa5aa4123ba3331add4d09cea
-# 08d03411c4b5418b8db31591c1d7b59d
-# f6b8093f5a4f4cd89e30878bedd1c37f
 msgid "Example::"
 msgstr "Example::"
 
-# 5a29c14894204f0592bf35b1ae607a75
-# 930be159325c4c68aa6e262d33721781
 msgid "TIME_STAMP"
 msgstr ""
 
-# cd197dd5bf9b4dac88846a1157ff6ba9
 msgid "Log level with a character. Here is a character and log level map."
 msgstr "Log level with a character. Here is a character and log level map."
 
-# 154c9c380cee49eca27652b06439d8d3
 msgid "E"
 msgstr ""
 
-# 32f259d5294f479b87931b59b49dd2e0
 msgid "Emergency"
 msgstr "Emergency"
 
-# ef3491a21744489daf8ed3b367cb0b86
 msgid "A"
 msgstr ""
 
-# bc869963287341d4addb80e76d09126e
 msgid "Alert"
 msgstr "Alert"
 
-# fc5de7c5ee3848ea9ed4fdec069354cd
 msgid "C"
 msgstr ""
 
-# aad9649c07184d1193803cae61335efe
 msgid "Critical"
 msgstr "Critical"
 
-# 1c9188dfe2c54589b8e6264d7b4923be
 msgid "Error"
 msgstr "Error"
 
-# f9850217e62d4fe48be3925464543d41
 msgid "e"
 msgstr ""
 
-# 98e5b8ea0d354ce6bfba6f954e99f82f
 msgid "Warning"
 msgstr "Warning"
 
-# 07c0e11c6e344f838f49839cce58b84a
 msgid "w"
 msgstr ""
 
-# 42dc578c7b1641c39d59b7551160592e
 msgid "Notification"
 msgstr "Notification"
 
-# 45395e8dddb44037b01d96e2e33881cd
 msgid "n"
 msgstr ""
 
-# 6213e846b33c45a18f52912176cd11de
 msgid "Information"
 msgstr "Information"
 
-# f651e10ac6fa4096bd1a450012f60a60
 msgid "i"
 msgstr ""
 
-# cede500510ac487183f096fa76b4319c
 msgid "Debug"
 msgstr "Debug"
 
-# 6cf8377a141e490c885cf64c4e7e7443
 msgid "d"
 msgstr ""
 
-# ba2c891de53b4749a3ae5aa642586db1
 msgid "Dump"
 msgstr "Dump"
 
-# c7bb51c783ad4c158b981e26d0c3fa8c
 msgid "\\-"
 msgstr ""
 
-# 5e7a9bad91bd46f0a7a0a9e057df2122
 msgid "L"
 msgstr ""
 
-# 29dc15e599584f86af5476b6632dcae6
-# a794ba94666645a6ab7a5e268004962a
 msgid "Details about the log with free format."
 msgstr "Details about the log with free format."
 
-# b1167fbc42644d4192cef25a01cc8d31
-# 580c7829326f45d2bb21e3074224058d
 msgid "MESSAGE"
 msgstr ""
 
-# 72ed68e80cdb4eb8a528ef6423f52a4f
 msgid "Query log"
 msgstr "Query log"
 
-# b86a74ab6c024107a5ba69440e23d54f
 msgid ""
 "Query log is disabled by default. It can be enabled by :option:`--query-log-"
 "path` option."
@@ -13287,11 +10170,9 @@ msgstr ""
 "Query log is disabled by default. It can be enabled by :option:`--query-log-"
 "path` option."
 
-# 89c4cd351226489a879d044e7cb9e982
 msgid "Query log uses the following formats::"
 msgstr "Query log uses the following formats::"
 
-# 8a682dd2a43a47eaaf1a0a6ee4816299
 msgid ""
 "ID of a thread. Groonga process creates threads to process requests "
 "concurrently. Each thread outputs some logs for a request. This ID can be "
@@ -13301,103 +10182,81 @@ msgstr ""
 "concurrently. Each thread outputs some logs for a request. This ID can be "
 "used to extract a log sequence by a thread."
 
-# b12ae2cea3a64917980ca3200e3fe96c
 msgid "ID"
 msgstr ""
 
-# f0750cbdcc8e44d59a6e354a9eaf42dc
 msgid ">"
 msgstr ""
 
-# 91078709bbe84f3ca7f3f19775fdfb9e
 msgid "A character that indicates query is started."
 msgstr "A character that indicates query is started."
 
-# cf1b63583cf14124b024a6dc6731d267
 msgid ":"
 msgstr ""
 
-# 97feb5e9fb334d0fb695aa289e8abb32
 msgid "A character that indicates query is processing."
 msgstr "A character that indicates query is processing."
 
-# 0754b84c2dc24d289d4d1b999c8eb6a0
 msgid "<"
 msgstr ""
 
-# 90f8f4f78f7948ceb04955f3ed4ebc3f
 msgid "A character that indicates query is finished."
 msgstr "A character that indicates query is finished."
 
-# aeb06af9a9a04264bb5dc038624b5274
 msgid "A query to be processed."
 msgstr "A query to be processed."
 
-# 7291ab3d61854ffc80c2f55e9e783e3e
 msgid "QUERY"
 msgstr ""
 
-# 81bb7d9140374278b058595bb41a6d77
 msgid "Elapsed time in nanoseconds since query is started."
 msgstr "Elapsed time in nanoseconds since query is started."
 
-# 6c7a5110a4c14feeac7b98d75ba0ee2d
 msgid "ELAPSED_TIME"
 msgstr ""
 
-# 44ea97634f334129adf64fe6d720aa66
 msgid "A processed work at the time."
 msgstr "A processed work at the time."
 
-# b4bb6dd8a2224f4d9a86a15b95bb6216
 msgid "PROGRESS"
 msgstr ""
 
-# 1a8b395a56c7493081c1015bbdea45af
 msgid "A return code for the query."
 msgstr "A return code for the query."
 
-# dd6a15d484e74bf7855f248920351414
 msgid "RETURN_CODE"
 msgstr ""
 
-# a0f1b54372bb4cf99875d329e41f5c22
 msgid "Normalizers"
 msgstr ""
 
-# 241616c35ad74598b6005843b5719c10
 msgid ""
 "Groonga has normalizer module that normalizes text. It is used when "
 "tokenizing text and storing table key. For example, ``A`` and ``a`` are "
 "processed as the same character after normalization."
 msgstr ""
 
-# 729797d2951b4ff0a97bc50846f411a0
 msgid ""
 "Normalizer module can be added as a plugin. You can customize text "
 "normalization by registering your normalizer plugins to Groonga."
 msgstr ""
 
-# 0cc5157b0a42407c9bef0f52f16dbf7b
 msgid ""
 "A normalizer module is attached to a table. A table can have zero or one "
 "normalizer module. You can attach a normalizer module to a table by :ref:"
 "`table-create-normalizer` option in :doc:`/reference/commands/table_create`."
 msgstr ""
 
-# b9483eed0ec640c18a3d227434e13bd5
 msgid ""
 "Here is an example ``table_create`` that uses ``NormalizerAuto`` normalizer "
 "module:"
 msgstr ""
 
-# 2741484642804ba4b351fc281a38b102
 msgid ""
 "Groonga 2.0.9 or earlier doesn't have ``--normalizer`` option in "
 "``table_create``. ``KEY_NORMALIZE`` flag was used instead."
 msgstr ""
 
-# cb9a0d43b3ab470285225b59076c89a6
 msgid ""
 "You can open an old database by Groonga 2.1.0 or later. An old database "
 "means that the database is created by Groonga 2.0.9 or earlier. But you "
@@ -13408,43 +10267,33 @@ msgid ""
 "the opened old database."
 msgstr ""
 
-# 99426c5137a44fc18cf0376298f5f1ca
 msgid "Keys of a table that has a normalizer module are normalized:"
 msgstr ""
 
-# 78943b9a5bf84a2a96b3e961d84940c8
 msgid ""
 "``NormalizerAuto`` normalizer normalizes a text as a downcased text. For "
 "example, ``\"Apple\"`` is normalized to ``\"apple\"``, ``\"black\"`` is "
 "normalized to ``\"blank\"`` and ``\"COLOR\"`` is normalized to ``\"color\"``."
 msgstr ""
 
-# 13627d6a9a5044efa13f776d83110a3b
 msgid ""
 "If a table is a lexicon for fulltext search, tokenized tokens are "
 "normalized. Because tokens are stored as table keys. Table keys are "
 "normalized as described above."
 msgstr ""
 
-# 7a11aa3ec0f24a43be60a7a8fcf95cdd
 msgid "Built-in normalizers"
 msgstr ""
 
-# b211e334663e41f9ac8daa558e64db49
 msgid "Here is a list of built-in normalizers:"
 msgstr ""
 
-# 28901975d2f646e0b7b7e735d9c1f1c5
-# 01e9b473207c46189d0a72ac77e358da
 msgid "``NormalizerAuto``"
 msgstr ""
 
-# 808b06286a5242f294d76d4aa61d0c0a
-# 42fbc713fa114057b6fcd3983ba387fe
 msgid "``NormalizerNFKC51``"
 msgstr ""
 
-# c6bd1022388a42388d1c0cabbefc3803
 msgid ""
 "Normally you should use ``NormalizerAuto`` normalizer. ``NormalizerAuto`` "
 "was the normalizer for Groonga 2.0.9 or earlier. ``KEY_NORMALIZE`` flag in "
@@ -13452,7 +10301,6 @@ msgid ""
 "NormalizerAuto`` option in ``table_create`` on Groonga 2.1.0 or later."
 msgstr ""
 
-# 0697f1cdbca84a72bbb2fb9dcdbfad35
 msgid ""
 "``NormalizerAuto`` supports all encoding. It uses Unicode NFKC "
 "(Normalization Form Compatibility Composition) for UTF-8 encoding text. It "
@@ -13460,7 +10308,6 @@ msgid ""
 "results of those original normalization are similar to NFKC."
 msgstr ""
 
-# 15df0f3334584b59a5755fc104ae3867
 msgid ""
 "For example, half-width katakana (such as U+FF76 HALFWIDTH KATAKANA LETTER "
 "KA) + half-width katakana voiced sound mark (U+FF9E HALFWIDTH KATAKANA "
@@ -13469,119 +10316,91 @@ msgid ""
 "is one character."
 msgstr ""
 
-# 43da0d76d5af4c5181fa4b6da5529901
 msgid "Here is an example that uses ``NormalizerAuto`` normalizer:"
 msgstr ""
 
-# 9e0bb6aa8a2a4d2f9bcf0d8bdf9db2e4
 msgid ""
 "``NormalizerNFKC51`` normalizes texts by Unicode NFKC (Normalization Form "
 "Compatibility Composition) for Unicode version 5.1. It supports only UTF-8 "
 "encoding."
 msgstr ""
 
-# a9fbc2a34fb2478baf14ee72917bc177
 msgid ""
 "Normally you don't need to use ``NormalizerNFKC51`` explicitly. You can use "
 "``NormalizerAuto`` instead."
 msgstr ""
 
-# 5c7f0ecedecc49ba850899276ed94c9f
 msgid "Here is an example that uses ``NormalizerNFKC51`` normalizer:"
 msgstr ""
 
-# 8e6f472e6ec740d093ec0fae58d66002
 msgid "Additional normalizers"
 msgstr ""
 
-# c6a3d16f4935455198f04132c609f79d
 msgid ""
 "Here is a list of additional normalizers provided by ``groonga-normalizer-"
 "mysql`` plugins:"
 msgstr ""
 
-# 67691b36d0d346898ef0fbd589abc971
 msgid "``NormalizerMySQLGeneralCI``"
 msgstr ""
 
-# 3ad0308b54de4a838c2e9a8fcec133ec
 msgid "``NormalizerMySQLUnicodeCI``"
 msgstr ""
 
-# 489afcfeba604ac4b386b39b14cb4add
 msgid "``NormalizerMySQLUnicodeCIExceptKanaCIKanaWithVoicedSoundMark``"
 msgstr ""
 
-# a3701b59ada34fff96e9124fe4064e38
 msgid ""
 "``groonga-normalizer-mysql`` is a Groonga plugin. It provides MySQL "
 "compatible normalizers to Groonga. ``NormalizerMySQLGeneralCI`` corresponds "
 "to ``utf8mb4_general_ci``."
 msgstr ""
 
-# f635555465884cfea2faffac15a2e744
 msgid "You need to register ``normalizers/mysql`` plugin in advance."
 msgstr ""
 
-# 6656e3e7cecf483e857e67760b07d7c0
 msgid "Here is an example that uses ``NormalizerMySQLGeneralCI`` normalizer:"
 msgstr ""
 
-# 257a8b1e0a424cf3807162e2534d2837
-# 73ec2c3dc21241d5b0b795816605eeb2
 msgid ":doc:`/reference/commands/table_create`"
 msgstr ""
 
-# 1852c8ad6e5b4ad7877508e8f48c81eb
 msgid "Output"
 msgstr "Output"
 
-# abafe29843c045c1b570aa4f2297d760
 msgid "Groonga supports the following output format types:"
 msgstr "Groonga supports the following output format types:"
 
-# ae5ae1a28f4e4e3f9783e15bbefeb1d4
 msgid "`JSON <http://www.json.org/>`_"
 msgstr "`JSON <http://www.json.org/>`_"
 
-# 5e76b3e355e0415d989b564865ce026c
 msgid "`XML <http://www.w3.org/XML/>`_"
 msgstr "`XML <http://www.w3.org/XML/>`_"
 
-# 0f1afd20d13c412c955c36372463df9f
 msgid "TSV (Tab Separated Values)"
 msgstr "TSV (Tab Separated Values)"
 
-# ec7c0c4690104dc482301ca0b8659e35
 msgid "`MessagePack <http://msgpack.org/>`_"
 msgstr "`MessagePack <http://msgpack.org/>`_"
 
-# b6d320ecb40e4d8fa18290f8562fdf23
 msgid "JSON is the default output format."
 msgstr "JSON is the default output format."
 
-# 7944e73c1c8343b69af09965ea5e24d4
 msgid "Groonga has the following query interfaces:"
 msgstr "Groonga has the following query interfaces:"
 
-# 77eb3a0de86d4cd3ae0b027b54aae36a
 msgid "command line"
 msgstr "command line"
 
-# 7a7d808879fc484c9e90a5724a2703f0
-# 363f84dc3f6d4621ae685806cbdaec89
 msgid "HTTP"
 msgstr "HTTP"
 
-# cb2df9be60e24e348fe5535a1abccbc5
 msgid "They provides different ways to change output format type."
 msgstr "They provides different ways to change output format type."
 
-# 475add071e844e7c897fd76482e6e54f
 msgid "Command line"
 msgstr "Command line"
 
-# 6e7300758465403297dcb8573a7f598b
 msgid ""
 "You can use command line query interface by ``groonga DB_PATH`` or ``groonga "
 "-c``. Those groonga commands shows ``> `` prompt. In this query interface, "
@@ -13591,7 +10410,6 @@ msgstr ""
 "-c``. Those groonga commands shows ``> `` prompt. In this query interface, "
 "you can specify output format type by ``output_type`` option."
 
-# 0539f60f34654048b86079689b76e54c
 msgid ""
 "If you don't specify ``output_type`` option, you will get a result in JSON "
 "format::"
@@ -13599,7 +10417,6 @@ msgstr ""
 "If you don't specify ``output_type`` option, you will get a result in JSON "
 "format::"
 
-# 875b7c58f7f94917a31fc44597f48378
 msgid ""
 "You can specify ``json`` as ``output_type`` value to get a result in JSON "
 "format explicitly::"
@@ -13607,7 +10424,6 @@ msgstr ""
 "You can specify ``json`` as ``output_type`` value to get a result in JSON "
 "format explicitly::"
 
-# 59673fbeab4c48f59b93d136676e3d5f
 msgid ""
 "You need to specify ``xml`` as ``output_type`` value to get a result in XML "
 "format::"
@@ -13615,7 +10431,6 @@ msgstr ""
 "You need to specify ``xml`` as ``output_type`` value to get a result in XML "
 "format::"
 
-# c2d6a3cd042c45a3ac8954dcd42f204b
 msgid ""
 "You need to specify ``tsv`` as ``output_type`` value to get a result in TSV "
 "format::"
@@ -13623,7 +10438,6 @@ msgstr ""
 "You need to specify ``tsv`` as ``output_type`` value to get a result in TSV "
 "format::"
 
-# 2c16c8c172594130a74511ab2aa27ea2
 msgid ""
 "You need to specify ``msgpack`` as ``output_type`` value to get a result in "
 "MessagePack format::"
@@ -13631,7 +10445,6 @@ msgstr ""
 "You need to specify ``msgpack`` as ``output_type`` value to get a result in "
 "MessagePack format::"
 
-# 6ddbd7c7807b44829f3b39effa0a60bd
 msgid ""
 "You can use HTTP query interface by ``groonga --protocol http -s DB_PATH``. "
 "Groonga HTTP server starts on port 10041 by default. In this query "
@@ -13641,11 +10454,9 @@ msgstr ""
 "Groonga HTTP server starts on port 10041 by default. In this query "
 "interface, you can specify output format type by extension."
 
-# 2f60c7c199164682b4e1b66c5e62e682
 msgid "If you don't specify extension, you will get a result in JSON format::"
 msgstr "If you don't specify extension, you will get a result in JSON format::"
 
-# 73ca6e301c1c419085917640ce038bf2
 msgid ""
 "You can specify ``json`` as extension to get a result in JSON format "
 "explicitly::"
@@ -13653,19 +10464,16 @@ msgstr ""
 "You can specify ``json`` as extension to get a result in JSON format "
 "explicitly::"
 
-# 54e81d07cc4c4ef1a22d1ea2a803fc55
 msgid ""
 "You need to specify ``xml`` as extension to get a result in XML format::"
 msgstr ""
 "You need to specify ``xml`` as extension to get a result in XML format::"
 
-# 2807c9f3d9c645928521851466d73f95
 msgid ""
 "You need to specify ``tsv`` as extension to get a result in TSV format::"
 msgstr ""
 "You need to specify ``tsv`` as extension to get a result in TSV format::"
 
-# 77140994b64241348ef6e31f872fb00f
 msgid ""
 "You need to specify ``msgpack`` as extension to get a result in MessagePack "
 "format::"
@@ -13673,21 +10481,17 @@ msgstr ""
 "You need to specify ``msgpack`` as extension to get a result in MessagePack "
 "format::"
 
-# 7d9e1ef7caab4546a4d18a310f316685
 msgid "疑似カラム (pseudo_column)"
 msgstr "疑似カラム (pseudo_column)"
 
-# b633b3c06d3d43c394d242dbbd3955e4
 msgid "疑似カラム"
 msgstr "疑似カラム"
 
-# d66e4a57461e4a4d9aa583fced4dab58
 msgid ""
 "Groongaのデータベースで作成したテーブルには、いくつかのカラムが自動的に定義さ"
 "れます。"
 msgstr ""
 
-# bff926dc36a746c48b57a4bc8e8d5ced
 msgid ""
 "これらのカラムはいずれもアンダースコア('_')で始まる名前が付与されます。定義さ"
 "れる疑似カラムは、テーブルの種類によって異なります。"
@@ -13695,11 +10499,9 @@ msgstr ""
 "これらのカラムはいずれもアンダースコア('_')で始まる名前が付与されます。定義さ"
 "れる疑似カラムは、テーブルの種類によって異なります。"
 
-# 007715758fb04be59e983861bc2098cb
 msgid "``_id``"
 msgstr "``_id``"
 
-# d5f5d47403a643eb936330bdcbcb9528
 msgid ""
 "レコードに付与される一意な番号です。全てのテーブルに定義されます。値の範囲は"
 "1〜1073741824の整数で、通常はレコードを追加した順に1ずつ加算されます。_idの値"
@@ -13711,11 +10513,9 @@ msgstr ""
 "は不変で、レコードが存在する限り変更することはできません。ただし、削除された"
 "レコードの_idの値は再利用されます。"
 
-# 99963817833f49c69f83f44e341829f2
 msgid "``_key``"
 msgstr "``_key``"
 
-# e360f1d82f9c4678badfd4e9daf25217
 msgid ""
 "レコードの主キー値を表します。主キーを持つテーブルのみに定義されます。主キー"
 "値はテーブルの中で一意であり、変更することはできません。"
@@ -13723,11 +10523,9 @@ msgstr ""
 "レコードの主キー値を表します。主キーを持つテーブルのみに定義されます。主キー"
 "値はテーブルの中で一意であり、変更することはできません。"
 
-# 5fa646c09bf24b35b246a58b6a1a57fe
 msgid "``_value``"
 msgstr "``_value``"
 
-# cef6bc7d6c054175844f82a456bc5742
 msgid ""
 "レコードの値を表します。value_typeを指定したテーブルのみに定義されます。自由"
 "に変更可能です。"
@@ -13735,11 +10533,9 @@ msgstr ""
 "レコードの値を表します。value_typeを指定したテーブルのみに定義されます。自由"
 "に変更可能です。"
 
-# b1d6358197be4d1cb6e1df2b053a69d7
 msgid "``_score``"
 msgstr "``_score``"
 
-# 42401dea94fa46c289bea920b4440e04
 msgid ""
 "各レコードのスコア値を表します。検索結果として生成されたテーブルのみに定義さ"
 "れます。"
@@ -13747,15 +10543,12 @@ msgstr ""
 "各レコードのスコア値を表します。検索結果として生成されたテーブルのみに定義さ"
 "れます。"
 
-# f067fa70401e4e12b6405d0ef1c53007
 msgid "検索処理を実行する過程で値が設定されますが、自由に変更可能です。"
 msgstr "検索処理を実行する過程で値が設定されますが、自由に変更可能です。"
 
-# ce82d6061702479dbb85dd255991c826
 msgid "``_nsubrecs``"
 msgstr "``_nsubrecs``"
 
-# 8310f38a568849e987ce42e5f4107592
 msgid ""
 "主キーの値が同一であったレコードの件数を表します。検索結果として生成された"
 "テーブルのみに定義されます。グループ化(drilldown)処理を実行すると、グループ化"
@@ -13767,15 +10560,12 @@ msgstr ""
 "前のテーブルにおいて、グループ化キーの値が同一であったレコードの件数が、グ"
 "ループ化処理の結果を格納するテーブルの_nsubrecsに記録されます。"
 
-# cc370960658440e7b1113b985698a962
 msgid "Query expanders"
 msgstr ""
 
-# fda1f1c5ff2b424e8ad902fb1e90cfbf
 msgid "QueryExpanderTSV"
 msgstr ""
 
-# db64ac93beae427bbef14a33d10c1ee4
 msgid ""
 "``QueryExpanderTSV`` is a query expander plugin that reads synonyms from TSV "
 "(Tab Separated Values) file. This plugin provides poor feature than the "
@@ -13786,58 +10576,45 @@ msgid ""
 "synonyms by Groonga's table."
 msgstr ""
 
-# e02afedaaffa4cf1a435b53fed626317
 msgid "Install"
 msgstr ""
 
-# 2398ba585caa445aa2071a33cc5bb5ed
 msgid ""
 "You need to register ``query_expanders/tsv`` as a plugin before you use "
 "``QueryExpanderTSV``::"
 msgstr ""
 
-# 890f398eec2640f5bfb806c4fea0bf80
 msgid ""
 "You just add ``--query_expansion QueryExpanderTSV`` parameter to ``select`` "
 "command::"
 msgstr ""
 
-# ebfaeb3d134642448530e38e3bc6e304
 msgid ""
 "If ``QUERY`` has registered synonyms, they are expanded. For example, there "
 "are the following synonyms."
 msgstr ""
 
-# f0a46598ad2343d981cb514097c9db96
 msgid "synonym 1"
 msgstr ""
 
-# 485c985957604e1b8cc6c4ed32292c0b
 msgid "synonym 2"
 msgstr ""
 
-# b0f4b5cd6a9f43d2856a134f2843f627
-# 2ee015e2652f4aa0a3fd257079cfe7de
 msgid "word"
 msgstr ""
 
-# 5e75192f112c4c2f8c8a0255b43c56f2
 msgid "Senna"
 msgstr ""
 
-# 4890c35327b3439090ef08d70e318f08
 msgid "groonga"
 msgstr ""
 
-# dc617292a0c340ea9f042ee371972717
 msgid "groonga MySQL"
 msgstr ""
 
-# 4890c35327b3439090ef08d70e318f08
 msgid "mroonga"
 msgstr ""
 
-# b80938800d2a44e29368e3952cf32d99
 msgid ""
 "The table means that ``synonym 1`` and ``synonym 2`` are synonyms of "
 "``word``. For example, ``groonga`` and ``Senna`` are synonyms of "
@@ -13845,21 +10622,17 @@ msgid ""
 "``mroonga``."
 msgstr ""
 
-# 6305077b0ee84524a9f9b039b076177e
 msgid "Here is an example of query expnasion that uses ``groonga`` as query::"
 msgstr ""
 
-# ba439c327bde4b39be432639bdfb46aa
 msgid "The above command equals to the following command::"
 msgstr ""
 
-# aedb3167e46442498e680a8aff025cc0
 msgid ""
 "Here is another example of query expnasion that uses ``mroonga search`` as "
 "query::"
 msgstr ""
 
-# 904c04f9bf08406db35d67c7a40a9f8c
 msgid ""
 "It is important that registered words (``groonga`` and ``mroonga``) are only "
 "expanded to synonyms and not registered words (``search``) are not expanded. "
@@ -13868,7 +10641,6 @@ msgid ""
 "expanded."
 msgstr ""
 
-# e36b0dacf0054640b90d91ff13b77e14
 msgid ""
 "Normally, you need to include ``word`` itself into synonyms. For example, "
 "``groonga`` and ``mroonga`` are included in synonyms of themselves. If you "
@@ -13877,61 +10649,49 @@ msgid ""
 "correction, you should use the following synonyms."
 msgstr ""
 
-# 8f64fbda072f499e91cfc72e0e1ae493
 msgid "synonym"
 msgstr ""
 
-# 4890c35327b3439090ef08d70e318f08
 msgid "gronga"
 msgstr ""
 
-# dcc6dcbe18e941a38ff814c7de99ab37
 msgid ""
 "``gronga`` in ``word`` has a typo. A ``o`` is missing. ``groonga`` in "
 "``synonym`` is the correct word."
 msgstr ""
 
-# 2afac283404e4f26a47dd5e34686a944
 msgid "Here is an example of using query expnasion as spelling correction::"
 msgstr ""
 
-# d0ac9ad1bc7541389a39c7f4a764c070
 msgid ""
 "The former command has a typo in ``--query`` value but the latter command "
 "doesn't have any typos."
 msgstr ""
 
-# 8e0f25ece9f74ed882f1d39e40141841
 msgid "TSV File"
 msgstr ""
 
-# 4a65e8da7f0e404cb7544697af2c029a
 msgid ""
 "Synonyms are defined in TSV format file. This section describes about it."
 msgstr ""
 
-# 42dc578c7b1641c39d59b7551160592e
 msgid "Location"
 msgstr ""
 
-# df9702c478d04755907f64b1cea1f35b
 msgid ""
 "The file name should be ``synonyms.tsv`` and it is located at configuration "
 "directory. For example, ``/etc/groonga/synonyms.tsv`` is a TSV file "
 "location. The location is decided at build time."
 msgstr ""
 
-# c70d4625c5a54575b68af14a9ba51bbc
 msgid ""
 "You can change the location by environment variable "
 "``GRN_QUERY_EXPANDER_TSV_SYNONYMS_FILE`` at run time::"
 msgstr ""
 
-# 666965f01796483089ea102461e1901d
 msgid "With the above command, ``/tmp/synonyms.tsv`` file is used."
 msgstr ""
 
-# 9da0e02c4b6048e8aaaf14fb5c1772eb
 msgid ""
 "You can define zero or more synonyms in a TSV file. You define a ``word`` "
 "and ``synonyms`` pair by a line. ``word`` is expanded to ``synonyms`` in ``--"
@@ -13939,45 +10699,37 @@ msgid ""
 "and ``Senna`` synonyms are expanded as ``groonga OR Senna``."
 msgstr ""
 
-# ca914b3dc98a41ad82bacdc5522bb332
 msgid ""
 "The first column is ``word`` and the rest columns are ``synonyms`` of the "
 "``word``. Here is a sample line for ``word`` is ``groonga`` and ``synonyms`` "
 "are ``groonga`` and ``Senna``. ``(TAB)`` means a tab character (``U+0009``)::"
 msgstr ""
 
-# a5a67c472c594268ab92a0f25f97f6ae
 msgid ""
 "Comment line is supported. Lines that start with ``#`` are ignored. Here is "
 "an example for comment line. ``groonga`` line is ignored as comment line::"
 msgstr ""
 
-# 42dc578c7b1641c39d59b7551160592e
 msgid "Limitation"
 msgstr ""
 
-# 83133a6f8b354702b5e08ed09e48cceb
 msgid ""
 "You need to restart groonga to reload your synonyms. TSV file is loaded only "
 "at the plugin load time."
 msgstr ""
 
-# 72217ef1d842418ab8c29d7974f9168e
 msgid ":ref:`query-expansion`"
 msgstr ""
 
-# 0da809ee0de94f4c9d176627712966f9
 msgid "Tables"
 msgstr ""
 
-# d6d765d16ef642418b2071a8f7392069
 msgid ""
 "Table in Groonga manages relation between ID and key. Groonga provides four "
 "table types. They are ``TABLE_NO_KEY``, ``TABLE_HASH_KEY``, "
 "``TABLE_PAT_KEY`` and ``TABLE_DAT_KEY``."
 msgstr ""
 
-# 36ba36fd874141a49cbbf9e1b087dc0d
 msgid ""
 "All tables except ``TABLE_NO_KEY`` provides both fast ID search by key and "
 "fast key search by ID. ``TABLE_NO_KEY`` doesn't support key. "
@@ -13985,199 +10737,129 @@ msgid ""
 "search and key search."
 msgstr ""
 
-# 19432a58eb064d68b9f69656a4155698
 msgid "Characteristics"
 msgstr ""
 
-# 911fd4f3b7e441dc94cb4e7d1bca40ce
 msgid ""
 "Here is a chracteristic table of all tables in Groonga. (``TABLE_`` prefix "
 "is omitted in the table.)"
 msgstr ""
 
-# 78ed143037674cc0a8f0abf83a2edc8e
 msgid "``DAT_KEY``"
 msgstr ""
 
-# 66b9254073d547ec828b0be918490099
 msgid "``HASH_KEY``"
 msgstr ""
 
-# d2f9232eb6f044f695fbc8a690801dd7
 msgid "``NO_KEY``"
 msgstr ""
 
-# f7b877e0c14b4bfba4a6d0573965f485
 msgid "``PAT_KEY``"
 msgstr ""
 
-# 2d4a315870ce46b38227c494664d8073
 msgid "Data structure"
 msgstr ""
 
-# 0844c4cc06f9491f8728fa3bee04b560
 msgid "Double array trie"
 msgstr ""
 
-# 9ed89a445bde4d85b797959a86ca7402
 msgid "Hash table"
 msgstr ""
 
-# 59538a7f486047ae8178ede81aaf2de3
 msgid "Patricia trie"
 msgstr ""
 
-# abb36013b72e4531aa28c5e4347b24bd
 msgid "ID support"
 msgstr ""
 
-# 4630f2f7e81b4cceaf013205c918645b
-# eb3405c99f6e4ba186c0d854ddb3c4b1
-# 3a683a4f87984304b488273f5aacacf2
-# da84ef8867ab49aa992ecc7399db805f
-# df47f0d805f049fa8f1fb55a224c44c9
-# 261fd84604cc478f84044b17143849de
-# 998e30b0aad14606a7cb8f926975b5f2
-# 38dcf04e2fc34faebba1a05996ccd635
-# f2e0e190a2384f6597596e5bc9b0e687
-# 559adcb47eb1434cb1c7a92cbc88e3f7
-# 3c3f5999eb6743d3be4e87d1e35c459d
-# 59731ebdeb194378ab19bd0474c7e839
-# 2110e4fe3be543c498c03de1fe181eab
-# 1c5a1a74493a442899d3ea4f1fd2fa4a
-# 9a8dd24b80e1467aa0b14ecc4ba448e3
-# 76fdd22cbaaa4964b916a96a3fc6c27b
-# 40ff843e27cf4af69c8d942574ec9602
-# cf1386f9eb2a468a9af3e1bb8d2d8f90
-# d59f103a64364f13a65e3c75c492b6c5
-# 2ce500a03bfa4deeb3c7231727cf33c6
-# 51ec05fc30a241f7ba2b05144e849bd5
 msgid "o"
 msgstr ""
 
-# 99209dbd0a4d40988bd721e420e3458c
 msgid "Key support"
 msgstr ""
 
-# 5964873266b947b4ad6ef2b001fa3218
-# e23335226bcd4711ba392182c0e954bf
-# 08531122ec57440a82a940805e43c3e0
-# 137242d1639c4f09a65c0767fc6ab0a3
-# 0b28bfc0828e480c88d3c7a65fa9ac89
-# 52a0f0e5100041769bac6f8560c8a5e9
-# 575d2de1b072407ab8d66e816e598acb
-# 25ca008595b34f529150a789d5573a17
-# a418a933cef64c499f058237012d6506
-# f852ae1662bf4fdcaec0ac7aaed631b5
 msgid "x"
 msgstr ""
 
-# 11686c90793a4125a7a1292b926c19cb
 msgid "Value support"
 msgstr ""
 
-# 5983603e02694cf1bf0008dff70cf433
 msgid "Key -> ID speed"
 msgstr ""
 
-# b02e80e3b8c844fc954e66ecc3fcad29
-# a8386f62da9140eba0124e67cfc865bd
 msgid "oo"
 msgstr ""
 
-# 1829bca1dc734f1e926124e23ac1dba7
-# 8bca0f94685e482182190344718335ba
 msgid "o: fast"
 msgstr ""
 
-# 8cc9d37fcb5847709f82dd985501b117
-# 62c4c1963ea844eaa363058611026139
 msgid "x: slow"
 msgstr ""
 
-# 9ae36528dcb9449b8a314f249d9922d2
 msgid "Update speed"
 msgstr ""
 
-# 57678eab08884e88a0990fc8b3be4c2c
-# 7abf87a3df114a1eb0159a5526fda853
 msgid "ooo"
 msgstr ""
 
-# b814bc08e698482c978fe21594213e02
 msgid "Size"
 msgstr ""
 
-# 36fcd346df3640eb91c87fc5e4fea06d
 msgid "o: small"
 msgstr ""
 
-# ff6be950236049af9a79b03954b17212
 msgid "x: large"
 msgstr ""
 
-# 45bb2b8f98ea481da296597024fdcc43
 msgid "Key update"
 msgstr ""
 
-# 1ef0ebf55dda472ab221807ca0c02c96
 msgid "Common prefix search"
 msgstr ""
 
-# cc0e7f0e0b0e4eb993eae3fae28ea725
 msgid "Predictive search"
 msgstr ""
 
-# 57e6e3be4cf44dd293de630ccc26de36
 msgid "Range search"
 msgstr ""
 
-# 461d3db30a9a4a21b11945de21ab8644
 msgid ""
 "``TABLE_NO_KEY`` is very fast and very small but it doesn't support key. "
 "``TABLE_NO_KEY`` is a only table that doesn't support key."
 msgstr ""
 
-# efb95803e7724b72b55650b8282dc3ad
 msgid ""
 "You cannot use ``TABLE_NO_KEY`` for lexicon for fulltext search because "
 "lexicon stores tokens as key. ``TABLE_NO_KEY`` is useful for no key records "
 "such as log."
 msgstr ""
 
-# 116f4dafb2cf4f21a6e45f208ab4eb63
 msgid "``TABLE_HASH_KEY``"
 msgstr ""
 
-# a5cb5960ef5149e0a8503cea1bcca925
 msgid ""
 "``TABLE_HASH_KEY`` is fast but it doesn't support advanced search functions "
 "such as common prefix search and predictive search."
 msgstr ""
 
-# f44aa7ef9e7d4d9fa2ae46eb0f09c2e8
 msgid ""
 "``TABLE_HASH_KEY`` is useful for index for exact search such as tag search."
 msgstr ""
 
-# cf29558cc9884a5790431faec77fa4aa
 msgid "``TABLE_PAT_KEY`` is small and supports advanced search functions."
 msgstr ""
 
-# 2f20b23e38014e61a61c73f336edd975
 msgid ""
 "``TABLE_PAT_KEY`` is useful for lexicon for fulltext search and index for "
 "range search."
 msgstr ""
 
-# 389bc2155c3d4462aa2c3050f74417eb
 msgid ""
 "``TABLE_DAT_KEY`` is fast and supports key update but it is large. It is not "
 "suitable for storing many records. ``TABLE_DAT_KEY`` is a only table that "
 "supports key update."
 msgstr ""
 
-# 05752937dd124674a7264acd222f93a8
 msgid ""
 "``TABLE_DAT_KEY`` is used in Groonga database. Groonga database needs to "
 "convert object name such as ``ShortText``, ``TokenBigram`` and table names "
@@ -14186,53 +10868,42 @@ msgid ""
 "small. So large data size demerit of ``TABLE_DAT_KEY`` can be ignored."
 msgstr ""
 
-# cfea9c773c1d4f9c9fdf07b62cfa26cd
 msgid "Record ID"
 msgstr ""
 
-# cd0885341d67488f82c2c37642af684f
 msgid "Record ID is assigned automatically. You cannot assign record ID."
 msgstr ""
 
-# f683e12d422c4c63b56a3c74fe44f26e
 msgid "Record ID of deleted record may be reused."
 msgstr ""
 
-# 9105a01447d1474cb3992642ae4e6ec3
 msgid ""
 "Valid record ID range is between 1 and 268435455. (1 and 268435455 are valid "
 "IDs.)"
 msgstr ""
 
-# 0ecacbd7fb9f4651a2800bb746f83297
 msgid "Persistent table and temporary table"
 msgstr ""
 
-# 1ad46c5fddca47f28864d746d216e805
 msgid "Table is persistent table or temporary table."
 msgstr ""
 
-# 564036388199425f9c6894918910dbc0
 msgid "Persistent table"
 msgstr ""
 
-# e771b44f007149559a8a5832649ffa39
 msgid ""
 "Persistent table is named and registered to database. Records in persistent "
 "table aren't deleted after closing table or database."
 msgstr ""
 
-# 6cf2fb1427034a6a9cf0ab1b2eba6edd
 msgid ""
 "Persistent table can be created by :doc:`/reference/commands/table_create` "
 "command."
 msgstr ""
 
-# 257dddf369824e59874b5966af7972de
 msgid "Temporary table"
 msgstr ""
 
-# 98b4b368e05c429088286321d3059550
 msgid ""
 "Temporary table is anonymous. Records in temporary table are deleted after "
 "closing table. Temporary table is used to store search result, sort result, "
@@ -14240,223 +10911,158 @@ msgid ""
 "result and group result. ``TABLE_NO_KEY`` is used for sort result."
 msgstr ""
 
-# 42dc578c7b1641c39d59b7551160592e
 msgid "Limitations"
 msgstr ""
 
-# e3e50b9263d24b649ed5414f149b9897
 msgid ""
 "The max number of records is 268435455. You cannot add 268435456 or more "
 "records in a table."
 msgstr ""
 
-# 51a51a51386a441da910d62b1f705427
 msgid ""
 "The max number of a key size is 4096byte. You cannot use 4097byte or larger "
 "key. You can use column instead of key for 4097byte or larger size data. "
 "``Text`` and ``LargeText`` types supports 4097byte or larger size data."
 msgstr ""
 
-# 4155b1c70bc542cfbf4eb52b4e7524f5
 msgid ""
 "The max number of total key size is 4GiB. You need to split a table, split a "
 "database (sharding) or reduce each key size to handle 4GiB or more larger "
 "total key size."
 msgstr ""
 
-# 380d55e2098f4466bc73bd08c1ea4256
 msgid "Tokenizers"
 msgstr "Tokenizers"
 
-# 57aa43603f2048418bbab4d1a4dbb64f
 msgid "TODO: Write me."
 msgstr "TODO: Write me."
 
-# f86631033d644588b7f853360fed8b2f
 msgid "Here are the list of built-in tokenizers:"
 msgstr ""
 
-# 380d55e2098f4466bc73bd08c1ea4256
 msgid "TokenBigram"
 msgstr ""
 
-# bc3ad286e3214e65a4c0309145f3e3d1
 msgid "TokenBigramSplitSymbol"
 msgstr ""
 
-# a5783968de384b1e800352eb9e2d9554
 msgid "TokenBigramSplitSymbolAlpha"
 msgstr ""
 
-# dda98eca09e04da09312d514fe2966a6
 msgid "TokenBigramSplitSymbolAlphaDigit"
 msgstr ""
 
-# 7078e26482e241409f57d90191ba428e
 msgid "TokenBigramIgnoreBlank"
 msgstr ""
 
-# 5e144a960a8848038c3ff43ad873aacb
 msgid "TokenBigramIgnoreBlankSplitSymbol"
 msgstr ""
 
-# 4fd4d7b514dc4b98b6e0f5b61681a785
 msgid "TokenBigramIgnoreBlankSplitAlpha"
 msgstr ""
 
-# 12af0be32bf8471f96e503311f4bad9d
 msgid "TokenBigramIgnoreBlankSplitAlphaDigit"
 msgstr ""
 
-# 6cbcb11eb65e44c6ae0dfb35da9767f5
 msgid "TokenDelimit"
 msgstr ""
 
-# 9fbd80ab0bdb46ce80b3757a8e9ffe04
 msgid "TokenDelimitNull"
 msgstr ""
 
-# 380d55e2098f4466bc73bd08c1ea4256
 msgid "TokenTrigram"
 msgstr ""
 
-# 380d55e2098f4466bc73bd08c1ea4256
 msgid "TokenUnigram"
 msgstr ""
 
-# 98e5b8ea0d354ce6bfba6f954e99f82f
 msgid "Tuning"
 msgstr ""
 
-# 971cf29a02b34cc9a23453bfd554146a
 msgid ""
 "There are some tuning parameters for improving Groonga performance or "
 "handling a large database."
 msgstr ""
 
-# aa6c5a1abc844a978f87b2dd33b26dc6
 msgid "This section describes parameters."
 msgstr ""
 
-# 66ec3c63e5704b7db416a6694a96041a
 msgid "The max number of open files per process"
 msgstr ""
 
-# b9b89f0757e94a3eac4fbc3fff173f11
-# 5c1f24942c3a40f7bb84958ba13bbbee
 msgid "This parameter is for handling a large database."
 msgstr ""
 
-# 11ba2b331dea41f4bd365b2eeeda8c2e
 msgid ""
 "Groonga creates one or more files per table and colum. If your database has "
 "many tables and columns, groonga process needs to open many files."
 msgstr ""
 
-# 6e4b66495caf4db0ab5e9e543c4a2026
 msgid ""
 "System limits the max number of open files per process. So you need to relax "
 "the limitation."
 msgstr ""
 
-# ca1d8c7dd4ad457989ca9e0ab8aee619
 msgid ""
 "Here is an expression that compute how many files are opened by groonga::"
 msgstr ""
 
-# 2c1116c047a249269a2270188225710e
-# 2c1116c047a249269a2270188225710e
-# 2c1116c047a249269a2270188225710e
-# 2c1116c047a249269a2270188225710e
-# 2c1116c047a249269a2270188225710e
-# 2c1116c047a249269a2270188225710e
-# 2c1116c047a249269a2270188225710e
-# 2c1116c047a249269a2270188225710e
-# 2c1116c047a249269a2270188225710e
-# 2c1116c047a249269a2270188225710e
-# b8b481fc700a4070979cf73e56bd9031
-# efa9ee514a0048a6a51f0ccea9327f05
-# 2c1116c047a249269a2270188225710e
-# 2c1116c047a249269a2270188225710e
-# 2c1116c047a249269a2270188225710e
-# e13a2895bf5b45d694a5ccd36dbfd75a
-# e13a2895bf5b45d694a5ccd36dbfd75a
-# e13a2895bf5b45d694a5ccd36dbfd75a
-# e13a2895bf5b45d694a5ccd36dbfd75a
-# e13a2895bf5b45d694a5ccd36dbfd75a
-# e13a2895bf5b45d694a5ccd36dbfd75a
-# e13a2895bf5b45d694a5ccd36dbfd75a
-# e13a2895bf5b45d694a5ccd36dbfd75a
 msgid "Here is an example schema::"
 msgstr ""
 
-# 200892016cd6469cba0fc17146add64c
 msgid "This example opens at least 11 files::"
 msgstr ""
 
-# a6a765357f094b178d3f18302d269239
 msgid "Memory usage"
 msgstr ""
 
-# 2e1d2452d43c4bd2812af6f45b98748d
 msgid ""
 "Groonga maps database files onto memory and accesses to them. Groonga "
 "doesn't maps unnecessary files onto memory until they are nneded."
 msgstr ""
 
-# bd1e83ddc9394610903f5bc591cfeefc
 msgid ""
 "If you access to all data in database, all database files are mapped onto "
 "memory.  If total size of your database files is 6GiB, your groonga process "
 "uses 6GiB memory."
 msgstr ""
 
-# 1e2cccd34a5649d09ff6964a06adb2b6
 msgid ""
 "Normally, your all database files aren't mapped onto memry. But is may be "
 "occurred. It is an example case that you dump your database."
 msgstr ""
 
-# 03a894e9e9b64300848b39df5cd8a561
 msgid "You must have memory and swap that is larger than database."
 msgstr ""
 
-# 56feae28b5374dd081d181e8a1a3d157
 msgid "Linux"
 msgstr ""
 
-# aa6c5a1abc844a978f87b2dd33b26dc6
 msgid "This section describes how to configure parameters on Linux."
 msgstr ""
 
-# 560b368f443b4b378c686c018bb59bc2
 msgid "nofile"
 msgstr ""
 
-# 195852b679014df3bbb2f9d951ca453f
 msgid ""
 "You can relax the :ref:`tuning-max-n-open-files` parameter by creating a "
 "configuration file ``/etc/security/limits.d/groonga.conf`` that has the "
 "following content::"
 msgstr ""
 
-# aa25c179dfe542ef958db34e5b01f02f
 msgid ""
 "If you run ``groonga`` process by ``groonga`` user and your groonga process "
 "needs to open less than 10000 files, use the following configuration::"
 msgstr ""
 
-# 6cd4e9e1d40e401886cf223dd93ba54d
 msgid ""
 "The configuration is applied after your groonga service is restarted or re-"
 "login as your groonga user."
 msgstr ""
 
-# feb303b72ea84c54afa971079a03788b
 msgid "vm.overcommit_memory"
 msgstr ""
 
-# 553afee726e640e3b2c6659ffedcab02
 msgid ""
 "This is :ref:`tuning-memory-usage` related parameter. You can handle a "
 "database that is larger than your memory and swap by setting ``vm."
@@ -14466,45 +11072,37 @@ msgid ""
 "recommends the configuration."
 msgstr ""
 
-# abd4df4ea3f54c308ea81005d4e316ad
 msgid ""
 "See `Linux kernel documentation about overcommit <https://www.kernel.org/doc/"
 "Documentation/vm/overcommit-accounting>`_ about ``vm.overcommit_memory`` "
 "parameter details."
 msgstr ""
 
-# 7265ab03b1c749eaab2d3889bfa31920
 msgid ""
 "You can set the configuration by putting a configuration file ``/etc/sysctl."
 "d/groonga.conf`` that has the following content::"
 msgstr ""
 
-# da744a3e9e5e4b86bb1ee21f1027ebe1
-# bb898f21696347c58e1cac7bb99c6c02
 msgid ""
 "The configuration can be applied by restarting your system or run the "
 "following command::"
 msgstr ""
 
-# ad27c1d4de6f4ad4ada4a75b259fdb0e
 msgid "vm.max_map_count"
 msgstr ""
 
-# d9cbebbd30124db4b7f6c90385e93839
 msgid ""
 "This is :ref:`tuning-memory-usage` related parameter. You can handle a 16GiB "
 "or more larger size database by increasing ``vm.max_map_count`` kernel "
 "parameter. The parameter limits the max number of memory maps."
 msgstr ""
 
-# 92f56a42c8e4466aac7747e280f6e97c
 msgid ""
 "The default value of the kernel parameter may be 65530 or 65536. Groonga "
 "maps 256KiB memory chunk at one time. If a database is larger than 16GiB, "
 "groonga reaches the limitation. (``256KiB * 65536 = 16GiB``)"
 msgstr ""
 
-# 3e7c74e88c0e46c7a647f8092ced8d44
 msgid ""
 "You needs to increase the value of the kernel parameter to handle 16GiB or "
 "more larger size database. For example, you can handle almost 32GiB size "
@@ -14513,50 +11111,40 @@ msgid ""
 "content::"
 msgstr ""
 
-# 84ed446406e8461b90d97b99ae32cd6f
 msgid ""
 "Note that your real confiugration file will be the following because you "
 "already have ``vm.overcommit_memory`` configuration::"
 msgstr ""
 
-# 09aafe9d7e7447b1a2569f9e11b1467a
 msgid "FreeBSD"
 msgstr ""
 
-# aa6c5a1abc844a978f87b2dd33b26dc6
 msgid "This section describes how to configure parameters on FreeBSD."
 msgstr ""
 
-# d6925f47833d41f895f507b2c3f20bd2
 msgid "kern.maxfileperproc"
 msgstr ""
 
-# dac8495fc14741759ef8d5dc2208f627
 msgid "データ型"
 msgstr "データ型"
 
-# 90629ffb42f04870ad6bdb3214eedaed
 msgid "Groonga データ型"
 msgstr ""
 
-# ebb652715b054e77a2e5e54242d7ecd0
 msgid "Groonga は、格納するデータの型を区別します。"
 msgstr ""
 
-# c6a304df99b6474a9560caa1a308ee03
 msgid ""
 "Groongaのデータベースでは、テーブルの主キーや、カラムの値はいずれも何らかの型"
 "に属します。また通常は、一つのテーブルの中の全てのレコードについて、カラムの"
 "値は共通となります。"
 msgstr ""
 
-# 7a9ed32c7915414aa9f6e54d00e06fb3
 msgid ""
 "主キーの型とカラムの型には、Groongaで予め定義済みの型か、ユーザが定義する型、"
 "またはユーザが定義したテーブルを指定することができます。"
 msgstr ""
 
-# 94b0d6e14b7840908928b74719df7118
 msgid ""
 "主キーの型に他のテーブルを指定する場合は、そのテーブルは、主キーの型となる"
 "テーブルのサブセットとなります。"
@@ -14564,7 +11152,6 @@ msgstr ""
 "主キーの型に他のテーブルを指定する場合は、そのテーブルは、主キーの型となる"
 "テーブルのサブセットとなります。"
 
-# a63bdbf5d9e34cbdb928b8a934a44769
 msgid ""
 "カラムの型に他のテーブルを指定する場合は、そのカラムは、カラムの型となるテー"
 "ブルの参照キーとなります。"
@@ -14572,27 +11159,21 @@ msgstr ""
 "カラムの型に他のテーブルを指定する場合は、そのカラムは、カラムの型となるテー"
 "ブルの参照キーとなります。"
 
-# 66369a14a23642388534202e282a2115
 msgid "組込型"
 msgstr "組込型"
 
-# 986cfc960c6c4d608e6c535c7449444f
 msgid "以下の型が組込型としてあらかじめ定義されています。"
 msgstr "以下の型が組込型としてあらかじめ定義されています。"
 
-# dcda7a4ec4c140c8a63e7c3d8608532b
 msgid "``Object``"
 msgstr "``Object``"
 
-# 5379d2dd2f7443288ff840c9d7894ed1
 msgid "任意のテーブルに属する全てのレコードです。 [#]_"
 msgstr "任意のテーブルに属する全てのレコードです。 [#]_"
 
-# c238f2d258ca48149e82469594a0188f
 msgid "``Bool``"
 msgstr "``Bool``"
 
-# 9d23ae7106174e83b337709d370c7854
 msgid ""
 "ブーリアン型やブール型などと呼ばれる型であり、真偽値を表します。取り得る値は"
 "trueとfalseです。(デフォルト値: false)"
@@ -14600,7 +11181,6 @@ msgstr ""
 "ブーリアン型やブール型などと呼ばれる型であり、真偽値を表します。取り得る値は"
 "trueとfalseです。(デフォルト値: false)"
 
-# 18786167cdb14a83a690228c69866a64
 msgid ""
 ":doc:`/reference/commands/load` コマンドで値を格納するときは、false、0、空文"
 "字列のいずれかを指定するとfalseになり、それ以外を指定するとtrueになります。"
@@ -14608,31 +11188,25 @@ msgstr ""
 ":doc:`/reference/commands/load` コマンドで値を格納するときは、false、0、空文"
 "字列のいずれかを指定するとfalseになり、それ以外を指定するとtrueになります。"
 
-# 106a6449a8f74887beb3a11b38f56887
 msgid "``Int8``"
 msgstr "``Int8``"
 
-# 6b23fb252ff04db792b0e7b95cc55266
 msgid ""
 "8bit符号付き整数であり、-128以上127以下の整数を表します。(デフォルト値: 0)"
 msgstr ""
 "8bit符号付き整数であり、-128以上127以下の整数を表します。(デフォルト値: 0)"
 
-# f7c30d07ed1a4263b235a431b64c3e98
 msgid "``UInt8``"
 msgstr "``UInt8``"
 
-# 2aa108a1f8954627913fba7ba9cbb5c0
 msgid ""
 "8bit符号なし整数であり、0以上255以下の整数を表します。(デフォルト値: 0)"
 msgstr ""
 "8bit符号なし整数であり、0以上255以下の整数を表します。(デフォルト値: 0)"
 
-# 10bb0f70886f4059976bcbdcf2796e2b
 msgid "``Int16``"
 msgstr "``Int16``"
 
-# 0cb150eb144e45a1939642ef785d13b4
 msgid ""
 "16bit符号付き整数であり、-32,768以上32,767以下の整数を表します。(デフォルト"
 "値: 0)"
@@ -14640,21 +11214,17 @@ msgstr ""
 "16bit符号付き整数であり、-32,768以上32,767以下の整数を表します。(デフォルト"
 "値: 0)"
 
-# 020fa5e44c964c89964bb348472fc9ed
 msgid "``UInt16``"
 msgstr "``UInt16``"
 
-# 1f6a324430a64e2f96d252528d86b931
 msgid ""
 "16bit符号なし整数であり、0以上65,535以下の整数を表します。(デフォルト値: 0)"
 msgstr ""
 "16bit符号なし整数であり、0以上65,535以下の整数を表します。(デフォルト値: 0)"
 
-# bc0b427d9f87408e80baf362b6c34847
 msgid "``Int32``"
 msgstr "``Int32``"
 
-# d4025a452b174789b253bd164932f07c
 msgid ""
 "32bit符号付き整数であり、-2,147,483,648以上2,147,483,647以下の整数を表しま"
 "す。(デフォルト値: 0)"
@@ -14662,11 +11232,9 @@ msgstr ""
 "32bit符号付き整数であり、-2,147,483,648以上2,147,483,647以下の整数を表しま"
 "す。(デフォルト値: 0)"
 
-# 4235ba24140e485faf76d2291d79e6d5
 msgid "``UInt32``"
 msgstr "``UInt32``"
 
-# bc5b7d9f4c6f48239236b96e219ff96c
 msgid ""
 "32bit符号なし整数であり、0以上4,294,967,295以下の整数を表します。(デフォルト"
 "値: 0)"
@@ -14674,11 +11242,9 @@ msgstr ""
 "32bit符号なし整数であり、0以上4,294,967,295以下の整数を表します。(デフォルト"
 "値: 0)"
 
-# 8362ed8024374a269994c7609651f997
 msgid "``Int64``"
 msgstr "``Int64``"
 
-# eff3d11be6d24719b8b5576d29b3c8de
 msgid ""
 "64bit符号付き整数であり、-9,223,372,036,854,775,808以上"
 "9,223,372,036,854,775,807以下の整数を表します。(デフォルト値: 0)"
@@ -14686,11 +11252,9 @@ msgstr ""
 "64bit符号付き整数であり、-9,223,372,036,854,775,808以上"
 "9,223,372,036,854,775,807以下の整数を表します。(デフォルト値: 0)"
 
-# 1c14b53405ed49759dc7b0144c19b148
 msgid "``UInt64``"
 msgstr "``UInt64``"
 
-# 6903ab9dac724b38bf43e7d50e9fbee4
 msgid ""
 "64bit符号なし整数であり、0以上18,446,744,073,709,551,615以下の整数を表しま"
 "す。(デフォルト値: 0)"
@@ -14698,17 +11262,14 @@ msgstr ""
 "64bit符号なし整数であり、0以上18,446,744,073,709,551,615以下の整数を表しま"
 "す。(デフォルト値: 0)"
 
-# aa66aa8c2f02484ab0d36e2bf36c833e
 msgid "``Float``"
 msgstr "``Float``"
 
-# 032ccb6d85084daebfc4fec827aa6df7
 msgid ""
 "IEEE 754形式の倍精度浮動小数点数であり、実数を表します。(デフォルト値: 0.0)"
 msgstr ""
 "IEEE 754形式の倍精度浮動小数点数であり、実数を表します。(デフォルト値: 0.0)"
 
-# a7f6a365f41844df86ad86d6f9245eca
 msgid ""
 "IEEE 754形式の詳細については、 `IEEE 754 - Wikipedia <http://ja.wikipedia."
 "org/wiki/IEEE_754>`_ や `IEEE 754: Standard for Binary Floating-Point "
@@ -14718,11 +11279,9 @@ msgstr ""
 "org/wiki/IEEE_754>`_ や `IEEE 754: Standard for Binary Floating-Point "
 "<http://grouper.ieee.org/groups/754/>`_ を参照してください。"
 
-# cc23913e493940d6a9e3537b602e46db
 msgid "``Time``"
 msgstr "``Time``"
 
-# 9b9cbc40716e40a6a7f9293fad9c88c4
 msgid ""
 "日時を表す型であり、1970年1月1日0時0分0秒からの経過時間を、マイクロ秒単位で"
 "64bit符号付き整数により表現します。(デフォルト値: 0)"
@@ -14730,7 +11289,6 @@ msgstr ""
 "日時を表す型であり、1970年1月1日0時0分0秒からの経過時間を、マイクロ秒単位で"
 "64bit符号付き整数により表現します。(デフォルト値: 0)"
 
-# cb3f7498c8ce409a8953fe14af2f93fa
 msgid ""
 ":doc:`/reference/commands/load` コマンドで値を格納するときは、1970年1月1日0時"
 "0分0秒からの経過秒数を指定します。秒単位より詳細な日時を指定するには、小数を"
@@ -14740,35 +11298,27 @@ msgstr ""
 "0分0秒からの経過秒数を指定します。秒単位より詳細な日時を指定するには、小数を"
 "使います。"
 
-# 875e8f7779e74138ab9ffb30c153ffd4
 msgid "``ShortText``"
 msgstr "``ShortText``"
 
-# 8dad7b8be865461c8d854d92eb256786
 msgid "4,095バイト以下の文字列を表します。(デフォルト値: \"\")"
 msgstr "4,095バイト以下の文字列を表します。(デフォルト値: \"\")"
 
-# 885109b6dda3450aab31ae101ce56de4
 msgid "``Text``"
 msgstr "``Text``"
 
-# 8a6f7a77ac714c90b85b4a2048cd6fe1
 msgid "65,535バイト以下の文字列を表します。(デフォルト値: \"\")"
 msgstr "65,535バイト以下の文字列を表します。(デフォルト値: \"\")"
 
-# 6554925254bc4731a6b63535833fc857
 msgid "``LongText``"
 msgstr "``LongText``"
 
-# 83719f4e61e84a43b8d803974b6a082c
 msgid "2,147,483,647バイト以下の文字列を表します。(デフォルト値: \"\")"
 msgstr "2,147,483,647バイト以下の文字列を表します。(デフォルト値: \"\")"
 
-# f17a5bb721e34170818d9b92a869d3d4
 msgid "``TokyoGeoPoint``"
 msgstr "``TokyoGeoPoint``"
 
-# ba145ea5866a4771a7909cf5298519e9
 msgid ""
 "旧日本測地系による経緯度であり、経度と緯度をミリ秒単位で表現した整数の組によ"
 "り表現します。(デフォルト値: 0x0)"
@@ -14776,7 +11326,6 @@ msgstr ""
 "旧日本測地系による経緯度であり、経度と緯度をミリ秒単位で表現した整数の組によ"
 "り表現します。(デフォルト値: 0x0)"
 
-# 9397e1f69aef4dbd948b22e5b8e9cbd2
 msgid ""
 "度分秒形式でx度y分z秒となる経度・緯度は、(((x * 60) + y) * 60 + z) * 1000とい"
 "う計算式でミリ秒単位へと変換されます。 :doc:`/reference/commands/load` コマン"
@@ -14790,7 +11339,6 @@ msgstr ""
 "の小数表記x緯度の小数表記\" という文字列表現を使って指定します。経度と緯度の"
 "区切りとしては、'x' のほかに ',' を使うことができます。"
 
-# 3b643201350045608467a8e67cf199fc
 msgid ""
 "測地系の詳細については、 `測地系 - Wikipedia <http://ja.wikipedia.org/wiki/"
 "%E6%B8%AC%E5%9C%B0%E7%B3%BB>`_ を参照してください。"
@@ -14798,11 +11346,9 @@ msgstr ""
 "測地系の詳細については、 `測地系 - Wikipedia <http://ja.wikipedia.org/wiki/"
 "%E6%B8%AC%E5%9C%B0%E7%B3%BB>`_ を参照してください。"
 
-# 4b4744278932434dac146fc364b07d26
 msgid "``WGS84GeoPoint``"
 msgstr "``WGS84GeoPoint``"
 
-# 1c081b2f5dfc4bd2a1961e868f3bec0e
 msgid ""
 "世界測地系(World Geodetic System, WGS 84)による経緯度であり、経度と緯度をミ"
 "リ秒単位で表現した整数の組により表現します。(デフォルト値: 0x0)"
@@ -14810,7 +11356,6 @@ msgstr ""
 "世界測地系(World Geodetic System, WGS 84)による経緯度であり、経度と緯度をミ"
 "リ秒単位で表現した整数の組により表現します。(デフォルト値: 0x0)"
 
-# 39914ce3848042a1b8df5ff6a9e2b73c
 msgid ""
 "度分秒形式からミリ秒形式への変換方法や :doc:`/reference/commands/load` コマン"
 "ドにおける指定方法はTokyoGeoPointと同じです。"
@@ -14818,25 +11363,20 @@ msgstr ""
 "度分秒形式からミリ秒形式への変換方法や :doc:`/reference/commands/load` コマン"
 "ドにおける指定方法はTokyoGeoPointと同じです。"
 
-# 083e474546e6492e836bab84ea27a1c8
 msgid "型に関する制限事項"
 msgstr "型に関する制限事項"
 
-# d445d0c3722e488c8af9050234fc07aa
 msgid "テーブルの主キーに指定できない型"
 msgstr "テーブルの主キーに指定できない型"
 
-# 088073b893b04639b61aebbe9d71474f
 msgid ""
 "Text型とLongText型については、テーブルの主キーに指定することはできません。"
 msgstr ""
 "Text型とLongText型については、テーブルの主キーに指定することはできません。"
 
-# 85edb29542f74d6088b6f870c3274e17
 msgid "ベクターとして格納できない型"
 msgstr "ベクターとして格納できない型"
 
-# 7badea51f438457ead4460c98a45241f
 msgid ""
 "Groongaのカラムは、ある型のベクターを保存することができます。しかし、"
 "ShortText, Text, LongTextの3つの型についてはベクターとして保存したり出力した"
@@ -14844,7 +11384,6 @@ msgid ""
 "ん。"
 msgstr ""
 
-# ca5d68d94e40408b848e44fc700f22c6
 msgid ""
 "テーブル型は、ベクターとして格納することができます。よって、ShortTextのベク"
 "ターを検索条件やドリルダウン条件に使用したい場合には、主キーがShortText型の"
@@ -14854,23 +11393,18 @@ msgstr ""
 "ターを検索条件やドリルダウン条件に使用したい場合には、主キーがShortText型の"
 "テーブルを別途作成し、そのテーブルを型として利用します。"
 
-# 96f48220ef714a3f8241befcca87b4e2
 msgid "Object型はv1.2でサポートされます。"
 msgstr "Object型はv1.2でサポートされます。"
 
-# de469539300f4bf0b511954095852e88
 #~ msgid "add"
 #~ msgstr "add"
 
-# 2c29444fd32145069545217b26bf982d
 #~ msgid "add - 一件のレコードの追加"
 #~ msgstr "add - 一件のレコードの追加"
 
-# 989ec4d30a8c41f18e64c0eb1e7900b9
 #~ msgid "**未実装です**"
 #~ msgstr "**未実装です**"
 
-# ed1e0a2a62bc42e5b39d1c78ed26d2ac
 #~ msgid ""
 #~ "groonga組込コマンドの一つであるaddについて説明します。組込コマンドは、"
 #~ "groonga実行ファイルの引数、標準入力、またはソケット経由でgroongaサーバにリ"
@@ -14880,7 +11414,6 @@ msgstr "Object型はv1.2でサポートされます。"
 #~ "groonga実行ファイルの引数、標準入力、またはソケット経由でgroongaサーバにリ"
 #~ "クエストを送信することによって実行します。"
 
-# 4215060d124441b69955f16a9aadffc1
 #~ msgid ""
 #~ "addは、使用しているデータベースのテーブルに1件のレコードを登録し、カラム"
 #~ "の値を更新し、更新したカラムの値を返却します。"
@@ -14888,12 +11421,9 @@ msgstr "Object型はv1.2でサポートされます。"
 #~ "addは、使用しているデータベースのテーブルに1件のレコードを登録し、カラム"
 #~ "の値を更新し、更新したカラムの値を返却します。"
 
-# 3966ea7c3b75482cb5b8079635359011
-# beda75c5d1474f5db4c72caacbb44ef8
 #~ msgid "レコードを追加しようとするテーブルの名前を指定します。"
 #~ msgstr "レコードを追加しようとするテーブルの名前を指定します。"
 
-# a27b157f2eb44c509aec45939960e7f4
 #~ msgid ""
 #~ "登録するレコードの主キー値を指定します。主キーなしのテーブルの場合はこのパ"
 #~ "ラメータを指定する必要はなく、指定された場合は無視されます。"
@@ -14901,36 +11431,23 @@ msgstr "Object型はv1.2でサポートされます。"
 #~ "登録するレコードの主キー値を指定します。主キーなしのテーブルの場合はこのパ"
 #~ "ラメータを指定する必要はなく、指定された場合は無視されます。"
 
-# 650d20fefd4247fb8116eb6f55a4be5e
-# 0cab460b0aaa4b2fb8e5e58119392aa5
 #~ msgid ""
 #~ "テーブルに登録するレコードに値を設定するカラム名のリストを指定します。"
 #~ msgstr ""
 #~ "テーブルに登録するレコードに値を設定するカラム名のリストを指定します。"
 
-# 52b94e87f0fc4133b584ad7c2c2fea7b
-# 7dea56b8504a4d1d86ccee57819076fb
 #~ msgid "登録するレコードの値を表現した文字列を渡します。"
 #~ msgstr "登録するレコードの値を表現した文字列を渡します。"
 
-# 1e238c91e2bf40cbb6a3c2206e30a8ab
-# d0bda985cbe144d789e283f4356e4c68
 #~ msgid "以下のいずれかの形式が使用できます。"
 #~ msgstr "以下のいずれかの形式が使用できます。"
 
-# cc38cd1424864f23a97a86569feeae3e
-# 1e373a3c961242b6b0c186b5b7d12aba
 #~ msgid "[カラム値1, カラム値2,..]"
 #~ msgstr "[カラム値1, カラム値2,..]"
 
-# 1d401165678d4f7d820f9deae8001d3c
-# 0bf3a29c11ce4d88833edb6cbd40c20f
 #~ msgid "{カラム名1: カラム値1, カラム名2: カラム値2}"
 #~ msgstr "{カラム名1: カラム値1, カラム名2: カラム値2}"
 
-# 9c193efae23044d5a9dec6c12aa8bc2a
-# 942065cef86c458abc04354c4166b412
-# 05f59e7784d645bba6a00d528b96a5e6
 #~ msgid ""
 #~ "形式1の[カラム名1, カラム名2,..]の要素はcolumns引数が省略された場合のみ有"
 #~ "効です。"
@@ -14938,57 +11455,33 @@ msgstr "Object型はv1.2でサポートされます。"
 #~ "形式1の[カラム名1, カラム名2,..]の要素はcolumns引数が省略された場合のみ有"
 #~ "効です。"
 
-# 77e1fad18bf543f6b8b65ad12779261c
-# ef78f3fb566a459b9452957f6af19037
-# 6569867780ba4c39811b1646583f2af6
 #~ msgid "出力するカラム名のリストをカンマ(',')区切りで指定します。"
 #~ msgstr "出力するカラム名のリストをカンマ(',')区切りで指定します。"
 
-# 433584f15b3544da8f8c1baf083b5c97
-# e7b9846c318f4e7f9f94a19604ac2b68
-# e0bb8b55b5a1444fac8d43923a752037
-# dd902af7bda34c7f8a396f391e2cd219
-# b1c424e90d0342398bc36dd5a5c900a2
 #~ msgid "返値 ---"
 #~ msgstr "返値 ---"
 
-# 17d824062dc04a0e99563df5643790e2
-# 378303c58cea48ef8f57d67daa22aaf1
 #~ msgid "``新規追加``"
 #~ msgstr "``新規追加``"
 
-# 62652c2357614df8b6f368116646291d
-# 90cbe0f03286487abc4cf49227d7608e
 #~ msgid "レコードが追加されたかどうかを判定する。"
 #~ msgstr "レコードが追加されたかどうかを判定する。"
 
-# e925b4b01f1147338b30cdeeedd39ae6
-# 70850fbb139148d39322239985e5d6d3
-# 781c059b958a4d34b2d3e94ef6b00e8b
 #~ msgid "``カラム値n``"
 #~ msgstr "``カラム値n``"
 
-# 7acdfd69ea704e919c55b3981e477471
-# 98d9b74873b04a30b2e7e145cc36ec15
-# a98c153e62b441d491d2f700568afe63
 #~ msgid "output_columnsで指定されたカラムの値。"
 #~ msgstr "output_columnsで指定されたカラムの値。"
 
-# ac9d4301198e433fa181ede5f26ba8e5
-# 926eb3e3863f40549c1676e7acf97152
-# 9683888ad67a47e3ae2adda4614a0185
 #~ msgid "テーブルEntryにレコードを登録します。::"
 #~ msgstr "テーブルEntryにレコードを登録します。::"
 
-# f694f65c48b846eaa46b6ae428ae79a2
 #~ msgid "get"
 #~ msgstr "get"
 
-# 7f31b715e2eb4c1f9fa2bddc967e5ba3
 #~ msgid "get - 一件のレコードの値の取得"
 #~ msgstr "get - 一件のレコードの値の取得"
 
-# 3c5f725d0edb41e49218e6bd246bd43a
 #~ msgid ""
 #~ "groonga組込コマンドの一つであるgetについて説明します。組込コマンドは、"
 #~ "groonga実行ファイルの引数、標準入力、またはソケット経由でgroongaサーバにリ"
@@ -14998,7 +11491,6 @@ msgstr "Object型はv1.2でサポートされます。"
 #~ "groonga実行ファイルの引数、標準入力、またはソケット経由でgroongaサーバにリ"
 #~ "クエストを送信することによって実行します。"
 
-# c4f8bb98dfb2488aa91f1788c8e715a2
 #~ msgid ""
 #~ "getは、使用しているデータベースのテーブルの中の1件のレコードを指定し、カ"
 #~ "ラムの値を取得します。"
@@ -15006,11 +11498,9 @@ msgstr "Object型はv1.2でサポートされます。"
 #~ "getは、使用しているデータベースのテーブルの中の1件のレコードを指定し、カ"
 #~ "ラムの値を取得します。"
 
-# 27c35a44dec14325846350c3be05b811
 #~ msgid "値を取得するレコードを含むテーブルの名前を指定します。"
 #~ msgstr "値を取得するレコードを含むテーブルの名前を指定します。"
 
-# 8718125c363b42408474732be31130d1
 #~ msgid ""
 #~ "値を取得するレコードの主キー値を指定します。主キーなしのテーブルの場合はこ"
 #~ "のパラメータを指定しても無視されます(idパラメータを代わりに指定します)。"
@@ -15018,7 +11508,6 @@ msgstr "Object型はv1.2でサポートされます。"
 #~ "値を取得するレコードの主キー値を指定します。主キーなしのテーブルの場合はこ"
 #~ "のパラメータを指定しても無視されます(idパラメータを代わりに指定します)。"
 
-# a0911786531e4c63bc087e413d6daa16
 #~ msgid ""
 #~ "テーブルEntryから主キー値が\"abandon\"であるレコードのbodyカラムの値を取得"
 #~ "します。::"
@@ -15026,15 +11515,12 @@ msgstr "Object型はv1.2でサポートされます。"
 #~ "テーブルEntryから主キー値が\"abandon\"であるレコードのbodyカラムの値を取得"
 #~ "します。::"
 
-# 74501ad667314b29a5db656d35b4f753
 #~ msgid "set"
 #~ msgstr "set"
 
-# 72d5982f32464447b980955318811135
 #~ msgid "set - 一件のレコードの値の更新"
 #~ msgstr "set - 一件のレコードの値の更新"
 
-# 712075669d004a489d53482aa3075aaf
 #~ msgid ""
 #~ "groonga組込コマンドの一つであるsetについて説明します。組込コマンドは、"
 #~ "groonga実行ファイルの引数、標準入力、またはソケット経由でgroongaサーバにリ"
@@ -15044,7 +11530,6 @@ msgstr "Object型はv1.2でサポートされます。"
 #~ "groonga実行ファイルの引数、標準入力、またはソケット経由でgroongaサーバにリ"
 #~ "クエストを送信することによって実行します。"
 
-# 9556c6ec95f34d7fb4ee217b8915e74a
 #~ msgid ""
 #~ "setは、使用しているデータベースのテーブルの中の1件のレコードについて、カ"
 #~ "ラムの値を更新し、更新したカラムの値を返却します。"
@@ -15052,11 +11537,9 @@ msgstr "Object型はv1.2でサポートされます。"
 #~ "setは、使用しているデータベースのテーブルの中の1件のレコードについて、カ"
 #~ "ラムの値を更新し、更新したカラムの値を返却します。"
 
-# 6ff0d8f918314020bd334c8fcb1d5806
 #~ msgid "値を更新しようとするレコードを含むテーブルの名前を指定します。"
 #~ msgstr "値を更新しようとするレコードを含むテーブルの名前を指定します。"
 
-# 30bcccdba0b3476c97306dcb0a9db00e
 #~ msgid ""
 #~ "値を変更するレコードの主キー値を指定します。主キーなしのテーブルの場合はこ"
 #~ "のパラメータを指定しても無視されます(idパラメータを代わりに指定します)。"
@@ -15064,8 +11547,6 @@ msgstr "Object型はv1.2でサポートされます。"
 #~ "値を変更するレコードの主キー値を指定します。主キーなしのテーブルの場合はこ"
 #~ "のパラメータを指定しても無視されます(idパラメータを代わりに指定します)。"
 
-# de6f4a54f8fc44289992732f85bfbaf1
-# 9cd6e37e1868427899a45d779ab55265
 #~ msgid ""
 #~ "レコードIDによってレコードを指定します。idパラメータを指定する場合は、key"
 #~ "パラメータを指定してはいけません。"
@@ -15073,23 +11554,18 @@ msgstr "Object型はv1.2でサポートされます。"
 #~ "レコードIDによってレコードを指定します。idパラメータを指定する場合は、key"
 #~ "パラメータを指定してはいけません。"
 
-# 83dbb55728fe416da15df667c458b12b
 #~ msgid "grntest"
 #~ msgstr "grntest"
 
-# 77ec3fefb957463dacd73cb79d6de69b
 #~ msgid "grntest命令"
 #~ msgstr "grntest命令"
 
-# 68baf1cf0b444232a1fa7299c43fc58a
 #~ msgid "column_create"
 #~ msgstr "column_create"
 
-# 17b5fc3339cb402db375a8fb03389871
 #~ msgid "delete - 一件のレコードの削除"
 #~ msgstr "delete - 一件のレコードの削除"
 
-# 9ee33aa44c21410eb720de969556dde0
 #~ msgid ""
 #~ "groonga組込コマンドの一つであるdeleteについて説明します。組込コマンドは、"
 #~ "groonga実行ファイルの引数、標準入力、またはソケット経由でgroongaサーバにリ"
@@ -15099,21 +11575,17 @@ msgstr "Object型はv1.2でサポートされます。"
 #~ "groonga実行ファイルの引数、標準入力、またはソケット経由でgroongaサーバにリ"
 #~ "クエストを送信することによって実行します。"
 
-# d295da1d724849a8a4c12e499c4e5ef1
 #~ msgid ""
 #~ "deleteは、使用しているデータベースのテーブルに1件のレコードを削除します。"
 #~ msgstr ""
 #~ "deleteは、使用しているデータベースのテーブルに1件のレコードを削除します。"
 
-# bb54bdbab7684c0e940229f834bdfe82
 #~ msgid "テーブルEntryからレコードを削除します。::"
 #~ msgstr "テーブルEntryからレコードを削除します。::"
 
-# 43e0750371c644d8833d1a01a72e4ced
 #~ msgid "レコードを削除しようとするテーブルの名前を指定します。"
 #~ msgstr "レコードを削除しようとするテーブルの名前を指定します。"
 
-# 1348fc0305b9412b840d4a9371faa2da
 #~ msgid ""
 #~ "削除するレコードの主キー値を指定します。主キーなしのテーブルの場合はこのパ"
 #~ "ラメータを指定しても無視されます(idパラメータを代わりに指定します)。"
@@ -15121,7 +11593,6 @@ msgstr "Object型はv1.2でサポートされます。"
 #~ "削除するレコードの主キー値を指定します。主キーなしのテーブルの場合はこのパ"
 #~ "ラメータを指定しても無視されます(idパラメータを代わりに指定します)。"
 
-# ae3fed01f9fd4e7e9a541995a8dcf986
 #~ msgid ""
 #~ "script形式のgrn_expr文字列によってレコードを指定します。filterパラメータを"
 #~ "指定する場合は、id及びkeyパラメータを指定してはいけません。"
@@ -15129,11 +11600,9 @@ msgstr "Object型はv1.2でサポートされます。"
 #~ "script形式のgrn_expr文字列によってレコードを指定します。filterパラメータを"
 #~ "指定する場合は、id及びkeyパラメータを指定してはいけません。"
 
-# 1fa38310321a4d9f8f5dcb5d3b9ebe5e
 #~ msgid "cache_limit - cacheサイズの設定・取得"
 #~ msgstr "cache_limit - cacheサイズの設定・取得"
 
-# 782f01979fbc4d54b4b22525168fdcb3
 #~ msgid ""
 #~ "groonga組込コマンドの一つであるcache_limitについて説明します。組込コマンド"
 #~ "は、groonga実行ファイルの引数、標準入力、またはソケット経由でgroongaサーバ"
@@ -15143,13 +11612,11 @@ msgstr "Object型はv1.2でサポートされます。"
 #~ "は、groonga実行ファイルの引数、標準入力、またはソケット経由でgroongaサーバ"
 #~ "にリクエストを送信することによって実行します。"
 
-# 31ae96ec89454ccd8461b3be13376d57
 #~ msgid ""
 #~ "cache_limitは、クエリキャッシュの最大件数を取得したり設定したりします。"
 #~ msgstr ""
 #~ "cache_limitは、クエリキャッシュの最大件数を取得したり設定したりします。"
 
-# 5422fde6ce3d4b03926ae9c28a568c8e
 #~ msgid ""
 #~ "クエリキャッシュの最大件数を整数で指定します。 maxが指定されなかった場合に"
 #~ "は、クエリキャッシュの最大件数は変更せず、 現在の設定値のみが返されます。"
@@ -15157,10 +11624,8 @@ msgstr "Object型はv1.2でサポートされます。"
 #~ "クエリキャッシュの最大件数を整数で指定します。 maxが指定されなかった場合に"
 #~ "は、クエリキャッシュの最大件数は変更せず、 現在の設定値のみが返されます。"
 
-# 8e91fbc2746341169c27948089409f5c
 #~ msgid "json"
 #~ msgstr "json"
 
-# 67d43cef5b5d4b118d9396d454ee4544
 #~ msgid "VIEW型のテーブルに要素となるテーブルを定義します。"
 #~ msgstr "VIEW型のテーブルに要素となるテーブルを定義します。"

  Modified: doc/locale/en/LC_MESSAGES/server.po (+0 -179)
===================================================================
--- doc/locale/en/LC_MESSAGES/server.po    2014-01-23 18:04:29 +0900 (4c899c5)
+++ doc/locale/en/LC_MESSAGES/server.po    2014-01-23 19:01:31 +0900 (ee5b929)
@@ -17,45 +17,30 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-# ed13f02be8cf4e75899c1bdb9c3b0ce0
 msgid "Server"
 msgstr "Server"
 
-# d9c71a9414424ef3b88c0b524b7f05b1
 msgid "GQTP"
 msgstr "GQTP"
 
-# af9f96008b5341958b2ada7fc7acaedf
-# 1b5579ae32144aa2b70eb8aec273d3e5
-# f804c709dd5043fa9881dc5485e0f8d4
-# 7c8acf73a24c4feb9fb3de1be6fd05af
-# fc7af47d7e9e49b3bbfa44b5be780f99
-# bc3bac6e5b2d4bbabf960fb6c748d13e
-# db09943762d248ccbc5952b0089bfb5b
 msgid "TODO"
 msgstr "TODO"
 
-# 8f5a4f787e5045bc9271e40e0f9926b4
 msgid "See :doc:`/reference/executables/groonga`."
 msgstr "See :doc:`/reference/executables/groonga`."
 
-# ff0ba1c4e92940a29779b95e7706393d
 msgid "HTTP"
 msgstr "HTTP"
 
-# 4491f93502544b3a9ef75f191d5ba8f8
 msgid "Groonga provides two HTTP server implementations."
 msgstr "Groonga provides two HTTP server implementations."
 
-# ced95a43b96841e495ea4e06b1f84bbe
 msgid ":doc:`http/groonga`"
 msgstr ":doc:`http/groonga`"
 
-# fd4a09baf8414fb0b0ed41c38ccfc915
 msgid ":doc:`http/groonga-httpd`"
 msgstr ":doc:`http/groonga-httpd`"
 
-# 641a66693c6f456b995e32b7a583c9a1
 msgid ""
 ":doc:`http/groonga` is a simple implemntation. It is fast but doesn't have "
 "many HTTP features. It is convenient to try groonga because it requires just "
@@ -65,7 +50,6 @@ msgstr ""
 "many HTTP features. It is convenient to try groonga because it requires just "
 "a few command line options to run."
 
-# ee2a04daf68b46d196f5f792e83135f9
 msgid ""
 ":doc:`http/groonga-httpd` is a `nginx <http://nginx.org/>`_ based "
 "implementation. It is also fast and has many HTTP features."
@@ -73,15 +57,12 @@ msgstr ""
 ":doc:`http/groonga-httpd` is a `nginx <http://nginx.org/>`_ based "
 "implementation. It is also fast and has many HTTP features."
 
-# 473b6fff145f41c7a68df81717d852a4
 msgid ":doc:`http/groonga-httpd` is still experimental."
 msgstr ":doc:`http/groonga-httpd` is still experimental."
 
-# 7275e03373ba4d3cae737acfe18441ab
 msgid "Comparison"
 msgstr "Comparison"
 
-# 37171e5be3eb428da3f745c1b4991309
 msgid ""
 "There are many differences between :doc:`groonga` and :doc:`groonga-httpd`. "
 "Here is a comparison table."
@@ -89,122 +70,69 @@ msgstr ""
 "There are many differences between :doc:`groonga` and :doc:`groonga-httpd`. "
 "Here is a comparison table."
 
-# 941952f809004fb4abaa772654cf8279
-# 396f547d4f9442eebd07abd4c70a73db
 msgid "groonga"
 msgstr "groonga"
 
-# 83dfd6267c6c46f2bd331ffc43befa09
-# 03f919d64f904e0c935a7eb1e0d844e6
 msgid "groonga-httpd"
 msgstr "groonga-httpd"
 
-# 33e0e13c27c24c119bb473a16548b8db
-# f56c89a477c7431d90d0b000347d7399
 msgid "Performance"
 msgstr "Performance"
 
-# fe883a6c29fa4e60bbba405a16eec937
-# b1eb69110d7540d296589c5122b9aa4e
-# 48008f420f924297ad2b54418dfa1cc2
-# f017900914fd4a5caee162844f4831f3
-# 5ab338ce8ca34327a7b6526dad336e92
-# 30715ee54c3b4eb5b8297fa455539573
-# 9b6c44aed9ad41d09292e0ca670d4d50
-# 603feca3cf3f4a0b82c7229fe9c033c5
-# 20bd597512d845828d13994f963ff797
-# f7b9fd34b09b4af78a4829b86777bd1e
 msgid "o"
 msgstr "o"
 
-# 9b4b8f609e5d43ed9e761fac2454e07f
-# 9032f5535cdc4afc9f018e81b193e971
 msgid "Using multi CPU cores"
 msgstr "Using multi CPU cores"
 
-# 71c3575dab9f4d8eb38028a80b33283e
 msgid "o (by multi process)"
 msgstr "o (by multi process)"
 
-# 35411a8c2f4746469099969dc793fb6b
 msgid "o (by multi threading)"
 msgstr "o (by multi threading)"
 
-# 7a205eae058b4fc0ae69c39a19183d14
-# 09a77bd06d29454fa36fa229b26683ab
 msgid "Configuration file"
 msgstr "Configuration file"
 
-# f945bc7aabfb4a02b5be39ceb9d9cbb7
 msgid "optional"
 msgstr "optional"
 
-# 7becb2eab85843d5ad41ad988571b917
 msgid "required"
 msgstr "required"
 
-# c8bc500295c545aaa87cdf073b6f35b3
-# 4178d301f40d45f0895d1e419211b38a
 msgid "Custom prefix path"
 msgstr "Custom prefix path"
 
-# 931bb6cbe57c44d280c269f810e06688
-# c876490e037f488386d20b234921a004
-# a391f63885484fdaa642120aba3ccef3
-# bef1f18a1af74c09902b6ecee0a8699e
-# b5f57ddfcc0f42e6867bc4623727fbc2
-# 29a62b1e94854a14876c02bef882147f
-# 658d2f641efe4756bc13d0260b10b9d4
-# 1ff20bbb7c4b4145b78bc3aec40c256d
 msgid "x"
 msgstr "x"
 
-# b880f79ebb794bfba0bb47ce715480ad
-# 6f3ef3bb0b044477aca77b070e5e4ff3
 msgid "Custom command version"
 msgstr "Custom command version"
 
-# e76b208ebd454561bdbafbeb6ece5de6
-# 431d9b51db2f4ddc8750ebddaf263b0a
 msgid "x (comming soon)"
 msgstr "x (comming soon)"
 
-# 0cb6ad6bc9224228adda25a0b2221f24
-# 802cf469fad54df7b067b7b7d919a125
 msgid "Multi databases"
 msgstr "Multi databases"
 
-# 35e8bef3cf0e47f7b32673b211fac087
-# acbd5d64be7c42edbdc66268a1632452
 msgid "Authentication"
 msgstr "Authentication"
 
-# c0578e5c521e458d80cde4c54921bc3f
-# 6ad60fb007054b0db09581b7d08609e5
 msgid "Gzip compression"
 msgstr "Gzip compression"
 
-# 738f3c2e9fab4114af69a62bcb2d949f
-# cf1df911c7374ccb898992e41ed4e2ab
 msgid "POST"
 msgstr "POST"
 
-# d8eadc31f8d147d5bdf8f8fd8823ea8b
-# a113462e651b42f38eb289da1f6b7786
 msgid "HTTPS"
 msgstr "HTTPS"
 
-# 203a3a3af84d4728af390bbaf90e84d0
-# b8fe45cb84ba49599fd15fb3a69724e0
 msgid "Access log"
 msgstr "Access log"
 
-# 97dc932c2ad845e6875ba6d632e2ab38
-# 97dc932c2ad845e6875ba6d632e2ab38
 msgid "Upgrading without downtime"
 msgstr "Upgrading without downtime"
 
-# 46bde559c3cc4dcc8790b3c7eda8df3e
 msgid ""
 "Both :doc:`groonga` and :doc:`groonga-httpd` are very fast. They can work "
 "with the same throughput."
@@ -212,7 +140,6 @@ msgstr ""
 "Both :doc:`groonga` and :doc:`groonga-httpd` are very fast. They can work "
 "with the same throughput."
 
-# 8906fe4798c14125971c251f4c8660c1
 msgid ""
 "Groonga scales on multi CPU cores. :doc:`groonga` scales by multi "
 "threading. :doc:`groonga-httpd` scales by multi processes."
@@ -220,7 +147,6 @@ msgstr ""
 "Groonga scales on multi CPU cores. :doc:`groonga` scales by multi "
 "threading. :doc:`groonga-httpd` scales by multi processes."
 
-# 44fd143b2c3b448f81cba9a2ca10db89
 msgid ""
 ":doc:`groonga` uses the same number of threads as CPU cores by default. If "
 "you have 8 CPU cores, 8 threads are used by default."
@@ -228,7 +154,6 @@ msgstr ""
 ":doc:`groonga` uses the same number of threads as CPU cores by default. If "
 "you have 8 CPU cores, 8 threads are used by default."
 
-# ebd2b2605ce04593847e90ba438dc7fc
 msgid ""
 ":doc:`groonga-httpd` uses 1 process by default. You need to set "
 "`worker_processes <http://nginx.org/en/docs/ngx_core_module."
@@ -242,7 +167,6 @@ msgstr ""
 "cores, specify ``worker_processes 8`` in configuration file like the "
 "following::"
 
-# 21b7aad8e45045db9e4f6e63dbf0cd78
 msgid ""
 ":doc:`groonga` can work without configuration file. All configuration items "
 "such as port number and the max number of threads can be specified by "
@@ -252,7 +176,6 @@ msgstr ""
 "such as port number and the max number of threads can be specified by "
 "command line. Configuration file is also used to specify configuration items."
 
-# e325978cd0e94eaf8ca86627c30a3f1a
 msgid ""
 "It's very easy to run groonga HTTP server because :doc:`groonga` requires "
 "just a few options to run. Here is the most simple command line to start "
@@ -262,7 +185,6 @@ msgstr ""
 "just a few options to run. Here is the most simple command line to start "
 "HTTP server by :doc:`groonga`::"
 
-# 1b42a2bfcb81480098f3e088843c193b
 msgid ""
 ":doc:`groonga-httpd` requires configuration file to run. Here is the most "
 "simple configuration file to start HTTP server by :doc:`groonga-httpd`::"
@@ -270,7 +192,6 @@ msgstr ""
 ":doc:`groonga-httpd` requires configuration file to run. Here is the most "
 "simple configuration file to start HTTP server by :doc:`groonga-httpd`::"
 
-# 30bb689e67d84685adf79f0b3e14c4b6
 msgid ""
 ":doc:`groonga` accepts a path that starts with ``/d/`` as command URL such "
 "as ``http://localhost:10041/d/status``. You cannot change the prefix path ``/"
@@ -280,7 +201,6 @@ msgstr ""
 "as ``http://localhost:10041/d/status``. You cannot change the prefix path ``/"
 "d/``."
 
-# d9eba3a2ebe14eb585c60f99fdf4f46e
 msgid ""
 ":doc:`groonga-httpd` can custom prefix path. For example, you can use "
 "``http://localhost:10041/api/status`` as command URL. Here is a sample "
@@ -290,13 +210,11 @@ msgstr ""
 "``http://localhost:10041/api/status`` as command URL. Here is a sample "
 "configuration to use ``/api/`` as prefix path::"
 
-# 42601672fe09426d95c78a6336402724
 msgid ""
 "Groonga has :doc:`/reference/command/command_version` mechanism. It is for "
 "upgrading groonga commands with backward compatibility."
 msgstr ""
 
-# 7605c6584f974a4fa38ab13ef99b1a4d
 msgid ""
 ":doc:`groonga` can change the default command veresion by ``--default-"
 "command-version`` option. Here is a sample command line to use command "
@@ -306,7 +224,6 @@ msgstr ""
 "command-version`` option. Here is a sample command line to use command "
 "version 2 as the default command version::"
 
-# 45663d14710e48c0a0a54e133cfd3de7
 msgid ""
 ":doc:`groonga-httpd` cannot custom the default command version yet. But it "
 "will be supported soon. If it is supported, you can provides different "
@@ -320,11 +237,9 @@ msgstr ""
 "Here is a sample configuration to provide command version 1 commands under "
 "``/api/1/`` and command version 2 comamnds under ``/api/2/``::"
 
-# c2b82670d04d48c0b9ba22ecf1e2f931
 msgid ":doc:`groonga` can use only one database in a process."
 msgstr ":doc:`groonga` can use only one database in a process."
 
-# c434d0cca47e41e7813f72f6f6a78863
 msgid ""
 ":doc:`groonga-httpd` can use one or more databases in a process. Here is a "
 "sample configuration to provide ``/tmp/db1`` database under ``/db1/`` path "
@@ -334,7 +249,6 @@ msgstr ""
 "sample configuration to provide ``/tmp/db1`` database under ``/db1/`` path "
 "and ``/tmp/db2`` database under ``/db2/`` path::"
 
-# 6155ed1c0e954a57aabf2674d6150b03
 msgid ""
 "HTTP supports authentications such as basic authentication and digest "
 "authentication. It can be used for restricting use of danger command such "
@@ -344,7 +258,6 @@ msgstr ""
 "authentication. It can be used for restricting use of danger command such "
 "as :doc:`/reference/commands/shutdown`."
 
-# fdeb2ffa199f4b5cb8b4665eb14e43b1
 msgid ""
 ":doc:`groonga` doesn't support any authentications. To restrict use of "
 "danger command, other tools such as iptables and reverse proxy are needed."
@@ -352,7 +265,6 @@ msgstr ""
 ":doc:`groonga` doesn't support any authentications. To restrict use of "
 "danger command, other tools such as iptables and reverse proxy are needed."
 
-# e1ce7a0cb8cb4956a2ba7a602c322065
 msgid ""
 ":doc:`groonga-httpd` supports basic authentication. Here is a sample "
 "configuration to restrict use of :doc:`/reference/commands/shutdown` "
@@ -362,7 +274,6 @@ msgstr ""
 "configuration to restrict use of :doc:`/reference/commands/shutdown` "
 "command::"
 
-# 830441268ded43568ef5dd5c3617325e
 msgid ""
 "HTTP supports response compression by gzip with ``Content-Encoding: gzip`` "
 "response header. It can reduce network flow. It is useful for large search "
@@ -372,7 +283,6 @@ msgstr ""
 "response header. It can reduce network flow. It is useful for large search "
 "response."
 
-# bfa4014c039a47a885eb7fca0598251c
 msgid ""
 ":doc:`groonga` doesn't support compression. To support compression, reverse "
 "proxy is needed."
@@ -380,7 +290,6 @@ msgstr ""
 ":doc:`groonga` doesn't support compression. To support compression, reverse "
 "proxy is needed."
 
-# d6ad7a1d41574b768f285517a4297524
 msgid ""
 ":doc:`groonga-httpd` supports gzip compression. Here is a sample "
 "configuration to compress response by gzip::"
@@ -388,7 +297,6 @@ msgstr ""
 ":doc:`groonga-httpd` supports gzip compression. Here is a sample "
 "configuration to compress response by gzip::"
 
-# 2b04113fce604de1b757839cf3e23aa3
 msgid ""
 "Note that `gzip_types *` is specified. It's one of the important "
 "configuration. `gzip_types` specifies gzip target data formats by MIME "
@@ -397,7 +305,6 @@ msgid ""
 "`gzip_types`. The default value of `gzip_types` is `text/html`."
 msgstr ""
 
-# 0dabd3179e04486da7d465381bb2bd51
 msgid ""
 "To compress response data from :doc:`groonga-httpd` by gzip, you need to "
 "specify `gzip_types *` or `gzip_types application/json text/xml application/"
@@ -407,59 +314,47 @@ msgid ""
 "need to consider about other modules."
 msgstr ""
 
-# bd2f52743ccf4d48bea1c55ca855118d
 msgid ""
 "You can load your data by POST JSON data. You need follow the following "
 "rules to use loading by POST."
 msgstr ""
 
-# 5fa70ed9e2194383af88f4d6aff6178d
 msgid "`Content-Type` header value must be `application/json`."
 msgstr ""
 
-# 096cfd1a0ca740c0b25aad9868296cee
 msgid "JSON data is sent as body."
 msgstr ""
 
-# 14f31041c40e4a698356c54b036f717e
 msgid "Table name is specified by query parameter such as ``table=NAME``."
 msgstr ""
 
-# d4b841d3698a45aa8ed02356941dc066
 msgid ""
 "Here is an example curl command line that loads two users `alice` and `bob` "
 "to `Users` table::"
 msgstr ""
 
-# 27ed7e35fb874c5599ca1a0b1de7ffb5
 msgid "Server packages"
 msgstr ""
 
-# 4b9e5a6d80d74f868f880b9d778cfa3b
 msgid ""
 "The package ``groonga`` is the mininum set of fulltext search engine. If you "
 "want to use groonga for server use, you can install additional preconfigured "
 "packages."
 msgstr ""
 
-# 992dda4734924e76b567b9414918e5c0
 msgid "There are three packages for server use."
 msgstr ""
 
-# 5aedd9549eea4ac2a417fa2ff0d8ad94
 msgid "``groonga-httpd`` (nginx and HTTP protocol based server package)"
 msgstr ""
 
-# 8ee55616054c4b1bb9a808465515f550
 msgid "``groonga-server-http`` (simple HTTP protocol based server package)"
 msgstr ""
 
-# 6a94a2aae23d4b2db8c34986fc9e5de7
 msgid ""
 "``groonga-server-gqtp`` (:doc:`/spec/gqtp` protocol based server package)"
 msgstr ""
 
-# 92ac0fa6c1d44ca28fbf014c91450442
 msgid ""
 "There is the reason why groonga supports not only GQTP but also two HTTP "
 "server packages. :doc:`/spec/gqtp` - Groonga Query Transfer Protocol is "
@@ -471,7 +366,6 @@ msgid ""
 "benefits of nginx functionality."
 msgstr ""
 
-# 578feb05470040669a4f47c45e8255f2
 msgid ""
 "We recommend to use ``groonga-server-http`` at first, then if you want to "
 "use more fullfilling functionality, use ``groonga-httpd`` package. If you "
@@ -479,205 +373,132 @@ msgid ""
 "to use ``groonga-server-gqtp``."
 msgstr ""
 
-# ed2bcc368d0d4d13b5a4bcd5876547ae
 msgid ""
 "There is a conflict between ``groonga-httpd`` and ``groonga-server-http`` "
 "package because of port number. See :doc:`/server/http/comparison` if you "
 "want to know which package meets your demands."
 msgstr ""
 
-# 0531d5aea7d94951a7dc8fe937ee2269
 msgid "``groonga-httpd`` is a nginx and HTTP protocol based server package."
 msgstr ""
 
-# 4be1f7bc57db4d49b2691586fbfc0636
-# 6fa103e953e2464f94f66cfe36e33f1b
 msgid "Preconfigured setting:"
 msgstr ""
 
-# 765a80c5aec6487db6bc5577ae7ad978
-# ead890d4891a48499a7b142c41d27a40
-# 574e91a38e8749bd9fd580ffa292fe2e
 msgid "Default value"
 msgstr ""
 
-# cf3af42034a3455abaafd6a5b016112a
-# 9944a6c3914445788ee5d06e6fd1cbee
-# 828a75323e23412999639421c4145405
 msgid "Item"
 msgstr ""
 
-# f429752ec6b640348bf2aed4849827a9
-# b2fb59430da4452f8fd0b5a151cb92e9
 msgid "10041"
 msgstr ""
 
-# 302fd27da26b42e49d7b60df0d33b9f0
-# 7bb08e7f7d7a4b1aa792f13b430a36b7
-# 7f919c8b7f4b4c32b994def19f5b35d7
 msgid "Port number"
 msgstr ""
 
-# 93d4625a49d54f20ade10df30b344775
 msgid "/var/log/groonga/httpd/acccess.log"
 msgstr ""
 
-# 203a3a3af84d4728af390bbaf90e84d0
-# b8fe45cb84ba49599fd15fb3a69724e0
 msgid "Access log path"
 msgstr ""
 
-# 444935818eb640b586745f25797d4ffd
-# 86ef9e9ff93a48e7b1e45b211e1229e8
 msgid "/var/log/groonga/http-query.log"
 msgstr ""
 
-# 65d14f23815b4749af35c8ff2682256f
 msgid "Error log path"
 msgstr ""
 
-# 208583eedfaa4948954743585e12a987
-# 81e7dbccc72c4b84a8b378617226193a
-# e9d5e73140af49d386b2f7dc64fe50a9
 msgid "/var/lib/groonga/db/*"
 msgstr ""
 
-# 0cb6ad6bc9224228adda25a0b2221f24
-# 802cf469fad54df7b067b7b7d919a125
 msgid "Database"
 msgstr ""
 
-# fd4a09baf8414fb0b0ed41c38ccfc915
 msgid "/etc/groonga/httpd/groonga-httpd.conf"
 msgstr ""
 
-# 3dd040d7bc414b65a06de360498c6cee
-# 3dd040d7bc414b65a06de360498c6cee
 msgid "Start HTTP server"
 msgstr ""
 
-# 6b55acdfe3284958a62d6eb2f86820ee
-# 6b55acdfe3284958a62d6eb2f86820ee
 msgid "Starting groonga HTTP server(Debian/Ubuntu/CentOS)::"
 msgstr ""
 
-# af9a018d494147e8a9416c30ced7f091
-# af9a018d494147e8a9416c30ced7f091
-# af9a018d494147e8a9416c30ced7f091
-# af9a018d494147e8a9416c30ced7f091
 msgid "Starting groonga HTTP server(Fedora)::"
 msgstr ""
 
-# 3dd040d7bc414b65a06de360498c6cee
-# 3dd040d7bc414b65a06de360498c6cee
 msgid "Stop HTTP server"
 msgstr ""
 
-# 6b55acdfe3284958a62d6eb2f86820ee
-# 6b55acdfe3284958a62d6eb2f86820ee
 msgid "Stopping groonga HTTP server(Debian/Ubuntu/CentOS)::"
 msgstr ""
 
-# 3dd040d7bc414b65a06de360498c6cee
-# 3dd040d7bc414b65a06de360498c6cee
 msgid "Restart HTTP server"
 msgstr ""
 
-# 6b55acdfe3284958a62d6eb2f86820ee
-# 6b55acdfe3284958a62d6eb2f86820ee
-# 6b55acdfe3284958a62d6eb2f86820ee
 msgid "Restarting groonga HTTP server(Debian/Ubuntu/CentOS)::"
 msgstr ""
 
-# af9a018d494147e8a9416c30ced7f091
-# af9a018d494147e8a9416c30ced7f091
-# af9a018d494147e8a9416c30ced7f091
 msgid "Restarting groonga HTTP server(Fedora)::"
 msgstr ""
 
-# 83dfd6267c6c46f2bd331ffc43befa09
-# 03f919d64f904e0c935a7eb1e0d844e6
 msgid "groonga-server-http"
 msgstr ""
 
-# 2ad0f8b094304b9d894e7af72faa1ef1
 msgid "``groonga-server-http`` is a simple HTTP protocol based server package."
 msgstr ""
 
-# d6296771835d4aaa983dce3137526e27
 msgid "/var/log/groonga/groonga-http.log"
 msgstr ""
 
-# b981db6631054af5a01ab27fe448a228
-# b1b7559d8c824a75b5b94bc0a4563588
 msgid ":ref:`process-log`"
 msgstr ""
 
-# a73cd1de36b14521965a7961b2774bae
-# 80aca61b2ef54270b13afacf1dcc13f8
 msgid ":ref:`query-log`"
 msgstr ""
 
-# dff80176a41c424db256230c6ecc88e5
-# 4137de97fb004827a28c4adbfa5c15ea
 msgid "Configuration file for server setting (Debian/Ubuntu)::"
 msgstr ""
 
-# f873009381d14976bbc660eec0552412
-# 6751cca06d6c4e0c89f3897cfdfd49d6
 msgid "Configuration file for server setting (CentOS)::"
 msgstr ""
 
-# af9a018d494147e8a9416c30ced7f091
 msgid "Stopping groonga HTTP server(Fedora)::"
 msgstr ""
 
-# 83dfd6267c6c46f2bd331ffc43befa09
-# 03f919d64f904e0c935a7eb1e0d844e6
 msgid "groonga-server-gqtp"
 msgstr ""
 
-# 2ad0f8b094304b9d894e7af72faa1ef1
 msgid ""
 "``groonga-server-gqtp`` is a :doc:`/spec/gqtp` protocol based server package."
 msgstr ""
 
-# b901e2cfbb16473c82f725943589aeed
 msgid "10043"
 msgstr ""
 
-# 01f436b74761468a8ec8aeedb77eca19
 msgid "/var/log/groonga/groonga-gqtp.log"
 msgstr ""
 
-# 2c716883efd94e4b87d09f476e2b3f06
 msgid "/var/log/groonga/gqtp-query.log"
 msgstr ""
 
-# 3dd040d7bc414b65a06de360498c6cee
 msgid "Start GQTP server"
 msgstr ""
 
-# 6b55acdfe3284958a62d6eb2f86820ee
 msgid "Starting groonga GQTP server(Debian/Ubuntu/CentOS)::"
 msgstr ""
 
-# af9a018d494147e8a9416c30ced7f091
 msgid "Starting groonga GQTP server(Fedora)::"
 msgstr ""
 
-# 3dd040d7bc414b65a06de360498c6cee
 msgid "Stop GQTP server"
 msgstr ""
 
-# 6b55acdfe3284958a62d6eb2f86820ee
 msgid "Stopping groonga GQTP server(Debian/Ubuntu/CentOS)::"
 msgstr ""
 
-# af9a018d494147e8a9416c30ced7f091
 msgid "Stopping groonga GQTP server(Fedora)::"
 msgstr ""
 
-# 3dd040d7bc414b65a06de360498c6cee
 msgid "Restart GQTP server"
 msgstr ""

  Modified: doc/locale/en/LC_MESSAGES/spec.po (+0 -226)
===================================================================
--- doc/locale/en/LC_MESSAGES/spec.po    2014-01-23 18:04:29 +0900 (19996e2)
+++ doc/locale/en/LC_MESSAGES/spec.po    2014-01-23 19:01:31 +0900 (dd69d19)
@@ -17,665 +17,488 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-# 70c14b5b5578438f9fca2b77aa53d2c7
 msgid "Specification"
 msgstr "Specification"
 
-# 2a5183f5c81f4eeeb4b332ed5dbecc11
 msgid "GQTP"
 msgstr ""
 
-# 394dab59612b42699b8b41e0b3636f3b
 msgid ""
 "GQTP is the acronym of Groonga Query Transfer Protocol. GQTP is the original "
 "protocol for groonga."
 msgstr ""
 
-# 8cb0ef8809624a07ba4b3c1a8d933cb4
 msgid "Protocol"
 msgstr ""
 
-# 13e6eba29b584b67b2f41c0986aa37dc
 msgid ""
 "GQTP is stateful client server model protocol. The following sequence is one "
 "processing unit:"
 msgstr ""
 
-# e8db1aa0c01f4c66b97911c5c253e675
 msgid "Client sends a request"
 msgstr ""
 
-# d9f44580fe2f42bab088b43a7aecd25c
 msgid "Server receives the request"
 msgstr ""
 
-# a077db385fb04f3b83b222b3313eadad
 msgid "Server processes the request"
 msgstr ""
 
-# 1207484d5aa44e3a933f0ff1d5cd75f4
 msgid "Server sends a response"
 msgstr ""
 
-# 856ebe99884e4757b3047c15781fbb65
 msgid "Client receives the response"
 msgstr ""
 
-# 2209f5d761f24ed0b9aab41f7b22e422
 msgid "You can do zero or more processing units in a session."
 msgstr ""
 
-# b4a8e0ea6e024f30b77f86545766d9a2
 msgid ""
 "Both request and response consist of GQTP header and body. GQTP header is "
 "fixed size data. Body is variable size data and its size is stored in GQTP "
 "header. The content of body isn't defined in GQTP."
 msgstr ""
 
-# 5378260b3169470082902e95e7a7e95d
 msgid "GQTP header"
 msgstr ""
 
-# 9c24d1116bdf4f35849679320fcdd88d
 msgid "GQTP header consists of the following unsigned integer values:"
 msgstr ""
 
-# 6a7ae2d5bf3b4fe381bca081bed4c19b
-# ace06ba6366943f18e21b24370c5d266
-# 30ee75a6100e415c89d5f2888daa4cb0
 msgid "Description"
 msgstr ""
 
-# 821966376a574dd4a3cb4e4541306370
-# c2212d9f1d6844189f16c14db5b1b188
-# b9565f96cc1646e2a2a30aee6bfb626a
 msgid "Name"
 msgstr ""
 
-# 264a8e19d7564c49bcdbc341d4e5661c
 msgid "Size"
 msgstr ""
 
-# 5c34a7e3855b49efb3ac177dd7117240
-# e9168c5043144fba9918ea9e43e187fd
-# eb9700974a4449b29483bf588db64dfe
-# 716cb2b9846f476a8b908d94f482df85
 msgid "1byte"
 msgstr ""
 
-# 1a8f406b1d3a4f1ca41acf09d86a874d
 msgid "Protocol type."
 msgstr ""
 
-# 835e1669290e469784edbf4b758b2dd6
-# 2f06e72aa9a5409898230e5a6a13c6f1
 msgid "``protocol``"
 msgstr ""
 
-# 43e7687f387a46e8ae289dfa5d677afe
 msgid "Content type of body."
 msgstr ""
 
-# 0a02a730e2fd4a9aa26e8354fc0cfea2
-# 8b35b0e05b184fc18a2598355d701409
 msgid "``query_type``"
 msgstr ""
 
-# e4041fb1efab44e2a9e1b7b619126e35
-# 18846385bafa4919871c80c0f61d3393
 msgid "2byte"
 msgstr ""
 
-# 7d4a3bf02171498dbfe478354cc91e20
-# f76e99ea6ceb4834baa7f0b1758a82f9
-# 17cd5787691f4c5d9a200995a9e3b060
-# bc12cf4269bc4312b6ff4eccba809ee9
-# 93db3d00f32b44febbb6db999b4ba56d
 msgid "Not used."
 msgstr ""
 
-# 1b17e113282144a58952cbb250344707
 msgid "``key_length``"
 msgstr ""
 
-# b6ae6f84d3684050a01d955ad4d0006a
 msgid "``level``"
 msgstr ""
 
-# 6c932a42dea543ecbe663985aa766faf
 msgid "Flags."
 msgstr ""
 
-# 56c932b541fa4e1dab925f672f148dff
-# e103151ccd0045fb9bccd5098d08064b
 msgid "``flags``"
 msgstr ""
 
-# cca264682eb046a69c60f6698c19776b
 msgid "Return code."
 msgstr ""
 
-# e2c5e27a0af84b7899a18189d51e0e7d
-# 05ed17794fdd4785b591dca5903bdf5b
 msgid "``status``"
 msgstr ""
 
-# 95e0dcce4aa34edd9c7044ad474cdf40
-# df81427697f14dbc97b5acb25106b0c8
 msgid "4byte"
 msgstr ""
 
-# 497788499e074001975e817eef408c0b
 msgid "Body size."
 msgstr ""
 
-# fc9b8748fdd742cb8b31680531d60a3a
-# 30632f83b3c4446ca643b6ed9bd9ec28
 msgid "``size``"
 msgstr ""
 
-# 4a67799371fa41f588e9576923606c70
 msgid "``opaque``"
 msgstr ""
 
-# 1cd52e519a744469836f90bcf041fd90
 msgid "8byte"
 msgstr ""
 
-# c161045220a043f493b88e5fe50e4c14
 msgid "``cas``"
 msgstr ""
 
-# 667e1a7ea4e94d848468ea1366f5a04e
 msgid "All header values are encoded by network byte order."
 msgstr ""
 
-# 8629b11b961f4d7ebf3ab43b4c004943
 msgid "The following sections describes available values of each header value."
 msgstr ""
 
-# ec9a4b15b8de4df5bb9b340b436504c9
 msgid "The total size of GQTP header is 24byte."
 msgstr ""
 
-# 6dc74e8a2c57468b8a1c2dbc424bd038
 msgid "The value is always ``0xc7`` in both request and response GQTP header."
 msgstr ""
 
-# 1c1597c6eeeb402f8bbbe452ff88c3eb
 msgid "The value is one of the following values:"
 msgstr ""
 
-# d4dd27c2e2f14f61ada5ccfeee4e5e18
-# a4ca3df8a4d74983a671d1379fe4d3ba
 msgid "Value"
 msgstr ""
 
-# 5713008b6664468588c21eeb64252a46
 msgid "0"
 msgstr ""
 
-# 9a853d2aca5d44a4b99368f0bea4c6f3
 msgid "Free format."
 msgstr ""
 
-# 4d1a44b2080c4ef58d1c4f5d8ea76d22
 msgid "``NONE``"
 msgstr ""
 
-# 5013c3b28877412d876d135673f5905e
 msgid "1"
 msgstr ""
 
-# c60fccae9cae4fc09435bd257d867eb2
 msgid "Tab Separated Values."
 msgstr ""
 
-# 5efecabf5ed94730bf4ef258fb3949be
 msgid "``TSV``"
 msgstr ""
 
-# 70f34e8fc6064babbf535d0ed4d624a7
 msgid "2"
 msgstr ""
 
-# c04f79a5de2e4577bedfc48298d52b75
 msgid "JSON."
 msgstr ""
 
-# 7d117baade3a43dd85952eb36757e1fe
 msgid "``JSON``"
 msgstr ""
 
-# 6d9994c69e87420fb7c35da41b2ec2cf
 msgid "3"
 msgstr ""
 
-# 2fb645ad661b456a86abbf97d927c81e
 msgid "XML."
 msgstr ""
 
-# f387e73cca9e4955a45f4bb850ac0680
 msgid "``XML``"
 msgstr ""
 
-# ad168999dcf845afba44a5e892913b60
 msgid "4"
 msgstr ""
 
-# 0808d6880109467f86fe652fbd284731
 msgid "MessagePack."
 msgstr ""
 
-# 81baaa5d64c040dfa65c8e9446ecc178
 msgid "``MSGPACK``"
 msgstr ""
 
-# 2d7b95e6a449473fac9cdb2bb261b371
 msgid "This is not used in request GQTP header."
 msgstr ""
 
-# 3ca8e23598454eec9c76e7467f6a6c99
 msgid ""
 "This is used in response GQTP header. Body is formatted as specified type."
 msgstr ""
 
-# 3f840330700742c2b1d13fd9300e96fa
 msgid "The value is bitwise OR of the following values:"
 msgstr ""
 
-# f54fa0a23e184f6aa0a3ffc2446284a5
 msgid "0x01"
 msgstr ""
 
-# 2905d1b4fe30465f8b460d9ef0fea840
 msgid "There are more data."
 msgstr ""
 
-# fe75e7c5d68548b8ae3d32bf402f1eab
 msgid "``MORE``"
 msgstr ""
 
-# 0e8ca553654a448cb51db131812c3f82
 msgid "0x02"
 msgstr ""
 
-# fc713d7cc5704e4e8fa6a0efbc44c8ac
 msgid "There are no more data."
 msgstr ""
 
-# aa84c4b74ed946d983137ffe8a875522
 msgid "``TAIL``"
 msgstr ""
 
-# 79225cf175234c40b54791a923e2fd74
 msgid "0x04"
 msgstr ""
 
-# 72fc2b48d88c452b9accd1374460a969
 msgid "``HEAD``"
 msgstr ""
 
-# a18f9b9bf1214c1daefae18f2deb6c63
 msgid "0x08"
 msgstr ""
 
-# 66693fbea32c47089f05c6de2ae7ffbb
 msgid "Be quiet."
 msgstr ""
 
-# 9f1a192974794f6cb95b7a7e7defd22e
 msgid "``QUIET``"
 msgstr ""
 
-# d8dc20049ca940bba71e068a78eabcad
 msgid "0x10"
 msgstr ""
 
-# 332111caeb4b4cd4af384214c7ac7742
 msgid "Quit."
 msgstr ""
 
-# df5c90af9e744cd0a19ea1cb00a19baa
 msgid "``QUIT``"
 msgstr ""
 
-# abae9a40cdf9438aa415761fce83e296
 msgid "You must specify ``MORE`` or ``TAIL`` flag."
 msgstr ""
 
-# b0ee06152b44409daf33458ecdda6c9f
 msgid ""
 "If you use ``MORE`` flag, you should also use ``QUIET`` flag. Because you "
 "don't need to show a response for your partial request."
 msgstr ""
 
-# 6a63449624274627ad19739f2c116ce1
 msgid "Use ``QUIT`` flag to quit this session."
 msgstr ""
 
-# 258b8396f5e4409cbe9e58b677c4c106
 msgid ""
 "Here are available values. The new statuses will be added in the future."
 msgstr ""
 
-# 7cca57bad1434bb3b9551ed7daa9a1b3
 msgid "0: ``SUCCESS``"
 msgstr ""
 
-# 3d2b3f1d589a4b2ebc4c380234ab391b
 msgid "1: ``END_OF_DATA``"
 msgstr ""
 
-# c584e0438ae04ac79ccc20acac9577a7
 msgid "65535: ``UNKNOWN_ERROR``"
 msgstr ""
 
-# 221849f7b14542379cc92c5141683702
 msgid "65534: ``OPERATION_NOT_PERMITTED``"
 msgstr ""
 
-# 6a8b6d431d084e04a978babe1d18d39c
 msgid "65533: ``NO_SUCH_FILE_OR_DIRECTORY``"
 msgstr ""
 
-# 41b7130b74ab47eeaac4974b1ca72ef8
 msgid "65532: ``NO_SUCH_PROCESS``"
 msgstr ""
 
-# b7bafea0b0f44d47b28851210fd22749
 msgid "65531: ``INTERRUPTED_FUNCTION_CALL``"
 msgstr ""
 
-# c9a5bae02115493caf8b270166f01ded
 msgid "65530: ``INPUT_OUTPUT_ERROR``"
 msgstr ""
 
-# a2c5a894000144c5866ea0c05b01b68d
 msgid "65529: ``NO_SUCH_DEVICE_OR_ADDRESS``"
 msgstr ""
 
-# 34351ef089884ccc9ca53ef387bc16ad
 msgid "65528: ``ARG_LIST_TOO_LONG``"
 msgstr ""
 
-# f3c4d0e794d44d82b738b9684500c9e7
 msgid "65527: ``EXEC_FORMAT_ERROR``"
 msgstr ""
 
-# ce2d5e70a94740b388a1c9340d82b7ce
 msgid "65526: ``BAD_FILE_DESCRIPTOR``"
 msgstr ""
 
-# 67e8dd6d84cf4f9f8f270cf641267b0c
 msgid "65525: ``NO_CHILD_PROCESSES``"
 msgstr ""
 
-# 6247d82177b24e5b8d0dc90f89e207d2
 msgid "65524: ``RESOURCE_TEMPORARILY_UNAVAILABLE``"
 msgstr ""
 
-# 6ff5d7d3695440308cb8d003e466f1f3
 msgid "65523: ``NOT_ENOUGH_SPACE``"
 msgstr ""
 
-# d327997e8095419c8eb7e2da2be59ce4
 msgid "65522: ``PERMISSION_DENIED``"
 msgstr ""
 
-# c862dca61fd14ca8ae2ec416490eb592
 msgid "65521: ``BAD_ADDRESS``"
 msgstr ""
 
-# f764663999974f5daaa00a91a4b06c08
 msgid "65520: ``RESOURCE_BUSY``"
 msgstr ""
 
-# a86591fce7d24d6bb648aedb762dc2f2
 msgid "65519: ``FILE_EXISTS``"
 msgstr ""
 
-# a8e842172a0545579244aa7d22f7f2a7
 msgid "65518: ``IMPROPER_LINK``"
 msgstr ""
 
-# cdf6fe5555c845dbbac2c258bb0aadaf
 msgid "65517: ``NO_SUCH_DEVICE``"
 msgstr ""
 
-# c468d2507afe412dbe8c8a2980fa4c5c
 msgid "65516: ``NOT_A_DIRECTORY``"
 msgstr ""
 
-# 92d0086477b54216bdf9b7902324139e
 msgid "65515: ``IS_A_DIRECTORY``"
 msgstr ""
 
-# 9edeb9267efc4793b541b54421417e58
 msgid "65514: ``INVALID_ARGUMENT``"
 msgstr ""
 
-# 35c914997d2e4e75ad4c7d2123ab9eb1
 msgid "65513: ``TOO_MANY_OPEN_FILES_IN_SYSTEM``"
 msgstr ""
 
-# c7904d5259764dc48829cbdde3c92f83
 msgid "65512: ``TOO_MANY_OPEN_FILES``"
 msgstr ""
 
-# 85c55e562e7249e0af5884dddfae0989
 msgid "65511: ``INAPPROPRIATE_I_O_CONTROL_OPERATION``"
 msgstr ""
 
-# ec8fba2822bd4510a5b04947f07ab18c
 msgid "65510: ``FILE_TOO_LARGE``"
 msgstr ""
 
-# ce6ef94bdebd47e79b4378ad48c28f74
 msgid "65509: ``NO_SPACE_LEFT_ON_DEVICE``"
 msgstr ""
 
-# 73dfb94ace7747f5bb98af6f0cadf3c0
 msgid "65508: ``INVALID_SEEK``"
 msgstr ""
 
-# 2bac53ac0f434e59bb75f8c150ed1e8f
 msgid "65507: ``READ_ONLY_FILE_SYSTEM``"
 msgstr ""
 
-# 384e3c418f2545129245f6b57f313af3
 msgid "65506: ``TOO_MANY_LINKS``"
 msgstr ""
 
-# d8708abd5db5408d8fcebcf53e41b489
 msgid "65505: ``BROKEN_PIPE``"
 msgstr ""
 
-# be1c0ec012764c50bb311334248025de
 msgid "65504: ``DOMAIN_ERROR``"
 msgstr ""
 
-# 5e68b8eb3a1845d2a40b2f8d86b7c1ea
 msgid "65503: ``RESULT_TOO_LARGE``"
 msgstr ""
 
-# b042fc3089cc4d01bf5b7116716c9872
 msgid "65502: ``RESOURCE_DEADLOCK_AVOIDED``"
 msgstr ""
 
-# 2cde10adff0146d8969eb1f4ae8dcc72
 msgid "65501: ``NO_MEMORY_AVAILABLE``"
 msgstr ""
 
-# 4454c8c7c2fc4a29bbee57bf5e56c1b3
 msgid "65500: ``FILENAME_TOO_LONG``"
 msgstr ""
 
-# d039cf8762664538bc7096a3fd4d0288
 msgid "65499: ``NO_LOCKS_AVAILABLE``"
 msgstr ""
 
-# 34fe3c9713e747d3981621fc6275b494
 msgid "65498: ``FUNCTION_NOT_IMPLEMENTED``"
 msgstr ""
 
-# c338643421624201ac74a7b43cf993c7
 msgid "65497: ``DIRECTORY_NOT_EMPTY``"
 msgstr ""
 
-# c1f94f4f5c2745eca995a7e97bd41f28
 msgid "65496: ``ILLEGAL_BYTE_SEQUENCE``"
 msgstr ""
 
-# 7ecf2fa850494bdbbffccb395b8bc9e5
 msgid "65495: ``SOCKET_NOT_INITIALIZED``"
 msgstr ""
 
-# 8e47860bec784e7cb13975c88428b813
 msgid "65494: ``OPERATION_WOULD_BLOCK``"
 msgstr ""
 
-# 1cd9f50785824a4f8a4e0d5ddb5e0f5c
 msgid "65493: ``ADDRESS_IS_NOT_AVAILABLE``"
 msgstr ""
 
-# 13f37c4ddf9945648a8b96bfca721d70
 msgid "65492: ``NETWORK_IS_DOWN``"
 msgstr ""
 
-# 4dceaefc4b574f54a7ead914b20f9f53
 msgid "65491: ``NO_BUFFER``"
 msgstr ""
 
-# ccbd349c948948b68131a58d1d7a431a
 msgid "65490: ``SOCKET_IS_ALREADY_CONNECTED``"
 msgstr ""
 
-# 76b17bcdf2f745dcaa296b60e7930063
 msgid "65489: ``SOCKET_IS_NOT_CONNECTED``"
 msgstr ""
 
-# 742c4c7a5e95491bbd18252e0509335c
 msgid "65488: ``SOCKET_IS_ALREADY_SHUTDOWNED``"
 msgstr ""
 
-# e5ae6849962447afab12069a4abd2001
 msgid "65487: ``OPERATION_TIMEOUT``"
 msgstr ""
 
-# 343248a965724576943c0a30113e9ce2
 msgid "65486: ``CONNECTION_REFUSED``"
 msgstr ""
 
-# e9a9d37b4a2d4d43b0ffd491460a487e
 msgid "65485: ``RANGE_ERROR``"
 msgstr ""
 
-# 4b70e159c9804529a8874f09dfaeaebc
 msgid "65484: ``TOKENIZER_ERROR``"
 msgstr ""
 
-# 1567bc6e0e3448e3981e31b2b1872bc9
 msgid "65483: ``FILE_CORRUPT``"
 msgstr ""
 
-# 721f9ab87468441d9d5f9aaf8203a6af
 msgid "65482: ``INVALID_FORMAT``"
 msgstr ""
 
-# 0f9179c671814fc48c9d4c6fbd37586e
 msgid "65481: ``OBJECT_CORRUPT``"
 msgstr ""
 
-# fae8471565d14ca4a14a4dd52c70879e
 msgid "65480: ``TOO_MANY_SYMBOLIC_LINKS``"
 msgstr ""
 
-# 8ed6e3f6384944c3ae1dcc51620cd024
 msgid "65479: ``NOT_SOCKET``"
 msgstr ""
 
-# 302fa28c38734543afadd812a29aae61
 msgid "65478: ``OPERATION_NOT_SUPPORTED``"
 msgstr ""
 
-# ff0d1707e9024b22ba3c202ae15eaef1
 msgid "65477: ``ADDRESS_IS_IN_USE``"
 msgstr ""
 
-# a5f4b255eb034367a925516afb833fe9
 msgid "65476: ``ZLIB_ERROR``"
 msgstr ""
 
-# c6d9fd44a4f446df99f08ba628745c05
 msgid "65475: ``LZO_ERROR``"
 msgstr ""
 
-# 5ea89f1b8fd149ff9010c5982e20e99d
 msgid "65474: ``STACK_OVER_FLOW``"
 msgstr ""
 
-# 36c4817fcc764ec3b76d341b4083f393
 msgid "65473: ``SYNTAX_ERROR``"
 msgstr ""
 
-# 2c8fa701d9d6491db99ed62820b0b679
 msgid "65472: ``RETRY_MAX``"
 msgstr ""
 
-# ec8a409cf09d4fb2a4d7aefffa6734ea
 msgid "65471: ``INCOMPATIBLE_FILE_FORMAT``"
 msgstr ""
 
-# e7f105a7dd8e4683af412c3f71c1cd71
 msgid "65470: ``UPDATE_NOT_ALLOWED``"
 msgstr ""
 
-# 6f852dbad2b641559aa676b205b13519
 msgid "65469: ``TOO_SMALL_OFFSET``"
 msgstr ""
 
-# fa7dff1ae291420e933948e4b8bc4f18
 msgid "65468: ``TOO_LARGE_OFFSET``"
 msgstr ""
 
-# 8e528e61050e4327b1c26d2e103f2bd6
 msgid "65467: ``TOO_SMALL_LIMIT``"
 msgstr ""
 
-# 931cd00768e34f37b54dd4f72e7f00d8
 msgid "65466: ``CAS_ERROR``"
 msgstr ""
 
-# d7f00413ea104bf8a43ef56b692a8058
 msgid "65465: ``UNSUPPORTED_COMMAND_VERSION``"
 msgstr ""
 
-# 34643f82a2bf49feb59a5cc5ac76c377
 msgid ""
 "The size of body. The maximum body size is 4GiB because ``size`` is 4byte "
 "unsigned integer. If you want to send 4GiB or more larger data, use ``MORE`` "
 "flag."
 msgstr ""
 
-# 34eb2a6c1f1c46e889cc8b6101ad3c67
 msgid "Example"
 msgstr ""
 
-# 9228e2bbfbbc49a2ade9cbb587cd5c4c
-# 91062dab1bb449e4b01dd02e0ae8696f
 msgid "TODO"
 msgstr ""
 
-# f43548e504324e9e837240a59af5c943
 msgid "See also"
 msgstr ""
 
-# 728d32d9dce9424c91a0fd9016cf48a8
 msgid "検索"
 msgstr "検索"
 
-# 1728b3cf62d344df9cdc9b329b150b13
 msgid ""
 ":doc:`/reference/commands/select` コマンドがqueryパラメータを使ってどのように"
 "検索するのかを説明します。"
@@ -683,31 +506,22 @@ msgstr ""
 ":doc:`/reference/commands/select` コマンドがqueryパラメータを使ってどのように"
 "検索するのかを説明します。"
 
-# f29fe82eb9b2422c87509f9cffc05031
 msgid "検索の挙動"
 msgstr "検索の挙動"
 
-# a7699f18272340ce8d5e8b363a6d437d
 msgid "検索の挙動には以下の3種類あり、検索結果によって動的に使い分けています。"
 msgstr ""
 "検索の挙動には以下の3種類あり、検索結果によって動的に使い分けています。"
 
-# 5bdcf955bfae429691cf832ca4861796
-# 93ba91c2b19546e29b839c610e9dd24b
 msgid "完全一致検索"
 msgstr "完全一致検索"
 
-# 6c7a2fe65ce24f478678e74544281960
-# f40bc442cc2641ec9d01fd75a85e63d8
 msgid "非わかち書き検索"
 msgstr "非わかち書き検索"
 
-# 636b332de19c4de5b9286e9e2604f9d9
-# 8ea30e996d0f4ccb9525cbddcbcae62c
 msgid "部分一致検索"
 msgstr "部分一致検索"
 
-# ffab14c1e09a4e86b37dd807299249db
 msgid ""
 "どのように検索の挙動を使い分けているかを説明する前に、まず、それぞれの検索の"
 "挙動を説明します。"
@@ -715,7 +529,6 @@ msgstr ""
 "どのように検索の挙動を使い分けているかを説明する前に、まず、それぞれの検索の"
 "挙動を説明します。"
 
-# c2a470aca37b4147be0081acfce63e0c
 msgid ""
 "検索対象文書は複数の語彙にトークナイズ(分割)され、それぞれを単位とした語彙表"
 "に索引を管理します。 検索キーワードも同一の方法でトークナイズされます。"
@@ -723,7 +536,6 @@ msgstr ""
 "検索対象文書は複数の語彙にトークナイズ(分割)され、それぞれを単位とした語彙表"
 "に索引を管理します。 検索キーワードも同一の方法でトークナイズされます。"
 
-# 70023069da6c482ea159de76e03002d3
 msgid ""
 "このとき、検索キーワードをトークナイズした結果得られる語彙の配列と同一の配列"
 "を含む文書を検索する処理を完全一致検索と呼んでいます。"
@@ -731,17 +543,14 @@ msgstr ""
 "このとき、検索キーワードをトークナイズした結果得られる語彙の配列と同一の配列"
 "を含む文書を検索する処理を完全一致検索と呼んでいます。"
 
-# d713c5b5d5bf4e9f97a125afeef8dced
 msgid ""
 "たとえば、TokenMecabトークナイザを使用した索引では「東京都民」という文字列は"
 msgstr ""
 "たとえば、TokenMecabトークナイザを使用した索引では「東京都民」という文字列は"
 
-# 897f6da9094848648866a03bb8c16b1c
 msgid "東京 / 都民"
 msgstr "東京 / 都民"
 
-# bc9f56ee727a4eb0b4b32f66a3e0c31a
 msgid ""
 "という二つの語彙の配列として格納されます。この索引に対して「東京都」という"
 "キーワードで検索した時、このキーワードは、"
@@ -749,11 +558,9 @@ msgstr ""
 "という二つの語彙の配列として格納されます。この索引に対して「東京都」という"
 "キーワードで検索した時、このキーワードは、"
 
-# f994f3f08eda4cbcb30fd686c1dec6ab
 msgid "東京 / 都"
 msgstr "東京 / 都"
 
-# 7375a1f0dc5a41e1b31217e9db3ea6f0
 msgid ""
 "という二つの語彙の配列として処理されます。この語彙の並びは、「東京 / 都民」と"
 "いう語彙の並びには一致しませんので、完全一致検索ではヒットしません。"
@@ -761,7 +568,6 @@ msgstr ""
 "という二つの語彙の配列として処理されます。この語彙の並びは、「東京 / 都民」と"
 "いう語彙の並びには一致しませんので、完全一致検索ではヒットしません。"
 
-# e8d3a43cc0824edaa97a27a8fb0a336f
 msgid ""
 "これに対して、TokenBigramトークナイザを使用した索引では「東京都民」という文字"
 "列は"
@@ -769,11 +575,9 @@ msgstr ""
 "これに対して、TokenBigramトークナイザを使用した索引では「東京都民」という文字"
 "列は"
 
-# 4f344074ba6142f182ecd5e52a4a7f20
 msgid "東京 / 京都 / 都民 / 民"
 msgstr "東京 / 京都 / 都民 / 民"
 
-# c2b88457847b4c478acec044acc2869a
 msgid ""
 "という四つの語彙の配列として格納されます。この索引に対して「東京都」という"
 "キーワードで検索した時、このキーワードは、"
@@ -781,11 +585,9 @@ msgstr ""
 "という四つの語彙の配列として格納されます。この索引に対して「東京都」という"
 "キーワードで検索した時、このキーワードは、"
 
-# 54796e8218b0434489b0e99deff155bf
 msgid "東京 / 京都"
 msgstr "東京 / 京都"
 
-# cfbbcb35012848d2bcb59b0517e3f738
 msgid ""
 "という二つの語彙の配列として処理されます。この語彙の並びは、「東京 / 京都 / "
 "都民」という語彙の並びに含まれますので、完全一致検索でヒットします。"
@@ -793,7 +595,6 @@ msgstr ""
 "という二つの語彙の配列として処理されます。この語彙の並びは、「東京 / 京都 / "
 "都民」という語彙の並びに含まれますので、完全一致検索でヒットします。"
 
-# c30dcf57bb4e4d329ef6a71c9a1a04a8
 msgid ""
 "なお、TokenBigramトークナイザでは、アルファベット・数値・記号文字列については"
 "bigramを生成せず、一つの連続したトークンとして扱います。たとえば、「楽しい"
@@ -803,11 +604,9 @@ msgstr ""
 "bigramを生成せず、一つの連続したトークンとして扱います。たとえば、「楽しい"
 "billiard」という文字列は、"
 
-# 96c0b6611df149659cd697ab43eaf9f1
 msgid "楽し / しい / billiard"
 msgstr "楽し / しい / billiard"
 
-# ad80178fe804440eb1ce2a5671dcb0ce
 msgid ""
 "という三つの語彙の配列として格納されます。これに対して「bill」というキーワー"
 "ドで検索した時、このキーワードは、"
@@ -815,11 +614,9 @@ msgstr ""
 "という三つの語彙の配列として格納されます。これに対して「bill」というキーワー"
 "ドで検索した時、このキーワードは、"
 
-# 12fddb2fff7444cd947796f01211030e
 msgid "bill"
 msgstr "bill"
 
-# 617ec801d5de456db5c1d67ae265ac88
 msgid ""
 "という一つの語彙として処理されます。この語彙の並びは「楽し / しい / "
 "billiard」という語彙の並びには含まれないので、完全一致でヒットしません。"
@@ -827,7 +624,6 @@ msgstr ""
 "という一つの語彙として処理されます。この語彙の並びは「楽し / しい / "
 "billiard」という語彙の並びには含まれないので、完全一致でヒットしません。"
 
-# 5e150b5b85e14797b83db2fc175dce91
 msgid ""
 "これに対して、TokenBigramSplitSymbolAlphaトークナイザではアルファベット文字列"
 "についてもbigramを生成し、「楽しいbilliard」という文字列は、"
@@ -835,11 +631,9 @@ msgstr ""
 "これに対して、TokenBigramSplitSymbolAlphaトークナイザではアルファベット文字列"
 "についてもbigramを生成し、「楽しいbilliard」という文字列は、"
 
-# 54439d77222d4b55ad19977b4b7ba1b7
 msgid "楽し / しい / いb / bi / il / ll / li / ia / ar / rd / d"
 msgstr "楽し / しい / いb / bi / il / ll / li / ia / ar / rd / d"
 
-# 89e59edc3ca84fafa4b99a5a02c141ef
 msgid ""
 "という十一の語彙の配列として格納されます。これに対して「bill」というキーワー"
 "ドで検索した時、このキーワードは、"
@@ -847,11 +641,9 @@ msgstr ""
 "という十一の語彙の配列として格納されます。これに対して「bill」というキーワー"
 "ドで検索した時、このキーワードは、"
 
-# c771dba3556047038857d7a00f9e9ea8
 msgid "bi / il / ll"
 msgstr "bi / il / ll"
 
-# 3737b3b7e9864ef29f8c3d20fa0a0358
 msgid ""
 "という三つの語彙として処理されます。この語彙の並びは「楽し / しい / いb / "
 "bi / il / ll / li / ia / ar / rd / d」という語彙の並びに含まれるので、完全一"
@@ -861,13 +653,11 @@ msgstr ""
 "bi / il / ll / li / ia / ar / rd / d」という語彙の並びに含まれるので、完全一"
 "致でヒットします。"
 
-# 70384833e1c54099aa0f9c53a5d5fb05
 msgid ""
 "非わかち書き検索はパトリシア木で語彙表を構築している場合のみ利用可能です。"
 msgstr ""
 "非わかち書き検索はパトリシア木で語彙表を構築している場合のみ利用可能です。"
 
-# 16beb563d287414ca2fe1ba003a50264
 msgid ""
 "非わかち書き検索の挙動はTokenBigramなどN-gram系のトークナイザーを利用している"
 "場合とTokenMecabトークナイザーを利用している場合で挙動が変わります。"
@@ -875,7 +665,6 @@ msgstr ""
 "非わかち書き検索の挙動はTokenBigramなどN-gram系のトークナイザーを利用している"
 "場合とTokenMecabトークナイザーを利用している場合で挙動が変わります。"
 
-# e52c1131ceaf41faa2f679d47f923934
 msgid ""
 "N-gram系のトークナイザーを利用している場合はキーワードで前方一致検索をしま"
 "す。"
@@ -883,7 +672,6 @@ msgstr ""
 "N-gram系のトークナイザーを利用している場合はキーワードで前方一致検索をしま"
 "す。"
 
-# 3b6ffdd5bfe3456fa1fef7b2f1ce7572
 msgid ""
 "例えば、「bill」というキーワードで検索した場合、「bill」も「billiard」もヒッ"
 "トします。"
@@ -891,7 +679,6 @@ msgstr ""
 "例えば、「bill」というキーワードで検索した場合、「bill」も「billiard」もヒッ"
 "トします。"
 
-# 96ae599c1ac341839e956ad1e70af717
 msgid ""
 "TokenMeCabトークナイザーの場合はわかち書き前のキーワードで前方一致検索をしま"
 "す。"
@@ -899,7 +686,6 @@ msgstr ""
 "TokenMeCabトークナイザーの場合はわかち書き前のキーワードで前方一致検索をしま"
 "す。"
 
-# 453cbc829e724e3087f083b114aa04fd
 msgid ""
 "例えば、「スープカレー」というキーワードで検索した場合、「スープカレーバー」"
 "(1単語扱い)にヒットしますが、「スープカレー」(\"スープ\"と\"カレー\"の2単"
@@ -911,7 +697,6 @@ msgstr ""
 "語扱い)や「スープカレーライス」(\"スープ\"と\"カレーライス\"の2単語扱い)に"
 "はヒットしません。"
 
-# b223646328354061a127205742d48d81
 msgid ""
 "部分一致検索はパトリシア木で語彙表を構築していて、かつ、KEY_WITH_SISオプショ"
 "ンを指定している場合のみ利用可能です。KEY_WITH_SISオプションが指定されていな"
@@ -921,7 +706,6 @@ msgstr ""
 "ンを指定している場合のみ利用可能です。KEY_WITH_SISオプションが指定されていな"
 "い場合は非わかち書き検索と同等です。"
 
-# 0b2a8dce7c2a4e64b0f0d9d2c4f86264
 msgid ""
 "部分一致検索の挙動はTokenBigramなどN-gram系のトークナイザーを利用している場合"
 "とTokenMecabトークナイザーを利用している場合で挙動が変わります。"
@@ -929,11 +713,9 @@ msgstr ""
 "部分一致検索の挙動はTokenBigramなどN-gram系のトークナイザーを利用している場合"
 "とTokenMecabトークナイザーを利用している場合で挙動が変わります。"
 
-# 396daf2f86fc401f8e9518041ba5c18d
 msgid "Bigramの場合は前方一致検索と中間一致検索と後方一致検索を行います。"
 msgstr "Bigramの場合は前方一致検索と中間一致検索と後方一致検索を行います。"
 
-# f1ad0755145844c686cc786a3ea1e77e
 msgid ""
 "例えば、「ill」というキーワードで検索した場合、「bill」も「billiard」もヒット"
 "します。"
@@ -941,7 +723,6 @@ msgstr ""
 "例えば、「ill」というキーワードで検索した場合、「bill」も「billiard」もヒット"
 "します。"
 
-# 9c9cdf179e784df68de7cc2d8c268236
 msgid ""
 "TokenMeCabトークナイザーの場合はわかち書き後のキーワードで前方一致検索と中間"
 "一致検索と後方一致検索をします。"
@@ -949,7 +730,6 @@ msgstr ""
 "TokenMeCabトークナイザーの場合はわかち書き後のキーワードで前方一致検索と中間"
 "一致検索と後方一致検索をします。"
 
-# 142a027c208d490db83a70349da953dc
 msgid ""
 "例えば、「スープカレー」というキーワードで検索した場合、「スープカレー」"
 "(\"スープ\"と\"カレー\"の2単語扱い)や「スープカレーライス」(\"スープ\"と"
@@ -961,11 +741,9 @@ msgstr ""
 "\"カレーライス\"の2単語扱い)、「スープカレーバー」(1単語扱い)にもヒットし"
 "ます。"
 
-# bdbb6c659aa249daad729d09677bcd8d
 msgid "検索の使い分け"
 msgstr "検索の使い分け"
 
-# db0fdf95b7c54e5dbafc79d355a71089
 msgid ""
 "groongaは基本的に完全一致検索のみを行います。完全一致検索でのヒット件数が所定"
 "の閾値以下の場合に限り、非わかち書き検索を行い、それでもヒット件数が閾値以下"
@@ -975,7 +753,6 @@ msgstr ""
 "の閾値以下の場合に限り、非わかち書き検索を行い、それでもヒット件数が閾値以下"
 "の場合は部分一致検索を行います。(閾値のデフォルト値は0です。)"
 
-# 4b3d05200f7441df86b0772b9f8f95cd
 msgid ""
 "ただし、すでに検索結果セットが存在する場合はたとえヒット件数が閾値以下でも完"
 "全一致検索のみを行います。"
@@ -983,7 +760,6 @@ msgstr ""
 "ただし、すでに検索結果セットが存在する場合はたとえヒット件数が閾値以下でも完"
 "全一致検索のみを行います。"
 
-# e54e352429d34ca1bf4ae1cd0aed4fc5
 msgid ""
 "例えば、以下のようなクエリの場合は、それぞれの検索でヒット件数が閾値以下の場"
 "合は完全一致検索、非わかち書き検索、部分一致検索を順に行います。::"
@@ -991,7 +767,6 @@ msgstr ""
 "例えば、以下のようなクエリの場合は、それぞれの検索でヒット件数が閾値以下の場"
 "合は完全一致検索、非わかち書き検索、部分一致検索を順に行います。::"
 
-# 660e16ae01b04b29ade8aa14f772caab
 msgid ""
 "しかし、以下のように全文検索を行う前に検索結果セットが存在する場合は完全一致"
 "検索のみを行います。(point > 3で閾値の件数よりヒットしている場合)::"
@@ -999,7 +774,6 @@ msgstr ""
 "しかし、以下のように全文検索を行う前に検索結果セットが存在する場合は完全一致"
 "検索のみを行います。(point > 3で閾値の件数よりヒットしている場合)::"
 
-# 4d23e6c1d44b46b0964ebdde68ad7d6f
 msgid ""
 "そのため、descriptionに「スープカレーライス」が含まれていても、「スープカレー"
 "ライス」は「スープカレー」に完全一致しないのでヒットしません。"

  Modified: doc/locale/en/LC_MESSAGES/suggest.po (+0 -239)
===================================================================
--- doc/locale/en/LC_MESSAGES/suggest.po    2014-01-23 18:04:29 +0900 (4897ca4)
+++ doc/locale/en/LC_MESSAGES/suggest.po    2014-01-23 19:01:31 +0900 (f8a9297)
@@ -17,17 +17,12 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-# 18ccb939e32a4e2cbe6b1cb1f7b03311
-# f764b75178a9489b8988553a2f5b9382
-# 73d5d1dd7b4b49d49c5dfd397bea0c29
 msgid "Execution example::"
 msgstr "Execution example::"
 
-# dc17a543dc134a95886ce1f76bdea098
 msgid "Suggest"
 msgstr "Suggest"
 
-# b035af1037d9463c91f363338c6c4221
 msgid ""
 "Groonga has the suggest feature. This section describes how to use it and "
 "how it works."
@@ -35,64 +30,36 @@ msgstr ""
 "Groonga has the suggest feature. This section describes how to use it and "
 "how it works."
 
-# 904cfe69b3884c97a2d81071f3efa5a8
-# 95e1eba7e5b24b9e91dc47db8da9c08e
-# 18f5684f72f84508aeec83fbb3302fac
 msgid "Completion"
 msgstr "Completion"
 
-# 9862c74d02de46dda2b65a3b3066d986
-# 7eb573b78cce42b7823193fb4444c509
 msgid "This section describes about the following completion features:"
 msgstr "This section describes about the following completion features:"
 
-# 5de78e1799a44cd3b15fafa86d21c9ad
-# 3e943fa5b5da4d569f87ab917bb7cc43
-# d6bfbf04501245a08bb480d2563edc93
-# 164120ad3a8b43d591056287b5c3e621
-# dfd371ba606b4896be1a0d5a02fc0cff
-# 2cf41f12bbb64e9ca49a53436318529d
 msgid "How it works"
 msgstr "How it works"
 
-# f4f3e96a58864ed69673fbeaa25ff54b
-# 75e83fdee301466093ddb90af5243e23
-# 923c8490b8ae468da771caaeff6a17bb
-# 1a3ad966e90d4caea4883bbf623870b4
-# 89f648af3c354cdbb1436c1623aca64e
-# 14aa015c2bb140f1b6d775597146e5b6
 msgid "How to use"
 msgstr "How to use"
 
-# 988473af475e48e28734a8b8dc457459
-# 2f5a32338e3742feb5d3bebc3f4701eb
-# f2a0102a7287495ea812b5d150c9bcb3
 msgid "How to learn"
 msgstr "How to learn"
 
-# 6403bbf5b90f4a03a2f6f54ae10ff824
 msgid "The completion feature uses three searches to compute completed words:"
 msgstr "The completion feature uses three searches to compute completed words:"
 
-# a37577bdcf6b4c3aad54bee2d0dcbc86
 msgid "Prefix RK search against registered words."
 msgstr "Prefix RK search against registered words."
 
-# 3cc2b4b6d8924fdaa8df6e06b77e1196
-# 6e00cd2ad6b84509aa3383ba22ae802f
-# 41ebfb25b35b43edac4a811aec7d528b
 msgid "Cooccurrence search against learned data."
 msgstr "Cooccurrence search against learned data."
 
-# 786a68b6b7ac4ab8a4762e6fdf5e71d6
 msgid "Prefix search against registered words. (optional)"
 msgstr "Prefix search against registered words. (optional)"
 
-# 863d8566c6434b31b74fccc9ae7ef7a1
 msgid "Prefix RK search"
 msgstr "Prefix RK search"
 
-# 92d9dc9e812049878af637b25f0cecba
 msgid ""
 "RK means Romaji and Katakana. Prefix RK search can find registered words "
 "that start with user's input by romaji, katakana or hiragana. It's useful "
@@ -102,7 +69,6 @@ msgstr ""
 "that start with user's input by romaji, katakana or hiragana. It's useful "
 "for searching in Japanese."
 
-# a31c3f35c2454a9dbb9375b70c384679
 msgid ""
 "For example, there is a registered word \"日本\". And \"ニホン\" (it must be "
 "katakana) is registered as its reading. An user can find \"日本\" by \"ni\", "
@@ -112,7 +78,6 @@ msgstr ""
 "katakana) is registered as its reading. An user can find \"日本\" by \"ni\", "
 "\"二\" or \"に\"."
 
-# 172578ccd5474089a2f235d1bea053df
 msgid ""
 "If you create dataset which is named as example by :doc:`/reference/"
 "executables/groonga-suggest-create-dataset` command, you can update pairs of "
@@ -120,13 +85,9 @@ msgid ""
 "of item_example table explicitly for prefix RK search."
 msgstr ""
 
-# a5f65e05145b4d60b38dd7eefad51c8b
-# 6eb756c568e44a709f0ea8000f37bd3a
-# b862608a22ac41cd8df1b11af45df6ae
 msgid "Cooccurrence search"
 msgstr "Cooccurrence search"
 
-# 2b9b7d9ac9f44acc95f443de7ea3fc17
 msgid ""
 "Cooccurrence search can find registered words from user's partial input. It "
 "uses user input sequences that will be learned from query logs, access logs "
@@ -136,135 +97,69 @@ msgstr ""
 "uses user input sequences that will be learned from query logs, access logs "
 "and so on."
 
-# 875dc0005e64414ab699b5b58231d5b2
 msgid "For example, there is the following user input sequence:"
 msgstr "For example, there is the following user input sequence:"
 
-# 56c5bf6a77374e5682e0deb9f6318923
-# 0ebfdb508b7445da8c0c4ca21c365f75
-# 9bc1ab954fef45ad90d250c09dd71da7
-# 63dc97eaf22f4edc8ed9bf47746f375f
 msgid "input"
 msgstr "input"
 
-# 69c21347f33e41caabad9033263a72cb
 msgid "submit"
 msgstr "submit"
 
-# 1e4aebbc3a914c08a4e1eecd92db93d3
-# 29412b818e474c7c8dc1c498c850105d
-# d2daa42889e8461ea0eedb746503dd08
-# de5ac15fd8274eddafbe948f9fe4b298
-# 059484b244734036a89a6dfa91d4d965
-# b935d43799134d66bec417e614e2ef08
-# 9091f3003e6d4fb2a039f525ce56be9b
-# 5acd8f330924455db4ede75e6e1c59d5
-# f874e25f274a4100a658df5d5d540c0d
-# 3d576a0400814cd586a98da51c4c6d1c
-# b5ccf1387baa4423bbaa866ab31d5732
 msgid "no"
 msgstr "no"
 
-# ee2da7fbfd4344f797a73de63c01bff9
-# c80c62ffb5ce40d0b7cd1a20251b6356
 msgid "s"
 msgstr "s"
 
-# 6f8fe003aecb4da69c930c6ff77e6169
-# f0ca1b37415b42cb9f4b5c92d82c8025
 msgid "se"
 msgstr "se"
 
-# 71e5361d6f4346a49bb66e9bdb86d36c
-# 4c5b8f48221c48ea9d4db19ba8a52656
 msgid "sea"
 msgstr "sea"
 
-# 81a2881d4666442b81335f1cc0d17bad
-# eef58e920bbf46e292acb10028a6e2f1
 msgid "sear"
 msgstr "sear"
 
-# 7072c9e36bfd42d7ac6ae8e86604f160
-# 57ca69907405455b963bd52ee883fee2
 msgid "searc"
 msgstr "searc"
 
-# 15026723218f4c599e77ee8cef7f1a39
-# 74f9b91ac3a04848af978f4ceaaf9f4a
-# e7b3db48931f498cb5ce3d5c28488716
-# db0b3796c6834071b70290029fb256e0
-# df616750858d44c9af48a9c9fdf74285
-# 49bd6dd46c9e45c3a82b7531be83e01d
-# 0f17c83aafef4bbb84b2ac509788f876
-# 765514db1d0a496180538bda2f86d1ba
-# fa2d94270f8c4e4e98809136b872edeb
-# 4c0e6aecfad8475b92e9650e57373d2c
 msgid "search"
 msgstr "search"
 
-# 1f3708e294ff4e1ea766a5b78cb3a54f
-# 2b898c7e04cb49868ddc365a4eda512f
 msgid "yes"
 msgstr "yes"
 
-# 37b4e60748d84801bab64547a5e9a52d
-# 62b0966283254f62ba4bcc7b1c53a2cb
 msgid "e"
 msgstr "e"
 
-# 3188f8848b134c288b88a451568878bb
-# 8188d41a8fb849378252706dfe1ff660
 msgid "en"
 msgstr "en"
 
-# 266f6030f5444f8a99712607ba96c1b7
-# 99cd04370caf42ab8e69544c00dfc7da
 msgid "eng"
 msgstr "eng"
 
-# 00a9b79e63df4cbd815f6eca6e24548a
-# 7f1b0275f6f6487385ee091e0e26f9ef
 msgid "engi"
 msgstr "engi"
 
-# 28f14354c675400e88d11028bca3b446
-# 56a298efdc08449d8ea744d5f5dc85f4
 msgid "engin"
 msgstr "engin"
 
-# 49e0f7ff74074cd999db5906be569d94
-# 6efc999e1e58442f889c0dd3add97f48
-# dce37b552e224b6bbc8c5eb6638e56b4
-# 1ae8dea28724429caaa2fdb8a604c9e5
-# e1df33a5e22d46f780dfd56bf426bf61
-# 86c786005f0e4aaa9b6fcf4f3fd4105b
-# 3c5e36f52eab4339bdd8d33c7910a267
-# 25c74a960bf04444aaf6a243c77c49a2
-# 6e5f4bf27c3844818290da35423b78c1
-# 5348e063afbc43039f042506cbb82dd5
-# 027ac73ec1d349999b076f274704f84a
 msgid "engine"
 msgstr "engine"
 
-# 8f29c2da2d524f0589bd48a74942d316
-# 043f8f889f834457a377da1fbe81ce8a
 msgid "enginen"
 msgstr "enginen"
 
-# 0a987ab983c74cde9661f8445cac307a
 msgid "no (typo!)"
 msgstr "no (typo!)"
 
-# a8ac0a8d1fdb4ce4aee83dc46a904414
 msgid "Groonga creates the following completion pairs:"
 msgstr "Groonga creates the following completion pairs:"
 
-# 4c106a2bae8b4b1189dbd7911c744f64
 msgid "completed word"
 msgstr "completed word"
 
-# 16c1b0f866c1454c9ed8c22e37aaf9e0
 msgid ""
 "All user not-submitted inputs (e.g. \"s\", \"se\" and so on) before each an "
 "user submission maps to the submitted input (e.g. \"search\")."
@@ -272,7 +167,6 @@ msgstr ""
 "All user not-submitted inputs (e.g. \"s\", \"se\" and so on) before each an "
 "user submission maps to the submitted input (e.g. \"search\")."
 
-# 9640feab8f1c43f0bdae5dffbc0275bb
 msgid ""
 "To be precise, this description isn't correct because it omits about time "
 "stamp. Groonga doesn't case about \"all user not-submitted inputs before "
@@ -286,7 +180,6 @@ msgstr ""
 "inputs within a minute from an user submission before each an user submission"
 "\". Groonga doesn't treat user inputs before a minute ago."
 
-# 74951fcd75494ec8bba4d990ae9b2bac
 msgid ""
 "If an user inputs \"sea\" and cooccurrence search returns \"search\" because "
 "\"sea\" is in input column and corresponding completed word column value is "
@@ -296,11 +189,9 @@ msgstr ""
 "\"sea\" is in input column and corresponding completed word column value is "
 "\"search\"."
 
-# 6693dff773f04d628d769e2e62ce4c76
 msgid "Prefix search"
 msgstr "Prefix search"
 
-# 0a77ca6bf58b4c1688a7a03e7fddb227
 msgid ""
 "Prefix search can find registered word that start with user's input. This "
 "search doesn't care about romaji, katakana and hiragana not like Prefix RK "
@@ -310,7 +201,6 @@ msgstr ""
 "search doesn't care about romaji, katakana and hiragana not like Prefix RK "
 "search."
 
-# 49540df908354aa18f46484900b61853
 msgid ""
 "This search isn't always ran. It's just ran when it's requested explicitly "
 "or both prefix RK search and cooccurrence search return nothing."
@@ -318,7 +208,6 @@ msgstr ""
 "This search isn't always ran. It's just ran when it's requested explicitly "
 "or both prefix RK search and cooccurrence search return nothing."
 
-# 4f39afc82a1f4234ac28c47bb285db7a
 msgid ""
 "For example, there is a registered word \"search\". An user can find \"search"
 "\" by \"s\", \"se\", \"sea\", \"sear\", \"searc\" and \"search\"."
@@ -326,7 +215,6 @@ msgstr ""
 "For example, there is a registered word \"search\". An user can find \"search"
 "\" by \"s\", \"se\", \"sea\", \"sear\", \"searc\" and \"search\"."
 
-# 93f96315fe1d40a3924951da0917775d
 msgid ""
 "Groonga provides :doc:`/reference/commands/suggest` command to use "
 "completion. `--type complete` option requests completion."
@@ -334,18 +222,12 @@ msgstr ""
 "Groonga provides :doc:`/reference/commands/suggest` command to use "
 "completion. `--type complete` option requests completion."
 
-# 0fced15b44134f868a9cd404648ec155
 msgid "For example, here is an command to get completion results by \"en\":"
 msgstr "For example, here is an command to get completion results by \"en\":"
 
-# 2ae87c2080374de795eb86993cadb098
-# 3f3480cdbb774e019f27883d430daebb
-# c4caa156c83b4fb69cc93b3de46c15f0
 msgid "How it learns"
 msgstr "How it learns"
 
-# 7feedf1c1e0a4be48295967de84962e4
-# d1e2e72b909b4556b2cb6d3ebffae7ac
 msgid ""
 "Cooccurrence search uses learned data. They are based on query logs, access "
 "logs and so on. To create learned data, groonga needs user input sequence "
@@ -355,8 +237,6 @@ msgstr ""
 "logs and so on. To create learned data, groonga needs user input sequence "
 "with time stamp and user submit input with time stamp."
 
-# 52c74988b22849ddb333e997dd95bf0f
-# 21003e48476f4fa88fc614455169123c
 msgid ""
 "For example, an user wants to search by \"engine\". The user inputs the "
 "query with the following sequence:"
@@ -364,113 +244,87 @@ msgstr ""
 "For example, an user wants to search by \"engine\". The user inputs the "
 "query with the following sequence:"
 
-# 503fa2cf3a834b32ba8584910858cd7c
 msgid "2011-08-10T13:33:23+09:00: e"
 msgstr "2011-08-10T13:33:23+09:00: e"
 
-# d05ad9d6457d450eab5ead6971b659fe
 msgid "2011-08-10T13:33:23+09:00: en"
 msgstr "2011-08-10T13:33:23+09:00: en"
 
-# fa77380a62b148f4a11b75a2117436c5
 msgid "2011-08-10T13:33:24+09:00: eng"
 msgstr "2011-08-10T13:33:24+09:00: eng"
 
-# f1806cf3cf394f23bcb7a45815abbdad
 msgid "2011-08-10T13:33:24+09:00: engi"
 msgstr "2011-08-10T13:33:24+09:00: engi"
 
-# ebb9a1b938cd44288f60179fa97a7c5b
 msgid "2011-08-10T13:33:24+09:00: engin"
 msgstr "2011-08-10T13:33:24+09:00: engin"
 
-# 36c10905789246638dc807f4676e3963
 msgid "2011-08-10T13:33:25+09:00: engine (submit!)"
 msgstr "2011-08-10T13:33:25+09:00: engine (submit!)"
 
-# 4c9077ce2c154a11a90324cf254041a5
-# 1c9cab91bc814a7b9f30b640562fa873
 msgid ""
 "Groonga can be learned from the input sequence by the following command::"
 msgstr ""
 "Groonga can be learned from the input sequence by the following command::"
 
-# af4f94f325c84d0a90a36bf763a63aa1
 msgid "How to update RK reading data"
 msgstr ""
 
-# f9bd4995f0b7463387d68aa027f9a49d
 msgid ""
 "Groonga requires registered word and its reading for RK search, so load such "
 "data in the advance."
 msgstr ""
 
-# e15fc0b7d3ce4c95b5dd0ce291d98514
 msgid ""
 "Here is the example to register \"日本\" which means Japanese in english."
 msgstr ""
 
-# a4f28f64da4f404087fb16e88af717eb
 msgid "Here is the example to update RK data to complete \"日本\"."
 msgstr ""
 
-# 880809974f5d4c5dbc7921f7bed7289e
 msgid "Then you can complete registered word \"日本\" by RK input - \"nihon\"."
 msgstr ""
 
-# b519aa63d8b343a38126096e06994f2f
 msgid ""
 "Without loading above RK data, you can't complete registered word \"日本\" "
 "by query - \"nihon\"."
 msgstr ""
 
-# 101dc9c3c22e4b1eb70fcade443a76e3
 msgid ""
 "As the column type of item_query table is VECTOR_COLUMN, you can register "
 "multiple readings for registered word."
 msgstr ""
 
-# 46f346815dfd49d79b59dcb7413389a7
 msgid ""
 "This is the reason that you can also complete the registered word \"日本\" "
 "by query - \"nippon\"."
 msgstr ""
 
-# 40f8a1dbd1f64d499844f89336c0229c
 msgid ""
 "This feature is very convenient because you can search registered word even "
 "though Japanese IM is disabled."
 msgstr ""
 
-# 548a5ca62d7741c2ba526177a9c138dc
 msgid ""
 "If there are multiple candidates as completed result, you can customize "
 "priority to set the value of \"boost\" column in item_query table."
 msgstr ""
 
-# 40a89dc19a3b402b9297dd059a3f76ee
 msgid "Here is the example to customize priority for RK search."
 msgstr ""
 
-# 53f907e4805d45b8a11dfef8f7a32724
-# a6b2fdb1d33e4cae92247c89e4432cd5
-# 5ed9f7f7928142c38b43895b91ab4ea9
 msgid "Correction"
 msgstr "Correction"
 
-# e227d0692cb34125b231acaefcd497c7
 msgid "This section describes about the following correction features:"
 msgstr "This section describes about the following correction features:"
 
-# b95d7a04bdee4770879c47921d3e294a
 msgid "The correction feature uses three searches to compute corrected words:"
 msgstr "The correction feature uses three searches to compute corrected words:"
 
-# e42d154a2ccb415fa9a03d95cacb9766
 msgid "Similar search against registered words. (optional)"
 msgstr "Similar search against registered words. (optional)"
 
-# d64cdcd1d4b6451fa94de1a78b8dbb67
 msgid ""
 "Cooccurrence search can find registered words from user's wrong input. It "
 "uses user submit sequences that will be learned from query logs, access logs "
@@ -480,51 +334,38 @@ msgstr ""
 "uses user submit sequences that will be learned from query logs, access logs "
 "and so on."
 
-# b728a7f8a40d40bfb1aa1508217de421
-# cd73e2c173dc4080904b5dc2faf14a61
 msgid "For example, there are the following user submissions:"
 msgstr "For example, there are the following user submissions:"
 
-# ea40ae47a61c4b098d6c796ae312e407
-# 3cbb5315be0d40e4a6ddd8ab5f3acc5d
 msgid "query"
 msgstr "query"
 
-# abdebacb28d94a9490f723057560499d
 msgid "time"
 msgstr "time"
 
-# ce06d5720c9943c399ccc8d0c7ddeb96
 msgid "2011-08-10T22:20:50+09:00"
 msgstr "2011-08-10T22:20:50+09:00"
 
-# 35f777525d5f405d88f73887e6c7ca2a
 msgid "serach (typo!)"
 msgstr "serach (typo!)"
 
-# b9a259ba8a2d435d91f9b5a2f5628ee5
 msgid "2011-08-10T22:20:52+09:00"
 msgstr "2011-08-10T22:20:52+09:00"
 
-# d9ae8826fd9a4789b40f5cb25d4e0560
 msgid "search (fixed!)"
 msgstr "search (fixed!)"
 
-# 5f077216cf62441994e8eae85864e7e4
 msgid ""
 "Groonga creates the following correction pair from the above submissions:"
 msgstr ""
 "Groonga creates the following correction pair from the above submissions:"
 
-# 2c20c142674b4892adcce56961f3ef82
 msgid "corrected word"
 msgstr "corrected word"
 
-# 4d25a347ee924afd9178e762394d1cb1
 msgid "serach"
 msgstr "serach"
 
-# 6f536ca3fe6842e6909c1487de3b1f34
 msgid ""
 "Groonga treats continuous submissions within a minute as input correction by "
 "user. Not submitted user input sequence between two submissions isn't used "
@@ -534,7 +375,6 @@ msgstr ""
 "user. Not submitted user input sequence between two submissions isn't used "
 "as learned data for correction."
 
-# f24c40dc5e014206b5ab78a717165c3b
 msgid ""
 "If an user inputs \"serach\" and cooccurrence search returns \"search\" "
 "because \"serach\" is in input column and corresponding corrected word "
@@ -544,11 +384,9 @@ msgstr ""
 "because \"serach\" is in input column and corresponding corrected word "
 "column value is \"search\"."
 
-# 3ef47e749e6d43cbbaa48bc82c552d7e
 msgid "Similar search"
 msgstr "Similar search"
 
-# cbd92cb0b50c4f4b84ce92be325e94a7
 msgid ""
 "Similar search can find registered words that has one or more the same "
 "tokens as user input. TokenBigram tokenizer is used for tokenization because "
@@ -560,7 +398,6 @@ msgstr ""
 "suggest dataset schema created by :doc:`/reference/executables/groonga-"
 "suggest-create-dataset` uses TokenBigram tokenizer as the default tokenizer."
 
-# c94aa9d9269d4bdb86c38d7b8dafbda2
 msgid ""
 "For example, there is a registered query \"search engine\". An user can find "
 "\"search engine\" by \"web search service\", \"sound engine\" and so on. "
@@ -574,7 +411,6 @@ msgstr ""
 "\"search\" and \"search engine\" and \"sound engine\" have the same token "
 "\"engine\"."
 
-# 06cbf467a4174019aa3bdc5130159a57
 msgid ""
 "\"search engine\" is tokenized to \"search\" and \"engine\" tokens. "
 "(Groonga's TokenBigram tokenizer doesn't tokenize two characters for "
@@ -592,7 +428,6 @@ msgstr ""
 "\", \"search\" and \"service\". \"sound engine\" is tokenized to \"sound\" "
 "and \"engine\"."
 
-# 0457d695e2394b16b81984678fc6e793
 msgid ""
 "Groonga provides :doc:`/reference/commands/suggest` command to use "
 "correction. `--type correct` option requests corrections."
@@ -600,13 +435,11 @@ msgstr ""
 "Groonga provides :doc:`/reference/commands/suggest` command to use "
 "correction. `--type correct` option requests corrections."
 
-# 75a0af32dba64ad691187c9b3e0a84bb
 msgid ""
 "For example, here is an command to get correction results by \"saerch\":"
 msgstr ""
 "For example, here is an command to get correction results by \"saerch\":"
 
-# 5bac75103ed1424ebcb8b75e9db9274a
 msgid ""
 "Cooccurrence search uses learned data. They are based on query logs, access "
 "logs and so on. To create learned data, groonga needs user submit inputs "
@@ -616,7 +449,6 @@ msgstr ""
 "logs and so on. To create learned data, groonga needs user submit inputs "
 "with time stamp."
 
-# 1472b81425244451a6283550a536c29f
 msgid ""
 "For example, an user wants to search by \"search\" but the user has typo "
 "\"saerch\" before inputs the correct query. The user inputs the query with "
@@ -626,79 +458,59 @@ msgstr ""
 "\"saerch\" before inputs the correct query. The user inputs the query with "
 "the following sequence:"
 
-# 8f20fef30b9444b98644d6153955cec8
 msgid "2011-08-10T13:33:23+09:00: s"
 msgstr "2011-08-10T13:33:23+09:00: s"
 
-# acd7b6807bb54a429ac8d0f46dcb3fce
 msgid "2011-08-10T13:33:23+09:00: sa"
 msgstr "2011-08-10T13:33:23+09:00: sa"
 
-# a3ce6b999cd0471389ec35631d56d671
 msgid "2011-08-10T13:33:24+09:00: sae"
 msgstr "2011-08-10T13:33:24+09:00: sae"
 
-# 5029b96a6ef843cb9a5e83c40ae0e69f
 msgid "2011-08-10T13:33:24+09:00: saer"
 msgstr "2011-08-10T13:33:24+09:00: saer"
 
-# c2672e8a801d4c9eb7a398e2037137ba
 msgid "2011-08-10T13:33:24+09:00: saerc"
 msgstr "2011-08-10T13:33:24+09:00: saerc"
 
-# f64479d0602044d580b91f638af94436
 msgid "2011-08-10T13:33:25+09:00: saerch (submit!)"
 msgstr "2011-08-10T13:33:25+09:00: saerch (submit!)"
 
-# 15c1a64dcd9d4629b8cd6929e526ce7f
 msgid "2011-08-10T13:33:29+09:00: serch (correcting...)"
 msgstr "2011-08-10T13:33:29+09:00: serch (correcting...)"
 
-# 8dad59b7bcca418a96d0f079b5a9ff28
 msgid "2011-08-10T13:33:30+09:00: search (submit!)"
 msgstr "2011-08-10T13:33:30+09:00: search (submit!)"
 
-# 5dc15a56d38d42a1a21a81536ffb8de2
 msgid "Introduction"
 msgstr "Introduction"
 
-# 7e54befd31a740849466190cbdaba394
 msgid "The suggest feature in Groonga provides the following features:"
 msgstr ""
 
-# b2bc9a7b054a4f959a7c03169fccab41
-# 5eee5dd71e4c4794ba97ac01f9858514
-# a173f4276836460eb033e76d9b71e9ae
 msgid "Suggestion"
 msgstr "Suggestion"
 
-# 428f49b7cc3d487eac3f7f41005f8200
 msgid ""
 "Completion helps user input. If user inputs a partial word, Groonga can "
 "return complete words from registered words."
 msgstr ""
 
-# 23d68734705c4b1ab0b5c7ad3d43906c
 msgid "For example, there are registered words:"
 msgstr "For example, there are registered words:"
 
-# c7be4bdc5b71474cad39621464535226
 msgid "\"groonga\""
 msgstr "\"groonga\""
 
-# 0423a1feb9d74f79835f227f8f5179d7
 msgid "\"complete\""
 msgstr "\"complete\""
 
-# ce532e98616d4131b4c6ed13ff3a055f
 msgid "\"correction\""
 msgstr "\"correction\""
 
-# 8752e47ed8fe40ab91f7b472bb986ce9
 msgid "\"suggest\""
 msgstr "\"suggest\""
 
-# 09dca118f1a148dda36b30d02134058e
 msgid ""
 "An user inputs \"co\" and groonga returns \"complete\" and \"correction\" "
 "because they starts with \"co\"."
@@ -706,7 +518,6 @@ msgstr ""
 "An user inputs \"co\" and groonga returns \"complete\" and \"correction\" "
 "because they starts with \"co\"."
 
-# d04142a83dee4238bfa78ee17c2650bf
 msgid ""
 "An user inputs \"sug\" and groonga returns \"suggest\" because \"suggest\" "
 "starts with \"sug\"."
@@ -714,7 +525,6 @@ msgstr ""
 "An user inputs \"sug\" and groonga returns \"suggest\" because \"suggest\" "
 "starts with \"sug\"."
 
-# fe9f2cb3ce06455799c096360d283b17
 msgid ""
 "An user inputs \"ab\" and groonga returns nothing because no word starts "
 "with \"ab\"."
@@ -722,7 +532,6 @@ msgstr ""
 "An user inputs \"ab\" and groonga returns nothing because no word starts "
 "with \"ab\"."
 
-# 8c82001415cc44e4bfff151cc7c771a4
 msgid ""
 "Correction also helps user input. If user inputs a wrong word, groonga can "
 "return correct words from registered correction pairs."
@@ -730,38 +539,27 @@ msgstr ""
 "Correction also helps user input. If user inputs a wrong word, groonga can "
 "return correct words from registered correction pairs."
 
-# 9249890ebbc64e82b537044ea495186a
 msgid "For example, there are registered correction pairs:"
 msgstr "For example, there are registered correction pairs:"
 
-# 07c96256386a44b29d3974f79e45c106
 msgid "correct word"
 msgstr "correct word"
 
-# c13a9bf4807443608ca5c1b94e4327eb
 msgid "wrong word"
 msgstr "wrong word"
 
-# 1b674d08b9c04dffb661284c6c10fed6
-# 1b674d08b9c04dffb661284c6c10fed6
-# 1b674d08b9c04dffb661284c6c10fed6
-# 1b674d08b9c04dffb661284c6c10fed6
 msgid "groonga"
 msgstr "groonga"
 
-# 1b674d08b9c04dffb661284c6c10fed6
 msgid "grroonga"
 msgstr "grroonga"
 
-# 1b674d08b9c04dffb661284c6c10fed6
 msgid "gronga"
 msgstr "gronga"
 
-# 1b674d08b9c04dffb661284c6c10fed6
 msgid "gronnga"
 msgstr "gronnga"
 
-# e767a5aa4dfb4761b104f0ab85e23bb5
 msgid ""
 "An user inputs \"gronga\" and groonga returns \"groonga\" because \"gronga\" "
 "is in wrong word and corresponding correct word is \"groonga\"."
@@ -769,7 +567,6 @@ msgstr ""
 "An user inputs \"gronga\" and groonga returns \"groonga\" because \"gronga\" "
 "is in wrong word and corresponding correct word is \"groonga\"."
 
-# 56ac56ccd4a647aea8845ea5dcce94e4
 msgid ""
 "An user inputs \"roonga\" and groonga returns nothing because \"roonga\" "
 "isn't in wrong word."
@@ -777,7 +574,6 @@ msgstr ""
 "An user inputs \"roonga\" and groonga returns nothing because \"roonga\" "
 "isn't in wrong word."
 
-# 3d2fa6ab369f42698f23c6258648a779
 msgid ""
 "Suggestion helps that user filters many found documents. If user inputs a "
 "query, groonga can return new queries that has more additional keywords from "
@@ -787,35 +583,27 @@ msgstr ""
 "query, groonga can return new queries that has more additional keywords from "
 "registered related query pairs."
 
-# 2019edaa70244d37ae4d93017c244981
 msgid "For example, there are registered related query pairs:"
 msgstr "For example, there are registered related query pairs:"
 
-# cc902cdb88154cf7b397b93641c0dfb1
 msgid "keyword"
 msgstr "keyword"
 
-# 1c1b8160bd064d3e90b0ad59178a5e51
 msgid "related query"
 msgstr "related query"
 
-# 2761ce725c0c4a9ab1995adfec4a67a0
 msgid "groonga search engine"
 msgstr "groonga search engine"
 
-# 05519d9214fb47259db48297dea37507
 msgid "Google search"
 msgstr "Google search"
 
-# 16f77f24b0d842d39933c94ab89e20fe
 msgid "groonga speed"
 msgstr "groonga speed"
 
-# 866c476f13d64c8e8028e0e5183fd207
 msgid "speed"
 msgstr "speed"
 
-# a03c057b5bdc4abd91a39a897f58dce8
 msgid ""
 "An user inputs \"groonga\" and groonga returns \"groonga search engine\" "
 "because \"groonga\" is in keyword column and related query column is "
@@ -825,7 +613,6 @@ msgstr ""
 "because \"groonga\" is in keyword column and related query column is "
 "\"groonga search engine\"."
 
-# 42a5f6525a6043a88997ff714790c073
 msgid ""
 "An user inputs \"MySQL\" and groonga returns nothing because \"MySQL\" isn't "
 "in keyword column values."
@@ -833,11 +620,9 @@ msgstr ""
 "An user inputs \"MySQL\" and groonga returns nothing because \"MySQL\" isn't "
 "in keyword column values."
 
-# d291971a4caf4637a95a589f1cf31773
 msgid "Learning"
 msgstr "Learning"
 
-# 888c4853b9f0456e9601c5cad35fcb64
 msgid ""
 "The suggest feature requires registered data before using the feature. Those "
 "data can be registered from user inputs. Gronnga-suggest-httpd and groonga-"
@@ -847,11 +632,9 @@ msgstr ""
 "data can be registered from user inputs. Gronnga-suggest-httpd and groonga-"
 "suggest-learner commands are provided for the propose."
 
-# 7e34acefcc464207983d5fd6e90f98f7
 msgid "The suggestion feature uses a search to compute suggested words:"
 msgstr "The suggestion feature uses a search to compute suggested words:"
 
-# 04d5809185b54463b825c7cbce779375
 msgid ""
 "Cooccurrence search can find related words from user's input. It uses user "
 "submissions that will be learned from query logs, access logs and so on."
@@ -859,40 +642,27 @@ msgstr ""
 "Cooccurrence search can find related words from user's input. It uses user "
 "submissions that will be learned from query logs, access logs and so on."
 
-# 22d045502493413b9f25c198ad55b646
-# 0f6b055ff92b4fd59aa7dfc5a8286926
-# 1bf15d5b8fce447283fc34ef283b5c68
 msgid "search engine"
 msgstr "search engine"
 
-# cb8e7799a0614a86a6bb5d4f3a7f8ab6
-# 8a58f6c3947142e987a12a29813575f6
-# b5862d1e0ac94596b9c8aa648d5f540f
-# 22f2cb553df047d2852bf61ca0764c38
 msgid "web search realtime"
 msgstr "web search realtime"
 
-# 4f54f1025aab4cc98ab1329e808a84cb
 msgid "Groonga creates the following suggestion pairs:"
 msgstr "Groonga creates the following suggestion pairs:"
 
-# 9ec1e6d497d24e308bc41cf6dfb9a4f5
 msgid "suggested words"
 msgstr "suggested words"
 
-# 6947e87c8aae46f8b7e3d28f9176556c
 msgid "web"
 msgstr "web"
 
-# 022e39fa610640d49802ea38356343c5
 msgid "realtime"
 msgstr "realtime"
 
-# c664b9109fc64af2b91a8be64eeb0241
 msgid "Those pairs are created by the following steps:"
 msgstr "Those pairs are created by the following steps:"
 
-# f5fe236f4233403a96709b260c9d8f2b
 msgid ""
 "Tokenizes user input query by TokenDelimit tokenizer that uses a space as "
 "token delimiter. (e.g. \"search engine\" is tokenized to two tokens \"search"
@@ -902,13 +672,11 @@ msgstr ""
 "token delimiter. (e.g. \"search engine\" is tokenized to two tokens \"search"
 "\" and \"engine\".)"
 
-# 3ee60948f31e45c98ed80f190b4a4ea3
 msgid ""
 "Creates a pair that is consists of a token and original query for each token."
 msgstr ""
 "Creates a pair that is consists of a token and original query for each token."
 
-# 1ab36d280d6b47c0bae4bcf52a75ab31
 msgid ""
 "If an user inputs \"search\" and cooccurrence search returns \"search engine"
 "\" and \"web search realtime\" because \"search\" is in two input columns "
@@ -920,7 +688,6 @@ msgstr ""
 "and corresponding suggested word columns have \"search engine\" and \"web "
 "search realtime\"."
 
-# f9e53a798ea440ca90f36817452d3cd3
 msgid ""
 "Groonga provides :doc:`/reference/commands/suggest` command to use "
 "suggestion. `--type suggest` option requests suggestion"
@@ -928,28 +695,22 @@ msgstr ""
 "Groonga provides :doc:`/reference/commands/suggest` command to use "
 "suggestion. `--type suggest` option requests suggestion"
 
-# f1bc62c2fff54c4fb23ab9802b9ec6e0
 msgid ""
 "For example, here is an command to get suggestion results by \"search\":"
 msgstr ""
 "For example, here is an command to get suggestion results by \"search\":"
 
-# 05d249aa4fb847ab81ba27ab0e29cda3
 msgid "2011-08-10T13:33:23+09:00: search engine (submit)"
 msgstr "2011-08-10T13:33:23+09:00: search engine (submit)"
 
-# 0e09a66faaaf410fbc03a06d2414f13a
 msgid "2011-08-10T13:33:28+09:00: web search realtime (submit)"
 msgstr "2011-08-10T13:33:28+09:00: web search realtime (submit)"
 
-# cdbd5f3f8f0346cd867200a985736791
 msgid "Groonga can be learned from the submissions by the following command::"
 msgstr "Groonga can be learned from the submissions by the following command::"
 
-# 34d3cb811f7a44cdb33239dcea3c1596
 msgid "Tutorial"
 msgstr "Tutorial"
 
-# edc8c58912424c1182bf9ceed2c89501
 msgid "TODO..."
 msgstr "TODO..."

  Modified: doc/locale/en/LC_MESSAGES/troubleshooting.po (+0 -71)
===================================================================
--- doc/locale/en/LC_MESSAGES/troubleshooting.po    2014-01-23 18:04:29 +0900 (623fc7f)
+++ doc/locale/en/LC_MESSAGES/troubleshooting.po    2014-01-23 19:01:31 +0900 (24413d6)
@@ -17,15 +17,12 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-# 4658768b9d654370b152c97edc7c5f5b
 msgid "トラブルシューティング"
 msgstr "トラブルシューティング"
 
-# 1e436a42404d4ccb95ec5822c9efdecd
 msgid "同じ検索キーワードなのに全文検索結果が異なる"
 msgstr "同じ検索キーワードなのに全文検索結果が異なる"
 
-# 210abfb034ab4a4186bcba33054420fc
 msgid ""
 "同じ検索キーワードでも一緒に指定するクエリによっては全文検索の結果が異なるこ"
 "とがあります。ここでは、その原因と対策方法を説明します。"
@@ -33,15 +30,12 @@ msgstr ""
 "同じ検索キーワードでも一緒に指定するクエリによっては全文検索の結果が異なるこ"
 "とがあります。ここでは、その原因と対策方法を説明します。"
 
-# 7ee9d44d516c4d73869db613c5d38489
 msgid "例"
 msgstr "例"
 
-# b9a5034cbe214888b9045f16549fee91
 msgid "まず、実際に検索結果が異なる例を説明します。"
 msgstr "まず、実際に検索結果が異なる例を説明します。"
 
-# 873a68c2380646f59b902e5ca53a62a3
 msgid ""
 "DDLは以下の通りです。BlogsテーブルのbodyカラムをTokenMecabトークナイザーを"
 "使ってトークナイズしてからインデックスを作成しています。::"
@@ -49,15 +43,12 @@ msgstr ""
 "DDLは以下の通りです。BlogsテーブルのbodyカラムをTokenMecabトークナイザーを"
 "使ってトークナイズしてからインデックスを作成しています。::"
 
-# e45d890fc5a64da3905b34a97aa76e93
 msgid "テスト用のデータは1件だけ投入します。::"
 msgstr "テスト用のデータは1件だけ投入します。::"
 
-# 2e1de6df5c1d4c24a3a9053487d559c3
 msgid "まず、全文検索のみで検索します。この場合ヒットします。::"
 msgstr "まず、全文検索のみで検索します。この場合ヒットします。::"
 
-# fdb370b9813d465aa6de1344a11efbbb
 msgid ""
 "続いて、範囲指定と全文検索を組み合わせて検索します(1285858800は2010/10/1 "
 "0:0:0の秒表記)。この場合もヒットします。::"
@@ -65,7 +56,6 @@ msgstr ""
 "続いて、範囲指定と全文検索を組み合わせて検索します(1285858800は2010/10/1 "
 "0:0:0の秒表記)。この場合もヒットします。::"
 
-# 6eb1abd544b7459d87fdeb85d48b0a12
 msgid ""
 "最後に、範囲指定と全文検索の順番を入れ替えて検索します。個々の条件は同じです"
 "が、この場合はヒットしません。::"
@@ -73,15 +63,12 @@ msgstr ""
 "最後に、範囲指定と全文検索の順番を入れ替えて検索します。個々の条件は同じです"
 "が、この場合はヒットしません。::"
 
-# 33221195919c4c2ba712f2757bddf445
 msgid "どうしてこのような挙動になるかを説明します。"
 msgstr "どうしてこのような挙動になるかを説明します。"
 
-# 0b62e9a94d754bc29006ec3c5cb3c753
 msgid "原因"
 msgstr "原因"
 
-# 454fe8993ee44699973af1310f9463dc
 msgid ""
 "このような挙動になるのは全文検索時に複数の検索の挙動を使い分けているからで"
 "す。ここでは簡単に説明するので、詳細は :doc:`/spec/search` を参照してくださ"
@@ -91,23 +78,18 @@ msgstr ""
 "す。ここでは簡単に説明するので、詳細は :doc:`/spec/search` を参照してくださ"
 "い。"
 
-# 3b913c5f3d404b968bc8499c32492979
 msgid "検索の挙動には以下の3種類があります。"
 msgstr "検索の挙動には以下の3種類があります。"
 
-# addc9cbbfe8643f5b584ec7db02cd001
 msgid "完全一致検索"
 msgstr "完全一致検索"
 
-# eba88189feeb41d6b9bf351195dab34d
 msgid "非わかち書き検索"
 msgstr "非わかち書き検索"
 
-# c2f02051d72443229e3a14e005b4997b
 msgid "部分一致検索"
 msgstr "部分一致検索"
 
-# 10d4f1ac39cf4e9d95d6a118520b60ed
 msgid ""
 "groongaは基本的に完全一致検索のみを行います。上記の例では「東京都民に深刻なダ"
 "メージを与えました。」を「東京都」というクエリで検索していますが、TokenMecab"
@@ -117,27 +99,21 @@ msgstr ""
 "メージを与えました。」を「東京都」というクエリで検索していますが、TokenMecab"
 "トークナイザーを使っている場合はこのクエリはマッチしません。"
 
-# fb1d3a0555e64c4495bd6cb001bfc3d9
 msgid "検索対象の「東京都民に深刻なダメージを与えました。」は"
 msgstr "検索対象の「東京都民に深刻なダメージを与えました。」は"
 
-# 0ea5a422141043bc8dfbe9228e50ae7c
 msgid "東京 / 都民 / に / 深刻 / な / ダメージ / を / 与え / まし / た / 。"
 msgstr "東京 / 都民 / に / 深刻 / な / ダメージ / を / 与え / まし / た / 。"
 
-# b4e2baed266c4b08a4dc807797488ce6
 msgid "とトークナイズされますが、クエリの「東京都」は"
 msgstr "とトークナイズされますが、クエリの「東京都」は"
 
-# 9e5604cc8c664cdb992e3e4ce1881435
 msgid "東京 / 都"
 msgstr "東京 / 都"
 
-# d6c0b657d55c4bc6802185035d693652
 msgid "とトークナイズされるため、完全一致しません。"
 msgstr "とトークナイズされるため、完全一致しません。"
 
-# fc968dc2282749a388ca383d82d70fc5
 msgid ""
 "groongaは完全一致検索した結果のヒット件数が所定の閾値を超えない場合に限り、非"
 "わかち書き検索を行い、それでもヒット件数が閾値を超えない場合は部分一致検索を"
@@ -149,7 +125,6 @@ msgstr ""
 "行います(閾値は1がデフォルト値となっています)。このケースのデータは部分一致"
 "検索ではヒットするので、「東京都」クエリのみを指定するとヒットします。"
 
-# 328bb720d4e6460ca52ebcf714e2e0f9
 msgid ""
 "しかし、以下のように全文検索前にすでに閾値が越えている場合(「updated_at < "
 "1285858800」で1件ヒットし、閾値を越える)は、たとえ完全一致検索で1件もヒット"
@@ -159,7 +134,6 @@ msgstr ""
 "1285858800」で1件ヒットし、閾値を越える)は、たとえ完全一致検索で1件もヒット"
 "しない場合でも部分一致検索などを行いません。::"
 
-# 92c5f782e684493382337303cb708b6c
 msgid ""
 "そのため、条件の順序を変えると検索結果が変わるという状況が発生します。以下"
 "で、この情報を回避する方法を2種類紹介しますが、それぞれトレードオフとなる条件"
@@ -169,11 +143,9 @@ msgstr ""
 "で、この情報を回避する方法を2種類紹介しますが、それぞれトレードオフとなる条件"
 "があるので採用するかどうかを十分検討してください。"
 
-# f80cc972be994498bbeda75962efa426
 msgid "対策方法1: トークナイザーを変更する"
 msgstr "対策方法1: トークナイザーを変更する"
 
-# a65f45244c63416093ff839bce4f9746
 msgid ""
 "TokenMecabトークナイザーは事前に準備した辞書を用いてトークナイズするため、再"
 "現率よりも適合率を重視したトークナイザーと言えます。一方、TokenBigramなど、N-"
@@ -189,7 +161,6 @@ msgstr ""
 "TokenBigramでは完全一致します。一方、TokenMecabでは「東京都民」に完全一致しま"
 "せんが、TokenBigramでは完全一致します。"
 
-# 7fcee90f7fa2455aae0166cb33b7a170
 msgid ""
 "このようにN-gram系のトークナイザーを指定することにより再現率をあげることがで"
 "きますが、適合率が下がり検索ノイズが含まれる可能性が高くなります。この度合い"
@@ -201,7 +172,6 @@ msgstr ""
 "を調整するためには :doc:`/reference/commands/select` のmatch_columnsで使用す"
 "る索引毎に重み付けを指定します。"
 
-# 9c09dfb32cc1443ca384861d57f16c26
 msgid ""
 "ここでも、前述の例を使って具体例を示します。まず、TokenBigramを用いた索引を追"
 "加します。::"
@@ -209,13 +179,11 @@ msgstr ""
 "ここでも、前述の例を使って具体例を示します。まず、TokenBigramを用いた索引を追"
 "加します。::"
 
-# 17351e7db1c548438959060966b3cb0e
 msgid ""
 "この状態でも以前はマッチしなかったレコードがヒットするようになります。::"
 msgstr ""
 "この状態でも以前はマッチしなかったレコードがヒットするようになります。::"
 
-# 8abf389efb15409b92c995265e724750
 msgid ""
 "しかし、N-gram系のトークナイザーの方がTokenMecabトークナイザーよりも語のヒッ"
 "ト数が多いため、N-gram系のヒットスコアの方が重く扱われてしまいます。N-gram系"
@@ -227,7 +195,6 @@ msgstr ""
 "のトークナイザーの方がTokenMecabトークナイザーよりも適合率の低い場合が多いの"
 "で、このままでは検索ノイズが上位に表示される可能性が高くなります。"
 
-# e7d30899f93b4f01ab0e0ce62b013b9a
 msgid ""
 "そこで、TokenMecabトークナイザーを使って作った索引の方をTokenBigramトークナイ"
 "ザーを使って作った索引よりも重視するように重み付けを指定します。これは、"
@@ -237,7 +204,6 @@ msgstr ""
 "ザーを使って作った索引よりも重視するように重み付けを指定します。これは、"
 "match_columnsオプションで指定できます。::"
 
-# 2bf2534d65f44046bb80b1f7cb36fc12
 msgid ""
 "この場合はスコアが11になっています。内訳は、Terms.blog_body索引(TokenMecab"
 "トークナイザーを使用)でマッチしたので10、Bigram.blog_body索引(TokenBigram"
@@ -251,7 +217,6 @@ msgstr ""
 "のようにTokenMecabトークナイザーの重みを高くすることにより、検索ノイズが上位"
 "にくることを抑えつつ再現率を上げることができます。"
 
-# 30f1514440064dd5ad39299bd705e761
 msgid ""
 "この例は日本語だったのでTokenBigramトークナイザーでよかったのですが、アルファ"
 "ベットの場合はTokenBigramSplitSymbolAlphaトークナイザーなども利用する必要があ"
@@ -261,11 +226,9 @@ msgstr ""
 "ベットの場合はTokenBigramSplitSymbolAlphaトークナイザーなども利用する必要があ"
 "ります。例えば、「楽しいbilliard」はTokenBigramトークナイザーでは"
 
-# 38f8fb12650b4ea6baac2f8cc6e011b1
 msgid "楽し / しい / billiard"
 msgstr "楽し / しい / billiard"
 
-# b3e0e78d16414bdeb1f347486a75a67f
 msgid ""
 "となり、「bill」では完全一致しません。一方、TokenBigramSplitSymbolAlphaトーク"
 "ナイザーを使うと"
@@ -273,15 +236,12 @@ msgstr ""
 "となり、「bill」では完全一致しません。一方、TokenBigramSplitSymbolAlphaトーク"
 "ナイザーを使うと"
 
-# 2b50101131a748219ec50d7d207e81e7
 msgid "楽し / しい / いb / bi / il / ll / li / ia / ar / rd / d"
 msgstr "楽し / しい / いb / bi / il / ll / li / ia / ar / rd / d"
 
-# 00e4398fcffa4112938654b0e20ce7c6
 msgid "となり、「bill」でも完全一致します。"
 msgstr "となり、「bill」でも完全一致します。"
 
-# d472b4fbb38a4fe895e087a313c7eb2d
 msgid ""
 "TokenBigramSplitSymbolAlphaトークナイザーを使う場合も重み付けを考慮する必要が"
 "あることはかわりありません。"
@@ -289,11 +249,9 @@ msgstr ""
 "TokenBigramSplitSymbolAlphaトークナイザーを使う場合も重み付けを考慮する必要が"
 "あることはかわりありません。"
 
-# 9a7f7fe0d210460d9decd9add0d510e9
 msgid "利用できるバイグラム系のトークナイザーの一覧は以下の通りです。"
 msgstr "利用できるバイグラム系のトークナイザーの一覧は以下の通りです。"
 
-# 178708dfac104b5aa785de66d1d97c0e
 msgid ""
 "TokenBigram: バイグラムでトークナイズする。連続する記号・アルファベット・数字"
 "は一語として扱う。"
@@ -301,7 +259,6 @@ msgstr ""
 "TokenBigram: バイグラムでトークナイズする。連続する記号・アルファベット・数字"
 "は一語として扱う。"
 
-# 6a9e3cb005ff450e86dac1dcd13285ec
 msgid ""
 "TokenBigramSplitSymbol: 記号もバイグラムでトークナイズする。連続するアルファ"
 "ベット・数字は一語として扱う。"
@@ -309,7 +266,6 @@ msgstr ""
 "TokenBigramSplitSymbol: 記号もバイグラムでトークナイズする。連続するアルファ"
 "ベット・数字は一語として扱う。"
 
-# 17477832b05e4dc496d419ac807e38ff
 msgid ""
 "TokenBigramSplitSymbolAlpha: 記号とアルファベットもバイグラムでトークナイズす"
 "る。連続する数字は一語として扱う。"
@@ -317,7 +273,6 @@ msgstr ""
 "TokenBigramSplitSymbolAlpha: 記号とアルファベットもバイグラムでトークナイズす"
 "る。連続する数字は一語として扱う。"
 
-# 87533b7bddb44938ae7f4bc6fcd093e5
 msgid ""
 "TokenBigramSplitSymbolAlphaDigit: 記号・アルファベット・数字もバイグラムで"
 "トークナイズする。"
@@ -325,7 +280,6 @@ msgstr ""
 "TokenBigramSplitSymbolAlphaDigit: 記号・アルファベット・数字もバイグラムで"
 "トークナイズする。"
 
-# 1a7ee8c5c2e740a1956c78092a5e1fd6
 msgid ""
 "TokenBigramIgnoreBlank: バイグラムでトークナイズする。連続する記号・アルファ"
 "ベット・数字は一語として扱う。空白は無視する。"
@@ -333,7 +287,6 @@ msgstr ""
 "TokenBigramIgnoreBlank: バイグラムでトークナイズする。連続する記号・アルファ"
 "ベット・数字は一語として扱う。空白は無視する。"
 
-# 67e54e66fa4c4c89b2c46218ad627c08
 msgid ""
 "TokenBigramIgnoreBlankSplitSymbol: 記号もバイグラムでトークナイズする。連続す"
 "るアルファベット・数字は一語として扱う。空白は無視する。"
@@ -341,7 +294,6 @@ msgstr ""
 "TokenBigramIgnoreBlankSplitSymbol: 記号もバイグラムでトークナイズする。連続す"
 "るアルファベット・数字は一語として扱う。空白は無視する。"
 
-# b746a6a5784f44a6b8177c88feb24f2c
 msgid ""
 "TokenBigramIgnoreBlankSplitSymbolAlpha: 記号とアルファベットもバイグラムで"
 "トークナイズする。連続する数字は一語として扱う。空白は無視する。"
@@ -349,7 +301,6 @@ msgstr ""
 "TokenBigramIgnoreBlankSplitSymbolAlpha: 記号とアルファベットもバイグラムで"
 "トークナイズする。連続する数字は一語として扱う。空白は無視する。"
 
-# d78c0482e9044ce99b3933f048a0a752
 msgid ""
 "TokenBigramIgnoreBlankSplitSymbolAlphaDigit: 記号・アルファベット・数字もバイ"
 "グラムでトークナイズする。空白は無視する。"
@@ -357,11 +308,9 @@ msgstr ""
 "TokenBigramIgnoreBlankSplitSymbolAlphaDigit: 記号・アルファベット・数字もバイ"
 "グラムでトークナイズする。空白は無視する。"
 
-# 856ace70541744158a8965c620aded91
 msgid "対策方法2: 閾値をあげる"
 msgstr "対策方法2: 閾値をあげる"
 
-# 1972cee3b5e843e487294050bd4027d1
 msgid ""
 "非わかち書き検索・部分一致検索を利用するかどうかの閾値は--with-match-"
 "escalation-threshold configureオプションで変更することができます。以下のよう"
@@ -373,7 +322,6 @@ msgstr ""
 "に指定すると、100件以下のヒット数であれば、たとえ完全一致検索でヒットしても、"
 "非わかち書き検索・部分一致検索を行います。::"
 
-# 0d8ea58d6d264d10b40538852faedc97
 msgid ""
 "この場合も対策方法1同様、検索ノイズが上位に現れる可能性が高くなることに注意し"
 "てください。検索ノイズが多くなった場合は指定する値を低くする必要があります。"
@@ -381,94 +329,75 @@ msgstr ""
 "この場合も対策方法1同様、検索ノイズが上位に現れる可能性が高くなることに注意し"
 "てください。検索ノイズが多くなった場合は指定する値を低くする必要があります。"
 
-# 76adc621040f453b94483b163d43721a
 msgid "How to avoid mmap Cannot allocate memory error"
 msgstr ""
 
-# 5828cde9e429412496c48cdb8cbe9639
 msgid "Example"
 msgstr ""
 
-# 8dfcb16077644c839f2b3b66661bba06
 msgid "There is a case following mmap error in log file:"
 msgstr ""
 
-# 79234702dd1e4461b28a6c0a129cb9fa
 msgid ""
 "2013-06-04 08:19:34.835218|A|4e86e700|mmap(4194304,551,432017408)=Cannot "
 "allocate memory <13036498944>"
 msgstr ""
 
-# 4ae5641ea9ed47f69db482535f21bb6e
 msgid ""
 "Note that <13036498944> means total size of mmap (almost 12GB) in this case."
 msgstr ""
 
-# 7466a0fa39994bff9da328b6abf5e0c7
 msgid "Solution"
 msgstr ""
 
-# 79694d0a62094ca7917edb9cca1b2eda
 msgid "So you need to confirm following point of views."
 msgstr ""
 
-# 914e1406c981413d824ac169244b6ee0
 msgid "Are there enough free memory?"
 msgstr ""
 
-# 5e4930f5a28143c19ce0f8f13cfc6e96
 msgid "Are maximum number of mappings exceeded?"
 msgstr ""
 
-# dbd23f33f4a74c72812b51a67751da43
 msgid "To check there are enough free memory, you can use vmstat command."
 msgstr ""
 
-# ab74545412c64e2b9c142d031f086f01
 msgid ""
 "To check whether maximum number of mappings are exceeded, you can "
 "investigate the value of vm.max_map_count."
 msgstr ""
 
-# 7f0d7088ae324eedb7171e40b97e40ff
 msgid ""
 "If this issue is fixed by modifying the value of vm.max_map_count, it's "
 "exactly the reason."
 msgstr ""
 
-# a1558638d0fe463f983d968b5a70d635
 msgid ""
 "As groonga allocates memory chunks each 256KB, you can estimate the size of "
 "database you can handle by following formula:"
 msgstr ""
 
-# 701988c8cc8244ff9b20e19b0001d4ac
 msgid "(database size) = vm.max_map_count * (memory chunks)"
 msgstr ""
 
-# 5f0b4fa1576043d09070d3543b3de6e3
 msgid ""
 "If you want to handle over 16GB groonga database, you must specify at least "
 "65536 as the value of vm.max_map_count:"
 msgstr ""
 
-# ea086311738d4540aea9df7858a9f1c7
 msgid "database size (16GB) = vm.max_map_count (65536) * memory chunks (256KB)"
 msgstr ""
 
-# 9ce4884ddf0e4039a95e5fb71605cfa7
 msgid ""
 "You can modify vm.max_map_count temporary by sudo sysctl -w vm."
 "max_map_count=65536."
 msgstr ""
 
-# 900879f7c67a45078e3121ae0747d332
 msgid ""
 "Then save the configuration value to /etc/sysctl.conf or /etc/sysctl.d/*."
 "conf."
 msgstr ""
 
-# ce93736db00d4069a578ca0fc9555b04
 msgid ""
 "See :doc:`/reference/tuning` documentation about tuning related parameters."
 msgstr ""

  Modified: doc/locale/en/LC_MESSAGES/tutorial.po (+0 -500)
===================================================================
--- doc/locale/en/LC_MESSAGES/tutorial.po    2014-01-23 18:04:29 +0900 (937be67)
+++ doc/locale/en/LC_MESSAGES/tutorial.po    2014-01-23 19:01:31 +0900 (68d8993)
@@ -17,89 +17,15 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-# b7ba20d486f44de997cf0e032a200f5d
-# ec9e03224a1a40c1a922a848be2c74fe
-# b2faf0da0900413a9c628c34725bcb22
-# 559ad9267d864b4684117f8ed9510f67
-# 9a3e37117d9047ac8d7cbf3539a88215
-# 5ae4ac4eff53432b94bd3526f479b445
-# 2e7df41040eb47a69d509791117a0284
-# b870ea85febc4a639cb724dea7f92e85
-# 535d853568514954b57d17ebac64aed5
-# c4d97026d66249d1883b82b8170eda9e
-# 56d3874491c343d1894225072e7fbd47
-# a7d7413abc2e4ad6b72726b683054bf8
-# bac75efc407e4aa5a3d6536768496d64
-# be33c33693504bb8a20a9605cd018adb
-# 5ddf3538cea34c519312ebe0310aa91c
-# 8a19a7e8df1f4c70981564283c87152b
-# 52b9db7ab2e544dd9f1b0b03f15d2067
-# 8f67c482ded94956940d97b417dbb707
-# b02844c2b6724f918a687001eafad5e0
-# d967116176414ca7a0bb01b72d31c485
-# 092b1079bd3b46ec88e11513e928ba30
-# 6cfa4eb004a847d4b30f66cc962da402
-# 6c687ec9254b4f55a48959a6ba5e3162
-# 8304e588793f432cb9d7038a2cd1449e
-# 8304e588793f432cb9d7038a2cd1449e
-# 8304e588793f432cb9d7038a2cd1449e
-# 8304e588793f432cb9d7038a2cd1449e
-# 8304e588793f432cb9d7038a2cd1449e
-# 8304e588793f432cb9d7038a2cd1449e
-# 8304e588793f432cb9d7038a2cd1449e
-# 8304e588793f432cb9d7038a2cd1449e
-# 8304e588793f432cb9d7038a2cd1449e
-# 8304e588793f432cb9d7038a2cd1449e
-# 8304e588793f432cb9d7038a2cd1449e
-# 8304e588793f432cb9d7038a2cd1449e
-# 8304e588793f432cb9d7038a2cd1449e
-# 8304e588793f432cb9d7038a2cd1449e
-# 8304e588793f432cb9d7038a2cd1449e
-# 8304e588793f432cb9d7038a2cd1449e
-# 78c519008cf34bfaa95e328400d0d7da
-# 85e0606dc8f4453d8deea5798482c577
-# b89b962fb9504a66bbd4728c51b15cab
-# 905c5f8303434d7b9c90a44401b7a2e5
-# 6ea0e8bdf7da4e108b6736a50c089ecd
-# bd09cb81d43e4bfebed8d73c54fef3b9
-# 5be40a7e43e8480296a4bc5f09531525
-# 7225013361764d45a2bc55accfafdfd3
-# 45f40517d2c543a2b91ea9c98ee8d215
-# a439f1f98aa24122a704a3ca4e0800c4
-# 123d968b2d30485aa0d59289a8c10d83
-# a29de3e7efa24f918f98567bf514ac4e
-# 5af4b07ac9c74bcca50c14d5c46b3800
-# cb7f7cecb5e2476c962da3ffe3619fff
-# 5e8b248f210a49e894d4498cb21d942b
-# 36e446ebd4f34d9b8ea4ca75a6bd4451
-# af92c4653fd44643bcd350ff44c2f97d
-# 2a5df16e14404475a12be1dfaa41b14f
-# 2a5df16e14404475a12be1dfaa41b14f
-# 2a5df16e14404475a12be1dfaa41b14f
-# c973ca994de84130b8a7437e5840dbb8
-# 54b1c174b46444d9b7ea6adfa7e5ba85
-# 07f53d2d9fbe41eca7eed4b1bd6dc68d
-# 82d3c8f8fdad43378e2095413160f3c7
-# 89227a39ad9d4ea39e478d5ddc5823fe
-# d61c073b6eea4a1c94727b228923d33c
-# 786b8667d78f4e74a5694e36884e1261
-# ef13dbf164274b4f9b1fd7be806110a5
-# 23862c95c1be4882913fb904eac6d99a
-# dcec4198ff9640d18f34e10d2e751e38
-# 3766263e95104e89894057d5cf699ef0
-# 8d30e4095b764a048a857c26aaa633a6
 msgid "Execution example::"
 msgstr "Execution example::"
 
-# 6713e747a3044b778255e5fee24f2361
 msgid "Tutorial"
 msgstr "Tutorial"
 
-# e6f7075c5a1140d5b6ba80cea655923a
 msgid "Various data types"
 msgstr "Various data types"
 
-# 0cba4e68adfb460d93b400ec935f8838
 msgid ""
 "Groonga is a full text search engine but also serves as a column-oriented "
 "data store. Groonga supports various data types, such as numeric types, "
@@ -111,11 +37,9 @@ msgstr ""
 "string types, date and time type, longitude and latitude types, etc. This "
 "tutorial shows a list of data types and explains how to use them."
 
-# 57107b2887df4b0c81ffcf7138da2bff
 msgid "Overview"
 msgstr "Overview"
 
-# c89f929f49f746b7928b7848614616ad
 msgid ""
 "The basic data types of Groonga are roughly divided into 5 groups --- "
 "boolean type, numeric types, string types, date/time type and longitude/"
@@ -127,7 +51,6 @@ msgid ""
 "reference/types`."
 msgstr ""
 
-# 8dfc1c5f6664417b910f508f97933893
 msgid ""
 "In addition, Groonga supports reference types and vector types. Reference "
 "types are designed for accessing other tables. Vector types are designed for "
@@ -137,15 +60,12 @@ msgstr ""
 "types are designed for accessing other tables. Vector types are designed for "
 "storing a variable number of values in one element."
 
-# 4542ad4bec654579badbb69e0accc3b0
 msgid "First, let's create a table for this tutorial."
 msgstr "First, let's create a table for this tutorial."
 
-# f0e7ed0282794376802383526419a843
 msgid "Boolean type"
 msgstr "Boolean type"
 
-# e8eed2d57a26423d8be950071033bdee
 msgid ""
 "The boolean type is used to store true or false. To create a boolean type "
 "column, specify Bool to the `type` parameter of :doc:`/reference/commands/"
@@ -155,7 +75,6 @@ msgstr ""
 "column, specify Bool to the `type` parameter of :doc:`/reference/commands/"
 "column_create` command. The default value of the boolean type is false."
 
-# 1c7fc6c6fdce4817a51450ac83bb71da
 msgid ""
 "The following example creates a boolean type column and adds three records. "
 "Note that the third record has the default value because no value is "
@@ -165,11 +84,9 @@ msgstr ""
 "Note that the third record has the default value because no value is "
 "specified."
 
-# f7796c5b4a9e4efea7ba15a76dbccd29
 msgid "Numeric types"
 msgstr "Numeric types"
 
-# f4b198e522e14ff99b3f54f5a3261fd6
 msgid ""
 "The numeric types are divided into integer types and a floating point number "
 "type. The integer types are further divided into the signed integer types "
@@ -178,7 +95,6 @@ msgid ""
 "The default value of the numeric types is 0."
 msgstr ""
 
-# 5bfb766b8c984f06bf3c8903889cb9a3
 msgid ""
 "The following example creates an Int8 column and a Float column, and then "
 "updates existing records. The :doc:`/reference/commands/load` command "
@@ -196,18 +112,15 @@ msgstr ""
 "fractional part. 200 causes an overflow and the result becomes -56. Note "
 "that the result of an overflow/underflow is undefined."
 
-# 3415e9c02d624912a4b268bf80969838
 msgid "String types"
 msgstr "String types"
 
-# 0eb3f40646a347888b0aba2ddf59995d
 msgid ""
 "The string types are divided according to the maximum length. For more "
 "details, see :doc:`/reference/types`. The default value is the zero-length "
 "string."
 msgstr ""
 
-# b1b1f406c0844521b290357cc8daac03
 msgid ""
 "The following example creates a ShortText column and updates existing "
 "records. The third record has the default value because not updated."
@@ -215,11 +128,9 @@ msgstr ""
 "The following example creates a ShortText column and updates existing "
 "records. The third record has the default value because not updated."
 
-# c05bf5242b414d599abd0403026fbf23
 msgid "Date and time type"
 msgstr "Date and time type"
 
-# aa9e27d086c84b2b97f6b4fbfb46a10b
 msgid ""
 "The date and time type of Groonga is Time. Actually, a Time column stores a "
 "date and time as the number of microseconds since the Epoch, 1970-01-01 "
@@ -237,7 +148,6 @@ msgstr ""
 "number to represent a data and time in seconds. The default value is 0.0, "
 "which means the Epoch."
 
-# 6352434705d1449e80ce1bbfcba2dac3
 msgid ""
 "Groonga internally holds the value of Epoch as pair of integer. The first "
 "integer represents the value of seconds, on the other hand, the second "
@@ -246,7 +156,6 @@ msgid ""
 "fraction part means the value of micro seconds."
 msgstr ""
 
-# 990cb4bb61d04d8fa4624195fa7ae140
 msgid ""
 "The following example creates a Time column and updates existing records. "
 "The first record has the default value because not updated."
@@ -254,11 +163,9 @@ msgstr ""
 "The following example creates a Time column and updates existing records. "
 "The first record has the default value because not updated."
 
-# 6942ea8eb68a480fbfb1fe03d7d6dca6
 msgid "Longitude and latitude types"
 msgstr "Longitude and latitude types"
 
-# cf424440cad94e37b084baea9452792e
 msgid ""
 "The longitude and latitude types are divided according to the geographic "
 "coordinate system. For more details, see :doc:`/reference/types`. To "
@@ -266,17 +173,14 @@ msgid ""
 "follows:"
 msgstr ""
 
-# 623d65f1bf50493f9faada4b835c28c9
 msgid ""
 "\"longitude x latitude\" in milliseconds (e.g.: \"128452975x503157902\")"
 msgstr ""
 "\"longitude x latitude\" in milliseconds (e.g.: \"128452975x503157902\")"
 
-# 0d60b38cc2424ffcab0a821da66a1a8c
 msgid "\"longitude x latitude\" in degrees (e.g.: \"35.6813819x139.7660839\")"
 msgstr "\"longitude x latitude\" in degrees (e.g.: \"35.6813819x139.7660839\")"
 
-# 2e9d50f046eb4ec2b7c83299a6daf114
 msgid ""
 "A number with/without a decimal point represents a longitude or latitude in "
 "milliseconds/degrees respectively. Note that a combination of a number with "
@@ -290,7 +194,6 @@ msgstr ""
 "not be used. A comma (',') is also available as a delimiter. The default "
 "value is \"0x0\"."
 
-# e1bd6278ee6544dc8c72a1e876143b38
 msgid ""
 "The following example creates a WGS84GeoPoint column and updates existing "
 "records. The second record has the default value because not updated."
@@ -298,11 +201,9 @@ msgstr ""
 "The following example creates a WGS84GeoPoint column and updates existing "
 "records. The second record has the default value because not updated."
 
-# 24c4f7c7d68d4b2e88180fbd0eac2a43
 msgid "Reference types"
 msgstr "Reference types"
 
-# cb04956181bf4156800e9301d753b750
 msgid ""
 "Groonga supports a reference column, which stores references to records in "
 "its associated table. In practice, a reference column stores the IDs of the "
@@ -312,7 +213,6 @@ msgstr ""
 "its associated table. In practice, a reference column stores the IDs of the "
 "referred records in the associated table and enables access to those records."
 
-# 9dc7c40efd1c41b0aaa5fa153da74b14
 msgid ""
 "You can specify a column in the associated table to the `output_columns` "
 "parameter of a :doc:`/reference/commands/select` command. The format is "
@@ -330,7 +230,6 @@ msgstr ""
 "record, a :doc:`/reference/commands/select` command outputs the default "
 "value of the target column."
 
-# 180fd207be7a407b8261cd92679f41bc
 msgid ""
 "The following example adds a reference column to the Site table that was "
 "created in the previous tutorial. The new column, named link, is designed "
@@ -340,7 +239,6 @@ msgstr ""
 "created in the previous tutorial. The new column, named link, is designed "
 "for storing links among records in the Site table."
 
-# 65a919f70e084873ac4d8be6f692fb77
 msgid ""
 "The `type` parameter of the :doc:`/reference/commands/column_create` command "
 "specifies the table to be associated with the reference column. In this "
@@ -364,11 +262,9 @@ msgstr ""
 "are output because link._key and link.title are specified to the "
 "`output_columns` parameter."
 
-# f6a07fc96d34424dbd3d0d08817a878d
 msgid "Vector types"
 msgstr "Vector types"
 
-# b13537f1bab34346aefe7e24abb9b1ed
 msgid ""
 "Groonga supports a vector column, in which each element can store a variable "
 "number of values. To create a vector column, specify the COLUMN_VECTOR flag "
@@ -380,7 +276,6 @@ msgstr ""
 "to the `flags` parameter of a :doc:`/reference/commands/column_create` "
 "command. A vector column is useful to represent a many-to-many relationship."
 
-# 0bd04252b8df49d5a6de6946d7d8cccf
 msgid ""
 "The previous example used a regular column, so each record could have at "
 "most one link. Obviously, the specification is insufficient because a site "
@@ -392,7 +287,6 @@ msgstr ""
 "usually has more than one links. To solve this problem, the following "
 "example uses a vector column."
 
-# 705819fcd074421199433ec53d16d1b1
 msgid ""
 "The only difference at the first step is the `flags` parameter that "
 "specifies to create a vector column. The `type` parameter of the :doc:`/"
@@ -414,57 +308,47 @@ msgstr ""
 "the primary keys and the titles are output as arrays because links._key and "
 "links.title are specified to the `output_columns` parameter."
 
-# 5442d70575734e768bf673225054a066
 msgid "Drilldown by ``domain`` column"
 msgstr ""
 
-# 2fda355d293744d190a2d28d503ba68e
 msgid "Drilldown"
 msgstr ""
 
-# e4be3e797d66460194469445f0757e92
 msgid ""
 "You learned how to filter search results and sort ones in the previous "
 "sections. Now that you can search as you likes, but how do you summarize the "
 "number of records which has specific value in the column?"
 msgstr ""
 
-# c4c4674f7e9646a99d3a4f9809b72bcc
 msgid ""
 "As you know, there is a naive solution to execute query by every the value "
 "of column, then you can get the number of records as a result. It is a "
 "simple way, but it is not reasonable to many records."
 msgstr ""
 
-# fd548b47c83744adaafa164ab33b149b
 msgid ""
 "If you are familiar with SQL, you will doubt with \"Is there a similar SQL "
 "functionality to ``GROUP BY`` in Groonga?\"."
 msgstr ""
 
-# 771501ad646e4f0ebe46e5d311b3d457
 msgid ""
 "Of course, Groonga provides such a functionality. It's called as "
 "``drilldown``."
 msgstr ""
 
-# 2dc2cadcc84b471bb61ee734b87d6ac0
 msgid ""
 "``drilldown`` enables you to get the number of records which belongs to "
 "specific the value of column at once."
 msgstr ""
 
-# d0136df415b8495685cdcde9eadba238
 msgid ""
 "To illustrate this feature, imagine the case that classification by domain "
 "and grouping by country that domain belongs to."
 msgstr ""
 
-# 88500b4b3afd4fa594e13fc8135659e5
 msgid "Here is the concrete examples how to use this feature."
 msgstr ""
 
-# b0df99484331467f8aa0f66d9a81f070
 msgid ""
 "In this example, we add two columns to ``Site`` table. ``domain`` column is "
 "used for TLD (top level domain). ``country`` column is used for country "
@@ -473,90 +357,68 @@ msgid ""
 "primary key."
 msgstr ""
 
-# a94d699ee5d246ae963acd1eb7bc41a9
 msgid ""
 "Here is a example of drilldown with ``domain`` column. Three kind of values "
 "are used in ``domain`` column - \".org\", \".net\" and \".com\"."
 msgstr ""
 
-# 1ae3f40faa4443fca912062abb456176
 msgid "Here is a summary of above query."
 msgstr ""
 
-# 2e3d24845e4849209726622e140a897a
 msgid "Group by"
 msgstr ""
 
-# 081480ab27214e2eb743fe6848a58cef
 msgid "The number of group records"
 msgstr ""
 
-# 93c84c5ac45b4737a992960ec7b6c8d4
 msgid "Group records means following records"
 msgstr ""
 
-# 1fb756b46a39495eb2fe8267790b2062
 msgid ".org"
 msgstr ""
 
-# 9313f04b20ea43f99e1b36fd5c4de57f
-# 7e9df24a485c4fd4a77485f1d927be7e
-# d5e4417425504db186b99dfe2f6cd34b
 msgid "3"
 msgstr ""
 
-# 5b843932416848f583b1f352cc6744af
 msgid "http://example.org/"
 msgstr ""
 
-# e459bcc8f5be4d39ab268376f10fe882
 msgid "http://example.org/aba"
 msgstr ""
 
-# 2039664ca808484992b730d5d1505603
 msgid "http://example.org/gat"
 msgstr ""
 
-# 0de96a61b6cb4420a9f62ed00d89fb9d
 msgid ".net"
 msgstr ""
 
-# 7f4e28543aa14072924503670ae87198
 msgid "http://example.net/"
 msgstr ""
 
-# 8b65b6bf70e944bd9d335494629221c6
 msgid "http://example.net/afr"
 msgstr ""
 
-# a3ecbeac2ba74bdfb2c7ae408dbefc5c
 msgid "http://example.net/atv"
 msgstr ""
 
-# 58bb17e73cf24be3b68c6a388a9df983
 msgid ".com"
 msgstr ""
 
-# 4df5378f28294808bfddc8b977ee6dde
 msgid "http://example.com/"
 msgstr ""
 
-# cb7b34a30f3c4837bf05c7c7934a48ca
 msgid "http://example.com/rab"
 msgstr ""
 
-# 8ae22b46c9d44e2ea402dc4c7278ddb3
 msgid "http://example.com/vdw"
 msgstr ""
 
-# eb0c1708c5be4f58a71a394a65b01c0d
 msgid ""
 "The value of drilldown are returned as the value of ``_nsubrecs`` column. In "
 "this case, ``Site`` table is grouped by \".org\", \".net\", \".com\" domain. "
 "``_nsubrecs`` shows that each three domain has three records."
 msgstr ""
 
-# 8669eed164924aa28a1cd7ab1d07128d
 msgid ""
 "If you execute drildown to the column which has table as a type, you can get "
 "the value of column which is stored in referenced table. ``_nsubrecs`` "
@@ -564,52 +426,43 @@ msgid ""
 "column stores the number of records which is grouped by."
 msgstr ""
 
-# 3a19b81d6b7644d398ab689ddc8affc4
 msgid ""
 "Then, investigate referenced table in detail. As ``Site`` table use "
 "``SiteDomain`` table as column type of ``domain``, you can use ``--"
 "drilldown_output_columns`` to know detail of referenced column."
 msgstr ""
 
-# b0ae08e9993943a3964dd68a52d4d2f7
 msgid ""
 "Now, you can see detail of each grouped domain, drilldown by ``country`` "
 "column which has \".org\" as column value."
 msgstr ""
 
-# 6842fe705d5a4cf99d1017c242e5d305
 msgid "Drilldown with multiple column"
 msgstr ""
 
-# 8afe6d4f78614cd8829b04bf11ce5151
 msgid ""
 "Drilldown feature supports multiple column. Use comma separated multiple "
 "column names as ``drildown`` parameter. You can get the each result of "
 "drilldown at once."
 msgstr ""
 
-# f97dd651d840431cb03fe8eebc4268b3
 msgid "Sorting drildown results"
 msgstr ""
 
-# 2dc2cadcc84b471bb61ee734b87d6ac0
 msgid ""
 "Use ``--drilldown_sortby`` if you want to sort the result of drilldown. For "
 "example, specify ``_nsubrecs`` as ascending order."
 msgstr ""
 
-# 47fc5d9538c74eb2bd7f78a9b0b0f624
 msgid "limits drildown results"
 msgstr ""
 
-# a694f44741144d6ca59991606e0e4545
 msgid ""
 "The number of drilldown results is limited to 10 as a default. Use "
 "``drilldown_limits`` and ``drilldown_offset`` parameter to customize "
 "orilldown results."
 msgstr ""
 
-# 33e92b42f72e434aa1b5a4061132ffa7
 msgid ""
 "文字列型のカラムに対するドリルダウンは、他の型でのドリルダウンに比べて低速で"
 "す。文字列でのドリルダウンを行いたい場合には、このチュートリアルのように、文"
@@ -621,11 +474,9 @@ msgstr ""
 "字列型を主キーとするテーブルを別途作成し、そのテーブルを型とするカラムを作成"
 "します。"
 
-# 23fb64ec8b304e6bbcb458d64f6c2e31
 msgid "タグ検索・参照関係の逆引き"
 msgstr "タグ検索・参照関係の逆引き"
 
-# 50bf408c39a74cf7931da26de2018846
 msgid ""
 "本チュートリアルで、Groongaはカラム値として他のテーブルへの参照の配列を持つこ"
 "とができることを紹介いたしました。実は、テーブルへの参照の配列データを用いる"
@@ -635,17 +486,14 @@ msgstr ""
 "とができることを紹介いたしました。実は、テーブルへの参照の配列データを用いる"
 "ことによって、いわゆるタグ検索を行うことが可能となります。"
 
-# f8481e3213644b0689c8ee7a53a391ae
 msgid ""
 "タグ検索はGroongaの転置インデックスというデータ構造を用いて高速に行われます。"
 msgstr ""
 "タグ検索はGroongaの転置インデックスというデータ構造を用いて高速に行われます。"
 
-# 210d3c31f70345d9ab7086f49551c9a3
 msgid "タグ検索"
 msgstr "タグ検索"
 
-# dd67862334d1458a85c5e8d391873227
 msgid ""
 "動画共有サイトの検索エンジンを作ることを想定します。1つの動画には、その動画の"
 "特徴を表す、複数の語句が付与されています。「ある語句が付与されている動画の一"
@@ -655,11 +503,9 @@ msgstr ""
 "特徴を表す、複数の語句が付与されています。「ある語句が付与されている動画の一"
 "覧を取得する」検索を行いたいとします。"
 
-# 5d1bff6a27d04a68aad5f7d51dd1d010
 msgid "実際に、動画情報のテーブルを作成し、検索をしてみましょう。"
 msgstr "実際に、動画情報のテーブルを作成し、検索をしてみましょう。"
 
-# 86401ee8509b49cf809abc24ba17250d
 msgid ""
 "動画の情報を保存する、Videoテーブルを作成します。Videoテーブルでは、動画のタ"
 "イトルをtitleカラムに、動画のタグ情報をtagsカラムにTagテーブル型で複数格納し"
@@ -673,7 +519,6 @@ msgstr ""
 "グ文字列を主キーに格納し、Videoテーブルのtagsカラムに対するインデックスを"
 "index_tagsカラムに格納しています。"
 
-# 204985b09c7747f2903d58dcd8c2ff83
 msgid ""
 "インデックスカラムを作成すると、全文検索が高速に行えるようになります。イン"
 "デックスカラムは、対象のカラムに保存されたデータに更新があったとき、自動的に"
@@ -683,11 +528,9 @@ msgstr ""
 "デックスカラムは、対象のカラムに保存されたデータに更新があったとき、自動的に"
 "更新されます。"
 
-# 4a38be64f6734f7ba286a780bb511257
 msgid "「ある語句が付与されている動画の一覧を取得する」検索を行いましょう。"
 msgstr "「ある語句が付与されている動画の一覧を取得する」検索を行いましょう。"
 
-# 351acb4099774e8f8161a69d0b77db10
 msgid ""
 "このように、「Variety」、「Sports」、「Animation」のようなタグで検索を行うこ"
 "とができました。"
@@ -695,11 +538,9 @@ msgstr ""
 "このように、「Variety」、「Sports」、「Animation」のようなタグで検索を行うこ"
 "とができました。"
 
-# 9a28135b4ecd4fa0ace6caffff6914bd
 msgid "参照関係の逆引き"
 msgstr "参照関係の逆引き"
 
-# bafc6d7e23dc44dfb4f8f48c23516f58
 msgid ""
 "Groongaはテーブル間の参照関係の逆引きを高速に行うためのインデックスを付与する"
 "ことができます。タグ検索は、その1例にすぎません。"
@@ -707,7 +548,6 @@ msgstr ""
 "Groongaはテーブル間の参照関係の逆引きを高速に行うためのインデックスを付与する"
 "ことができます。タグ検索は、その1例にすぎません。"
 
-# 1abf50196133460b8e56cb3b5ad416d0
 msgid ""
 "例えば、ソーシャルネットワーキングサイトにおける友人関係を逆引き検索すること"
 "ができます。"
@@ -715,7 +555,6 @@ msgstr ""
 "例えば、ソーシャルネットワーキングサイトにおける友人関係を逆引き検索すること"
 "ができます。"
 
-# c9dc547a0f8848bc944cdad139a0acb9
 msgid ""
 "以下の例では、ユーザー情報を格納するUserテーブルを作成し、ユーザー名を格納す"
 "るusernameカラム、ユーザーの友人一覧を配列で格納するfriendsカラムとそのイン"
@@ -725,13 +564,11 @@ msgstr ""
 "るusernameカラム、ユーザーの友人一覧を配列で格納するfriendsカラムとそのイン"
 "デックスのindex_friendsカラムを追加しています。"
 
-# 790afa8c84304f11a1efa661e5a0c8f5
 msgid ""
 "指定したユーザーを友人リストに入れているユーザーの一覧を表示してみましょう。"
 msgstr ""
 "指定したユーザーを友人リストに入れているユーザーの一覧を表示してみましょう。"
 
-# bc7874066db94448b8fd93159efc9d08
 msgid ""
 "さらに、ドリルダウンを使って、友人リストに入っている数の一覧を表示してみま"
 "しょう。"
@@ -739,15 +576,12 @@ msgstr ""
 "さらに、ドリルダウンを使って、友人リストに入っている数の一覧を表示してみま"
 "しょう。"
 
-# cd9f56be460341efb646198e7c1ff24d
 msgid "このように、テーブルの参照関係を逆にたどる検索ができました。"
 msgstr "このように、テーブルの参照関係を逆にたどる検索ができました。"
 
-# 1886e4403d4f40f3855222cf232a03ee
 msgid "インデックス付きジオサーチ"
 msgstr "インデックス付きジオサーチ"
 
-# ee447dbf85c245908572e03fb5fcfca2
 msgid ""
 "位置情報のカラムに対して、インデックスを付与することが出来ます。大量の位置情"
 "報レコードを検索する場合に、検索速度が速くなります。"
@@ -755,17 +589,14 @@ msgstr ""
 "位置情報のカラムに対して、インデックスを付与することが出来ます。大量の位置情"
 "報レコードを検索する場合に、検索速度が速くなります。"
 
-# fddd4bbb235a494e8a26906c66a2c84f
 msgid ""
 "同様に、位置情報レコードを用いてソートする場合に、ソート速度が速くなります。"
 msgstr ""
 "同様に、位置情報レコードを用いてソートする場合に、ソート速度が速くなります。"
 
-# 0a0a874b81a64aafaa953c87de57f655
 msgid "Basic operations"
 msgstr "Basic operations"
 
-# 4137ca1ca6864f85862b23a807696044
 msgid ""
 "A Groonga package provides a C library (libgroonga) and a command line tool "
 "(groonga). This tutorial explains how to use the command line tool, with "
@@ -777,11 +608,9 @@ msgstr ""
 "which you can create/operate databases, start a server, establish a "
 "connection with a server, etc."
 
-# 58a99bde6fca4ce6961fedac87aca880
 msgid "Create a database"
 msgstr "Create a database"
 
-# b917637c8de947ba8f9a3d9ff692c04c
 msgid ""
 "The first step to using Groonga is to create a new database. The following "
 "shows how to do it."
@@ -789,17 +618,9 @@ msgstr ""
 "The first step to using Groonga is to create a new database. The following "
 "shows how to do it."
 
-# b387dfe1c70e4a19836b8bb701e08a18
-# 87b982d1bd9f4a7e87a29af9ebcba4b4
-# 822c2a7ec5b84acd9b3a5dc687aebf9f
-# 11e88e97ba4a4458bdcb3a404994145e
-# e83dae1cd069466da6aee37f99442c98
-# 6c2e8b6216b84a6f88207e1c21f8efef
-# 6c2e8b6216b84a6f88207e1c21f8efef
 msgid "Form::"
 msgstr "Form::"
 
-# 16b078ed1cd8407fb2b0bf2e2dbb8280
 msgid ""
 "The `-n` option specifies to create a new database and DB_PATH specifies the "
 "path of the new database. Actually, a database consists of a series of files "
@@ -813,7 +634,6 @@ msgstr ""
 "database. DB_PATH also specifies the path prefix for other files. Note that "
 "database creation fails if DB_PATH points to an existing file."
 
-# 7f911459d0b64ebaa1c9d7b7f8108cd5
 msgid ""
 "This command creates a new database and then enters into interactive mode in "
 "which Groonga prompts you to enter commands for operating that database. You "
@@ -823,7 +643,6 @@ msgstr ""
 "which Groonga prompts you to enter commands for operating that database. You "
 "can terminate this mode with Ctrl-d."
 
-# 472b4dee17ee45f4884ab6dfb95d74a4
 msgid ""
 "After this database creation, you can find a series of files in /tmp/groonga-"
 "databases."
@@ -831,15 +650,12 @@ msgstr ""
 "After this database creation, you can find a series of files in /tmp/groonga-"
 "databases."
 
-# 14150c0078df42a591033d103b6a35e8
 msgid "Operate a database"
 msgstr "Operate a database"
 
-# 065c199dff9e44a1bbbb3044209bf5c2
 msgid "The following shows how to operate an existing database."
 msgstr "The following shows how to operate an existing database."
 
-# f74bbe233abe4b4985ade2d0ecd9ee4f
 msgid ""
 "DB_PATH specifies the path of a target database. This command fails if the "
 "specified database does not exist."
@@ -847,7 +663,6 @@ msgstr ""
 "DB_PATH specifies the path of a target database. This command fails if the "
 "specified database does not exist."
 
-# 205032e86a44456983e595bf8bde1730
 msgid ""
 "If COMMAND is specified, Groonga executes COMMAND and returns the result. "
 "Otherwise, Groonga starts in interactive mode that reads commands from the "
@@ -855,7 +670,6 @@ msgid ""
 "interactive mode."
 msgstr ""
 
-# b19b32246f6d4807b1082363e719fb84
 msgid ""
 "Let's see the status of a Groonga process by using a :doc:`/reference/"
 "commands/status` command."
@@ -863,7 +677,6 @@ msgstr ""
 "Let's see the status of a groonga process by using a :doc:`/reference/"
 "commands/status` command."
 
-# 40cf3219df6044cf8a2aa6eebc8bc953
 msgid ""
 "As shown in the above example, a command returns a JSON array. The first "
 "element contains an error code, execution time, etc. The second element is "
@@ -873,15 +686,12 @@ msgstr ""
 "element contains an error code, execution time, etc. The second element is "
 "the result of an operation."
 
-# 4c9b0191a25c43968267a37154f437f7
 msgid "Command format"
 msgstr "Command format"
 
-# 4172dca81415463f8af3b23f92af997e
 msgid "Commands for operating a database accept arguments as follows::"
 msgstr "Commands for operating a database accept arguments as follows::"
 
-# c98b67f4e27c44c08287d2eca3f8f9c9
 msgid ""
 "In the first form, arguments must be passed in order. This kind of arguments "
 "are called positional arguments because the position of each argument "
@@ -891,7 +701,6 @@ msgstr ""
 "are called positional arguments because the position of each argument "
 "determines its meaning."
 
-# 97086a1f0fcf4c50b95ddca15df43fd8
 msgid ""
 "In the second form, you can specify a parameter name with its value. So, the "
 "order of arguments is not defined. This kind of arguments are known as named "
@@ -901,7 +710,6 @@ msgstr ""
 "order of arguments is not defined. This kind of arguments are known as named "
 "parameters or keyword arguments."
 
-# 5124c987da7446cd84a496a72503e1d8
 msgid ""
 "If you want to specify a value which contains white-spaces or special "
 "characters, such as quotes and parentheses, please enclose the value with "
@@ -911,7 +719,6 @@ msgstr ""
 "characters, such as quotes and parentheses, please enclose the value with "
 "single-quotes or double-quotes."
 
-# f722970216d94fea8a945637d1d5f0cc
 msgid ""
 "For details, see also the paragraph of \"command\" in :doc:`/reference/"
 "executables/groonga`."
@@ -919,75 +726,57 @@ msgstr ""
 "For details, see also the paragraph of \"command\" in :doc:`/reference/"
 "executables/groonga`."
 
-# bdeaf1614bd4473b88cb56ce25a3868e
 msgid "Basic commands"
 msgstr "Basic commands"
 
-# 38faaca0f0b042de9dc31522c3590099
 msgid ":doc:`/reference/commands/status`"
 msgstr ""
 
-# ef2818e6664d402cb3ff68d3ac335ece
 msgid "shows status of a Groonga process."
 msgstr "shows status of a Groonga process."
 
-# a296dfd2c7644f52afa892d4183d040a
 msgid ":doc:`/reference/commands/table_list`"
 msgstr ""
 
-# 9c730529bdca40ebabf1b60c4575f355
 msgid "shows a list of tables in a database."
 msgstr "shows a list of tables in a database."
 
-# bd690b460c0f46dc9b7a1844480c92bf
 msgid ":doc:`/reference/commands/column_list`"
 msgstr ""
 
-# b289d08e588f4afeb3232026cf3ef8ed
 msgid "shows a list of columns in a table."
 msgstr "shows a list of columns in a table."
 
-# a296dfd2c7644f52afa892d4183d040a
 msgid ":doc:`/reference/commands/table_create`"
 msgstr ""
 
-# 481ee24f927a4c1ca2ebacedd35f4607
 msgid "adds a table to a database."
 msgstr "adds a table to a database."
 
-# bd690b460c0f46dc9b7a1844480c92bf
 msgid ":doc:`/reference/commands/column_create`"
 msgstr ""
 
-# 7ba6b39c8bed49718f390a0a86bad043
 msgid "adds a column to a table."
 msgstr "adds a column to a table."
 
-# 946760b02059413eab8d255a43fd5009
 msgid ":doc:`/reference/commands/select`"
 msgstr ""
 
-# fb26a99b01254e6f9aca345821e9ae6a
 msgid "searches records from a table and shows the result."
 msgstr "searches records from a table and shows the result."
 
-# cea0e3083f8d4da7b8937d07989e238c
 msgid ":doc:`/reference/commands/load`"
 msgstr ""
 
-# e4817aff0b2a4e3bb698655736a13a2f
 msgid "inserts records to a table."
 msgstr "inserts records to a table."
 
-# c8b62f04fc904cfd9998323abd94df3a
 msgid "Create a table"
 msgstr "Create a table"
 
-# a296dfd2c7644f52afa892d4183d040a
 msgid "A :doc:`/reference/commands/table_create` command creates a new table."
 msgstr "A :doc:`/reference/commands/table_create` command creates a new table."
 
-# ecc8372d3767465aa956630293e82b53
 msgid ""
 "In most cases, a table has a primary key which must be specified with its "
 "data type and index type."
@@ -995,7 +784,6 @@ msgstr ""
 "In most cases, a table has a primary key which must be specified with its "
 "data type and index type."
 
-# 1d778c35935e4965938eccd1d3e7e535
 msgid ""
 "There are various data types such as integers, strings, etc. See also :doc:`/"
 "reference/types` for more details. The index type determines the search "
@@ -1003,7 +791,6 @@ msgid ""
 "described later."
 msgstr ""
 
-# bdc10431535f4d22af04c846ed327d31
 msgid ""
 "Let's create a table. The following example creates a table with a primary "
 "key. The `name` parameter specifies the name of the table. The `flags` "
@@ -1015,23 +802,19 @@ msgstr ""
 "parameter specifies the index type for the primary key. The `key_type` "
 "parameter specifies the data type of the primary key."
 
-# db71a9b875374a6fb1fc2cf9de2f7c86
 msgid ""
 "The second element of the result indicates that the operation succeeded."
 msgstr ""
 "The second element of the result indicates that the operation succeeded."
 
-# 0472aee8824c4a1ab0db921a4162a16e
 msgid "View a table"
 msgstr "View a table"
 
-# 4ab6be0192534a88a5e4e924bf708e6f
 msgid ""
 "A :doc:`/reference/commands/select` command can enumerate records in a table."
 msgstr ""
 "A :doc:`/reference/commands/select` command can enumerate records in a table."
 
-# 8f2e122554704b73ba2bd15f9ba02e28
 msgid ""
 "When only a table name is specified with a `table` parameter, a :doc:`/"
 "reference/commands/select` command returns the first (at most) 10 records in "
@@ -1045,7 +828,6 @@ msgstr ""
 "next array is a list of columns. [\"_id\",\"Uint32\"] is a column of UInt32, "
 "named _id. [\"_key\",\"ShortText\"] is a column of ShortText, named _key."
 
-# 4e49b4e64c5445129e354e7fd44c3763
 msgid ""
 "The above two columns, _id and _key, are the necessary columns. The _id "
 "column stores IDs those are automatically allocated by Groonga. The _key "
@@ -1057,17 +839,14 @@ msgstr ""
 "column is associated with the primary key. You are not allowed to rename "
 "these columns."
 
-# e9df1e5d526b424a807c0064f6e3dc90
 msgid "Create a column"
 msgstr "Create a column"
 
-# bd690b460c0f46dc9b7a1844480c92bf
 msgid ""
 "A :doc:`/reference/commands/column_create` command creates a new column."
 msgstr ""
 "A :doc:`/reference/commands/column_create` command creates a new column."
 
-# 80170268e7124e86b21221d92bff78fe
 msgid ""
 "Let's add a column. The following example adds a column to the Site table. "
 "The `table` parameter specifies the target table. The `name` parameter "
@@ -1079,11 +858,9 @@ msgstr ""
 "specifies the name of the column. The `type` parameter specifies the data "
 "type of the column."
 
-# c1b9c5f0d4474e00a0fb97cf264efe47
 msgid "Load records"
 msgstr "Load records"
 
-# c0ecd2a2e5db455c9427218e6e4b6235
 msgid ""
 "A :doc:`/reference/commands/load` command loads JSON-formatted records into "
 "a table."
@@ -1091,11 +868,9 @@ msgstr ""
 "A :doc:`/reference/commands/load` command loads JSON-formatted records into "
 "a table."
 
-# d1c2634788634e789e7a78df127eb733
 msgid "The following example loads nine records into the Site table."
 msgstr "The following example loads nine records into the Site table."
 
-# 63fb54acdcfb47b69f4ad4892aa2a725
 msgid ""
 "The second element of the result indicates how many records were "
 "successfully loaded. In this case, all the records are successfully loaded."
@@ -1103,21 +878,17 @@ msgstr ""
 "The second element of the result indicates how many records were "
 "successfully loaded. In this case, all the records are successfully loaded."
 
-# 76cca9c92a0743188ed954e946333ac6
 msgid "Let's make sure that these records are correctly stored."
 msgstr "Let's make sure that these records are correctly stored."
 
-# 057606e1fe44494296690a9b640afbd3
 msgid "Get a record"
 msgstr "Get a record"
 
-# 946760b02059413eab8d255a43fd5009
 msgid ""
 "A :doc:`/reference/commands/select` command can search records in a table."
 msgstr ""
 "A :doc:`/reference/commands/select` command can search records in a table."
 
-# b8c5c5e01fa84e50b586fb24c795ff93
 msgid ""
 "If a search condition is specified with a `query` parameter, a :doc:`/"
 "reference/commands/select` command searches records matching the search "
@@ -1127,7 +898,6 @@ msgstr ""
 "reference/commands/select` command searches records matching the search "
 "condition and returns the matched records."
 
-# 8acb5421af074bec89cef87b210b4ab8
 msgid ""
 "Let's get a record having a specified record ID. The following example gets "
 "the first record in the Site table. More precisely, the `query` parameter "
@@ -1137,7 +907,6 @@ msgstr ""
 "the first record in the Site table. More precisely, the `query` parameter "
 "specifies a record whose _id column stores 1."
 
-# eb88490a72934d9abebdcbe57f889c90
 msgid ""
 "Next, let's get a record having a specified key. The following example gets "
 "the record whose primary key is \"http://example.org/\". More precisely, the "
@@ -1149,15 +918,12 @@ msgstr ""
 "`query` parameter specifies a record whose _key column stores \"http://"
 "example.org/\"."
 
-# 7e4877645a4e4ce2842c51467c9cfab4
 msgid "Create a lexicon table for full text search"
 msgstr "Create a lexicon table for full text search"
 
-# 2b196be7194b4ea0a589b1cb1ea1489e
 msgid "Let's go on to how to make full text search."
 msgstr "Let's go on to how to make full text search."
 
-# 549371b875424d549221bfe44599ad01
 msgid ""
 "Groonga uses an inverted index to provide fast full text search. So, the "
 "first step is to create a lexicon table which stores an inverted index, also "
@@ -1171,7 +937,6 @@ msgstr ""
 "vocabulary made up of index terms and each record stores postings lists for "
 "one index term."
 
-# 7f87e937c7eb45c2b8471877f88ec251
 msgid ""
 "The following shows a command which creates a lexicon table named Terms. The "
 "data type of its primary key is ShortText."
@@ -1179,7 +944,6 @@ msgstr ""
 "The following shows a command which creates a lexicon table named Terms. The "
 "data type of its primary key is ShortText."
 
-# 8eac662c69204489b3afaca45356f96e
 msgid ""
 "The :doc:`/reference/commands/table_create` command takes many parameters "
 "but you don't need to understand all of them. Please skip the next paragraph "
@@ -1189,7 +953,6 @@ msgstr ""
 "but you don't need to understand all of them. Please skip the next paragraph "
 "if you are not interested in how it works."
 
-# d5a6616e76534037a94b060c5c6f31f7
 msgid ""
 "The TABLE_PAT_KEY flag specifies to store index terms in a patricia trie. "
 "The KEY_NORMALIZE flag specifies to normalize index terms. In this example, "
@@ -1203,11 +966,9 @@ msgstr ""
 "specifies the method for tokenizing text. This example uses TokenBigram that "
 "is generally called N-gram."
 
-# a8ed706c0719492f8383ed9836d9e451
 msgid "Create an index column for full text search"
 msgstr "Create an index column for full text search"
 
-# 63484a64e25a4cb3b6295d304995415d
 msgid ""
 "The second step is to create an index column, which allows you to search "
 "records from its associated column. That is to say this step specifies which "
@@ -1217,7 +978,6 @@ msgstr ""
 "records from its associated column. That is to say this step specifies which "
 "column needs an index."
 
-# e4e460363d9a49199c775137015980e3
 msgid ""
 "Let's create an index column. The following example creates an index column "
 "for a column in the Site table."
@@ -1225,7 +985,6 @@ msgstr ""
 "Let's create an index column. The following example creates an index column "
 "for a column in the Site table."
 
-# 5ce0139485574e71b118856dba965181
 msgid ""
 "The `table` parameter specifies the index table and the `name` parameter "
 "specifies the index column. The `type` parameter specifies the target table "
@@ -1243,7 +1002,6 @@ msgstr ""
 "each index term. This combination, COLUMN_INDEX|WITH_POSITION, is "
 "recommended for the general purpose."
 
-# 89101a82f5154ac9ae46008a2030c0c3
 msgid ""
 "You can create a lexicon table and index columns before/during/after loading "
 "records. If a target column already has records, Groonga creates an inverted "
@@ -1251,11 +1009,9 @@ msgid ""
 "indexed column, Groonga updates the inverted index in a dynamic manner."
 msgstr ""
 
-# aa38fedf0441417abb938d6c1a978ea3
 msgid "Full text search"
 msgstr "Full text search"
 
-# eca54da2b0bf4e6085f3dd1b44a80334
 msgid ""
 "It's time. You can make full text search with a :doc:`/reference/commands/"
 "select` command."
@@ -1263,7 +1019,6 @@ msgstr ""
 "It's time. You can make full text search with a :doc:`/reference/commands/"
 "select` command."
 
-# 57f12c3a74e944e6ac77a2e9f0aac162
 msgid ""
 "A query for full text search is specified with a `query` parameter. The "
 "following example searches records whose \"title\" column contains \"this\". "
@@ -1277,7 +1032,6 @@ msgstr ""
 "matches upper case and capitalized terms in a record if KEY_NORMALIZE was "
 "specified when creating a lexcon table."
 
-# 4437256cbbb34b649f08c8debacc9b88
 msgid ""
 "In this example, the first record matches the query because its title "
 "contains \"This\", that is the capitalized form of the query."
@@ -1285,7 +1039,6 @@ msgstr ""
 "In this example, the first record matches the query because its title "
 "contains \"This\", that is the capitalized form of the query."
 
-# ee33ba0aa1d0487da60afc1b46a6bd78
 msgid ""
 "A :doc:`/reference/commands/select` command accepts an optional parameter, "
 "named `match_columns`, that specifies the default target columns. This "
@@ -1295,7 +1048,6 @@ msgstr ""
 "named `match_columns`, that specifies the default target columns. This "
 "parameter is used if target columns are not specified in a query. [#]_"
 
-# d1849533484d44499b508d44727854de
 msgid ""
 "The combination of \"`--match_columns` title\" and \"`--query` this\" brings "
 "you the same result that \"`--query` title:@this\" does."
@@ -1303,11 +1055,9 @@ msgstr ""
 "The combination of \"`--match_columns` title\" and \"`--query` this\" brings "
 "you the same result that \"`--query` title:@this\" does."
 
-# 78ce1afa384f4011876e3df97a9d31b5
 msgid "Specify output columns"
 msgstr "Specify output columns"
 
-# 284b169b4f614da9a341cda08ec0207a
 msgid ""
 "An `output_columns` parameter of a :doc:`/reference/commands/select` command "
 "specifies columns to appear in the search result. If you want to specify "
@@ -1317,7 +1067,6 @@ msgstr ""
 "specifies columns to appear in the search result. If you want to specify "
 "more than one columns, please separate column names by commas (',')."
 
-# 22ba120c9635482db13190431b8c7ade
 msgid ""
 "This example specifies three output columns including the _score column, "
 "which stores the relevance score of each record."
@@ -1325,11 +1074,9 @@ msgstr ""
 "This example specifies three output columns including the _score column, "
 "which stores the relevance score of each record."
 
-# 5cbfd0e5389c4596adc7227bf3e53ec8
 msgid "Specify output ranges"
 msgstr "Specify output ranges"
 
-# 828d823e957b4aef9c9fda658f8a63bb
 msgid ""
 "A :doc:`/reference/commands/select` command returns a part of its search "
 "result if `offset` and/or `limit` parameters are specified. These parameters "
@@ -1341,7 +1088,6 @@ msgstr ""
 "are useful to paginate a search result, a widely-used interface which shows "
 "a search result on a page by page basis."
 
-# 6065c9af553042329bea9a95a30e49ae
 msgid ""
 "An `offset` parameter specifies the starting point and a `limit` parameter "
 "specifies the maximum number of records to be returned. If you need the "
@@ -1351,11 +1097,9 @@ msgstr ""
 "specifies the maximum number of records to be returned. If you need the "
 "first record in a search result, the offset parameter must be 0 or omitted."
 
-# def83426259941ccaab485015955c00a
 msgid "Sort a search result"
 msgstr "Sort a search result"
 
-# a64a8f601ca9431cab1ef60bb511bd3d
 msgid ""
 "A :doc:`/reference/commands/select` command sorts its result when used with "
 "a `sortby` parameter."
@@ -1363,7 +1107,6 @@ msgstr ""
 "A :doc:`/reference/commands/select` command sorts its result when used with "
 "a `sortby` parameter."
 
-# b4513c9d6e2845249772bf2803159e0d
 msgid ""
 "A `sortby` parameter specifies a column as a sorting creteria. A search "
 "result is arranged in ascending order of the column values. If you want to "
@@ -1375,12 +1118,10 @@ msgstr ""
 "sort a search result in reverse order, please add a leading hyphen ('-') to "
 "the column name in a parameter."
 
-# 5281651a2cf44047b6c7e8adacedcc16
 msgid "The following example shows records in the Site table in reverse order."
 msgstr ""
 "The following example shows records in the Site table in reverse order."
 
-# f1a62d243a5449f0a68402d2ec3c6d98
 msgid ""
 "The next example uses the _score column as the sorting criteria for ranking "
 "the search result. The result is sorted in relevance order."
@@ -1388,7 +1129,6 @@ msgstr ""
 "The next example uses the _score column as the sorting criteria for ranking "
 "the search result. The result is sorted in relevance order."
 
-# ad8e74d70ac442c886389f0f47701b92
 msgid ""
 "If you want to specify more than one columns, please separate column names "
 "by commas (','). In such a case, a search result is sorted in order of the "
@@ -1400,11 +1140,9 @@ msgstr ""
 "values in the first column, and then records having the same values in the "
 "first column are sorted in order of the second column values."
 
-# 4e9177fa6e574313aaf2bca7377522fc
 msgid "footnote"
 msgstr "footnote"
 
-# 3322441de6804b8b9d7c05c70fe32155
 msgid ""
 "Currently, a `match_columns` parameter is available iff there exists an "
 "inverted index for full text search. A `match_columns` parameter for a "
@@ -1414,11 +1152,9 @@ msgstr ""
 "inverted index for full text search. A `match_columns` parameter for a "
 "regular column is not supported."
 
-# 415a0cf255ba4c50ad2505fea24e3280
 msgid "全文検索の語彙表に対する追加情報"
 msgstr "全文検索の語彙表に対する追加情報"
 
-# 47a9324420834747a5b3a323f586161d
 msgid ""
 "Groongaでは、全文検索に用いるための語意表がテーブルとして扱えます。よって、語"
 "彙ごとに複数の情報を保持することができます。例えば、語彙の出現数や検索ストッ"
@@ -1428,19 +1164,15 @@ msgstr ""
 "彙ごとに複数の情報を保持することができます。例えば、語彙の出現数や検索ストッ"
 "プワードのフラグ、単語の重要度などを保持することができます。"
 
-# 6746635159f94d9daafc2d99126b5f9f
 msgid "この項目については、現在執筆中です。"
 msgstr "この項目については、現在執筆中です。"
 
-# ab6efee617084ae78539af763a2fe49d
 msgid "match_columnsパラメータ"
 msgstr "match_columnsパラメータ"
 
-# d66dbeb1d4a84212b3137d15a9922e12
 msgid "複数のカラムを対象とした全文検索"
 msgstr "複数のカラムを対象とした全文検索"
 
-# cc65781ea2c14819a882ff12f4901856
 msgid ""
 "Groongaでは、複数のカラムを対象とした全文検索を行うことができます。例えば、ブ"
 "ログのテーブルで、タイトルと内容とがそれぞれ別のカラムに入ったものがあるとし"
@@ -1450,7 +1182,6 @@ msgstr ""
 "ログのテーブルで、タイトルと内容とがそれぞれ別のカラムに入ったものがあるとし"
 "ましょう。「タイトルもしくは内容に特定の単語を含む」検索を行いたいとします。"
 
-# d0f28cca69204fb4aa14a189ac164a11
 msgid ""
 "この場合、2つのインデックス作成方式があります。1つは、それぞれのカラムに1つず"
 "つインデックスを付与する方式です。もう1つは、複数のカラムに対して1つのイン"
@@ -1462,11 +1193,9 @@ msgstr ""
 "デックスを付与する方式です。Groongaでは、どちらの形式のインデックスが存在して"
 "いる場合でも、同一の記法で全文検索を行うことができます。"
 
-# 4f870bb8d6d4454894c0c3bc35d3fc5d
 msgid "カラムごとにインデックスを付与する場合"
 msgstr "カラムごとにインデックスを付与する場合"
 
-# 3729b78ece7d43d4a32ac08d7c1b5faf
 msgid ""
 "Blog1テーブルを作り、タイトル文字列のtitleカラム、本文のmessageカラムを追加し"
 "ています。 インデックス用のIndexBlog1テーブルも作り、titleカラムのインデック"
@@ -1478,7 +1207,6 @@ msgstr ""
 "ス用にindex_titleカラム、messageカラムのインデック用にindex_messageカラムと、"
 "それぞれ1カラムごとに1つずつ追加しています。"
 
-# d429bbcd9a8a4bbd8e2904eef1bc0955
 msgid ""
 "match_columnsオプションで、検索対象のカラムを複数指定することが出来ます。検索"
 "する文字列はqueryオプションで指定します。これを使うことで、タイトルと本文を全"
@@ -1488,15 +1216,12 @@ msgstr ""
 "する文字列はqueryオプションで指定します。これを使うことで、タイトルと本文を全"
 "文検索することができます。"
 
-# c40c27bd7e48446ea743175544788506
 msgid "実際に検索してみましょう。"
 msgstr "実際に検索してみましょう。"
 
-# a39633207be3465ba5c10007054c53a9
 msgid "複数のカラムにまたがったインデックスを付与する場合"
 msgstr "複数のカラムにまたがったインデックスを付与する場合"
 
-# 9fd4eff035b242e491e4a1782790bf52
 msgid ""
 "内容は上の例とほぼ同じですが、titleとmessageの2つのカラムに対するインデックス"
 "が共通になっており、インデックスカラムが1つしかありません。"
@@ -1504,7 +1229,6 @@ msgstr ""
 "内容は上の例とほぼ同じですが、titleとmessageの2つのカラムに対するインデックス"
 "が共通になっており、インデックスカラムが1つしかありません。"
 
-# de81adec321a4d9e937ff3ce4a6745bc
 msgid ""
 "共通のインデックスを用いても、titleカラムのみでの検索、messageカラムのみでの"
 "検索、titleもしくはmessageカラムでの検索、全ての検索を行うことができます。"
@@ -1512,53 +1236,42 @@ msgstr ""
 "共通のインデックスを用いても、titleカラムのみでの検索、messageカラムのみでの"
 "検索、titleもしくはmessageカラムでの検索、全ての検索を行うことができます。"
 
-# 7cbb9683535846e4ae6a3c51a6b27d00
 msgid "実際に検索してみましょう。結果は上の例と同じになります。"
 msgstr "実際に検索してみましょう。結果は上の例と同じになります。"
 
-# e07680f1f1b34582bfb15e2d3d8ff7bc
 msgid ""
 "There may be a question that \"which is the better solution for indexing.\" "
 "It depends on the case."
 msgstr ""
 
-# b4308fc44f144fb58cb9f026065e4948
 msgid ""
 "Indexes for each column - The update performance tends to be better than "
 "multiple colum index because there is enough buffer for updating. On the "
 "other hand, the efficiency of disk usage is not so good."
 msgstr ""
 
-# b4308fc44f144fb58cb9f026065e4948
 msgid ""
 "Indexes for multiple column - It saves disk usage because it shares common "
 "buffer. On the other hand, the update performance is not so good."
 msgstr ""
 
-# f6754860a4814da1b5a58353bafa2b7b
 msgid "インデックス名を指定した全文検索"
 msgstr "インデックス名を指定した全文検索"
 
-# 7026bc5fc11740ada2580bcbb5fdf4f4
-# b11d8defd8b34f29a5742f36c5d99504
 msgid "執筆中です。"
 msgstr "執筆中です。"
 
-# 158255a549314f9e9c18b7c5aba6183e
 msgid "Nested index search among related table by column index"
 msgstr ""
 
-# 7514e4802eef498080a819cd21605735
 msgid ""
 "If there are relationships among multiple table with column index, you can "
 "search multiple table by specifying reference column name."
 msgstr ""
 
-# 2bdd410d00a648f09758db11fc6bcbdb
 msgid "Here is the concrete example."
 msgstr ""
 
-# 7aa66ee3d560462a99dec73f850935cc
 msgid ""
 "There are tables which store blog articles, comments for articles. The table "
 "which stores articles has columns for article and comment. And the comment "
@@ -1566,46 +1279,36 @@ msgid ""
 "for comment and column index to article table."
 msgstr ""
 
-# 6c97ae232b3d456a9fb386e65dc7af4a
 msgid ""
 "if you want to search the articles which contain specified keyword in "
 "comment, you need to execute fulltext search for table of comment, then "
 "search the records which contains fulltext search results."
 msgstr ""
 
-# e05deb6742a44977b29d04bb7fe636a9
 msgid ""
 "But, you can search the records by specifying the reference column index at "
 "once."
 msgstr ""
 
-# 1381ec850ddb4d26927c1ddb76873e25
 msgid "Here is the sample schema."
 msgstr ""
 
-# 98a56eac703a4547aca76f2805f96295
-# 20b9b78c40514b04bd41172a3263c693
 msgid "Here is the sample data."
 msgstr ""
 
-# 3daa396145d344e995671784b35aec9f
 msgid ""
 "You can write the query that search the records which contains specified "
 "keyword as a comment, then fetch the articles which refers to it."
 msgstr ""
 
-# bb909041bda04b0f825990429c0e0c6d
-# 916d2d541e014a7687bec78fa8fe082e
 msgid "Query for searching the records described above::"
 msgstr ""
 
-# 2ae1b2c15ec64e87b4575551c0591790
 msgid ""
 "You need to concatenate comment column of Articles table and content column "
 "of Comments table with period(.) as --match_columns arguments."
 msgstr ""
 
-# 3ae489e66a0344479e5e6ed3607782dd
 msgid ""
 "At first, this query execute fulltext search from content of Comments table, "
 "then fetch the records of Articles table which refers to already searched "
@@ -1614,37 +1317,31 @@ msgid ""
 "intended search results.)"
 msgstr ""
 
-# 18381e3bd2f54aa68d3b12570c6ebb93
 msgid ""
 "Now, you can search articles which contains specific keywords as a comment."
 msgstr ""
 
-# 702a096b1fc8448f81fb1bb413cd87d9
 msgid ""
 "The feature of nested index search is not limited to the relationship "
 "between two table only."
 msgstr ""
 
-# 16ec1265a8c8450aa4acf8dec0f5c1c4
 msgid ""
 "Here is the sample schema similar to previous one. The difference is added "
 "table which express 'Reply' and relationship is extended to three tables."
 msgstr ""
 
-# 6624d752c89942c58b85d589334b101e
 msgid ""
 "The first query searches 'mroonga' from Comments2 table, the second one "
 "searches 'mroonga' from Replies2 and Comment2 table by using reference "
 "column index."
 msgstr ""
 
-# f1ca7a8f0e9145b8b218475e8076933a
 msgid ""
 "As a result, the first query matches two article because of Comments2 table "
 "has two records which contains 'mroonga' as keyword."
 msgstr ""
 
-# 5c54d47aab8e4cd6a09e021fa7b2448c
 msgid ""
 "On the other hand, the second one matches one article only because of "
 "Replies2 table has only one record which contains 'mroonga' as keyword, and "
@@ -1652,15 +1349,12 @@ msgid ""
 "Comments2 table."
 msgstr ""
 
-# 134cc02862134fd7b615c8e26031984d
 msgid "インデックスの重み"
 msgstr "インデックスの重み"
 
-# 72f811fa04f9474eb25c5cfbbc40880e
 msgid "マイクロブログ検索システムの作成"
 msgstr "マイクロブログ検索システムの作成"
 
-# f45f0fca7d8b4bbdaeca915431826f74
 msgid ""
 "これまで学んだGroongaの機能を用いて、マイクロブログの検索システムを作成してみ"
 "ましょう。マイクロブログとは、Twitterのような短いメッセージを投稿するブログで"
@@ -1670,19 +1364,15 @@ msgstr ""
 "ましょう。マイクロブログとは、Twitterのような短いメッセージを投稿するブログで"
 "す。"
 
-# 7d98203dccde47e7865902a22157bee6
 msgid "テーブルの作成"
 msgstr "テーブルの作成"
 
-# 1bab3b08cc66400db61de82c69d6439d
 msgid "まずは、テーブルを作成します。"
 msgstr "まずは、テーブルを作成します。"
 
-# 83e4dd69cb2540bc97f9ba3c91f3c2d5
 msgid "Usersテーブル"
 msgstr "Usersテーブル"
 
-# f3f7441967a2487a9c66a82f96bd5f67
 msgid ""
 "ユーザーの名前や自己紹介文、フォローしているユーザー一覧など、ユーザー情報を"
 "格納するためのテーブルです。"
@@ -1690,67 +1380,48 @@ msgstr ""
 "ユーザーの名前や自己紹介文、フォローしているユーザー一覧など、ユーザー情報を"
 "格納するためのテーブルです。"
 
-# b8b0e4ce52344505b9c662fe98888945
-# a47511f549514db4a8b193e27a899004
-# 792191d5bea748d7a3ffd7aea9e630ca
-# f82bb1482b0c43368ffb1d097f68425f
 msgid "``_key``"
 msgstr ""
 
-# 189c26fd9d31469688132e5f6f21171d
 msgid "ユーザーID"
 msgstr "ユーザーID"
 
-# 5bdae7d53f8e4d60aa5057c390834a39
 msgid "``name``"
 msgstr ""
 
-# 601827fb90434d6cb43b58240985e274
 msgid "ユーザー名"
 msgstr "ユーザー名"
 
-# caebe8f2a2004ecd88d3a504167d2d3b
 msgid "``follower``"
 msgstr ""
 
-# 773d90cf2204428283333db212c251a1
 msgid "フォローしているユーザーの一覧"
 msgstr "フォローしているユーザーの一覧"
 
-# 534291d9c77844c78ac3e7c6d2abfb22
 msgid "``favorites``"
 msgstr ""
 
-# 9e8fa58ac7454071834b1a4fdfc3600c
 msgid "お気に入りのコメント一覧"
 msgstr "お気に入りのコメント一覧"
 
-# 281d6e66c9f841aa96c09f6740cff51f
-# 1bb5c0dfb66f4421ba656000a1627829
 msgid "``location``"
 msgstr ""
 
-# f9c29c34e71b4cdfb5144cda0175491e
 msgid "ユーザーの現在地(緯度経度座標)"
 msgstr "ユーザーの現在地(緯度経度座標)"
 
-# 830faeeb68404a7caefb54975d34499e
 msgid "``location_str``"
 msgstr ""
 
-# a3b2bd0baff242cc9309e20e4b57e091
 msgid "ユーザーの現在地(文字列)"
 msgstr "ユーザーの現在地(文字列)"
 
-# b24110485f904782bfff9ecb73d31c77
 msgid "``description``"
 msgstr ""
 
-# b1366cf9cbef47d896dc3dd0277059d5
 msgid "ユーザーの自己紹介"
 msgstr "ユーザーの自己紹介"
 
-# c070389400464349898708433e5db1bf
 msgid ""
 "Usersテーブルのfollowerカラムに対するインデックス。 このインデックスを作るこ"
 "とで、あるユーザーをフォローしているユーザーを検索できるようになります。"
@@ -1758,15 +1429,12 @@ msgstr ""
 "Usersテーブルのfollowerカラムに対するインデックス。 このインデックスを作るこ"
 "とで、あるユーザーをフォローしているユーザーを検索できるようになります。"
 
-# 5841d64947d84305b35f27663672e766
 msgid "``followee``"
 msgstr ""
 
-# f59104cba2ad433cbccad708a3699149
 msgid "Commentsテーブル"
 msgstr "Commentsテーブル"
 
-# f05c2d1d955e4958945ed64dc9c93f5f
 msgid ""
 "コメント内容や投稿日時、返信先情報など、コメントに関する内容を格納するテーブ"
 "ルです。"
@@ -1774,63 +1442,48 @@ msgstr ""
 "コメント内容や投稿日時、返信先情報など、コメントに関する内容を格納するテーブ"
 "ルです。"
 
-# 2bec835fd0a846e4b9c931f34531e079
 msgid "コメントID"
 msgstr "コメントID"
 
-# 6ed888f1178346aaa0a3869114554a90
 msgid "``comment``"
 msgstr ""
 
-# c4393ab5b4a24661bfc5989c36ed3a46
 msgid "コメント内容"
 msgstr "コメント内容"
 
-# 363b1b4d772746cea185250df2380792
 msgid "``last_modified``"
 msgstr ""
 
-# 08139e0f96e041c0b1a018dd404e4282
 msgid "投稿日時"
 msgstr "投稿日時"
 
-# babc8a9bdb314a96b41764b511b61387
 msgid "``replied_to``"
 msgstr ""
 
-# fb6160acbfa5452ca423ffad29a39a19
 msgid "返信元のコメント内容"
 msgstr "返信元のコメント内容"
 
-# 2f3b8752f5e9455493e9a1690d95800e
 msgid "``replied_users``"
 msgstr ""
 
-# 9e07b48f5b9049a7a5abcff6f6819ee2
 msgid "返信先のユーザーの一覧"
 msgstr "返信先のユーザーの一覧"
 
-# 60de5abeff0e4dacbca7ffa487610584
 msgid "``hash_tags``"
 msgstr ""
 
-# 7344e1c9b13643dd8133e1142f07523b
 msgid "コメントのハッシュタグの一覧"
 msgstr "コメントのハッシュタグの一覧"
 
-# 90d6ebfe15ac45fa9831526269436dc3
 msgid "投稿場所(緯度経度座標のため)"
 msgstr "投稿場所(緯度経度座標のため)"
 
-# 2869a974442c42c0a9682dbed5eba4bd
 msgid "``posted_by``"
 msgstr ""
 
-# 26228a310a5542ed878c259f9ce989c9
 msgid "コメントを書いたユーザー"
 msgstr "コメントを書いたユーザー"
 
-# d54a0323995b434cb7ac44e2a5c029b7
 msgid ""
 "Usersテーブルのfavoritesカラムに対するインデックス。 このインデックスを作るこ"
 "とで、指定したコメントを誰がお気に入りに入れているのかを検索できるようになり"
@@ -1840,23 +1493,18 @@ msgstr ""
 "とで、指定したコメントを誰がお気に入りに入れているのかを検索できるようになり"
 "ます。"
 
-# c72b045c0150486d9c86e68abf6f84b6
 msgid "``favorited_by``"
 msgstr ""
 
-# 9c481dd5d28c4a59812dbb05e4e818b6
 msgid "HashTagsテーブル"
 msgstr "HashTagsテーブル"
 
-# 70af0c3668774f1b9b5429d804237088
 msgid "コメントのハッシュタグを一覧で保存するためのテーブルです。"
 msgstr "コメントのハッシュタグを一覧で保存するためのテーブルです。"
 
-# ed4c98203cdc4db3ab2174696cbf9eed
 msgid "ハッシュタグ"
 msgstr "ハッシュタグ"
 
-# 924ca8953e48479a904d57c216297eaa
 msgid ""
 "「Comments.hash_tags」のインデックス。 このインデックスを作ることで、指定した"
 "ハッシュタグのついているコメントの一覧を出すことが出来るようになります。"
@@ -1864,15 +1512,12 @@ msgstr ""
 "「Comments.hash_tags」のインデックス。 このインデックスを作ることで、指定した"
 "ハッシュタグのついているコメントの一覧を出すことが出来るようになります。"
 
-# 4b863204554c4e0bb54b8d91ef8dd9a6
 msgid "``hash_index``"
 msgstr ""
 
-# d9ba319ca7f24c2da206f18510263bec
 msgid "Bigramテーブル"
 msgstr "Bigramテーブル"
 
-# dc84808c213a4716b6b718588b006732
 msgid ""
 "ユーザー情報・コメントで全文検索が出来るようにするためのインデックスを格納す"
 "るテーブルです。"
@@ -1880,11 +1525,9 @@ msgstr ""
 "ユーザー情報・コメントで全文検索が出来るようにするためのインデックスを格納す"
 "るテーブルです。"
 
-# 70799f89ad2444419d3bbcba559e4b29
 msgid "単語"
 msgstr "単語"
 
-# 71763ea4e257480886d215dc008f8dde
 msgid ""
 "ユーザー情報のインデックス。 このカラムは、ユーザー名「Users.name」、現在地"
 "「Users.location_str」、自己紹介文「Users.description」のインデックスになって"
@@ -1894,53 +1537,41 @@ msgstr ""
 "「Users.location_str」、自己紹介文「Users.description」のインデックスになって"
 "います。"
 
-# c5a79f2ff1934e76ae89c0f5563b4e20
 msgid "``users_index``"
 msgstr ""
 
-# ed13f7ff2c9c4462ac0c377227210702
 msgid "``comment_index``"
 msgstr ""
 
-# 2bd1144747f04233b8aa4c9c1bded659
 msgid "コメント内容「Comments.comment」のインデックス"
 msgstr "コメント内容「Comments.comment」のインデックス"
 
-# 50cad15c90254a8f9267862645ecc889
 msgid "GeoIndex table"
 msgstr ""
 
-# 04ee151aadde48c0a343fcb6751a47ee
 msgid ""
 "This is the table which stores indexes of location column to search geo "
 "location effectively."
 msgstr ""
 
-# 5e9d85fa68f24c34aff934b6d6e26bc1
 msgid "Indexes of location column for Users table"
 msgstr ""
 
-# 893b7a9a179545af848f5a70c7aff0c5
 msgid "``users_location``"
 msgstr ""
 
-# 0f894f725d98430ea36b75d33961af4f
 msgid "Indexes of location column for Comments table"
 msgstr ""
 
-# 8a654a5404c843bfa8613d7be6725dcb
 msgid "``comments_location``"
 msgstr ""
 
-# eadddf8f247a4219b123781c678b2943
 msgid "データのロード"
 msgstr "データのロード"
 
-# c693a84a34c2441396a558ef748bfa0c
 msgid "つづいて、テスト用データをロードします。"
 msgstr "つづいて、テスト用データをロードします。"
 
-# 10986feb37fa4e448e601d021f7c1f23
 msgid ""
 "Usersテーブルのfollowerカラムとfavoritesカラム、そしてCommentsテーブルの"
 "replied_usersカラムは、ベクターカラムです。そのため、これらのカラムは配列で値"
@@ -1950,7 +1581,6 @@ msgstr ""
 "replied_usersカラムは、ベクターカラムです。そのため、これらのカラムは配列で値"
 "を指定します。"
 
-# 70fc93232b0642c88cd1c65a1c91093d
 msgid ""
 "Usersテーブルのlocationカラムと、Commentsテーブルのlocationカラムは、GeoPoint"
 "型です。この型での値の指定は、\"[緯度]x[経度]\"と記述して指定します。"
@@ -1958,7 +1588,6 @@ msgstr ""
 "Usersテーブルのlocationカラムと、Commentsテーブルのlocationカラムは、GeoPoint"
 "型です。この型での値の指定は、\"[緯度]x[経度]\"と記述して指定します。"
 
-# ed2567abe0674f218741eca48f7ae76d
 msgid ""
 "Commentsテーブルのlast_modifiedカラムは、Time型です。この型での値を指定する方"
 "法は2つあります。 1つ目の方法は、1970年1月1日0時0分0秒からの経過秒数の値を直"
@@ -1976,20 +1605,15 @@ msgstr ""
 "す。\"年/月/日 時:分:秒\"というフォーマットで記述することで、データロードの際"
 "に文字列からキャストされ、マイクロ秒数の値が格納されます。"
 
-# 87e85bc08c46479aac8dfd0938ebd459
-# 54bbec6fe4334ae19ba3b0e678d0202b
 msgid "検索"
 msgstr "検索"
 
-# 48b7dc73e5af4f679e3dc688ddaf90ec
 msgid "それでは、実際に検索をしてみましょう。"
 msgstr "それでは、実際に検索をしてみましょう。"
 
-# 58bf345566814f109885ad5d17b9d012
 msgid "キーワードでユーザー検索"
 msgstr "キーワードでユーザー検索"
 
-# a410e08bf60d4d4f86fd0d7e3cfec94e
 msgid ""
 "ここでは、 :doc:`match_columns` で扱った、複数カラムを対象とした検索を行いま"
 "す。 指定された文字列で、ユーザー名・現在地・自己紹介文を対象に検索をします。"
@@ -1997,7 +1621,6 @@ msgstr ""
 "ここでは、 :doc:`match_columns` で扱った、複数カラムを対象とした検索を行いま"
 "す。 指定された文字列で、ユーザー名・現在地・自己紹介文を対象に検索をします。"
 
-# 6b4e4410bc6440bd88a9d39a9ca4da01
 msgid ""
 "「東京」をキーワードにユーザー検索した結果、東京都に住んでいる「グニャラく"
 "ん」と「OffGao」がヒットしました。"
@@ -2005,11 +1628,9 @@ msgstr ""
 "「東京」をキーワードにユーザー検索した結果、東京都に住んでいる「グニャラく"
 "ん」と「OffGao」がヒットしました。"
 
-# 5b25240856b5401b8749c93333c09c76
 msgid "GeoPointでユーザー検索"
 msgstr "GeoPointでユーザー検索"
 
-# d987f234a991490a9b532795796c831e
 msgid ""
 "ここでは、 :doc:`search` で扱った、GeoPoint型のカラムで検索をします。 以下の"
 "例では、指定された位置から5000m以内にいるユーザーを検索しています。"
@@ -2017,7 +1638,6 @@ msgstr ""
 "ここでは、 :doc:`search` で扱った、GeoPoint型のカラムで検索をします。 以下の"
 "例では、指定された位置から5000m以内にいるユーザーを検索しています。"
 
-# ed8be698eed54f35b882ae69bea25c38
 msgid ""
 "新宿駅から5km以内にすんでいるユーザーを検索したところ、「グニャラくん」と"
 "「OffGao」がヒットしました。"
@@ -2025,11 +1645,9 @@ msgstr ""
 "新宿駅から5km以内にすんでいるユーザーを検索したところ、「グニャラくん」と"
 "「OffGao」がヒットしました。"
 
-# 341790b035fd425b936d0e240b201661
 msgid "あるユーザーをフォローしているユーザーの検索"
 msgstr "あるユーザーをフォローしているユーザーの検索"
 
-# 97babecfa05b45c295ddf67cbd008f5a
 msgid ""
 "ここでは、 :doc:`index` で扱った、参照関係の逆引きをします。 以下の例では、"
 "Usersテーブルのfollowerカラムにあるフォローリストを逆引きします。"
@@ -2037,7 +1655,6 @@ msgstr ""
 "ここでは、 :doc:`index` で扱った、参照関係の逆引きをします。 以下の例では、"
 "Usersテーブルのfollowerカラムにあるフォローリストを逆引きします。"
 
-# 7cc0b4f2bc6148f4b2ab03c0c4036d0d
 msgid ""
 "「グニャラくん」をフォローしている「hsiomaneki」と「OffGao」がヒットしまし"
 "た。"
@@ -2045,11 +1662,9 @@ msgstr ""
 "「グニャラくん」をフォローしている「hsiomaneki」と「OffGao」がヒットしまし"
 "た。"
 
-# 640394e57d6545688e955b7e7b84966b
 msgid "GeoPointでコメント検索"
 msgstr "GeoPointでコメント検索"
 
-# 0fe20fa9397b47f78454ce7ea6e9df58
 msgid ""
 "ある範囲内で書かれたコメントを検索します。 また、 :doc:`drilldown` で扱ったド"
 "リルダウンも行います。検索結果をハッシュタグとユーザーでドリルダウンし、ユー"
@@ -2059,7 +1674,6 @@ msgstr ""
 "リルダウンも行います。検索結果をハッシュタグとユーザーでドリルダウンし、ユー"
 "ザー別・ハッシュタグ別のカウントを出します。"
 
-# a1d1b70012c44bf3a13316407706881a
 msgid ""
 "範囲を広く指定したため、位置情報のあるすべてのコメントがヒットしました。そし"
 "て、ヒットしたコメントからドリルダウンされた結果も返ってきており、ハッシュタ"
@@ -2071,11 +1685,9 @@ msgstr ""
 "グは「#groonga」が2つに「#travel」が1つ、投稿者は「グニャラくん」「OffGao」が"
 "それぞれ2件ずつであることがわかります。"
 
-# b9a00e097a7642f7927a0bf33fc456fa
 msgid "キーワードでコメント検索"
 msgstr "キーワードでコメント検索"
 
-# e4bd9778d9b145c5a74a41db9637f108
 msgid ""
 "あるキーワードを含むコメントを検索します。 さらに、 :doc:`search` で扱った、"
 "スコア値_scoreも出してみましょう。"
@@ -2083,7 +1695,6 @@ msgstr ""
 "あるキーワードを含むコメントを検索します。 さらに、 :doc:`search` で扱った、"
 "スコア値_scoreも出してみましょう。"
 
-# 8684d4cc361d4dc58db6a23b24e6a52c
 msgid ""
 "「なう」をキーワードにコメント検索した結果、2件のコメントがヒットしました。ま"
 "た、_scoreの値も返ってきており、「なう」の数が出力されていることが確認できま"
@@ -2093,11 +1704,9 @@ msgstr ""
 "た、_scoreの値も返ってきており、「なう」の数が出力されていることが確認できま"
 "す。"
 
-# d2f49d8c85ba4774b035c9e8f173a1cd
 msgid "GeoPointとキーワードでコメント検索"
 msgstr "GeoPointとキーワードでコメント検索"
 
-# 25c0507fbdd24a9988f71a88386ad363
 msgid ""
 "今度は、キーワードとGeoPointの両方を条件に検索をしてみます。--queryと--filter"
 "の両方を使用した場合、両方の条件に一致するレコードがヒットします。"
@@ -2105,7 +1714,6 @@ msgstr ""
 "今度は、キーワードとGeoPointの両方を条件に検索をしてみます。--queryと--filter"
 "の両方を使用した場合、両方の条件に一致するレコードがヒットします。"
 
-# d5f077e380f54940aa78174fd8f6609a
 msgid ""
 "両方の条件を満たすコメントが1件ヒットしました。また、ドリルダウンの結果も返っ"
 "てきており、「グニャラくん」のコメント1件であることがわかります。"
@@ -2113,11 +1721,9 @@ msgstr ""
 "両方の条件を満たすコメントが1件ヒットしました。また、ドリルダウンの結果も返っ"
 "てきており、「グニャラくん」のコメント1件であることがわかります。"
 
-# c9919fbb2f0741b1abd23a6f2566d1d4
 msgid "ハッシュタグでコメント検索"
 msgstr "ハッシュタグでコメント検索"
 
-# 696dc364a13a4cf797910adeb485f556
 msgid ""
 "あるハッシュタグのついているコメントを検索します。 これも、 :doc:`index` で"
 "扱った、参照関係の逆引きを使います。"
@@ -2125,7 +1731,6 @@ msgstr ""
 "あるハッシュタグのついているコメントを検索します。 これも、 :doc:`index` で"
 "扱った、参照関係の逆引きを使います。"
 
-# b416f9ae45eb432ebbd5d0b230883bab
 msgid ""
 "#groongaタグの付いている2件のコメントがヒットしました。また、投稿者のドリルダ"
 "ウンも返ってきており、2件とも「グニャラくん」のものであることがわかります。"
@@ -2133,15 +1738,12 @@ msgstr ""
 "#groongaタグの付いている2件のコメントがヒットしました。また、投稿者のドリルダ"
 "ウンも返ってきており、2件とも「グニャラくん」のものであることがわかります。"
 
-# 00e44d2c28f040cba236c89a56026507
 msgid "ユーザーIDでコメント検索"
 msgstr "ユーザーIDでコメント検索"
 
-# 9ac5ffdf2add4e198ca669341290db73
 msgid "あるユーザーが投稿したコメントを検索します。"
 msgstr "あるユーザーが投稿したコメントを検索します。"
 
-# fda3faee3a394c8eb8fb2ae928d04b10
 msgid ""
 "「グニャラくん」が書き込んだ4件のコメントがヒットしました。また、ハッシュタグ"
 "でドリルダウンした結果も返ってきており、ハッシュタグは「#groonga」が2つに"
@@ -2151,24 +1753,19 @@ msgstr ""
 "でドリルダウンした結果も返ってきており、ハッシュタグは「#groonga」が2つに"
 "「#travel」が1つあることがわかります。"
 
-# ff1ec53da04940aa8bc014c541f18bf4
 msgid "ユーザーのお気に入りコメントを検索"
 msgstr "ユーザーのお気に入りコメントを検索"
 
-# 7da65f3264c747dc98ba53ff3cd1f73a
 msgid "あるユーザーがお気に入りに入れているコメントを検索します。"
 msgstr "あるユーザーがお気に入りに入れているコメントを検索します。"
 
-# 53bd901158c343b7bca9c0ef30a97466
 msgid "「グニャラくん」がお気に入りに入れている2件のコメントがヒットしました。"
 msgstr ""
 "「グニャラくん」がお気に入りに入れている2件のコメントがヒットしました。"
 
-# 8bc2d10615be47b99d077267ee18bc56
 msgid "投稿時間でコメント検索"
 msgstr "投稿時間でコメント検索"
 
-# 116c1dba32504055a4ea0571fe485515
 msgid ""
 "コメントの投稿時間で検索をします。Time型については :doc:`data` で扱っていま"
 "す。 この例では、指定した時間よりも前に投稿されているコメントを検索します。"
@@ -2176,7 +1773,6 @@ msgstr ""
 "コメントの投稿時間で検索をします。Time型については :doc:`data` で扱っていま"
 "す。 この例では、指定した時間よりも前に投稿されているコメントを検索します。"
 
-# 05bf4dfafde34d888614ba18511f9966
 msgid ""
 "2010/03/17 14:00:00以前に書かれたコメント5件がヒットしました。また、ドリルダ"
 "ウンの結果も返ってきており、「hsiomaneki」が2件、「グニャラくん」が3件ヒット"
@@ -2186,32 +1782,26 @@ msgstr ""
 "ウンの結果も返ってきており、「hsiomaneki」が2件、「グニャラくん」が3件ヒット"
 "していることがわかります。"
 
-# 659db7474c9942f9be3b040f88cd23e5
 msgid "Remote access"
 msgstr "Remote access"
 
-# e8e707dcae6241878372a1fbe18994ec
 msgid ""
 "You can use Groonga as a server which allows remote access. Groonga supports "
 "the original protocol (GQTP), the memcached binary protocol and HTTP."
 msgstr ""
 
-# 4cd0dd5324cc4577b65762a8e9c3d185
 msgid "Groonga Query Transfer Protocol (GQTP)"
 msgstr ""
 
-# 9c22ad9858d24339bf756696db6cd27b
 msgid "How to run a GQTP server"
 msgstr "How to run a GQTP server"
 
-# 6df4ee5a71104044bf27dbf253bdd36a
 msgid ""
 "Groonga has a special protocol, named Groonga Query Transfer Protocol "
 "(GQTP), for remote access to a database. The following form shows how to run "
 "Groonga as a GQTP server."
 msgstr ""
 
-# 11fa4debd58640e8aef1c19cf271109e
 msgid ""
 "The `-s` option specifies to run Groonga as a server. DB_PATH specifies the "
 "path of the existing database to be hosted. The `-p` option and its "
@@ -2223,7 +1813,6 @@ msgstr ""
 "argument, PORT_NUMBER, specify the port number of the server. The default "
 "port number is 10041, which is used when you don't specify PORT_NUMBER."
 
-# 87cdcc6014b54f74a06a9b08f78c65e1
 msgid ""
 "The following command runs a server that listens on the default port number. "
 "The server accepts operations to the specified database."
@@ -2231,11 +1820,9 @@ msgstr ""
 "The following command runs a server that listens on the default port number. "
 "The server accepts operations to the specified database."
 
-# d1f95c64526a4d8591830f39b3a93f1f
 msgid "How to run a GQTP daemon"
 msgstr "How to run a GQTP daemon"
 
-# b55dfa62608d4a9981497456460b291f
 msgid ""
 "You can also run a GQTP server as a daemon by using the `-d` option, instead "
 "of the `-s` option."
@@ -2243,7 +1830,6 @@ msgstr ""
 "You can also run a GQTP server as a daemon by using the `-d` option, instead "
 "of the `-s` option."
 
-# f11b72db2ff7424185465776c5230b6c
 msgid ""
 "A Groonga daemon prints its process ID as follows. In this example, the "
 "process ID is 12345. Then, the daemon opens a specified database and accepts "
@@ -2253,15 +1839,12 @@ msgstr ""
 "process ID is 12345. Then, the daemon opens a specified database and accepts "
 "operations to that database."
 
-# 13d82bf3e0dc438a867e53302c29cc8b
 msgid "How to run a GQTP client"
 msgstr "How to run a GQTP client"
 
-# f63a03fbb82c41759bc463bd6c6e8324
 msgid "You can run Groonga as a GQTP client as follows:"
 msgstr "You can run Groonga as a GQTP client as follows:"
 
-# 7b0289e78ff449e889f7161f5e92e858
 msgid ""
 "This command establishes a connection with a GQTP server and then enters "
 "into interactive mode. HOST_NAME_OR_IP_ADDRESS specifies the hostname or the "
@@ -2271,7 +1854,6 @@ msgid ""
 "default port number 10041."
 msgstr ""
 
-# 6e9832216e1049e281642be6ec5e292d
 msgid ""
 "In interactive mode, Groonga reads commands from the standard input and "
 "executes them one by one."
@@ -2279,11 +1861,9 @@ msgstr ""
 "In interactive mode, Groonga reads commands from the standard input and "
 "executes them one by one."
 
-# 6a31d3c240b14ab69239a0d0ed2ace2f
 msgid "How to terminate a GQTP server"
 msgstr "How to terminate a GQTP server"
 
-# a68da31135e14fa8ae4ad15d4a301986
 msgid ""
 "You can terminate a GQTP server with a :doc:`/reference/commands/shutdown` "
 "command."
@@ -2291,11 +1871,9 @@ msgstr ""
 "You can terminate a GQTP server with a :doc:`/reference/commands/shutdown` "
 "command."
 
-# be704078840241639953791bac8a9796
 msgid "Memcached binary protocol"
 msgstr "Memcached binary protocol"
 
-# c54bf70fdb384526846411f2ca4767dc
 msgid ""
 "Groonga supports the memcached binary protocol. The following form shows how "
 "to run Groonga as a memcached binary protocol server daemon."
@@ -2303,7 +1881,6 @@ msgstr ""
 "Groonga supports the memcached binary protocol. The following form shows how "
 "to run Groonga as a memcached binary protocol server daemon."
 
-# f5c52799b90d457a8d01790760536beb
 msgid ""
 "The `--protocol` option and its argument specify the protocol of the server. "
 "\"memcached\" specifies to use the memcached binary protocol."
@@ -2311,15 +1888,12 @@ msgstr ""
 "The `--protocol` option and its argument specify the protocol of the server. "
 "\"memcached\" specifies to use the memcached binary protocol."
 
-# e67f1a5b74ea423fa32afe99b35f7ddf
 msgid "Hypertext transfer protocol (HTTP)"
 msgstr "Hypertext transfer protocol (HTTP)"
 
-# 521d6159282a4579b1f8df692b4e2b41
 msgid "How to run an HTTP server"
 msgstr "How to run an HTTP server"
 
-# 669f57ed4d554bb6a67bb3b046d085da
 msgid ""
 "Groonga supports the hypertext transfer protocol (HTTP). The following form "
 "shows how to run Groonga as an HTTP server daemon."
@@ -2327,7 +1901,6 @@ msgstr ""
 "Groonga supports the hypertext transfer protocol (HTTP). The following form "
 "shows how to run Groonga as an HTTP server daemon."
 
-# 847fcced5ca444739568e1a4af937921
 msgid ""
 "The `--protocol` option and its argument specify the protocol of the server. "
 "\"http\" specifies to use HTTP."
@@ -2335,24 +1908,20 @@ msgstr ""
 "The `--protocol` option and its argument specify the protocol of the server. "
 "\"http\" specifies to use HTTP."
 
-# 1ad64d4efc44465aa4f1eabb8e0fa86f
 msgid ""
 "The following command runs an HTTP server that listens on the port number 80."
 msgstr ""
 "The following command runs an HTTP server that listens on the port number 80."
 
-# a5fd2c4379334d679818cfb1a7f29e27
 msgid ""
 "You must have root privileges if you listen on the port number 80 (well "
 "known port). There is no such a limitation about the port number 1024 or "
 "over."
 msgstr ""
 
-# 4dcf7a93ea614700b3260112d4fd7fc3
 msgid "How to send a command to an HTTP server"
 msgstr "How to send a command to an HTTP server"
 
-# b4c21ff5af9543a092f1ee56e5be6329
 msgid ""
 "You can send a command to an HTTP server by sending a GET request to /d/"
 "COMMAND_NAME. Command parameters can be passed as parameters of the GET "
@@ -2362,15 +1931,12 @@ msgstr ""
 "COMMAND_NAME. Command parameters can be passed as parameters of the GET "
 "request. The format is \"?NAME_1=VALUE_1&NAME_2=VALUE_2&...\"."
 
-# 26fe044dd28e43df86fe5a22a142454e
 msgid "The following example shows how to send commands to an HTTP server."
 msgstr "The following example shows how to send commands to an HTTP server."
 
-# a7fb2ffee5e5469282e014642d6afe47
 msgid "Administration tool (HTTP)"
 msgstr "Administration tool (HTTP)"
 
-# 2f2ee28b4cb84b23919c441dc56c8b6b
 msgid ""
 "An HTTP server of Groonga provides a browser based administration tool that "
 "makes database management easy. After starting an HTTP server, you can use "
@@ -2384,11 +1950,9 @@ msgstr ""
 "PORT_NUMBER]/. Note that Javascript must be enabled for the tool to work "
 "properly."
 
-# bd5e8710909c499e939bbd91f69df7f5
 msgid "Security issues"
 msgstr "Security issues"
 
-# 7e5df68f031342de9342e15396e31672
 msgid ""
 "Groonga servers don't support user authentication. Everyone can view and "
 "modify databases hosted by Groonga servers. You are recommended to restrict "
@@ -2400,22 +1964,18 @@ msgstr ""
 "IP addresses that can access Groonga servers. You can use iptables or "
 "similar for this purpose."
 
-# 19c095bd11054dbb9197ac9deaf9b908
 msgid "パトリシア木による前方一致検索"
 msgstr "パトリシア木による前方一致検索"
 
-# f53522af22f34b819a3b77844e7426eb
 msgid ""
 "Groongaのテーブルは、テーブル作成時にパトリシア木オプションを指定すると、前方"
 "一致検索を行うことができます。また、追加のオプションを指定することにより、主"
 "キーの後方一致検索をも行うことができます。"
 msgstr ""
 
-# 3ee45f8cc1ed4fc09f376baa61986d6d
 msgid "主キーによる前方一致検索"
 msgstr "主キーによる前方一致検索"
 
-# 1b61eb3c64734e17b1f68eda0306594f
 msgid ""
 "table_createコマンドのflagsオプションにTABLE_PAT_KEYを指定することで、主キー"
 "による前方一致検索ができるようになります。"
@@ -2423,11 +1983,9 @@ msgstr ""
 "table_createコマンドのflagsオプションにTABLE_PAT_KEYを指定することで、主キー"
 "による前方一致検索ができるようになります。"
 
-# 4c441e593c3e497987b05f0a97e97a2e
 msgid "主キーによる後方一致検索"
 msgstr "主キーによる後方一致検索"
 
-# 31ae2f4f20ef4290b8901bbb4bd58703
 msgid ""
 "table_createコマンドのflagsオプションにTABLE_PAT_KEYとKEY_WITH_SISを指定する"
 "ことで、主キーによる前方一致検索・後方一致検索の両方が可能となります。"
@@ -2435,7 +1993,6 @@ msgstr ""
 "table_createコマンドのflagsオプションにTABLE_PAT_KEYとKEY_WITH_SISを指定する"
 "ことで、主キーによる前方一致検索・後方一致検索の両方が可能となります。"
 
-# 571d737d4b9f47788dea2f13013b8ed0
 msgid ""
 "KEY_WITH_SISフラグを付与すると、データを追加する際に後方一致用のレコードも追"
 "加されてしまいます。そのため、単純に検索すると、元のレコードに加えて自動的に"
@@ -2447,7 +2004,6 @@ msgstr ""
 "追加されたレコードまでヒットしてしまいます。元のレコードのみ検索するために、"
 "一工夫必要になります。"
 
-# 3ef13c8e12a94ca4a057374ad8f898fd
 msgid ""
 "例えば、元のレコードと自動的に追加されたレコードとの区別をつけるために、元の"
 "レコードであることを示すoriginalカラムを追加して、検索時にはoriginalカラムが "
@@ -2461,18 +2017,15 @@ msgstr ""
 "直感的に指定することができないので ``--filter`` オプションを使っていることに"
 "注意してください。"
 
-# 848da044d7fd485da672e27c9592b555
 msgid "クエリ拡張"
 msgstr "クエリ拡張"
 
-# 65708eed06814c8cb4762ebbf2b71099
 msgid ""
 "Groongaでは、 :doc:`/reference/commands/select` コマンドにquery_expanderパラ"
 "メータを指定することによって、ユーザが指定した検索文字列を適宜拡張することが"
 "可能です。"
 msgstr ""
 
-# b8e0309c263a484991e40cb94f8d0809
 msgid ""
 "たとえば、ユーザが'シークヮーサー'という文字列で検索した場合に、'シークヮー"
 "サー OR シークァーサー'で検索した場合と同一の結果を返すことによって、本来ユー"
@@ -2482,11 +2035,9 @@ msgstr ""
 "サー OR シークァーサー'で検索した場合と同一の結果を返すことによって、本来ユー"
 "ザが必要とする結果をよりもれなく検索できるようになります。"
 
-# b9033f84f897438ca71bf89a43649780
 msgid "準備"
 msgstr "準備"
 
-# df3aae89434f4d1787a77d4e4cc10662
 msgid ""
 "クエリ拡張機能を使用するためには、検索対象となる文書を格納するテーブル(ここで"
 "は文書テーブルと呼びます)以外に、ユーザの指定した検索文字列を置換するための"
@@ -2500,7 +2051,6 @@ msgstr ""
 "主キーが置換前の文字列となり、文字列型(ShortText)のカラムの値が置換後の文字列"
 "となります。"
 
-# 5505372d9ee742bc85819faf99658b82
 msgid ""
 "TODO: 文字列型のベクターカラムでも可能であり、その場合は各要素をORでつなげた"
 "ものに置換されるということを記述する。"
@@ -2508,11 +2058,9 @@ msgstr ""
 "TODO: 文字列型のベクターカラムでも可能であり、その場合は各要素をORでつなげた"
 "ものに置換されるということを記述する。"
 
-# 9cbfe07ce8ef4155ae8f1b6f61e2ca8c
 msgid "実際に文書テーブルと置換テーブルを作成してみましょう。"
 msgstr "実際に文書テーブルと置換テーブルを作成してみましょう。"
 
-# 9c80f0e409be415ea68a8d85bd7d62bc
 msgid ""
 "この例では、ユーザが\"シークァーサー\"と入力しても、\"シークヮーサー\"と入力"
 "しても、それぞれの異なる表記の文書をもれなく検索するための置換テーブルを作成"
@@ -2522,20 +2070,17 @@ msgstr ""
 "しても、それぞれの異なる表記の文書をもれなく検索するための置換テーブルを作成"
 "しています。"
 
-# b86bdd8a36cd4568879b7daa136edcbb
 msgid ""
 "それでは実際に、準備した置換テーブルを使ってみましょう。まずは、"
 "query_expanderパラメータを指定せずにselectコマンドを使って検索してみます。"
 msgstr ""
 
-# 273ddfb584184666b573b24ccbbd2c14
 msgid ""
 "指定された文字列に完全に一致するレコードのみがそれぞれヒットします。次に、"
 "query_expanderパラメータに、準備したSynonymテーブルのbodyカラムを指定してみま"
 "しょう。"
 msgstr ""
 
-# 7fe6353e4e2f4980be538303cc39de1b
 msgid ""
 "どちらのクエリ文字列も、\"(シークァーサー OR シークヮーサー)\"という文字列に"
 "置換されてから検索されるため、表記の揺れを吸収して検索できるようになりまし"
@@ -2545,22 +2090,18 @@ msgstr ""
 "置換されてから検索されるため、表記の揺れを吸収して検索できるようになりまし"
 "た。"
 
-# 48857369c01742599be265a3f9a35cda
 msgid "さまざまな検索条件の指定"
 msgstr "さまざまな検索条件の指定"
 
-# 1a303cf9bff840b9ab3d0ab20bb2c6e9
 msgid ""
 "Groongaは、JavaScriptに似た文法での条件絞込や、計算した値を用いたソートを行う"
 "ことができます。また、位置情報(緯度・経度)を用いた絞込・ソートを行うことがで"
 "きます。"
 msgstr ""
 
-# 9701ab1aa7f44fbbabe6801d0ae28059
 msgid "JavaScriptに似た文法での絞込・全文検索"
 msgstr "JavaScriptに似た文法での絞込・全文検索"
 
-# 66e81e95270147aca5cb7a52670fe7d7
 msgid ""
 "selectコマンドのfilterパラメータは、queryパラメータと同様に、レコードの検索条"
 "件を指定します。filterパラメータとqueryパラメータが異なる点は、filterパラメー"
@@ -2570,15 +2111,12 @@ msgstr ""
 "件を指定します。filterパラメータとqueryパラメータが異なる点は、filterパラメー"
 "タには、JavaScriptの式に似た文法で条件を指定する点です。"
 
-# dc7cabb2d8514c24a33c8b9ed6f4b9f4
 msgid "ここで、filterパラメータには"
 msgstr "ここで、filterパラメータには"
 
-# 78d62d8500c0427993ff56e205042a1b
 msgid "_id <= 1"
 msgstr "_id <= 1"
 
-# 756ae3c339ed4210810a4749c70886ba
 msgid ""
 "という条件を指定しています。この場合は_idの値が1以下のレコードが検索結果とし"
 "て得られます。"
@@ -2586,11 +2124,9 @@ msgstr ""
 "という条件を指定しています。この場合は_idの値が1以下のレコードが検索結果とし"
 "て得られます。"
 
-# 2a9854f0e79042e7ae7a3e7faad54bae
 msgid "また、&& や || を使って、条件のAND・OR指定をすることもできます。"
 msgstr "また、&& や || を使って、条件のAND・OR指定をすることもできます。"
 
-# 2430ec1f0b984128b1e99d8b32ccf371
 msgid ""
 "queryパラメータとfilterパラメータを同時に指定すると、両者の条件をともに満たす"
 "レコードが結果として返ります。"
@@ -2598,11 +2134,9 @@ msgstr ""
 "queryパラメータとfilterパラメータを同時に指定すると、両者の条件をともに満たす"
 "レコードが結果として返ります。"
 
-# 9049db4033c043f3a8890ddbe9708131
 msgid "scorerを利用したソート"
 msgstr "scorerを利用したソート"
 
-# 6aeb33513f1b4527a32653c3120b4e62
 msgid ""
 "selectコマンドのscorerパラメータは、 全文検索を行った結果の各レコードに対して"
 "処理を行うためのパラメータです。"
@@ -2610,7 +2144,6 @@ msgstr ""
 "selectコマンドのscorerパラメータは、 全文検索を行った結果の各レコードに対して"
 "処理を行うためのパラメータです。"
 
-# f019cfe1ede541f79d3b4df1bb550e6d
 msgid ""
 "filterパラメータと同様に、 JavaScriptの式に似たな文法で様々な条件を指定するこ"
 "とができます。"
@@ -2618,7 +2151,6 @@ msgstr ""
 "filterパラメータと同様に、 JavaScriptの式に似たな文法で様々な条件を指定するこ"
 "とができます。"
 
-# 35f2993d68bc4760ac4f18a0ccf10a8f
 msgid ""
 "検索結果には、'_score'という名前の、全文検索のスコアが代入されている仮想的な"
 "カラムが付与されることをチュートリアル中ソートの項目で説明しました。"
@@ -2626,15 +2158,12 @@ msgstr ""
 "検索結果には、'_score'という名前の、全文検索のスコアが代入されている仮想的な"
 "カラムが付与されることをチュートリアル中ソートの項目で説明しました。"
 
-# d1955769b40a461eb326ca05e96dd9d2
 msgid "上記の実行例では、scorerパラメータに"
 msgstr "上記の実行例では、scorerパラメータに"
 
-# 0ae791c63ab14762be81ca5a600329b9
 msgid "_score = rand()"
 msgstr "_score = rand()"
 
-# 0dd2a2402c124f008c18edf5c7ad93a7
 msgid ""
 "という条件を指定しています。ここでは、rand()という乱数を返す関数を用いて、全"
 "文検索のスコアを乱数で上書きしています。"
@@ -2642,21 +2171,17 @@ msgstr ""
 "という条件を指定しています。ここでは、rand()という乱数を返す関数を用いて、全"
 "文検索のスコアを乱数で上書きしています。"
 
-# 38439562041040378afb16d440062e66
 msgid "sortbyパラメータには、"
 msgstr "sortbyパラメータには、"
 
-# 1e054cccc65d46ce87145db910024606
 msgid "_score"
 msgstr "_score"
 
-# 35b860b3d14341cc83c16548f29572c3
 msgid ""
 "を指定しています。これは、スコア順に昇順にソートすることを意味しています。"
 msgstr ""
 "を指定しています。これは、スコア順に昇順にソートすることを意味しています。"
 
-# ab920f1deec9487e9d7ced3bae435f35
 msgid ""
 "よって、上記のクエリは実行されるたびに検索結果の並び順がランダムに変わりま"
 "す。"
@@ -2664,17 +2189,14 @@ msgstr ""
 "よって、上記のクエリは実行されるたびに検索結果の並び順がランダムに変わりま"
 "す。"
 
-# 0b41716fcd3645ec9d795ab819db62b1
 msgid "位置情報を用いた絞込・ソート"
 msgstr "位置情報を用いた絞込・ソート"
 
-# 1ada8a6a3b484091a62a3deae5ba4eb5
 msgid ""
 "Groongaでは、位置情報(経緯度)を保存することができます。また、保存した経緯度"
 "を用いて絞込やソートができます。"
 msgstr ""
 
-# 60449647b0de4d23ad66c118aa9220c8
 msgid ""
 "位置情報を保存するためのカラムの型として、TokyoGeoPoint/WGS84GeoPointの2つの"
 "型があります。前者は日本測地系、後者は世界測地系(WGS84相当)の経緯度を保存しま"
@@ -2684,19 +2206,15 @@ msgstr ""
 "型があります。前者は日本測地系、後者は世界測地系(WGS84相当)の経緯度を保存しま"
 "す。"
 
-# 840ad52d0c6f4ca8b390bcb8d66952c6
 msgid "経緯度は以下のいずれかの形式の文字列として指定します。"
 msgstr "経緯度は以下のいずれかの形式の文字列として指定します。"
 
-# 067035f647da46e8ba3e503027a38921
 msgid "\"[緯度のミリ秒]x[経度のミリ秒]\"(例: \"128452975x503157902\")"
 msgstr "\"[緯度のミリ秒]x[経度のミリ秒]\"(例: \"128452975x503157902\")"
 
-# 64ee9de432cc4e8cb3485a48dab45cc5
 msgid "\"[緯度のミリ秒],[経度のミリ秒]\"(例: \"128452975,503157902\")"
 msgstr "\"[緯度のミリ秒],[経度のミリ秒]\"(例: \"128452975,503157902\")"
 
-# dbd2f0df042640ac9debd3f65276ae57
 msgid ""
 "\"[緯度の小数表記の度数]x[経度の小数表記の度数]\"(例: "
 "\"35.6813819x139.7660839\")"
@@ -2704,7 +2222,6 @@ msgstr ""
 "\"[緯度の小数表記の度数]x[経度の小数表記の度数]\"(例: "
 "\"35.6813819x139.7660839\")"
 
-# 156708548a2c43f4bb2eadab3202a8e2
 msgid ""
 "\"[緯度の小数表記の度数],[経度の小数表記の度数]\"(例: "
 "\"35.6813819,139.7660839\")"
@@ -2712,7 +2229,6 @@ msgstr ""
 "\"[緯度の小数表記の度数],[経度の小数表記の度数]\"(例: "
 "\"35.6813819,139.7660839\")"
 
-# 4ee0824037d94733b966f5676387e9b5
 msgid ""
 "ここでは、ためしに東京駅と新宿駅とついて、世界測地系での位置情報を保存してみ"
 "ましょう。東京駅は緯度が35度40分52.975秒、経度が139度45分57.902秒です。新宿駅"
@@ -2728,7 +2244,6 @@ msgstr ""
 "記の場合はそれぞれ\"35.6813819x139.7660839\"/\"35.6909211x139.7002581\"となり"
 "ます。ここではミリ秒表記で登録しましょう。"
 
-# 9ff0e4a592a14e4f855ca924af23e74e
 msgid ""
 "scorerパラメータにおいて、 :doc:`/reference/functions/geo_distance` 関数を用"
 "いることにより、2点間の距離を計算することができます。"
@@ -2736,7 +2251,6 @@ msgstr ""
 "scorerパラメータにおいて、 :doc:`/reference/functions/geo_distance` 関数を用"
 "いることにより、2点間の距離を計算することができます。"
 
-# cb225cade2e24dc1b8bbb7a8bbbfb448
 msgid ""
 "ここでは、秋葉原駅からの距離を表示させてみましょう。世界測地系では、秋葉原駅"
 "の位置は緯度が35度41分55.259秒、経度が139度46分27.188秒です。よって、"
@@ -2746,7 +2260,6 @@ msgstr ""
 "の位置は緯度が35度41分55.259秒、経度が139度46分27.188秒です。よって、"
 "geo_distance関数に与える文字列は\"128515259x503187188\"となります。"
 
-# 7940e8843078481d98ef29038d409b16
 msgid ""
 "この結果を見ると、東京駅と秋葉原駅は2054m、秋葉原駅と新宿駅は6720m離れている"
 "ようです。"
@@ -2754,15 +2267,12 @@ msgstr ""
 "この結果を見ると、東京駅と秋葉原駅は2054m、秋葉原駅と新宿駅は6720m離れている"
 "ようです。"
 
-# 83fdbb3ed74a4791bfefd49ec558fc15
 msgid "geo_distance関数は、_scoreを通じてソートでも用いることができます。"
 msgstr "geo_distance関数は、_scoreを通じてソートでも用いることができます。"
 
-# f7810f6211614dc48f569f431642ba8c
 msgid "「ある地点から何m以内に存在する」といった絞込も可能です。"
 msgstr "「ある地点から何m以内に存在する」といった絞込も可能です。"
 
-# 49c6566ffc5444f6a6756c41ce645538
 msgid ""
 "filterパラメータにおいて、 :doc:`/reference/functions/geo_in_circle` 関数を用"
 "いることにより、2点間の距離が指定のm以下におさまるかどうかを判定することがで"
@@ -2772,11 +2282,9 @@ msgstr ""
 "いることにより、2点間の距離が指定のm以下におさまるかどうかを判定することがで"
 "きます。"
 
-# 3f612a1520bc438fb81e2ca130e91f5f
 msgid "たとえば、秋葉原駅から5000m以内にあるレコードを検索してみましょう。"
 msgstr "たとえば、秋葉原駅から5000m以内にあるレコードを検索してみましょう。"
 
-# 5315b2f17cd24fb0ab63e386a42446ad
 msgid ""
 "また、経緯度が指定の矩形領域内であるかどうかを判定する :doc:`/reference/"
 "functions/geo_in_rectangle` 関数も存在します。"
@@ -2784,11 +2292,9 @@ msgstr ""
 "また、経緯度が指定の矩形領域内であるかどうかを判定する :doc:`/reference/"
 "functions/geo_in_rectangle` 関数も存在します。"
 
-# faf75afb9d2d4278b0fe34153d965f84
 #~ msgid "ドリルダウン"
 #~ msgstr "ドリルダウン"
 
-# cccf703ed3d6459ab98048a20c592a3a
 #~ msgid ""
 #~ "groongaでは、特定のカラム値で検索結果をグループ化することができます。これ"
 #~ "をドリルダウンと呼びます。"
@@ -2796,7 +2302,6 @@ msgstr ""
 #~ "groongaでは、特定のカラム値で検索結果をグループ化することができます。これ"
 #~ "をドリルダウンと呼びます。"
 
-# 1b2ea7399ccc4aabbe5c2af93017b3e1
 #~ msgid ""
 #~ "Siteテーブルに2つのカラムを追加します。TLDドメイン名を格納するdomainカラ"
 #~ "ムと、国名を格納するcountryカラムです。これらのカラムの型は、それぞれドメ"
@@ -2808,11 +2313,9 @@ msgstr ""
 #~ "イン名を主キーとするSiteDomainテーブルと、国名を主キーとするSiteCountry"
 #~ "テーブルとします。"
 
-# 2c2d5ec457c74758a33ad52580fdb5fa
 #~ msgid "domainカラムとcountryカラムでドリルダウンを行う例を以下に示します。"
 #~ msgstr "domainカラムとcountryカラムでドリルダウンを行う例を以下に示します。"
 
-# 5e29383a15644677954b77ef47777067
 #~ msgid ""
 #~ "テーブル型を持つカラムに対してドリルダウンを行った場合、参照先のテーブルに"
 #~ "存在するカラム値を取得することもできます。ドリルダウンを行ったテーブルに"
@@ -2824,7 +2327,6 @@ msgstr ""
 #~ "は、_nsubrecsという仮想的なカラムが追加されます。このカラムには、グループ"
 #~ "化されたレコード数が入ります。"
 
-# b660b9c2e6c1443ea88f6bdff9b35a08
 #~ msgid ""
 #~ "複数のカラムに対してドリルダウンを行うことができます。複数のカラムに対して"
 #~ "ドリルダウンを行う場合には、drilldownパラメータにカラム名をカンマ区切りで"
@@ -2834,7 +2336,6 @@ msgstr ""
 #~ "ドリルダウンを行う場合には、drilldownパラメータにカラム名をカンマ区切りで"
 #~ "与えます。"
 
-# a7a846c92175442eb500190c29944a45
 #~ msgid ""
 #~ "ドリルダウン結果を並びかえることができます。例えば、_nsubrecsパラメータの"
 #~ "降順で並び替えることができます。"
@@ -2842,7 +2343,6 @@ msgstr ""
 #~ "ドリルダウン結果を並びかえることができます。例えば、_nsubrecsパラメータの"
 #~ "降順で並び替えることができます。"
 
-# 25f37a574a2d4d898923c16c0f455744
 #~ msgid ""
 #~ "ドリルダウン結果は、デフォルトでは10件のみ表示されます。drilldown_offsetパ"
 #~ "ラメータと、drilldown_limitパラメータによって、offsetとlimitを指定すること"




More information about the Groonga-commit mailing list
Back to archive index