[Groonga-commit] ranguba/rroonga at 359fc52 [master] doc: update PO

Zurück zum Archiv-Index

Masafumi Yokoyama null+****@clear*****
Sat Dec 13 01:50:45 JST 2014


Masafumi Yokoyama	2014-12-13 01:50:45 +0900 (Sat, 13 Dec 2014)

  New Revision: 359fc522109cdfbcff01d5061cf9eadf8f3fcbef
  https://github.com/ranguba/rroonga/commit/359fc522109cdfbcff01d5061cf9eadf8f3fcbef

  Message:
    doc: update PO
    
        % rake reference:po:update

  Modified files:
    doc/po/ja.po

  Modified: doc/po/ja.po (+808 -694)
===================================================================
--- doc/po/ja.po    2014-12-13 01:48:34 +0900 (dcb9107)
+++ doc/po/ja.po    2014-12-13 01:50:45 +0900 (afc4d41)
@@ -81,7 +81,7 @@ msgstr "## 依存ソフトウェア"
 
 msgid ""
 "* Ruby >= 1.9.3\n"
-"* Groonga >= 4.0.7"
+"* Groonga >= 4.0.8"
 msgstr ""
 
 msgid "## Install"
@@ -496,13 +496,26 @@ msgstr "* \"2. インストール - Groonga ドキュメント\":http://groonga.
 msgid "h1. NEWS"
 msgstr "h1. お知らせ"
 
-msgid "h2(#4-0-6). 4.0.6: 2014-11-06"
+msgid "h2(#4-0-7). 4.0.7: 2014-12-12"
 msgstr ""
 
 msgid "h3. Improvements"
 msgstr "h3. 改善"
 
 msgid ""
+"* Supported Groonga 4.0.8. Groonga 4.0.7 or older aren't supported.\n"
+"* Added @:reuse_posting_object@ option to\n"
+"  {Groonga::IndexCursor#each}. The option improves performance by\n"
+"  reducing memory allocation. The option is disabled by default because\n"
+"  reusing the same object isn't Rubyish.\n"
+"* Added {Groonga::IndexColumn#estimate_size}. [GitHub#38]\n"
+"* Accepted string for integer, unsigned integer and float type key."
+msgstr ""
+
+msgid "h2(#4-0-6). 4.0.6: 2014-11-06"
+msgstr ""
+
+msgid ""
 "* Supported Groonga 4.0.7. [GitHub#28]\n"
 "** Changed {Groonga::Context#support_lzo?} always returns @false �� .\n"
 "** Added {Groonga::Context#support_lz4?}.\n"
@@ -3174,9 +3187,6 @@ msgid ""
 "にテーブルが破棄される。"
 msgstr ""
 
-msgid "tag|param|options"
-msgstr ""
-
 # @overload
 msgid "tag|overload|create"
 msgstr ""
@@ -3197,6 +3207,9 @@ msgid ""
 "Groonga::Array.create(:value => 512)"
 msgstr ""
 
+msgid "tag|param|options"
+msgstr ""
+
 msgid ""
 "The name and value\n"
 "pairs. Omitted names are initialized as the default value."
@@ -3224,6 +3237,10 @@ msgid ""
 "...}@ と指定する。"
 msgstr ""
 
+# @overload
+msgid "tag|overload|add"
+msgstr ""
+
 # @example
 msgid ""
 "#以下のようなユーザを格納するGroonga::Arrayが\n"
@@ -3242,10 +3259,6 @@ msgid ""
 "                        :uri => \"http://d.hatena.ne.jp/tasukuchan/\")"
 msgstr ""
 
-# @overload
-msgid "tag|overload|add"
-msgstr ""
-
 # Groonga::Array#push
 msgid ""
 "Pushes a record to the array. The record should be filled in the\n"
@@ -3266,106 +3279,106 @@ msgid ""
 "not be filled completely. You should handle the case in pull side."
 msgstr ""
 
-# @example A program that pushes a job with error handling
-msgid ""
-"queue = Groonga::Array.create(:name => \"CrawlURLQueue\")\n"
-"queue.define_column(\"url\", \"ShortText\")\n"
-"urls = [\"http://groonga.org/\", \"http://ranguba.org/\"]\n"
-"urls.each do |url|\n"
-"  queue.push do |record|\n"
-"    record.url = url if record # check record is not nil\n"
-"  end\n"
-"end"
+# @yield [record]
+msgid "Filles columns of a pushed record in the given block."
 msgstr ""
 
 # @example
-msgid "tag|example|A program that pushes a job with error handling"
+msgid "tag|example|A program that pushes a job without error handling"
 msgstr ""
 
-# @example A program that pulls a job without error handling
+# @example
+msgid "tag|example|A program that pulls a job without error handling"
+msgstr ""
+
+# @return [Groonga::Record or nil]
+msgid "A pushed record that is yielded."
+msgstr ""
+
+# @yieldparam [Groonga::Record or nil] record
+msgid "A pushed record. It is nil when pushing is failed."
+msgstr ""
+
+# @yieldparam [Record]
+msgid "tag|yieldparam|record"
+msgstr ""
+
+# @overload
+msgid "tag|overload|push"
+msgstr ""
+
+# @example A program that pulls a job with error handling
 msgid ""
 "queue = Groonga::Array.open(:name => \"CrawlURLQueue\")\n"
 "loop do\n"
 "  url = nil\n"
 "  queue.pull do |record|\n"
-"    url = record.url\n"
+"    url = record.url # record.url is nil!\n"
 "    record.delete\n"
 "  end\n"
+"  next if url.nil? # Ignore an uncompleted added job\n"
 "  # Crawl URL\n"
 "end"
 msgstr ""
 
 # @example
-msgid "tag|example|A program that pulls a job without error handling"
-msgstr ""
-
-# @return [Groonga::Record or nil]
-msgid "A pushed record that is yielded."
+msgid "tag|example|A program that pulls a job with error handling"
 msgstr ""
 
-# @example A program that pushes a job without error handling
+# @example A program that has an error in push block
 msgid ""
 "queue = Groonga::Array.create(:name => \"CrawlURLQueue\")\n"
 "queue.define_column(\"url\", \"ShortText\")\n"
 "urls = [\"http://groonga.org/\", \"http://ranguba.org/\"]\n"
 "urls.each do |url|\n"
 "  queue.push do |record|\n"
-"    record.url = url\n"
+"    record.url = uri # Typo! It should be ur*l* not ur*i*\n"
+"    # record.url isn't set\n"
 "  end\n"
 "end"
 msgstr ""
 
-# @yieldparam [Record]
-msgid "tag|yieldparam|record"
-msgstr ""
-
-# @yield [record]
-msgid "Filles columns of a pushed record in the given block."
-msgstr ""
-
-# @overload
-msgid "tag|overload|push"
-msgstr ""
-
 # @example
 msgid "tag|example|A program that has an error in push block"
 msgstr ""
 
-# @example
-msgid "tag|example|A program that pushes a job without error handling"
-msgstr ""
-
-# @yieldparam [Groonga::Record or nil] record
-msgid "A pushed record. It is nil when pushing is failed."
+# @example A program that pushes a job with error handling
+msgid ""
+"queue = Groonga::Array.create(:name => \"CrawlURLQueue\")\n"
+"queue.define_column(\"url\", \"ShortText\")\n"
+"urls = [\"http://groonga.org/\", \"http://ranguba.org/\"]\n"
+"urls.each do |url|\n"
+"  queue.push do |record|\n"
+"    record.url = url if record # check record is not nil\n"
+"  end\n"
+"end"
 msgstr ""
 
 # @example
-msgid "tag|example|A program that pulls a job with error handling"
+msgid "tag|example|A program that pushes a job with error handling"
 msgstr ""
 
-# @example A program that pulls a job with error handling
+# @example A program that pulls a job without error handling
 msgid ""
 "queue = Groonga::Array.open(:name => \"CrawlURLQueue\")\n"
 "loop do\n"
 "  url = nil\n"
 "  queue.pull do |record|\n"
-"    url = record.url # record.url is nil!\n"
+"    url = record.url\n"
 "    record.delete\n"
 "  end\n"
-"  next if url.nil? # Ignore an uncompleted added job\n"
 "  # Crawl URL\n"
 "end"
 msgstr ""
 
-# @example A program that has an error in push block
+# @example A program that pushes a job without error handling
 msgid ""
 "queue = Groonga::Array.create(:name => \"CrawlURLQueue\")\n"
 "queue.define_column(\"url\", \"ShortText\")\n"
 "urls = [\"http://groonga.org/\", \"http://ranguba.org/\"]\n"
 "urls.each do |url|\n"
 "  queue.push do |record|\n"
-"    record.url = uri # Typo! It should be ur*l* not ur*i*\n"
-"    # record.url isn't set\n"
+"    record.url = url\n"
 "  end\n"
 "end"
 msgstr ""
@@ -3404,6 +3417,34 @@ msgid ""
 "{Groonga::Array#unblock}, signal handler can be ran."
 msgstr ""
 
+# @param [::Hash] options
+msgid "The option parameters."
+msgstr ""
+
+# @example Signal handler isn't called
+msgid ""
+"queue = Groonga::Array.open(:name => \"CrawlURLQueue\")\n"
+"trap(:INT) do\n"
+"  p :not_called!\n"
+"end\n"
+"queue.pull do |record|\n"
+"  # Send SIGINT while blocking the pull operation.\n"
+"  # The signal handler isn't called.\n"
+"end"
+msgstr ""
+
+# @see {Groonga::Array#push}
+msgid "Examples exist in the push documentation."
+msgstr ""
+
+# @see
+msgid "tag|see|Groonga::Array#push"
+msgstr ""
+
+# @example
+msgid "tag|example|Signal handler isn't called"
+msgstr ""
+
 # @yield [record]
 msgid "Gets required values for a pull record in the given block."
 msgstr ""
@@ -3414,10 +3455,18 @@ msgid ""
 "and @block?@ parameter is not @true �� ."
 msgstr ""
 
+# @overload
+msgid "tag|overload|pull"
+msgstr ""
+
 # @return [Groonga::Record or nil]
 msgid "A pulled record that is yielded."
 msgstr ""
 
+# @example
+msgid "tag|example|A program that pulls with non-block mode"
+msgstr ""
+
 # @example A program that pulls with non-block mode
 msgid ""
 "queue = Groonga::Array.open(:name => \"CrawlURLQueue\")\n"
@@ -3433,44 +3482,16 @@ msgid ""
 "end"
 msgstr ""
 
-# @see {Groonga::Array#push}
-msgid "Examples exist in the push documentation."
-msgstr ""
-
-# @overload
-msgid "tag|overload|pull"
+# Groonga::Array#unblock
+msgid "Unblocks all {Groonga::Array#pull} operations for the array."
 msgstr ""
 
 # @example
-msgid "tag|example|Signal handler isn't called"
+msgid "tag|example|Pull, unblock and signal"
 msgstr ""
 
 # @see
-msgid "tag|see|Groonga::Array#push"
-msgstr ""
-
-# @example Signal handler isn't called
-msgid ""
-"queue = Groonga::Array.open(:name => \"CrawlURLQueue\")\n"
-"trap(:INT) do\n"
-"  p :not_called!\n"
-"end\n"
-"queue.pull do |record|\n"
-"  # Send SIGINT while blocking the pull operation.\n"
-"  # The signal handler isn't called.\n"
-"end"
-msgstr ""
-
-# @example
-msgid "tag|example|A program that pulls with non-block mode"
-msgstr ""
-
-# @param [::Hash] options
-msgid "The option parameters."
-msgstr ""
-
-# Groonga::Array#unblock
-msgid "Unblocks all {Groonga::Array#pull} operations for the array."
+msgid "tag|see|Groonga::Array#pull"
 msgstr ""
 
 # @overload
@@ -3496,14 +3517,6 @@ msgid ""
 "queue.unblock"
 msgstr ""
 
-# @example
-msgid "tag|example|Pull, unblock and signal"
-msgstr ""
-
-# @see
-msgid "tag|see|Groonga::Array#pull"
-msgstr ""
-
 msgid ""
 "テーブルに情報を付加するためのオブジェクト。テーブルに複\n"
 "数のカラムを定義することによりレコード毎に複数の情報を付\n"
@@ -3606,11 +3619,8 @@ msgid ""
 "</pre>"
 msgstr ""
 
-# @param [String]
-msgid "tag|param|query"
-msgstr ""
-
-msgid "検索結果"
+# @param [Groonga::Expression]
+msgid "tag|param|expression"
 msgstr ""
 
 # @param [String] query
@@ -3638,16 +3648,16 @@ msgid ""
 "  @\"groonga\"@ を含んでいるレコードにマッチ =:"
 msgstr ""
 
-# @overload
-msgid "tag|overload|select"
-msgstr ""
-
 # @param [Groonga::Expression] expression
 msgid ""
 "条件を表すオブジェクト\n"
 "_expression_ には既に作成済みの {Groonga::Expression} を渡す。"
 msgstr ""
 
+# @param [String]
+msgid "tag|param|query"
+msgstr ""
+
 # @yieldparam [Groonga::Record] record
 msgid ""
 "検索条件を指定するのに、 _record_ に対して次のメソッドを使って検索条\n"
@@ -3663,8 +3673,11 @@ msgid ""
 "@term_extract(text)@ ( _text_ 内から _record_ の単語を抽出)"
 msgstr ""
 
-# @param [Groonga::Expression]
-msgid "tag|param|expression"
+msgid "検索結果"
+msgstr ""
+
+# @overload
+msgid "tag|overload|select"
 msgstr ""
 
 msgid "_column_ のロックを解除する。"
@@ -3749,14 +3762,14 @@ msgstr ""
 msgid "tag|overload|scalar?"
 msgstr ""
 
-# @since
-msgid "4.0.1"
-msgstr ""
-
 # @overload
 msgid "tag|overload|with_weight?"
 msgstr ""
 
+# @since
+msgid "4.0.1"
+msgstr ""
+
 # @return [Boolean]
 msgid ""
 "@true@ if the column is vector and created with\n"
@@ -3774,32 +3787,32 @@ msgstr ""
 msgid "1.0.9"
 msgstr ""
 
-# @return [Array<index_column>]
-msgid "_operator_ を実行できる _column_ のインデックス"
-msgstr ""
-
 # @overload
 msgid "tag|overload|indexes"
 msgstr ""
 
-msgid "Renames the column to name."
-msgstr "カラムをリネームします。"
-
-# @param [String] name
-msgid "the new name"
+# @return [Array<index_column>]
+msgid "_operator_ を実行できる _column_ のインデックス"
 msgstr ""
 
-msgid "1.3.0"
-msgstr ""
+msgid "Renames the column to name."
+msgstr "カラムをリネームします。"
 
 # @overload
 msgid "tag|overload|rename"
 msgstr ""
 
+# @param [String] name
+msgid "the new name"
+msgstr ""
+
 # @param [String or Symbol]
 msgid "tag|param|name"
 msgstr ""
 
+msgid "1.3.0"
+msgstr ""
+
 msgid ""
 "groonga全体に渡る情報を管理するオブジェクト。通常のアプリ\n"
 "ケーションでは1つのコンテキストを作成し、それを利用する。\n"
@@ -3918,9 +3931,6 @@ msgstr ""
 msgid "Gets the encoding used by the context as Ruby's encoding object."
 msgstr "コンテキストが使っているエンコーディングをRubyのエンコーディングオブジェクトで取得する。"
 
-msgid "2.0.5"
-msgstr ""
-
 # @overload
 msgid "tag|overload|ruby_encoding"
 msgstr ""
@@ -3928,6 +3938,9 @@ msgstr ""
 msgid "the encoding used by the context"
 msgstr ""
 
+msgid "2.0.5"
+msgstr ""
+
 # Groonga::Context#match_escalation_threshold
 msgid ""
 "このコンテキストを使って検索したときに検索の挙動をエスカレー\n"
@@ -4010,9 +4023,6 @@ msgstr ""
 msgid "groongaサーバにクエリ文字列を送信する。"
 msgstr ""
 
-msgid "ID"
-msgstr ""
-
 # @overload
 msgid "tag|overload|send"
 msgstr ""
@@ -4025,14 +4035,17 @@ msgstr ""
 msgid "tag|param|string"
 msgstr ""
 
+msgid "ID"
+msgstr ""
+
 msgid "groongaサーバからクエリ実行結果文字列を受信する。"
 msgstr ""
 
-# @overload
-msgid "tag|overload|receive"
+msgid "クエリ実行結果"
 msgstr ""
 
-msgid "クエリ実行結果"
+# @overload
+msgid "tag|overload|receive"
 msgstr ""
 
 msgid "コンテキスト管理下にあるオブジェクトを返す。"
@@ -4072,10 +4085,19 @@ msgid ""
 "_options_ にはハッシュでオプションを指定する。"
 msgstr ""
 
+msgid ""
+"options The name and value\n"
+"pairs. Omitted names are initialized as the default value."
+msgstr "オプションを設定するハッシュ。指定されなかったオプションはデフォルト値が使われます。"
+
 # @param [::Hash]
 msgid "tag|param|option"
 msgstr ""
 
+# @return [Groonga::Database]
+msgid "作成されたデータベースを返す。"
+msgstr ""
+
 # @example
 msgid ""
 "# 一時データベースを作成:\n"
@@ -4085,29 +4107,20 @@ msgid ""
 "Groonga::Database.create(:path => \"/tmp/db.groonga\")"
 msgstr ""
 
-# @return [Groonga::Database]
-msgid "作成されたデータベースを返す。"
-msgstr ""
-
-msgid ""
-"options The name and value\n"
-"pairs. Omitted names are initialized as the default value."
-msgstr "オプションを設定するハッシュ。指定されなかったオプションはデフォルト値が使われます。"
-
 msgid ""
 "既存のデータベースを開く。ブロックを指定した場合はブロッ\n"
 "クに開いたデータベースを渡し、ブロックを抜けるときに閉じ\n"
 "る。"
 msgstr ""
 
-# @yieldparam [Groonga::Database] database
-msgid "開いたデータベース"
-msgstr ""
-
 # @yieldparam [Groonga::Database]
 msgid "tag|yieldparam|database"
 msgstr ""
 
+# @yieldparam [Groonga::Database] database
+msgid "開いたデータベース"
+msgstr ""
+
 msgid ""
 "既存のデータベースを開く。ブロックを指定した場合はブロッ\n"
 "クに開いたデータベースを渡し、ブロックを抜けるときに閉じ\n"
@@ -4121,6 +4134,10 @@ msgstr ""
 msgid "データベース内のオブジェクトを順番にブロックに渡す。"
 msgstr ""
 
+# @overload
+msgid "tag|overload|each"
+msgstr ""
+
 # @example すべてのオブジェクトの名前をID順で表示する:
 msgid ""
 "database.each(:order_by => :id) do |object|\n"
@@ -4128,9 +4145,6 @@ msgid ""
 "end"
 msgstr ""
 
-msgid "tag|example|すべてのオブジェクトの名前を表示する:"
-msgstr ""
-
 # @example すべてのオブジェクトの名前を表示する:
 msgid ""
 "database.each do |object|\n"
@@ -4148,11 +4162,10 @@ msgid ""
 "end"
 msgstr ""
 
-# @overload
-msgid "tag|overload|each"
+msgid "tag|example|すべてのオブジェクトの名前をキー名の降順で表示する:"
 msgstr ""
 
-msgid "tag|example|すべてのオブジェクトの名前をキー名の降順で表示する:"
+msgid "tag|example|すべてのオブジェクトの名前を表示する:"
 msgstr ""
 
 # Groonga::Database#unlock
@@ -4182,20 +4195,20 @@ msgstr ""
 msgid "Defrags all variable size columns in the database."
 msgstr "データベースの可変長カラムをすべてデフラグする。"
 
-msgid "the number of defraged segments"
-msgstr "デフラグされたセグメントの数"
-
-# @overload
-msgid "tag|overload|defrag"
+msgid "1.2.6"
 msgstr ""
 
 # @param [::Hash] options
 msgid "option for defrag"
 msgstr ""
 
-msgid "1.2.6"
+# @overload
+msgid "tag|overload|defrag"
 msgstr ""
 
+msgid "the number of defraged segments"
+msgstr "デフラグされたセグメントの数"
+
 # Groonga::DoubleArrayTrieCursor
 msgid ""
 "{Groonga::DoubleArrayTrie} に登録されているレコードを順番に取り\n"
@@ -4283,6 +4296,10 @@ msgid ""
 "+:result+ にテーブルを指定した場合は、そのテーブルが返る。"
 msgstr ""
 
+# @param [String] key
+msgid "レコードにマッチさせる値"
+msgstr ""
+
 # @example 複数のキーで検索し、結果を1つのテーブルに集める。
 msgid ""
 "result = nil\n"
@@ -4296,32 +4313,24 @@ msgid ""
 "end"
 msgstr ""
 
+msgid "tag|example|複数のキーで検索し、結果を1つのテーブルに集める。"
+msgstr ""
+
 # @param [Object]
 # @param [String]
 msgid "tag|param|key"
 msgstr ""
 
-# @param [String] key
-msgid "レコードにマッチさせる値"
-msgstr ""
-
 # @overload
 msgid "tag|overload|search"
 msgstr ""
 
-msgid "tag|example|複数のキーで検索し、結果を1つのテーブルに集める。"
-msgstr ""
-
 msgid ""
 "_prefix_ に前方一致検索をするカーソルを生成して返す。ブロッ\n"
 "クを指定すると、そのブロックに生成したカーソルが渡され、ブ\n"
 "ロックを抜けると自動的にカーソルが破棄される。"
 msgstr ""
 
-# @param [String]
-msgid "tag|param|prefix"
-msgstr ""
-
 # @param [String] prefix
 msgid "前方一致させる値"
 msgstr ""
@@ -4329,6 +4338,10 @@ msgstr ""
 msgid "tag|overload|open_prefix_cursor"
 msgstr ""
 
+# @param [String]
+msgid "tag|param|prefix"
+msgstr ""
+
 # Groonga::DoubleArrayTrie#update
 msgid "Renames key of a record."
 msgstr ""
@@ -4744,8 +4757,8 @@ msgstr ""
 msgid "_object_ を追加し、 _n_arguments_ 個の引数を取る _operation_ を追加する。"
 msgstr ""
 
-# @param [Object]
-msgid "tag|param|object"
+# @param [Groonga::Operator::XXX] operation
+msgid "追加する _operation_"
 msgstr ""
 
 # @param [Object] object
@@ -4756,8 +4769,8 @@ msgstr ""
 msgid "tag|param|operation"
 msgstr ""
 
-# @param [Groonga::Operator::XXX] operation
-msgid "追加する _operation_"
+# @param [Object]
+msgid "tag|param|object"
 msgstr ""
 
 # @param [Integer]
@@ -4768,13 +4781,13 @@ msgstr ""
 msgid "_operation_ の取る引数"
 msgstr ""
 
-msgid "self"
-msgstr ""
-
 # @overload
 msgid "tag|overload|append_object"
 msgstr ""
 
+msgid "self"
+msgstr ""
+
 # Groonga::Expression#append_constant
 msgid "_constant_ を追加し、 _n_arguments_ 個の引数を取る _operation_ を追加する。"
 msgstr ""
@@ -4801,14 +4814,14 @@ msgstr ""
 msgid "文字列 _query_ をパースする。"
 msgstr ""
 
-# @param [String] query
-msgid "パースする文字列"
-msgstr ""
-
 # @overload
 msgid "tag|overload|parse"
 msgstr ""
 
+# @param [String] query
+msgid "パースする文字列"
+msgstr ""
+
 msgid "_expression_ を実行し、実行した結果を返す。"
 msgstr ""
 
@@ -4829,7 +4842,7 @@ msgid "Dump execution plan of the `expression` in string."
 msgstr ""
 
 # @since
-msgid "4.0.8"
+msgid "4.0.7"
 msgstr ""
 
 # @overload
@@ -4888,26 +4901,22 @@ msgstr ""
 msgid "tag|param|tags"
 msgstr ""
 
-# @overload
-msgid "tag|overload|snippet"
-msgstr ""
-
 # @param [Array<string>] tags
 msgid ""
 "キーワードの前後に挿入するタグの配列\n"
 "(詳細は上記を参照)"
 msgstr ""
 
+# @overload
+msgid "tag|overload|snippet"
+msgstr ""
+
 # Groonga::Expression#keywords
 msgid ""
 "Extracts keywords from _expression_. The keywords order isn't\n"
 "guaranteed."
 msgstr ""
 
-# @overload
-msgid "tag|overload|keywords"
-msgstr ""
-
 # @example
 msgid ""
 "expression.parse(\"Ruby OR Groonga\")\n"
@@ -4918,6 +4927,10 @@ msgstr ""
 msgid "the extracted keywords"
 msgstr ""
 
+# @overload
+msgid "tag|overload|keywords"
+msgstr ""
+
 msgid "固定長データ用のカラム。"
 msgstr ""
 
@@ -4933,21 +4946,17 @@ msgstr ""
 msgid "_column_ の _id_ に対応する値を設定する。"
 msgstr ""
 
-# @overload
-msgid "tag|overload|[]="
-msgstr ""
-
-# @param [Groonga::Object] value
-msgid "設定する値"
+# @param
+# @param [Object]
+msgid "tag|param|value"
 msgstr ""
 
 # @param [Integer] id
 msgid "設定する値に対応する _column_ の _id_"
 msgstr ""
 
-# @param
-# @param [Object]
-msgid "tag|param|value"
+# @param [Groonga::Object] value
+msgid "設定する値"
 msgstr ""
 
 # @param [Integer, Record]
@@ -4955,6 +4964,10 @@ msgstr ""
 msgid "tag|param|id"
 msgstr ""
 
+# @overload
+msgid "tag|overload|[]="
+msgstr ""
+
 # Groonga::FixSizeColumn#increment!
 msgid ""
 "_column_ の _id_ に対応する値を _delta_ だけ増加する。 _delta_\n"
@@ -4975,6 +4988,10 @@ msgstr ""
 msgid "tag|overload|decrement!"
 msgstr ""
 
+# Groonga::Geo
+msgid "A class for geophysics search."
+msgstr ""
+
 # Groonga::HashCursor
 msgid ""
 "{Groonga::Hash} に登録されているレコードを順番に取り出すため\n"
@@ -5080,14 +5097,6 @@ msgid ""
 "{Groonga::Table#define_index_column}."
 msgstr ""
 
-# @example
-msgid "tag|example|Adds sentences of an article to index"
-msgstr ""
-
-# @param [Record]
-msgid "tag|param|record"
-msgstr ""
-
 # @example Adds sentences of an article to index
 msgid ""
 "articles = Groonga::Array.create(:name => \"Articles\")\n"
@@ -5135,6 +5144,14 @@ msgid ""
 "end"
 msgstr ""
 
+# @param [String] value
+msgid "The value of the @record �� ."
+msgstr ""
+
+# @example
+msgid "tag|example|Adds sentences of an article to index"
+msgstr ""
+
 # @param [Groonga::Record, Integer] record
 msgid ""
 "The record that has a @value@ as its value. It can be Integer as\n"
@@ -5149,8 +5166,8 @@ msgstr ""
 msgid "The options."
 msgstr ""
 
-# @param [String] value
-msgid "The value of the @record �� ."
+# @param [Record]
+msgid "tag|param|record"
 msgstr ""
 
 # Groonga::IndexColumn#delete
@@ -5161,14 +5178,6 @@ msgid ""
 "option of {Groonga::Table#define_index_column}."
 msgstr ""
 
-# @overload
-msgid "tag|overload|delete"
-msgstr ""
-
-# @example
-msgid "tag|example|Deletes sentences of an article to index"
-msgstr ""
-
 # @example Deletes sentences of an article to index
 msgid ""
 "articles = Groonga::Array.create(:name => \"Articles\")\n"
@@ -5223,6 +5232,14 @@ msgid ""
 "p content_index.search(\"engine\").size # -> 0"
 msgstr ""
 
+# @example
+msgid "tag|example|Deletes sentences of an article to index"
+msgstr ""
+
+# @overload
+msgid "tag|overload|delete"
+msgstr ""
+
 # Groonga::IndexColumn#update
 msgid ""
 "Updates a record that has @new_value@ as new content and\n"
@@ -5232,6 +5249,24 @@ msgid ""
 "{Groonga::Table#define_index_column}."
 msgstr ""
 
+# @param [Groonga::Record, Integer] record
+msgid ""
+"The record that has a @new_value@ as its new value and\n"
+"@old_value@ as its old value. It can be Integer as record id."
+msgstr ""
+
+# @param [String]
+msgid "tag|param|new_value"
+msgstr ""
+
+# @param [String] old_value
+msgid "The old value of the @record �� ."
+msgstr ""
+
+# @param [String] new_value
+msgid "The new value of the @record �� ."
+msgstr ""
+
 # @example Updates sentences of an article to index
 msgid ""
 "articles = Groonga::Array.create(:name => \"Articles\")\n"
@@ -5275,31 +5310,13 @@ msgid ""
 msgstr ""
 
 # @param [String]
-msgid "tag|param|new_value"
+msgid "tag|param|old_value"
 msgstr ""
 
 # @example
 msgid "tag|example|Updates sentences of an article in index"
 msgstr "記事中の文の索引を更新する"
 
-# @param [String] new_value
-msgid "The new value of the @record �� ."
-msgstr ""
-
-# @param [String] old_value
-msgid "The old value of the @record �� ."
-msgstr ""
-
-# @param [String]
-msgid "tag|param|old_value"
-msgstr ""
-
-# @param [Groonga::Record, Integer] record
-msgid ""
-"The record that has a @new_value@ as its new value and\n"
-"@old_value@ as its old value. It can be Integer as record id."
-msgstr ""
-
 # Groonga::IndexColumn#sources
 msgid "インデックス対象となっている {Groonga::Column} の配列を返す。"
 msgstr ""
@@ -5311,14 +5328,14 @@ msgstr ""
 msgid "インデックス対象となる複数のカラムを配列で設定する。"
 msgstr ""
 
-# @param [::Array<Groonga::Column>]
-msgid "tag|param|columns"
-msgstr ""
-
 # @overload
 msgid "tag|overload|sources="
 msgstr ""
 
+# @param [::Array<Groonga::Column>]
+msgid "tag|param|columns"
+msgstr ""
+
 # @param [::Array<Groonga::Column>] columns
 msgid "インデックス対象となるカラムの配列"
 msgstr ""
@@ -5326,14 +5343,14 @@ msgstr ""
 msgid "インデックス対象となるカラムを設定する。"
 msgstr ""
 
-# @overload
-msgid "tag|overload|source="
-msgstr ""
-
 # @param [Groonga::Column]
 msgid "tag|param|column"
 msgstr ""
 
+# @overload
+msgid "tag|overload|source="
+msgstr ""
+
 # @param [Groonga::Column] column
 msgid "インデックス対象とするカラム"
 msgstr ""
@@ -5367,8 +5384,8 @@ msgstr ""
 msgid "Opens cursor to iterate posting in the index column."
 msgstr ""
 
-# @overload
-msgid "tag|overload|open_cursor"
+# @param [TableCursor] The
+msgid "table cursor for table of the index column."
 msgstr ""
 
 # @param [TableCursor]
@@ -5378,31 +5395,128 @@ msgstr ""
 msgid "# TODO"
 msgstr ""
 
-# @param [TableCursor] The
-msgid "table cursor for table of the index column."
+# @overload
+msgid "tag|overload|open_cursor"
 msgstr ""
 
-msgid "groongaから出力されるログを記録するためのクラス。"
+# Groonga::IndexColumn#estimate_size
+msgid "Estimates the number of documents found by the given token ID."
 msgstr ""
 
-msgid "groongaがログを出力する度に呼び出されるブロックを登録する。"
+# @return [Integer]
+msgid ""
+"The estimated number of documents found by the\n"
+"given token ID."
 msgstr ""
 
-# @overload
-msgid "tag|overload|register"
+# @example
+msgid "tag|example|Token ID style"
 msgstr ""
 
-# @yield [event, level, time, title, message, location]
+# @example Token ID style
 msgid ""
-"_event_ と _level_ はSymbol、それ以外は全て文字列で渡される。\n"
-"_event_ と _level_ 以外\n"
-"の4つについては _options_ で +false+ を指定することでブロックに\n"
-"渡さないようにすることができ、その場合は空文字列が実際には渡される。"
+"# Define schema\n"
+"Groonga::Schema.define do |schema|\n"
+"  schema.create_table(\"Articles\") do |table|\n"
+"    table.text(\"content\")\n"
+"  end\n"
+"\n"
+"  schema.create_table(\"Terms\",\n"
+"                      :type => :hash,\n"
+"                      :key_type => \"ShortText\",\n"
+"                      :default_tokenizer => \"TokenBigram\",\n"
+"                      :normalizer => \"NormalizerAuto\") do |table|\n"
+"    table.index(\"Articles.content\",\n"
+"                :name => \"articles_content\",\n"
+"                :with_position => true,\n"
+"                :with_section => true)\n"
+"  end\n"
+"end\n"
+"articles = Groonga[\"Articles\"]\n"
+"terms = Groonga[\"Terms\"]\n"
+"index = Groonga[\"Terms.articles_content\"]\n"
+"\n"
+"# Add data\n"
+"articles.add(:content => \"Groonga is fast\")\n"
+"articles.add(:content => \"Rroonga is fast\")\n"
+"articles.add(:content => \"Mroonga is fast\")\n"
+"\n"
+"# Estimate the number of documents found by token ID\n"
+"p****@index*****_size(@terms[\"fast\"].id)    # => 7\n"
+"p****@index*****_size(@terms[\"Groonga\"].id) # => 1"
 msgstr ""
 
-# Groonga::Logger.unregister
+# @example Token record style
 msgid ""
-"Unregister the registered logger. The default logger is used after\n"
+"# Define schema\n"
+"Groonga::Schema.define do |schema|\n"
+"  schema.create_table(\"Articles\") do |table|\n"
+"    table.text(\"content\")\n"
+"  end\n"
+"\n"
+"  schema.create_table(\"Terms\",\n"
+"                      :type => :hash,\n"
+"                      :key_type => \"ShortText\",\n"
+"                      :default_tokenizer => \"TokenBigram\",\n"
+"                      :normalizer => \"NormalizerAuto\") do |table|\n"
+"    table.index(\"Articles.content\",\n"
+"                :name => \"articles_content\",\n"
+"                :with_position => true,\n"
+"                :with_section => true)\n"
+"  end\n"
+"end\n"
+"articles = Groonga[\"Articles\"]\n"
+"terms = Groonga[\"Terms\"]\n"
+"index = Groonga[\"Terms.articles_content\"]\n"
+"\n"
+"# Add data\n"
+"articles.add(:content => \"Groonga is fast\")\n"
+"articles.add(:content => \"Rroonga is fast\")\n"
+"articles.add(:content => \"Mroonga is fast\")\n"
+"\n"
+"# Estimate the number of documents found by token record\n"
+"p****@index*****_size(@terms[\"fast\"])    # => 7\n"
+"p****@index*****_size(@terms[\"Groonga\"]) # => 1"
+msgstr ""
+
+# @overload
+#, fuzzy
+msgid "tag|overload|estimate_size"
+msgstr "登録されたロガーの登録を削除する。削除後はデフォルトのロガーが使われます。"
+
+# @param [Integer, Record]
+msgid "tag|param|token_id"
+msgstr ""
+
+# @param [Integer, Record] token_id
+msgid "The token ID to be estimated."
+msgstr ""
+
+# @example
+msgid "tag|example|Token record style"
+msgstr ""
+
+msgid "groongaから出力されるログを記録するためのクラス。"
+msgstr ""
+
+msgid "groongaがログを出力する度に呼び出されるブロックを登録する。"
+msgstr ""
+
+# @overload
+msgid "tag|overload|register"
+msgstr ""
+
+# @yield [event, level, time, title, message, location]
+msgid ""
+"_event_ と _level_ はSymbol、それ以外は全て文字列で渡される。\n"
+"_event_ と _level_ 以外\n"
+"の4つについては _options_ で +false+ を指定することでブロックに\n"
+"渡さないようにすることができ、その場合は空文字列が実際には渡される。"
+msgstr ""
+
+# Groonga::Logger.unregister
+msgid ""
+"Unregister the registered logger. The default logger is used after\n"
 "unregistering."
 msgstr ""
 
@@ -5432,14 +5546,14 @@ msgstr ""
 msgid "tag|overload|path"
 msgstr ""
 
-# @return [String or nil]
-msgid "The current log path"
-msgstr ""
-
 # @since
 msgid "3.0.1"
 msgstr ""
 
+# @return [String or nil]
+msgid "The current log path"
+msgstr ""
+
 # Groonga::Logger.path=
 msgid ""
 "Sets the log path that is used the default logger. If you're using\n"
@@ -5463,26 +5577,26 @@ msgstr ""
 msgid "tag|param|path"
 msgstr ""
 
-# @example Disables log by the default logger
-msgid "Groonga::Logger.path = nil"
-msgstr ""
-
 # @overload
 msgid "tag|overload|path="
 msgstr ""
 
-# @example
-msgid "tag|example|Disables log by the default logger"
-msgstr ""
-
 # @example Changes the log path for the default logger
 msgid "Groonga::Logger.path = \"/tmp/groonga.log\""
 msgstr ""
 
 # @example
+msgid "tag|example|Disables log by the default logger"
+msgstr ""
+
+# @example
 msgid "tag|example|Changes the log path for the default logger"
 msgstr ""
 
+# @example Disables log by the default logger
+msgid "Groonga::Logger.path = nil"
+msgstr ""
+
 msgid "It normalizes string."
 msgstr "文字列を正規化するクラスです。"
 
@@ -5744,8 +5858,8 @@ msgid ""
 "まとめて配列として返す。"
 msgstr ""
 
-# @overload
-msgid "tag|overload|scan"
+# @yieldparam length
+msgid "_word_ の長さ。(バイト単位)"
 msgstr ""
 
 # @example
@@ -5772,32 +5886,32 @@ msgid ""
 "  #     [gaxtu, \"ガッ\", 42, 6]]"
 msgstr ""
 
-# @yieldparam word
-msgid "マッチした部分文字列。"
+# @overload
+msgid "tag|overload|scan"
 msgstr ""
 
 # @yieldparam
-msgid "tag|yieldparam|start"
+msgid "tag|yieldparam|length"
 msgstr ""
 
-# @yieldparam start
-msgid "_string_ 内での _word_ の出現位置。(バイト単位)"
+# @yieldparam record
+msgid "マッチしたキーの {Groonga::Record} 。"
 msgstr ""
 
 # @yieldparam
-msgid "tag|yieldparam|length"
+msgid "tag|yieldparam|word"
 msgstr ""
 
-# @yieldparam length
-msgid "_word_ の長さ。(バイト単位)"
+# @yieldparam word
+msgid "マッチした部分文字列。"
 msgstr ""
 
-# @yieldparam record
-msgid "マッチしたキーの {Groonga::Record} 。"
+# @yieldparam
+msgid "tag|yieldparam|start"
 msgstr ""
 
-# @yieldparam
-msgid "tag|yieldparam|word"
+# @yieldparam start
+msgid "_string_ 内での _word_ の出現位置。(バイト単位)"
 msgstr ""
 
 # Groonga::PatriciaTrie#prefix_search
@@ -5828,13 +5942,13 @@ msgid ""
 "棄される。"
 msgstr ""
 
-msgid "tag|overload|open_rk_cursor"
-msgstr ""
-
 # @param [::Hash] options
 msgid "pairs. Omitted names are initialized as the default value."
 msgstr ""
 
+msgid "tag|overload|open_rk_cursor"
+msgstr ""
+
 msgid ""
 "_key_ に近い順にレコードを取り出すカーソルを生成して返す。\n"
 "ブロックを指定すると、そのブロックに生成したカーソルが渡され、\n"
@@ -5857,14 +5971,14 @@ msgstr ""
 msgid "tag|param|hash"
 msgstr ""
 
-# @param [::Hash] hash
-msgid "_:path_ と _:context_ を指定したハッシュを指定する。"
-msgstr ""
-
 # @param [String] name
 msgid "登録するプラグインの名前"
 msgstr ""
 
+# @param [::Hash] hash
+msgid "_:path_ と _:context_ を指定したハッシュを指定する。"
+msgstr ""
+
 # Groonga::Plugin.register
 msgid "_name_ で指定した名前のプラグインを登録する。"
 msgstr ""
@@ -5900,6 +6014,12 @@ msgid ""
 "query log event is emitted."
 msgstr ""
 
+# @param [#log, #reopen, #fin] logger
+msgid ""
+"The query logger. It is easy to\n"
+"inherit {QueryLogger}."
+msgstr ""
+
 # @param [#log, #reopen, #fin]
 msgid "tag|param|logger"
 msgstr ""
@@ -5908,12 +6028,6 @@ msgstr ""
 msgid "..."
 msgstr ""
 
-# @param [#log, #reopen, #fin] logger
-msgid ""
-"The query logger. It is easy to\n"
-"inherit {QueryLogger}."
-msgstr ""
-
 # Groonga::QueryLogger.reopen
 msgid ""
 "Sends reopen request to the current query logger. It is useful for\n"
@@ -5941,27 +6055,27 @@ msgid ""
 "logger is disabled."
 msgstr ""
 
-# @param [String or nil] path
-msgid ""
-"The query log path for the default query\n"
-"logger. If nil is specified, query logging by the default query logger\n"
-"is disabled."
+# @example
+msgid "tag|example|Changes the query log path for the default query logger"
 msgstr ""
 
 # @example
-msgid "tag|example|Changes the query log path for the default query logger"
+msgid "tag|example|Disables query log by the default query logger"
 msgstr ""
 
-# @example Changes the query log path for the default query logger
-msgid "Groonga::QueryLogger.path = \"/tmp/query.log\""
+# @param [String or nil] path
+msgid ""
+"The query log path for the default query\n"
+"logger. If nil is specified, query logging by the default query logger\n"
+"is disabled."
 msgstr ""
 
 # @example Disables query log by the default query logger
 msgid "Groonga::QueryLogger.path = nil"
 msgstr ""
 
-# @example
-msgid "tag|example|Disables query log by the default query logger"
+# @example Changes the query log path for the default query logger
+msgid "Groonga::QueryLogger.path = \"/tmp/query.log\""
 msgstr ""
 
 msgid "スニペット(検索語周辺のテキスト)を生成するためのオブジェクト。"
@@ -5974,14 +6088,14 @@ msgstr ""
 msgid "_keyword_ を追加する。"
 msgstr ""
 
-# @param [String]
-msgid "tag|param|keyword"
-msgstr ""
-
 # @param [String] keyword
 msgid "追加するキーワード"
 msgstr ""
 
+# @param [String]
+msgid "tag|param|keyword"
+msgstr ""
+
 # @overload
 msgid "tag|overload|add_keyword"
 msgstr ""
@@ -6005,13 +6119,13 @@ msgstr ""
 msgid "カレントレコードの主キーを返す。"
 msgstr ""
 
-msgid "カレントレコードの主キー"
-msgstr ""
-
 # @overload
 msgid "tag|overload|key"
 msgstr ""
 
+msgid "カレントレコードの主キー"
+msgstr ""
+
 msgid ""
 "テーブルに登録されているレコードを順番に取り出すための\n"
 "オブジェクト。 {Groonga::Table#open_cursor} で生成できる。"
@@ -6091,10 +6205,6 @@ msgstr ""
 msgid "tag|overload|has_key?"
 msgstr ""
 
-# @param [Object] key
-msgid "The key of delete target record."
-msgstr ""
-
 # @param [Integer] id
 msgid "The ID of delete target record."
 msgstr ""
@@ -6105,8 +6215,8 @@ msgstr ""
 msgid "TODO: See #select."
 msgstr ""
 
-# Groonga::Table::KeySupport#delete
-msgid "Delete a record that has key @key �� ."
+# @param [Object] key
+msgid "The key of delete target record."
 msgstr ""
 
 # Groonga::Table#delete
@@ -6114,6 +6224,10 @@ msgstr ""
 msgid "Delete a record that has ID @id �� ."
 msgstr ""
 
+# Groonga::Table::KeySupport#delete
+msgid "Delete a record that has key @key �� ."
+msgstr ""
+
 # Groonga::Table::KeySupport#[]
 msgid "_table_ の _key_ に対応する {Groonga::Record} を返す。"
 msgstr ""
@@ -6132,14 +6246,14 @@ msgstr ""
 msgid "0.9.0から値ではなくカラムの値を設定するようになった。"
 msgstr ""
 
-# @param [::Hash]
-msgid "tag|param|values"
-msgstr ""
-
 # @param [::Hash] values
 msgid "keyに対応させるカラムの値。{ :column_name => value, ... }の形で設定する。"
 msgstr ""
 
+# @param [::Hash]
+msgid "tag|param|values"
+msgstr ""
+
 # Groonga::Table::KeySupport#set_column_value
 msgid ""
 "_table_ の _key_ に対応するカラム _name_ の値を設定する。\n"
@@ -6188,6 +6302,9 @@ msgstr ""
 msgid "{Groonga::IndexColumn} で使用するトークナイザを設定する。"
 msgstr ""
 
+msgid "tag|overload|default_tokenizer="
+msgstr ""
+
 # @example
 msgid ""
 "# 2-gramを使用。\n"
@@ -6206,9 +6323,6 @@ msgid ""
 "table.default_tokenizer = \"TokenMecab\""
 msgstr ""
 
-msgid "tag|overload|default_tokenizer="
-msgstr ""
-
 # Groonga::Table::KeySupport#token_filters
 msgid "Returns the token filters that are used by {Groonga::IndexColumn}."
 msgstr ""
@@ -6221,12 +6335,6 @@ msgstr ""
 msgid "Sets token filters that used in {Groonga::IndexColumn}."
 msgstr ""
 
-# @example
-msgid ""
-"# Use \"TokenFilterStem\" and \"TokenfilterStopWord\"\n"
-"table.token_filters = [\"TokenFilterStem\", \"TokenFilterStopWord\"]"
-msgstr ""
-
 # @overload
 msgid "tag|overload|token_filters="
 msgstr ""
@@ -6239,6 +6347,12 @@ msgstr ""
 msgid "tag|param|token_filters"
 msgstr ""
 
+# @example
+msgid ""
+"# Use \"TokenFilterStem\" and \"TokenfilterStopWord\"\n"
+"table.token_filters = [\"TokenFilterStem\", \"TokenFilterStopWord\"]"
+msgstr ""
+
 # Groonga::Table::KeySupport#normalizer
 msgid "Returns the normalizer that is used by {Groonga::IndexColumn}."
 msgstr ""
@@ -6251,6 +6365,10 @@ msgstr ""
 msgid "Specifies the normalizer used by {Groonga::IndexColumn}."
 msgstr ""
 
+# @param [String] name
+msgid "Set a nomalizer named @name �� ."
+msgstr ""
+
 # @example
 msgid ""
 "# Uses NFKC normalizer.\n"
@@ -6261,8 +6379,8 @@ msgid ""
 "table.normalizer = \"TNormalizerAuto\""
 msgstr ""
 
-# @param [String] name
-msgid "Set a nomalizer named @name �� ."
+# @param [Groonga::Procedure] normalizer
+msgid "Set the normalizer object."
 msgstr ""
 
 # @param [Groonga::Procedure]
@@ -6270,10 +6388,6 @@ msgstr ""
 msgid "tag|param|normalizer"
 msgstr ""
 
-# @param [Groonga::Procedure] normalizer
-msgid "Set the normalizer object."
-msgstr ""
-
 # @param [nil] normalizer
 msgid "Unset normalizer."
 msgstr ""
@@ -6304,10 +6418,6 @@ msgstr ""
 msgid "Tokenize a string using the table as lexicon."
 msgstr ""
 
-# @return [::Array<Groonga::Record>]
-msgid "Tokenized tokens."
-msgstr ""
-
 # @overload
 msgid "tag|overload|tokenize"
 msgstr ""
@@ -6316,6 +6426,10 @@ msgstr ""
 msgid "The string to be tokenized."
 msgstr ""
 
+# @return [::Array<Groonga::Record>]
+msgid "Tokenized tokens."
+msgstr ""
+
 # Groonga::Table
 msgid ""
 "rroongaが提供するテーブルのベースとなるクラス。このクラス\n"
@@ -6522,6 +6636,10 @@ msgid ""
 "result, use the following code:"
 msgstr ""
 
+# @example
+msgid "tag|example|Describe incompatible API change"
+msgstr ""
+
 # @example Describe incompatible API change
 msgid ""
 "result_since_2_1_0 = table.sort([\"sort_key\"])\n"
@@ -6530,10 +6648,6 @@ msgid ""
 "end"
 msgstr ""
 
-# @example
-msgid "tag|example|Describe incompatible API change"
-msgstr ""
-
 msgid ""
 "_table_ のレコードを _key1_ , _key2_ , _..._ で指定したキーの\n"
 "値でグループ化する。多くの場合、キーにはカラムを指定する。\n"
@@ -6548,8 +6662,12 @@ msgstr ""
 msgid "Iterates each sub records for the record _id_."
 msgstr ""
 
-# @since
-msgid "3.0.3"
+# @yieldparam [Record]
+msgid "tag|yieldparam|sub_record"
+msgstr ""
+
+# @yield [sub_record]
+msgid "Gives a sub record for the record _id_ to the block."
 msgstr ""
 
 # @yieldparam [Record] sub_record
@@ -6560,12 +6678,8 @@ msgstr ""
 msgid "tag|overload|each_sub_record"
 msgstr ""
 
-# @yield [sub_record]
-msgid "Gives a sub record for the record _id_ to the block."
-msgstr ""
-
-# @yieldparam [Record]
-msgid "tag|yieldparam|sub_record"
+# @since
+msgid "3.0.3"
 msgstr ""
 
 # Groonga::Table#[]
@@ -6603,30 +6717,26 @@ msgid ""
 msgstr ""
 
 # @example
-msgid "tag|example|Uses @:id => true@ for polymorphic usage"
-msgstr ""
-
-# @param [::Array<::Hash{:value => ::Object, :weight => Integer}, ::Object>]
-msgid "tag|param|vector_value_with_weight"
-msgstr ""
-
-# @param [::Array<::Hash{:value => ::Object, :weight => Integer}, ::Object>] vector_value_with_weight
-msgid ""
-"The new vector value with weight. The vector value can contain both\n"
-"::Hash and value. If a contained element uses ::Hash style, it can\n"
-"specify its weight. If a contained element doesn't use ::Hash style,\n"
-"it can't specify its weight.\n"
-"\n"
-"If ::Hash contains @:weight@ key, its value is used as weight for\n"
-"@:value@ key's value. If ::Hash contains only @:value@ or @:weight@\n"
-"value is nil, the default weight is used. The default weight is 0."
+msgid "tag|example|Sets vector value with weight"
 msgstr ""
 
 # @param [String or Symbol] name
 msgid "The name of the target column."
 msgstr ""
 
-# @example Sets vector value with weight
+# @note
+msgid ""
+"To use weight, there are two requirements. They are using vector\n"
+"column and using index column with weight support. Weight supported\n"
+"index column can be created with @:with_weight => true@ option.\n"
+"See {#define_index_column}."
+msgstr ""
+
+# @param [::Object] value
+msgid "The new value."
+msgstr ""
+
+# @example Sets vector value with weight
 msgid ""
 "Groonga::Schema.define do |schema|\n"
 "  schema.create_table(\"Sites\") do |table|\n"
@@ -6683,6 +6793,26 @@ msgid ""
 "p records.collect(&:score) # => [1] (1 + 0 weight)"
 msgstr ""
 
+# @param [::Array<::Hash{:value => ::Object, :weight => Integer}, ::Object>]
+msgid "tag|param|vector_value_with_weight"
+msgstr ""
+
+# @param [::Array<::Hash{:value => ::Object, :weight => Integer}, ::Object>] vector_value_with_weight
+msgid ""
+"The new vector value with weight. The vector value can contain both\n"
+"::Hash and value. If a contained element uses ::Hash style, it can\n"
+"specify its weight. If a contained element doesn't use ::Hash style,\n"
+"it can't specify its weight.\n"
+"\n"
+"If ::Hash contains @:weight@ key, its value is used as weight for\n"
+"@:value@ key's value. If ::Hash contains only @:value@ or @:weight@\n"
+"value is nil, the default weight is used. The default weight is 0."
+msgstr ""
+
+# @example
+msgid "tag|example|Uses @:id => true@ for polymorphic usage"
+msgstr ""
+
 # @example Uses @:id => true@ for polymorphic usage
 msgid ""
 "Groonga::Schema.define do |schema|\n"
@@ -6728,20 +6858,12 @@ msgstr ""
 msgid "The ID of the target record."
 msgstr ""
 
-# @example
-msgid "tag|example|Sets vector value with weight"
-msgstr ""
-
-# @note
+# Groonga::Table#set_column_value
 msgid ""
-"To use weight, there are two requirements. They are using vector\n"
-"column and using index column with weight support. Weight supported\n"
-"index column can be created with @:with_weight => true@ option.\n"
-"See {#define_index_column}."
-msgstr ""
-
-# @param [::Object] value
-msgid "The new value."
+"Sets the vector column value and its weight. Weight is used when fulltext\n"
+"search. In fulltext search, score @1@ is added when a record is matched\n"
+"against a query. If weight is set, score @1 + weight@ is added when\n"
+"a record is matched against a query."
 msgstr ""
 
 # Groonga::Table#set_column_value
@@ -6761,14 +6883,6 @@ msgid ""
 "See other signature for usage."
 msgstr ""
 
-# Groonga::Table#set_column_value
-msgid ""
-"Sets the vector column value and its weight. Weight is used when fulltext\n"
-"search. In fulltext search, score @1@ is added when a record is matched\n"
-"against a query. If weight is set, score @1 + weight@ is added when\n"
-"a record is matched against a query."
-msgstr ""
-
 msgid "_table_ のロックを解除する。"
 msgstr ""
 
@@ -6843,16 +6957,16 @@ msgid ""
 msgstr ""
 
 # Groonga::Table#select
-msgid "_expression_ には既に作成済みの {Groonga::Expression} を渡す。"
-msgstr ""
-
-# Groonga::Table#select
 msgid ""
 "_query_ には「[カラム名]:[演算子][値]」という書式で条件を\n"
 "指定する。演算子は以下の通り。"
 msgstr ""
 
 # Groonga::Table#select
+msgid "_expression_ には既に作成済みの {Groonga::Expression} を渡す。"
+msgstr ""
+
+# Groonga::Table#select
 msgid "参考: {Groonga::Expression#parse} ."
 msgstr ""
 
@@ -6923,14 +7037,14 @@ msgid ""
 "+false+ を返す。"
 msgstr ""
 
-# @overload
-msgid "tag|overload|support_value?"
-msgstr ""
-
 # @return
 msgid "@true@ if the table is created with value type, @false@"
 msgstr ""
 
+# @overload
+msgid "tag|overload|support_value?"
+msgstr ""
+
 # Groonga::Table#support_value?
 msgid "otherwise."
 msgstr ""
@@ -6960,6 +7074,12 @@ msgid ""
 "it."
 msgstr ""
 
+# @return [Boolean]
+msgid ""
+"@true@ if the table has a space for storing\n"
+"the number of sub records, @false@ otherwise."
+msgstr ""
+
 # @example A normal table don't have the space
 msgid ""
 "users = Groonga[\"Users\"] # A normal table\n"
@@ -6977,18 +7097,12 @@ msgstr ""
 msgid "tag|overload|have_n_sub_records_space?"
 msgstr ""
 
-# @return [Boolean]
-msgid ""
-"@true@ if the table has a space for storing\n"
-"the number of sub records, @false@ otherwise."
-msgstr ""
-
 # @example
-msgid "tag|example|A normal table don't have the space"
+msgid "tag|example|A grouped table has the space"
 msgstr ""
 
 # @example
-msgid "tag|example|A grouped table has the space"
+msgid "tag|example|A normal table don't have the space"
 msgstr ""
 
 # Groonga::Table#exist?
@@ -7086,7 +7200,10 @@ msgid ""
 "ID is _id_."
 msgstr ""
 
-msgid "The record ID."
+# @return [::Object]
+msgid ""
+"See {Groonga::Object#[]} for columns except\n"
+"weight vector column."
 msgstr ""
 
 # @example Gets weight vector value
@@ -7123,6 +7240,10 @@ msgid ""
 "#    ]"
 msgstr ""
 
+# @example
+msgid "tag|example|Gets weight vector value"
+msgstr ""
+
 # @return [Array<Hash<Symbol, String>>]
 msgid ""
 "An array of value if the column\n"
@@ -7146,14 +7267,7 @@ msgstr ""
 msgid "4.0.1."
 msgstr ""
 
-# @return [::Object]
-msgid ""
-"See {Groonga::Object#[]} for columns except\n"
-"weight vector column."
-msgstr ""
-
-# @example
-msgid "tag|example|Gets weight vector value"
+msgid "The record ID."
 msgstr ""
 
 # Groonga::VariableSizeColumn#[]=
@@ -7169,41 +7283,12 @@ msgid ""
 "size column works what you think."
 msgstr ""
 
-# @param [Array<Hash<Symbol, String>>] elements
-msgid ""
-"An array of values\n"
-"for weight vector.\n"
-"Each value is a Hash like the following form:\n"
-"\n"
-"<pre>\n"
-"{\n"
-"  :value  => [KEY],\n"
-"  :weight => [WEIGHT],\n"
-"}\n"
-"</pre>\n"
-"\n"
-"@[KEY]@ must be the same type of the key of the table that is\n"
-"specified as range on creating the weight vector.\n"
-"\n"
-"@[WEIGHT]@ must be an positive integer. Note that search\n"
-"becomes @weight + 1 �� . It means that You want to get 10 as\n"
-"score, you should set 9 as weight."
-msgstr ""
-
-# @see
-msgid "tag|see|Groonga::Object#[]="
-msgstr ""
-
-# @param [Array<Hash<Symbol, String>>]
-msgid "tag|param|elements"
-msgstr ""
-
 # @example
 msgid "tag|example|Use weight vector as matrix search result weight"
 msgstr ""
 
-# @param [::Object] value
-msgid "A new value."
+# @see
+msgid "tag|see|Groonga::Object#[]="
 msgstr ""
 
 # @example Use weight vector as matrix search result weight
@@ -7280,6 +7365,35 @@ msgid ""
 "#    [\"Rroonga\", 1021] <- 1021 (= 101 * 10 + 1) increased."
 msgstr ""
 
+# @param [Array<Hash<Symbol, String>>]
+msgid "tag|param|elements"
+msgstr ""
+
+# @param [Array<Hash<Symbol, String>>] elements
+msgid ""
+"An array of values\n"
+"for weight vector.\n"
+"Each value is a Hash like the following form:\n"
+"\n"
+"<pre>\n"
+"{\n"
+"  :value  => [KEY],\n"
+"  :weight => [WEIGHT],\n"
+"}\n"
+"</pre>\n"
+"\n"
+"@[KEY]@ must be the same type of the key of the table that is\n"
+"specified as range on creating the weight vector.\n"
+"\n"
+"@[WEIGHT]@ must be an positive integer. Note that search\n"
+"becomes @weight + 1 �� . It means that You want to get 10 as\n"
+"score, you should set 9 as weight."
+msgstr ""
+
+# @param [::Object] value
+msgid "A new value."
+msgstr ""
+
 # Groonga::VariableSizeColumn#[]=
 msgid "This description is for weight vector column."
 msgstr ""
@@ -7296,29 +7410,29 @@ msgid ""
 "compressed by @type@ or not."
 msgstr "カラムが圧縮されているかどうかを返します。もし @type@ が指定されているなら、カラムが @type@ によって圧縮されているかどうかを返します。"
 
-# @param [:zlib, :lz4] type
-msgid "(nil)"
-msgstr ""
-
-msgid "1.3.1"
+# @return [Boolean]
+msgid "whether specified compressed type is used or not."
 msgstr ""
 
 # @return [Boolean]
-msgid "whether specified compressed type is used or not."
+msgid "whether the column is compressed or not."
 msgstr ""
 
-# @param [:zlib, :lz4]
-msgid "tag|param|type"
+msgid "1.3.1"
 msgstr ""
 
-# @return [Boolean]
-msgid "whether the column is compressed or not."
+# @param [:zlib, :lz4] type
+msgid "(nil)"
 msgstr ""
 
 # @overload
 msgid "tag|overload|compressed?"
 msgstr ""
 
+# @param [:zlib, :lz4]
+msgid "tag|param|type"
+msgstr ""
+
 msgid "Defrags the column."
 msgstr "カラムをデフラグします。"
 
@@ -7396,20 +7510,20 @@ msgstr ""
 msgid "The new lock timeout."
 msgstr ""
 
-# @see
-msgid "tag|see|{#lock_timeout}"
+# @param [Integer]
+msgid "tag|param|timeout"
 msgstr ""
 
 # @overload
 msgid "tag|overload|lock_timeout="
 msgstr ""
 
-# @since
-msgid "3.1.2"
+# @see
+msgid "tag|see|{#lock_timeout}"
 msgstr ""
 
-# @param [Integer]
-msgid "tag|param|timeout"
+# @since
+msgid "3.1.2"
 msgstr ""
 
 msgid ""
@@ -7467,8 +7581,10 @@ msgid ""
 "block."
 msgstr ""
 
-# @example
-msgid "tag|example|Creating a new temporary database with block"
+# @return [Groonga::Database]
+msgid ""
+"A new persistent database for the\n"
+"context."
 msgstr ""
 
 # @example Creating a new temporary database
@@ -7479,15 +7595,14 @@ msgstr ""
 msgid "tag|example|Creating a new temporary database"
 msgstr ""
 
-# @example Creating a new temporary database with block
-msgid ""
-"context.create_database do |temporary_database|\n"
-"  # ...\n"
-"end"
+# @return [Groonga::Database]
+msgid "A new temporary database."
 msgstr ""
 
-# @example
-msgid "tag|example|Creating a new persistent database to _\"/tmp/db.groonga\"_"
+# @param [String] path
+msgid ""
+"Database path for a new persistent\n"
+"database."
 msgstr ""
 
 # @yieldparam [Groonga::Database] database
@@ -7496,31 +7611,25 @@ msgid ""
 "temporary database for the context."
 msgstr ""
 
-# @return
-msgid "Returned value from the block."
-msgstr ""
-
-# @yieldreturn [Object]
-msgid ""
-"The returned value from the block is the\n"
-"returned value from this method."
+# @example
+msgid "tag|example|Creating a new persistent database to _\"/tmp/db.groonga\"_"
 msgstr ""
 
 # @example Creating a new persistent database to _"/tmp/db.groonga"_
 msgid "database = context.create_database(\"/tmp/db.groonga\")"
 msgstr ""
 
-# @param [String] path
+# @yieldreturn [Object]
 msgid ""
-"Database path for a new persistent\n"
-"database."
+"The returned value from the block is the\n"
+"returned value from this method."
 msgstr ""
 
-# @yield [database]
+# @example Creating a new temporary database with block
 msgid ""
-"Yields a newly created persistent database\n"
-"for the context. The database is available only in the\n"
-"block."
+"context.create_database do |temporary_database|\n"
+"  # ...\n"
+"end"
 msgstr ""
 
 # @yieldparam [Groonga::Database] database
@@ -7542,14 +7651,27 @@ msgid ""
 "end"
 msgstr ""
 
-# @return [Groonga::Database]
-msgid "A new temporary database."
+# @return
+msgid "Returned value from the block."
 msgstr ""
 
-# @return [Groonga::Database]
+# @example
+msgid "tag|example|Creating a new temporary database with block"
+msgstr ""
+
+# @yield [database]
 msgid ""
-"A new persistent database for the\n"
-"context."
+"Yields a newly created persistent database\n"
+"for the context. The database is available only in the\n"
+"block."
+msgstr ""
+
+# Groonga::Context#create_database
+msgid "Creates a new persistent database for the context to the _path_."
+msgstr ""
+
+# Groonga::Context#create_database
+msgid "Creates a new temproary database for the context."
 msgstr ""
 
 # Groonga::Context#create_database
@@ -7565,14 +7687,6 @@ msgid ""
 "finished."
 msgstr ""
 
-# Groonga::Context#create_database
-msgid "Creates a new temproary database for the context."
-msgstr ""
-
-# Groonga::Context#create_database
-msgid "Creates a new persistent database for the context to the _path_."
-msgstr ""
-
 msgid ""
 "groongaのプラグインディレクトリにあるプラグイン _name_\n"
 "を登録する。 _path_ を指定するとプラグインディレクトリ以\n"
@@ -7596,16 +7710,8 @@ msgstr ""
 msgid "If block is given, a response is yielded."
 msgstr ""
 
-# @yieldparam [String]
-msgid "tag|yieldparam|response"
-msgstr ""
-
-# @param [#each_line] dumped_commands
-msgid ""
-"commands dumped by grndump.\n"
-"It can be a String object or any objects like an IO object such\n"
-"as a File object. It should have #each_line that iterates a\n"
-"line."
+# @yieldparam [String] command
+msgid "A sent command."
 msgstr ""
 
 # @example Restore dumped commands from a File object.
@@ -7615,22 +7721,6 @@ msgid ""
 "end"
 msgstr ""
 
-# @yieldparam [String]
-msgid "tag|yieldparam|command"
-msgstr ""
-
-# @yieldparam [String] command
-msgid "A sent command."
-msgstr ""
-
-# @param [String]
-msgid "tag|param|dumped_commands"
-msgstr ""
-
-# @yieldparam [String] response
-msgid "A response for a command."
-msgstr ""
-
 # @example
 msgid "tag|example|Restore dumped commands from a File object."
 msgstr ""
@@ -7642,11 +7732,19 @@ msgid ""
 msgstr ""
 
 # @example
-msgid "tag|example|Restore dumped commands as a String object."
+msgid "tag|example|Restore dumped commands and reports result."
+msgstr ""
+
+# @yieldparam [String] response
+msgid "A response for a command."
+msgstr ""
+
+# @yieldparam [String]
+msgid "tag|yieldparam|response"
 msgstr ""
 
 # @example
-msgid "tag|example|Restore dumped commands and reports result."
+msgid "tag|example|Restore dumped commands as a String object."
 msgstr ""
 
 # @example Restore dumped commands and reports result.
@@ -7657,6 +7755,22 @@ msgid ""
 "end"
 msgstr ""
 
+# @yieldparam [String]
+msgid "tag|yieldparam|command"
+msgstr ""
+
+# @param [String]
+msgid "tag|param|dumped_commands"
+msgstr ""
+
+# @param [#each_line] dumped_commands
+msgid ""
+"commands dumped by grndump.\n"
+"It can be a String object or any objects like an IO object such\n"
+"as a File object. It should have #each_line that iterates a\n"
+"line."
+msgstr ""
+
 # @yield [command, response]
 msgid "Yields a sent command and its response if block is given."
 msgstr ""
@@ -7706,22 +7820,30 @@ msgstr ""
 msgid "You can nest {#push_memory_pool} and {#pop_memory_pool} pair."
 msgstr ""
 
-# @example Pushes a new memory pool with block
+# @since
+msgid "3.0.5"
+msgstr ""
+
+# @example
+msgid "tag|example|Pushes a new memory pool without block"
+msgstr ""
+
+# @example Pushes a new memory pool without block
 msgid ""
 "adults = nil\n"
-"context.push_memory_pool do\n"
-"  users = context[\"Users\"]\n"
-"  adults = users.select do |user|\n"
-"    user.age >= 20\n"
-"  end\n"
-"  p adults.temporary? # => true\n"
-"  p adults.closed?    # => false\n"
+"context.push_memory_pool\n"
+"users = context[\"Users\"]\n"
+"adults = users.select do |user|\n"
+"  user.age >= 20\n"
 "end\n"
-"p adults.closed?      # => true"
+"p adults.temporary? # => true\n"
+"p adults.closed?    # => false\n"
+"context.pop_memory_pool\n"
+"p adults.closed?    # => true"
 msgstr ""
 
 # @example
-msgid "tag|example|Pushes a new memory pool with block"
+msgid "tag|example|Nesting push and pop pair"
 msgstr ""
 
 # @example Nesting push and pop pair
@@ -7745,51 +7867,43 @@ msgid ""
 "p adults.closed?                # => true"
 msgstr ""
 
-# @yield
-msgid ""
-"[]\n"
-"Yields the block. Temporary objects created in the block\n"
-"are closed automatically when the block is exited."
-msgstr ""
-
-# @yieldreturn [Object]
-msgid ""
-"It is the return value of this\n"
-"method call."
-msgstr ""
-
-# @return [Object]
-msgid "The value returned by the block."
-msgstr ""
-
-# @example
-msgid "tag|example|Nesting push and pop pair"
+# @overload
+msgid "tag|overload|push_memory_pool"
 msgstr ""
 
 # @example
-msgid "tag|example|Pushes a new memory pool without block"
+msgid "tag|example|Pushes a new memory pool with block"
 msgstr ""
 
-# @example Pushes a new memory pool without block
+# @example Pushes a new memory pool with block
 msgid ""
 "adults = nil\n"
-"context.push_memory_pool\n"
-"users = context[\"Users\"]\n"
-"adults = users.select do |user|\n"
-"  user.age >= 20\n"
+"context.push_memory_pool do\n"
+"  users = context[\"Users\"]\n"
+"  adults = users.select do |user|\n"
+"    user.age >= 20\n"
+"  end\n"
+"  p adults.temporary? # => true\n"
+"  p adults.closed?    # => false\n"
 "end\n"
-"p adults.temporary? # => true\n"
-"p adults.closed?    # => false\n"
-"context.pop_memory_pool\n"
-"p adults.closed?    # => true"
+"p adults.closed?      # => true"
 msgstr ""
 
-# @overload
-msgid "tag|overload|push_memory_pool"
+# @return [Object]
+msgid "The value returned by the block."
+msgstr ""
+
+# @yieldreturn [Object]
+msgid ""
+"It is the return value of this\n"
+"method call."
 msgstr ""
 
-# @since
-msgid "3.0.5"
+# @yield
+msgid ""
+"[]\n"
+"Yields the block. Temporary objects created in the block\n"
+"are closed automatically when the block is exited."
 msgstr ""
 
 # Groonga::Context#push_memory_pool
@@ -7826,10 +7940,6 @@ msgid ""
 "of the database."
 msgstr ""
 
-# @param [Options] options
-msgid "The options to custom this inspector behavior."
-msgstr ""
-
 # @param [Database]
 msgid "tag|param|database"
 msgstr ""
@@ -7838,6 +7948,10 @@ msgstr ""
 msgid "a new instance of DatabaseInspector"
 msgstr ""
 
+# @param [Options] options
+msgid "The options to custom this inspector behavior."
+msgstr ""
+
 # @param [Database] database
 msgid "The database to be inspected."
 msgstr ""
@@ -7926,14 +8040,17 @@ msgstr ""
 msgid "the value to set the attribute query to."
 msgstr ""
 
-msgid "Returns the value of attribute query"
+msgid "Sets the attribute query"
 msgstr ""
 
 # @param value
 msgid "the value to set the attribute syntax to."
 msgstr ""
 
-msgid "Sets the attribute query"
+msgid "Returns the value of attribute query"
+msgstr ""
+
+msgid "Sets the attribute syntax"
 msgstr ""
 
 msgid "Returns the value of attribute syntax"
@@ -7943,18 +8060,19 @@ msgstr ""
 msgid "the value to set the attribute allow_pragma to."
 msgstr ""
 
-msgid "Sets the attribute syntax"
+# Groonga::ExpressionBuildable#allow_pragma=
+msgid "Sets the attribute allow_pragma"
 msgstr ""
 
-# @param value
-msgid "the value to set the attribute allow_column to."
+msgid "Returns the value of attribute allow_pragma"
 msgstr ""
 
-msgid "Returns the value of attribute allow_pragma"
+# @param value
+msgid "the value to set the attribute allow_column to."
 msgstr ""
 
-# Groonga::ExpressionBuildable#allow_pragma=
-msgid "Sets the attribute allow_pragma"
+# Groonga::ExpressionBuildable#allow_column=
+msgid "Sets the attribute allow_column"
 msgstr ""
 
 msgid "Returns the value of attribute allow_column"
@@ -7964,8 +8082,8 @@ msgstr ""
 msgid "the value to set the attribute allow_update to."
 msgstr ""
 
-# Groonga::ExpressionBuildable#allow_column=
-msgid "Sets the attribute allow_column"
+# Groonga::ExpressionBuildable#allow_update=
+msgid "Sets the attribute allow_update"
 msgstr ""
 
 msgid "Returns the value of attribute allow_update"
@@ -7975,19 +8093,15 @@ msgstr "緯度の値を返す。"
 msgid "the value to set the attribute allow_leading_not to."
 msgstr ""
 
-# Groonga::ExpressionBuildable#allow_update=
-msgid "Sets the attribute allow_update"
-msgstr ""
-
-# @param value
-msgid "the value to set the attribute default_column to."
+# Groonga::ExpressionBuildable#allow_leading_not=
+msgid "Sets the attribute allow_leading_not"
 msgstr ""
 
 msgid "Returns the value of attribute allow_leading_not"
 msgstr ""
 
-# Groonga::ExpressionBuildable#allow_leading_not=
-msgid "Sets the attribute allow_leading_not"
+# @param value
+msgid "the value to set the attribute default_column to."
 msgstr ""
 
 # Groonga::ExpressionBuildable#default_column=
@@ -8079,16 +8193,16 @@ msgstr "緯度の値を返す。"
 msgid "the value to set the attribute longitude to."
 msgstr "経度の値を返す。"
 
+msgid "Sets the attribute latitude"
+msgstr "緯度の値を返す。"
+
 msgid "Returns the value of attribute longitude"
 msgstr "経度の値を返す。"
 
-msgid "Returns the value of attribute latitude"
-msgstr "緯度の値を返す。"
-
 msgid "Sets the attribute longitude"
 msgstr "経度の値を返す。"
 
-msgid "Sets the attribute latitude"
+msgid "Returns the value of attribute latitude"
 msgstr "緯度の値を返す。"
 
 # Groonga::GeoPoint#initialize
@@ -8140,8 +8254,7 @@ msgstr ""
 msgid "a new instance of JobsStartEvent"
 msgstr ""
 
-# @return [Object]
-msgid "the current value of relative_start_time"
+msgid "the value to set the attribute result to."
 msgstr ""
 
 msgid "the value to set the attribute id to."
@@ -8157,25 +8270,29 @@ msgstr "緯度の値を返す。"
 msgid "the current value of id"
 msgstr ""
 
-msgid "the value to set the attribute relative_end_time to."
+# @return [Object]
+msgid "the current value of relative_start_time"
 msgstr ""
 
 msgid "the value to set the attribute command to."
 msgstr ""
 
+msgid "the value to set the attribute relative_end_time to."
+msgstr ""
+
 # @return [Object]
 msgid "the current value of result"
 msgstr ""
 
 # @return [Object]
-msgid "the current value of relative_end_time"
+msgid "the current value of command"
 msgstr ""
 
-msgid "the value to set the attribute result to."
+# @return [Object]
+msgid "the current value of relative_end_time"
 msgstr ""
 
-# @return [Object]
-msgid "the current value of command"
+msgid "Sets the attribute id"
 msgstr ""
 
 msgid "Sets the attribute result"
@@ -8184,28 +8301,25 @@ msgstr ""
 msgid "Returns the value of attribute relative_end_time"
 msgstr ""
 
-msgid "Sets the attribute command"
-msgstr ""
+msgid "Returns the value of attribute command"
+msgstr "commandの値を返す"
 
 msgid "Sets the attribute relative_end_time"
 msgstr ""
 
-msgid "Returns the value of attribute id"
+msgid "Sets the attribute command"
 msgstr ""
 
 msgid "Returns the value of attribute relative_start_time"
 msgstr ""
 
-msgid "Sets the attribute id"
+msgid "Returns the value of attribute id"
 msgstr ""
 
-msgid "Returns the value of attribute command"
-msgstr "commandの値を返す"
-
-msgid "Returns the value of attribute result"
+msgid "Sets the attribute relative_start_time"
 msgstr ""
 
-msgid "Sets the attribute relative_start_time"
+msgid "Returns the value of attribute result"
 msgstr ""
 
 msgid "Returns the value of attribute job"
@@ -8220,7 +8334,7 @@ msgstr ""
 msgid "Returns the value of attribute qps"
 msgstr ""
 
-msgid "Returns the value of attribute min"
+msgid "a new instance of JobSummaryEvent"
 msgstr ""
 
 msgid "Returns the value of attribute max"
@@ -8229,13 +8343,13 @@ msgstr ""
 msgid "Returns the value of attribute n_queries"
 msgstr ""
 
-msgid "a new instance of JobSummaryEvent"
+msgid "Returns the value of attribute min"
 msgstr ""
 
-msgid "Returns the value of attribute summaries"
+msgid "a new instance of JobsEndEvent"
 msgstr ""
 
-msgid "a new instance of JobsEndEvent"
+msgid "Returns the value of attribute summaries"
 msgstr ""
 
 msgid "a new instance of Parser"
@@ -8513,10 +8627,10 @@ msgstr ""
 msgid "tag|param|parameters"
 msgstr ""
 
-msgid "Returns Hash created from attributes."
+msgid "1.2.1"
 msgstr ""
 
-msgid "1.2.1"
+msgid "Returns Hash created from attributes."
 msgstr ""
 
 msgid ""
@@ -8587,8 +8701,8 @@ msgstr ""
 msgid "Sets column value of the record."
 msgstr ""
 
-# @param [::Hash]
-msgid "tag|param|value_with_weight"
+# @example Set a new value
+msgid "user[\"age\"] = 29"
 msgstr ""
 
 # @param [Object] value
@@ -8599,26 +8713,26 @@ msgstr ""
 msgid "tag|example|Set a new value"
 msgstr ""
 
-# @example Set a new value
-msgid "user[\"age\"] = 29"
-msgstr ""
-
 # @param [String] column_name
 msgid "The column name."
 msgstr ""
 
-# @param [::Hash] value_with_weight
-msgid "The column value with weight."
+# @param [::Hash]
+msgid "tag|param|value_with_weight"
 msgstr ""
 
-# @option
-msgid "tag|option|value_with_weight"
+# @param [::Hash] value_with_weight
+msgid "The column value with weight."
 msgstr ""
 
 # @param [String]
 msgid "tag|param|column_name"
 msgstr ""
 
+# @example
+msgid "tag|example|Set a new value with weight \"2\""
+msgstr ""
+
 # @example Set a new value with weight "2"
 msgid "user[\"tags\"] = [{:value => \"groonga\", :weight => 2}]"
 msgstr ""
@@ -8627,8 +8741,8 @@ msgstr ""
 msgid "tag|see|Groonga::Table#set_column_value"
 msgstr ""
 
-# @example
-msgid "tag|example|Set a new value with weight \"2\""
+# @option
+msgid "tag|option|value_with_weight"
 msgstr ""
 
 msgid ""
@@ -8860,10 +8974,10 @@ msgstr ""
 msgid "テーブルが存在しないときに発生する。"
 msgstr ""
 
-msgid "Returns the value of attribute name"
+msgid "a new instance of TableNotExists"
 msgstr ""
 
-msgid "a new instance of TableNotExists"
+msgid "Returns the value of attribute name"
 msgstr ""
 
 msgid "カラムが存在しないときに発生する。"
@@ -8877,10 +8991,10 @@ msgid ""
 "うとしたときに発生する。"
 msgstr ""
 
-msgid "Returns the value of attribute options"
+msgid "a new instance of TableCreationWithDifferentOptions"
 msgstr ""
 
-msgid "a new instance of TableCreationWithDifferentOptions"
+msgid "Returns the value of attribute options"
 msgstr ""
 
 msgid ""
@@ -8888,10 +9002,10 @@ msgid ""
 "うとしたときに発生する。"
 msgstr ""
 
-msgid "a new instance of ColumnCreationWithDifferentOptions"
+msgid "Returns the value of attribute column"
 msgstr ""
 
-msgid "Returns the value of attribute column"
+msgid "a new instance of ColumnCreationWithDifferentOptions"
 msgstr ""
 
 msgid "未知のインデックス対象テーブルを指定したときに発生する。"
@@ -8912,34 +9026,34 @@ msgstr ""
 msgid "未知のオプションを指定したときに発生する。"
 msgstr ""
 
-msgid "Returns the value of attribute available_keys"
-msgstr ""
-
 msgid "a new instance of UnknownOptions"
 msgstr ""
 
 msgid "Returns the value of attribute unknown_keys"
 msgstr ""
 
-msgid "未知のテーブルの種類を指定したときに発生する。"
+msgid "Returns the value of attribute available_keys"
 msgstr ""
 
-msgid "Returns the value of attribute available_types"
+msgid "未知のテーブルの種類を指定したときに発生する。"
 msgstr ""
 
 msgid "Returns the value of attribute type"
 msgstr ""
 
+msgid "Returns the value of attribute available_types"
+msgstr ""
+
 msgid "a new instance of UnknownTableType"
 msgstr ""
 
 msgid "参照先のテーブルを推測できないときに発生する。"
 msgstr ""
 
-msgid "a new instance of UnguessableReferenceTable"
+msgid "Returns the value of attribute tried_table_names"
 msgstr ""
 
-msgid "Returns the value of attribute tried_table_names"
+msgid "a new instance of UnguessableReferenceTable"
 msgstr ""
 
 msgid ""
@@ -8986,15 +9100,15 @@ msgstr ""
 # Groonga::Schema#create_table
 # Groonga::Schema.create_table
 msgid ""
-"Create a table that manages records by ID when you specify\n"
-"`:array` to `:type`."
+"Create a table that manages record keys by patricia trie\n"
+"when you specify `:patricia_trie` to `:type`."
 msgstr ""
 
 # Groonga::Schema#create_table
 # Groonga::Schema.create_table
 msgid ""
-"Create a table that manages record keys by patricia trie\n"
-"when you specify `:patricia_trie` to `:type`."
+"Create a table that manages records by ID when you specify\n"
+"`:array` to `:type`."
 msgstr ""
 
 # Groonga::Schema#create_table
@@ -9014,22 +9128,15 @@ msgstr ""
 # Groonga::Schema#create_table
 # Groonga::Schema.create_table
 msgid ""
-"You can identify a record by key. The table is most fast\n"
-"table for finding a record by key. But the table doesn't\n"
-"support advanced key search features such as common prefix\n"
+"You can identify a record by key. The table is fast table\n"
+"for finding a record by key. But the table is large. The\n"
+"table supports advanced key search features such as prefix\n"
 "search and range search."
 msgstr ""
 
 # Groonga::Schema#create_table
 # Groonga::Schema.create_table
 msgid ""
-"You can identify a record only by record ID. You can't use\n"
-"key because key doesn't exist in the table."
-msgstr ""
-
-# Groonga::Schema#create_table
-# Groonga::Schema.create_table
-msgid ""
 "You can identify a record by key. The table is most small\n"
 "table. The table supports advanced key search features such\n"
 "as prefix search and range search. The table is suitable for\n"
@@ -9039,12 +9146,19 @@ msgstr ""
 # Groonga::Schema#create_table
 # Groonga::Schema.create_table
 msgid ""
-"You can identify a record by key. The table is fast table\n"
-"for finding a record by key. But the table is large. The\n"
-"table supports advanced key search features such as prefix\n"
+"You can identify a record by key. The table is most fast\n"
+"table for finding a record by key. But the table doesn't\n"
+"support advanced key search features such as common prefix\n"
 "search and range search."
 msgstr ""
 
+# Groonga::Schema#create_table
+# Groonga::Schema.create_table
+msgid ""
+"You can identify a record only by record ID. You can't use\n"
+"key because key doesn't exist in the table."
+msgstr ""
+
 msgid "名前が _name_ のテーブルを削除する。"
 msgstr ""
 
@@ -9059,9 +9173,9 @@ msgstr ""
 # Groonga::Schema#create_table
 # Groonga::Schema.create_table
 msgid ""
-"The table is the only table that supports renaming key. The\n"
-"table is used in Groonga database to manage object names\n"
-"such as `ShortText` and `TokenBigram`."
+"See description of `TABLE_HASH_KEY` at [Groonga documentation\n"
+"of tables](http://groonga.org/docs/reference/tables.html)\n"
+"for details."
 msgstr ""
 
 # Groonga::Schema#create_table
@@ -9075,9 +9189,9 @@ msgstr ""
 # Groonga::Schema#create_table
 # Groonga::Schema.create_table
 msgid ""
-"See description of `TABLE_HASH_KEY` at [Groonga documentation\n"
-"of tables](http://groonga.org/docs/reference/tables.html)\n"
-"for details."
+"The table is the only table that supports renaming key. The\n"
+"table is used in Groonga database to manage object names\n"
+"such as `ShortText` and `TokenBigram`."
 msgstr ""
 
 # Groonga::Schema#create_table
@@ -9344,6 +9458,15 @@ msgid ""
 "指定する場合はこうなります。"
 msgstr ""
 
+# @param [::Hash]
+# @param [Array]
+msgid "tag|param|args"
+msgstr ""
+
+# @example
+msgid "table.index(\"Users.name\")"
+msgstr ""
+
 # @param [Array] args
 msgid ""
 "インデックスカラム作成時に指定できるオプション。\n"
@@ -9375,15 +9498,6 @@ msgid ""
 "  を少なくできる。=:"
 msgstr ""
 
-# @example
-msgid "table.index(\"Users.name\")"
-msgstr ""
-
-# @param [::Hash]
-# @param [Array]
-msgid "tag|param|args"
-msgstr ""
-
 msgid ""
 "_target_table_ の _target_column_ を対象とするインデッ\n"
 "クスカラムを削除します。"
@@ -9406,16 +9520,16 @@ msgstr ""
 msgid "Defines a 8 bit signed integer column named @name �� ."
 msgstr "@name@ という名前8ビット符号付き整数のカラムを定義します。"
 
-msgid "the column name"
+msgid "tag|see|#column"
 msgstr ""
 
 msgid "({}) the options"
 msgstr ""
 
-msgid "tag|see|#column"
+msgid "#column for available options."
 msgstr ""
 
-msgid "#column for available options."
+msgid "the column name"
 msgstr ""
 
 msgid "Defines a 16 bit signed integer column named @name �� ."
@@ -9516,10 +9630,10 @@ msgstr ""
 msgid "the value to set the attribute name to."
 msgstr ""
 
-msgid "Sets the attribute type"
+msgid "Sets the attribute name"
 msgstr ""
 
-msgid "Sets the attribute name"
+msgid "Sets the attribute type"
 msgstr ""
 
 msgid "a new instance of ColumnDefinition"
@@ -9529,17 +9643,17 @@ msgid "a new instance of ColumnRemoveDefinition"
 msgstr ""
 
 # @param value
-msgid "the value to set the attribute new_name to."
+msgid "the value to set the attribute current_name to."
 msgstr ""
 
 # @param value
-msgid "the value to set the attribute current_name to."
+msgid "the value to set the attribute new_name to."
 msgstr ""
 
-msgid "Returns the value of attribute new_name"
+msgid "Returns the value of attribute current_name"
 msgstr ""
 
-msgid "Returns the value of attribute current_name"
+msgid "Returns the value of attribute new_name"
 msgstr ""
 
 msgid "Sets the attribute current_name"
@@ -9552,24 +9666,24 @@ msgid "a new instance of ColumnRenameDefinition"
 msgstr ""
 
 # @param value
-msgid "the value to set the attribute target_columns to."
+msgid "the value to set the attribute target_table to."
 msgstr ""
 
 # @param value
-msgid "the value to set the attribute target_table to."
+msgid "the value to set the attribute target_columns to."
 msgstr ""
 
-msgid "Returns the value of attribute target_columns"
+msgid "Sets the attribute target_table"
 msgstr ""
 
-# Groonga::Schema::IndexColumnDefinition#target_columns=
-msgid "Sets the attribute target_columns"
+msgid "Returns the value of attribute target_columns"
 msgstr ""
 
-msgid "Sets the attribute target_table"
+msgid "Returns the value of attribute target_table"
 msgstr ""
 
-msgid "Returns the value of attribute target_table"
+# Groonga::Schema::IndexColumnDefinition#target_columns=
+msgid "Sets the attribute target_columns"
 msgstr ""
 
 msgid "a new instance of IndexColumnDefinition"
@@ -9617,13 +9731,13 @@ msgstr ""
 msgid "a new instance of SubRecords"
 msgstr ""
 
+msgid "A sub record."
+msgstr "サブレコード。"
+
 # @yield [record]
 msgid "Gives a sub record to the block."
 msgstr ""
 
-msgid "A sub record."
-msgstr "サブレコード。"
-
 # @return [Array<Record>]
 msgid "Sub records as ::Array."
 msgstr ""




More information about the Groonga-commit mailing list
Zurück zum Archiv-Index