KITAITI Makoto
null+****@clear*****
Wed Dec 2 23:41:29 JST 2015
KITAITI Makoto 2015-12-02 23:41:29 +0900 (Wed, 02 Dec 2015) New Revision: a168b7d7052b11a44e4967e7fffb4cfe416d3a4f https://github.com/droonga/droonga.org/commit/a168b7d7052b11a44e4967e7fffb4cfe416d3a4f Merged b233fd4: Merge pull request #24 from KitaitiMakoto/tutorial-handler-logic Message: Translate the remaining in the section Define the handling logic of handler tutorial Modified files: _po/ja/tutorial/1.1.2/plugin-development/handler/index.po ja/tutorial/1.0.2/plugin-development/handler/index.md ja/tutorial/1.0.3/plugin-development/handler/index.md ja/tutorial/1.0.4/plugin-development/handler/index.md ja/tutorial/1.0.5/plugin-development/handler/index.md ja/tutorial/1.0.6/plugin-development/handler/index.md ja/tutorial/1.0.7/plugin-development/handler/index.md ja/tutorial/1.0.8/plugin-development/handler/index.md ja/tutorial/1.0.9/plugin-development/handler/index.md ja/tutorial/1.1.0/plugin-development/handler/index.md ja/tutorial/1.1.1/plugin-development/handler/index.md ja/tutorial/1.1.2/plugin-development/handler/index.md Modified: _po/ja/tutorial/1.1.2/plugin-development/handler/index.po (+9 -1) =================================================================== --- _po/ja/tutorial/1.1.2/plugin-development/handler/index.po 2015-11-25 23:04:27 +0900 (cf73248) +++ _po/ja/tutorial/1.1.2/plugin-development/handler/index.po 2015-12-02 23:41:29 +0900 (f01e4b0) @@ -315,11 +315,17 @@ msgid "" "e as `step.handler = Handler` simply.\n" "Moreover, a class path string like `\"OtherPlugin::Handler\"` is also available." msgstr "" +"ハンドラーは`step.handler`設定でステップに紐付けられます。\n" +"ここでは`Handler`クラスを`define_single_step`の後で定義しているため、`:Handler`というシンボルでハンドラークラスを指定" +"しています。\n" +"もしハンドラークラスを`define_single_step`よりも前で定義していれば、単に`step.handler = Handler`と書くことができ" +"ます。\n" +"更に、`\"OtherPlugin::Handler\"`のようなクラスパスの文字列も使用できます。" msgid "" "Then, we also have to bind a collector to the step, with the configuration `st" "ep.collector`." -msgstr "" +msgstr "次に、`step.collector`設定を使ってコレクターをステップに紐付ける必要があります。" msgid "" "~~~ruby\n" @@ -338,6 +344,8 @@ msgid "" "It merges results returned from handler instances for each volume to one resul" "t." msgstr "" +"`Collectors::Sum`は組み込みコレクターの一つです。\n" +"これは、各ボリュームのハンドラーインスタンスから返って来た結果を結合して一つの結果にします。" msgid "### Activate the plugin with `catalog.json`" msgstr "### `catalog.json`でプラグインを有効化する" Modified: ja/tutorial/1.0.2/plugin-development/handler/index.md (+7 -7) =================================================================== --- ja/tutorial/1.0.2/plugin-development/handler/index.md 2015-11-25 23:04:27 +0900 (91f1f8b) +++ ja/tutorial/1.0.2/plugin-development/handler/index.md 2015-12-02 23:41:29 +0900 (6a16ee9) @@ -189,12 +189,12 @@ end 現時点で、このハンドラーは何も処理を行わず、単に数値1つからなる配列を含む処理結果を返すだけです。 戻り値はレスポンスのbodyを組み立てるのに使われます。 -The handler is bound to the step with the configuration `step.handler`. -Because we define the class `Handler` after `define_single_step`, we specify the handler class with a symbol `:Handler`. -If you define the handler class before `define_single_step`, then you can write as `step.handler = Handler` simply. -Moreover, a class path string like `"OtherPlugin::Handler"` is also available. +ハンドラーは`step.handler`設定でステップに紐付けられます。 +ここでは`Handler`クラスを`define_single_step`の後で定義しているため、`:Handler`というシンボルでハンドラークラスを指定しています。 +もしハンドラークラスを`define_single_step`よりも前で定義していれば、単に`step.handler = Handler`と書くことができます。 +更に、`"OtherPlugin::Handler"`のようなクラスパスの文字列も使用できます。 -Then, we also have to bind a collector to the step, with the configuration `step.collector`. +次に、`step.collector`設定を使ってコレクターをステップに紐付ける必要があります。 lib/droonga/plugins/count-records.rb: @@ -208,8 +208,8 @@ lib/droonga/plugins/count-records.rb: # (snip) ~~~ -The `Collectors::Sum` is one of built-in collectors. -It merges results returned from handler instances for each volume to one result. +`Collectors::Sum`は組み込みコレクターの一つです。 +これは、各ボリュームのハンドラーインスタンスから返って来た結果を結合して一つの結果にします。 ### `catalog.json`でプラグインを有効化する Modified: ja/tutorial/1.0.3/plugin-development/handler/index.md (+7 -7) =================================================================== --- ja/tutorial/1.0.3/plugin-development/handler/index.md 2015-11-25 23:04:27 +0900 (e2d6476) +++ ja/tutorial/1.0.3/plugin-development/handler/index.md 2015-12-02 23:41:29 +0900 (86b7665) @@ -189,12 +189,12 @@ end 現時点で、このハンドラーは何も処理を行わず、単に数値1つからなる配列を含む処理結果を返すだけです。 戻り値はレスポンスのbodyを組み立てるのに使われます。 -The handler is bound to the step with the configuration `step.handler`. -Because we define the class `Handler` after `define_single_step`, we specify the handler class with a symbol `:Handler`. -If you define the handler class before `define_single_step`, then you can write as `step.handler = Handler` simply. -Moreover, a class path string like `"OtherPlugin::Handler"` is also available. +ハンドラーは`step.handler`設定でステップに紐付けられます。 +ここでは`Handler`クラスを`define_single_step`の後で定義しているため、`:Handler`というシンボルでハンドラークラスを指定しています。 +もしハンドラークラスを`define_single_step`よりも前で定義していれば、単に`step.handler = Handler`と書くことができます。 +更に、`"OtherPlugin::Handler"`のようなクラスパスの文字列も使用できます。 -Then, we also have to bind a collector to the step, with the configuration `step.collector`. +次に、`step.collector`設定を使ってコレクターをステップに紐付ける必要があります。 lib/droonga/plugins/count-records.rb: @@ -208,8 +208,8 @@ lib/droonga/plugins/count-records.rb: # (snip) ~~~ -The `Collectors::Sum` is one of built-in collectors. -It merges results returned from handler instances for each volume to one result. +`Collectors::Sum`は組み込みコレクターの一つです。 +これは、各ボリュームのハンドラーインスタンスから返って来た結果を結合して一つの結果にします。 ### `catalog.json`でプラグインを有効化する Modified: ja/tutorial/1.0.4/plugin-development/handler/index.md (+7 -7) =================================================================== --- ja/tutorial/1.0.4/plugin-development/handler/index.md 2015-11-25 23:04:27 +0900 (02d9f53) +++ ja/tutorial/1.0.4/plugin-development/handler/index.md 2015-12-02 23:41:29 +0900 (2139636) @@ -189,12 +189,12 @@ end 現時点で、このハンドラーは何も処理を行わず、単に数値1つからなる配列を含む処理結果を返すだけです。 戻り値はレスポンスのbodyを組み立てるのに使われます。 -The handler is bound to the step with the configuration `step.handler`. -Because we define the class `Handler` after `define_single_step`, we specify the handler class with a symbol `:Handler`. -If you define the handler class before `define_single_step`, then you can write as `step.handler = Handler` simply. -Moreover, a class path string like `"OtherPlugin::Handler"` is also available. +ハンドラーは`step.handler`設定でステップに紐付けられます。 +ここでは`Handler`クラスを`define_single_step`の後で定義しているため、`:Handler`というシンボルでハンドラークラスを指定しています。 +もしハンドラークラスを`define_single_step`よりも前で定義していれば、単に`step.handler = Handler`と書くことができます。 +更に、`"OtherPlugin::Handler"`のようなクラスパスの文字列も使用できます。 -Then, we also have to bind a collector to the step, with the configuration `step.collector`. +次に、`step.collector`設定を使ってコレクターをステップに紐付ける必要があります。 lib/droonga/plugins/count-records.rb: @@ -208,8 +208,8 @@ lib/droonga/plugins/count-records.rb: # (snip) ~~~ -The `Collectors::Sum` is one of built-in collectors. -It merges results returned from handler instances for each volume to one result. +`Collectors::Sum`は組み込みコレクターの一つです。 +これは、各ボリュームのハンドラーインスタンスから返って来た結果を結合して一つの結果にします。 ### `catalog.json`でプラグインを有効化する Modified: ja/tutorial/1.0.5/plugin-development/handler/index.md (+7 -7) =================================================================== --- ja/tutorial/1.0.5/plugin-development/handler/index.md 2015-11-25 23:04:27 +0900 (8449a12) +++ ja/tutorial/1.0.5/plugin-development/handler/index.md 2015-12-02 23:41:29 +0900 (1907db8) @@ -189,12 +189,12 @@ end 現時点で、このハンドラーは何も処理を行わず、単に数値1つからなる配列を含む処理結果を返すだけです。 戻り値はレスポンスのbodyを組み立てるのに使われます。 -The handler is bound to the step with the configuration `step.handler`. -Because we define the class `Handler` after `define_single_step`, we specify the handler class with a symbol `:Handler`. -If you define the handler class before `define_single_step`, then you can write as `step.handler = Handler` simply. -Moreover, a class path string like `"OtherPlugin::Handler"` is also available. +ハンドラーは`step.handler`設定でステップに紐付けられます。 +ここでは`Handler`クラスを`define_single_step`の後で定義しているため、`:Handler`というシンボルでハンドラークラスを指定しています。 +もしハンドラークラスを`define_single_step`よりも前で定義していれば、単に`step.handler = Handler`と書くことができます。 +更に、`"OtherPlugin::Handler"`のようなクラスパスの文字列も使用できます。 -Then, we also have to bind a collector to the step, with the configuration `step.collector`. +次に、`step.collector`設定を使ってコレクターをステップに紐付ける必要があります。 lib/droonga/plugins/count-records.rb: @@ -208,8 +208,8 @@ lib/droonga/plugins/count-records.rb: # (snip) ~~~ -The `Collectors::Sum` is one of built-in collectors. -It merges results returned from handler instances for each volume to one result. +`Collectors::Sum`は組み込みコレクターの一つです。 +これは、各ボリュームのハンドラーインスタンスから返って来た結果を結合して一つの結果にします。 ### `catalog.json`でプラグインを有効化する Modified: ja/tutorial/1.0.6/plugin-development/handler/index.md (+7 -7) =================================================================== --- ja/tutorial/1.0.6/plugin-development/handler/index.md 2015-11-25 23:04:27 +0900 (5f41b78) +++ ja/tutorial/1.0.6/plugin-development/handler/index.md 2015-12-02 23:41:29 +0900 (b1b3f08) @@ -189,12 +189,12 @@ end 現時点で、このハンドラーは何も処理を行わず、単に数値1つからなる配列を含む処理結果を返すだけです。 戻り値はレスポンスのbodyを組み立てるのに使われます。 -The handler is bound to the step with the configuration `step.handler`. -Because we define the class `Handler` after `define_single_step`, we specify the handler class with a symbol `:Handler`. -If you define the handler class before `define_single_step`, then you can write as `step.handler = Handler` simply. -Moreover, a class path string like `"OtherPlugin::Handler"` is also available. +ハンドラーは`step.handler`設定でステップに紐付けられます。 +ここでは`Handler`クラスを`define_single_step`の後で定義しているため、`:Handler`というシンボルでハンドラークラスを指定しています。 +もしハンドラークラスを`define_single_step`よりも前で定義していれば、単に`step.handler = Handler`と書くことができます。 +更に、`"OtherPlugin::Handler"`のようなクラスパスの文字列も使用できます。 -Then, we also have to bind a collector to the step, with the configuration `step.collector`. +次に、`step.collector`設定を使ってコレクターをステップに紐付ける必要があります。 lib/droonga/plugins/count-records.rb: @@ -208,8 +208,8 @@ lib/droonga/plugins/count-records.rb: # (snip) ~~~ -The `Collectors::Sum` is one of built-in collectors. -It merges results returned from handler instances for each volume to one result. +`Collectors::Sum`は組み込みコレクターの一つです。 +これは、各ボリュームのハンドラーインスタンスから返って来た結果を結合して一つの結果にします。 ### `catalog.json`でプラグインを有効化する Modified: ja/tutorial/1.0.7/plugin-development/handler/index.md (+7 -7) =================================================================== --- ja/tutorial/1.0.7/plugin-development/handler/index.md 2015-11-25 23:04:27 +0900 (2dde37f) +++ ja/tutorial/1.0.7/plugin-development/handler/index.md 2015-12-02 23:41:29 +0900 (1006caf) @@ -189,12 +189,12 @@ end 現時点で、このハンドラーは何も処理を行わず、単に数値1つからなる配列を含む処理結果を返すだけです。 戻り値はレスポンスのbodyを組み立てるのに使われます。 -The handler is bound to the step with the configuration `step.handler`. -Because we define the class `Handler` after `define_single_step`, we specify the handler class with a symbol `:Handler`. -If you define the handler class before `define_single_step`, then you can write as `step.handler = Handler` simply. -Moreover, a class path string like `"OtherPlugin::Handler"` is also available. +ハンドラーは`step.handler`設定でステップに紐付けられます。 +ここでは`Handler`クラスを`define_single_step`の後で定義しているため、`:Handler`というシンボルでハンドラークラスを指定しています。 +もしハンドラークラスを`define_single_step`よりも前で定義していれば、単に`step.handler = Handler`と書くことができます。 +更に、`"OtherPlugin::Handler"`のようなクラスパスの文字列も使用できます。 -Then, we also have to bind a collector to the step, with the configuration `step.collector`. +次に、`step.collector`設定を使ってコレクターをステップに紐付ける必要があります。 lib/droonga/plugins/count-records.rb: @@ -208,8 +208,8 @@ lib/droonga/plugins/count-records.rb: # (snip) ~~~ -The `Collectors::Sum` is one of built-in collectors. -It merges results returned from handler instances for each volume to one result. +`Collectors::Sum`は組み込みコレクターの一つです。 +これは、各ボリュームのハンドラーインスタンスから返って来た結果を結合して一つの結果にします。 ### `catalog.json`でプラグインを有効化する Modified: ja/tutorial/1.0.8/plugin-development/handler/index.md (+7 -7) =================================================================== --- ja/tutorial/1.0.8/plugin-development/handler/index.md 2015-11-25 23:04:27 +0900 (5c31e2e) +++ ja/tutorial/1.0.8/plugin-development/handler/index.md 2015-12-02 23:41:29 +0900 (5daad38) @@ -189,12 +189,12 @@ end 現時点で、このハンドラーは何も処理を行わず、単に数値1つからなる配列を含む処理結果を返すだけです。 戻り値はレスポンスのbodyを組み立てるのに使われます。 -The handler is bound to the step with the configuration `step.handler`. -Because we define the class `Handler` after `define_single_step`, we specify the handler class with a symbol `:Handler`. -If you define the handler class before `define_single_step`, then you can write as `step.handler = Handler` simply. -Moreover, a class path string like `"OtherPlugin::Handler"` is also available. +ハンドラーは`step.handler`設定でステップに紐付けられます。 +ここでは`Handler`クラスを`define_single_step`の後で定義しているため、`:Handler`というシンボルでハンドラークラスを指定しています。 +もしハンドラークラスを`define_single_step`よりも前で定義していれば、単に`step.handler = Handler`と書くことができます。 +更に、`"OtherPlugin::Handler"`のようなクラスパスの文字列も使用できます。 -Then, we also have to bind a collector to the step, with the configuration `step.collector`. +次に、`step.collector`設定を使ってコレクターをステップに紐付ける必要があります。 lib/droonga/plugins/count-records.rb: @@ -208,8 +208,8 @@ lib/droonga/plugins/count-records.rb: # (snip) ~~~ -The `Collectors::Sum` is one of built-in collectors. -It merges results returned from handler instances for each volume to one result. +`Collectors::Sum`は組み込みコレクターの一つです。 +これは、各ボリュームのハンドラーインスタンスから返って来た結果を結合して一つの結果にします。 ### `catalog.json`でプラグインを有効化する Modified: ja/tutorial/1.0.9/plugin-development/handler/index.md (+7 -7) =================================================================== --- ja/tutorial/1.0.9/plugin-development/handler/index.md 2015-11-25 23:04:27 +0900 (c0bbb61) +++ ja/tutorial/1.0.9/plugin-development/handler/index.md 2015-12-02 23:41:29 +0900 (321828b) @@ -189,12 +189,12 @@ end 現時点で、このハンドラーは何も処理を行わず、単に数値1つからなる配列を含む処理結果を返すだけです。 戻り値はレスポンスのbodyを組み立てるのに使われます。 -The handler is bound to the step with the configuration `step.handler`. -Because we define the class `Handler` after `define_single_step`, we specify the handler class with a symbol `:Handler`. -If you define the handler class before `define_single_step`, then you can write as `step.handler = Handler` simply. -Moreover, a class path string like `"OtherPlugin::Handler"` is also available. +ハンドラーは`step.handler`設定でステップに紐付けられます。 +ここでは`Handler`クラスを`define_single_step`の後で定義しているため、`:Handler`というシンボルでハンドラークラスを指定しています。 +もしハンドラークラスを`define_single_step`よりも前で定義していれば、単に`step.handler = Handler`と書くことができます。 +更に、`"OtherPlugin::Handler"`のようなクラスパスの文字列も使用できます。 -Then, we also have to bind a collector to the step, with the configuration `step.collector`. +次に、`step.collector`設定を使ってコレクターをステップに紐付ける必要があります。 lib/droonga/plugins/count-records.rb: @@ -208,8 +208,8 @@ lib/droonga/plugins/count-records.rb: # (snip) ~~~ -The `Collectors::Sum` is one of built-in collectors. -It merges results returned from handler instances for each volume to one result. +`Collectors::Sum`は組み込みコレクターの一つです。 +これは、各ボリュームのハンドラーインスタンスから返って来た結果を結合して一つの結果にします。 ### `catalog.json`でプラグインを有効化する Modified: ja/tutorial/1.1.0/plugin-development/handler/index.md (+7 -7) =================================================================== --- ja/tutorial/1.1.0/plugin-development/handler/index.md 2015-11-25 23:04:27 +0900 (6ca682a) +++ ja/tutorial/1.1.0/plugin-development/handler/index.md 2015-12-02 23:41:29 +0900 (3972648) @@ -189,12 +189,12 @@ end 現時点で、このハンドラーは何も処理を行わず、単に数値1つからなる配列を含む処理結果を返すだけです。 戻り値はレスポンスのbodyを組み立てるのに使われます。 -The handler is bound to the step with the configuration `step.handler`. -Because we define the class `Handler` after `define_single_step`, we specify the handler class with a symbol `:Handler`. -If you define the handler class before `define_single_step`, then you can write as `step.handler = Handler` simply. -Moreover, a class path string like `"OtherPlugin::Handler"` is also available. +ハンドラーは`step.handler`設定でステップに紐付けられます。 +ここでは`Handler`クラスを`define_single_step`の後で定義しているため、`:Handler`というシンボルでハンドラークラスを指定しています。 +もしハンドラークラスを`define_single_step`よりも前で定義していれば、単に`step.handler = Handler`と書くことができます。 +更に、`"OtherPlugin::Handler"`のようなクラスパスの文字列も使用できます。 -Then, we also have to bind a collector to the step, with the configuration `step.collector`. +次に、`step.collector`設定を使ってコレクターをステップに紐付ける必要があります。 lib/droonga/plugins/count-records.rb: @@ -208,8 +208,8 @@ lib/droonga/plugins/count-records.rb: # (snip) ~~~ -The `Collectors::Sum` is one of built-in collectors. -It merges results returned from handler instances for each volume to one result. +`Collectors::Sum`は組み込みコレクターの一つです。 +これは、各ボリュームのハンドラーインスタンスから返って来た結果を結合して一つの結果にします。 ### `catalog.json`でプラグインを有効化する Modified: ja/tutorial/1.1.1/plugin-development/handler/index.md (+7 -7) =================================================================== --- ja/tutorial/1.1.1/plugin-development/handler/index.md 2015-11-25 23:04:27 +0900 (83102a7) +++ ja/tutorial/1.1.1/plugin-development/handler/index.md 2015-12-02 23:41:29 +0900 (df4c0bf) @@ -189,12 +189,12 @@ end 現時点で、このハンドラーは何も処理を行わず、単に数値1つからなる配列を含む処理結果を返すだけです。 戻り値はレスポンスのbodyを組み立てるのに使われます。 -The handler is bound to the step with the configuration `step.handler`. -Because we define the class `Handler` after `define_single_step`, we specify the handler class with a symbol `:Handler`. -If you define the handler class before `define_single_step`, then you can write as `step.handler = Handler` simply. -Moreover, a class path string like `"OtherPlugin::Handler"` is also available. +ハンドラーは`step.handler`設定でステップに紐付けられます。 +ここでは`Handler`クラスを`define_single_step`の後で定義しているため、`:Handler`というシンボルでハンドラークラスを指定しています。 +もしハンドラークラスを`define_single_step`よりも前で定義していれば、単に`step.handler = Handler`と書くことができます。 +更に、`"OtherPlugin::Handler"`のようなクラスパスの文字列も使用できます。 -Then, we also have to bind a collector to the step, with the configuration `step.collector`. +次に、`step.collector`設定を使ってコレクターをステップに紐付ける必要があります。 lib/droonga/plugins/count-records.rb: @@ -208,8 +208,8 @@ lib/droonga/plugins/count-records.rb: # (snip) ~~~ -The `Collectors::Sum` is one of built-in collectors. -It merges results returned from handler instances for each volume to one result. +`Collectors::Sum`は組み込みコレクターの一つです。 +これは、各ボリュームのハンドラーインスタンスから返って来た結果を結合して一つの結果にします。 ### `catalog.json`でプラグインを有効化する Modified: ja/tutorial/1.1.2/plugin-development/handler/index.md (+7 -7) =================================================================== --- ja/tutorial/1.1.2/plugin-development/handler/index.md 2015-11-25 23:04:27 +0900 (2c04010) +++ ja/tutorial/1.1.2/plugin-development/handler/index.md 2015-12-02 23:41:29 +0900 (59aade9) @@ -189,12 +189,12 @@ end 現時点で、このハンドラーは何も処理を行わず、単に数値1つからなる配列を含む処理結果を返すだけです。 戻り値はレスポンスのbodyを組み立てるのに使われます。 -The handler is bound to the step with the configuration `step.handler`. -Because we define the class `Handler` after `define_single_step`, we specify the handler class with a symbol `:Handler`. -If you define the handler class before `define_single_step`, then you can write as `step.handler = Handler` simply. -Moreover, a class path string like `"OtherPlugin::Handler"` is also available. +ハンドラーは`step.handler`設定でステップに紐付けられます。 +ここでは`Handler`クラスを`define_single_step`の後で定義しているため、`:Handler`というシンボルでハンドラークラスを指定しています。 +もしハンドラークラスを`define_single_step`よりも前で定義していれば、単に`step.handler = Handler`と書くことができます。 +更に、`"OtherPlugin::Handler"`のようなクラスパスの文字列も使用できます。 -Then, we also have to bind a collector to the step, with the configuration `step.collector`. +次に、`step.collector`設定を使ってコレクターをステップに紐付ける必要があります。 lib/droonga/plugins/count-records.rb: @@ -208,8 +208,8 @@ lib/droonga/plugins/count-records.rb: # (snip) ~~~ -The `Collectors::Sum` is one of built-in collectors. -It merges results returned from handler instances for each volume to one result. +`Collectors::Sum`は組み込みコレクターの一つです。 +これは、各ボリュームのハンドラーインスタンスから返って来た結果を結合して一つの結果にします。 ### `catalog.json`でプラグインを有効化する -------------- next part -------------- HTML����������������������������... Download