[Groonga-commit] droonga/droonga.org at 11a190c [gh-pages] Update translations

Zurück zum Archiv-Index

YUKI Hiroshi null+****@clear*****
Wed Aug 20 17:14:36 JST 2014


YUKI Hiroshi	2014-08-20 17:14:36 +0900 (Wed, 20 Aug 2014)

  New Revision: 11a190c606f934ed87c8ed206d976aad8eddf544
  https://github.com/droonga/droonga.org/commit/11a190c606f934ed87c8ed206d976aad8eddf544

  Message:
    Update translations

  Modified files:
    _po/ja/tutorial/1.0.3/plugin-development/adapter/index.po
    _po/ja/tutorial/1.0.4/plugin-development/adapter/index.po
    _po/ja/tutorial/1.0.5/plugin-development/adapter/index.po
    _po/ja/tutorial/1.0.5/plugin-development/index.po
    ja/tutorial/1.0.2/plugin-development/adapter/index.md
    ja/tutorial/1.0.3/plugin-development/adapter/index.md
    ja/tutorial/1.0.4/plugin-development/adapter/index.md
    ja/tutorial/1.0.5/plugin-development/adapter/index.md
    ja/tutorial/1.0.6/plugin-development/adapter/index.md

  Modified: _po/ja/tutorial/1.0.3/plugin-development/adapter/index.po (+95 -19)
===================================================================
--- _po/ja/tutorial/1.0.3/plugin-development/adapter/index.po    2014-08-20 17:02:21 +0900 (eb9c22c)
+++ _po/ja/tutorial/1.0.3/plugin-development/adapter/index.po    2014-08-20 17:14:36 +0900 (7305a03)
@@ -9,6 +9,77 @@ msgstr ""
 "Plural-Forms: nplurals=1; plural=0;\n"
 
 msgid ""
+"We sometime need to modify incoming requests from outside to Droonga Engine.\n"
+"We can use a plugin for this purpose.\n"
+"Let's see how to create a plugin for the adaption phase, in this section."
+msgstr ""
+"外部のシステムからDroonga Engineにやってくるリクエストを加工する必要がある場合があります。このようなときに、プラグインを利用できます。このセク"
+"ションでは、どのようにしてアダプション・フェーズのプラグインをつくるのかをみていきます。"
+
+msgid ""
+" * The `sample-logger` is the name of the plugin itself. You'll use it in your"
+" `catalog.json`, to activate the plugin.\n"
+" * As the example above, you must define your plugin as a module.\n"
+" * Behaviors at the adaption phase is defined a class called *adapter*.\n"
+"   An adapter class must be defined as a subclass of the `Droonga::Adapter`, u"
+"nder the namespace of the plugin module."
+msgstr ""
+" * `sample-logger`は、このプラグイン自身の名前です。これは`catalog.json`の中で、プラグインを有効化するために使う事になります"
+"。\n"
+" * 上記の例のように、プラグインはモジュールとして定義する必要があります。\n"
+" * アダプション・フェーズでの振る舞いは、*アダプター*と呼ばれるクラスとして定義します。\n"
+"   アダプタークラスは必ず、プラグインのモジュールの名前空間の配下で、`Droonga::Adapter`のサブクラスとして定義する必要があります。"
+
+msgid ""
+"~~~\n"
+"(snip)\n"
+"      \"datasets\": {\n"
+"        \"Starbucks\": {\n"
+"          (snip)\n"
+"          \"plugins\": [\"sample-logger\", \"groonga\", \"crud\", \"search\"],\n"
+"(snip)\n"
+"~~~"
+msgstr ""
+
+msgid ""
+"Note: you must place `\"sample-logger\"` before `\"search\"`, because the `sample-"
+"logger` plugin depends on the `search`. Droonga Engine applies plugins at the "
+"adaption phase in the order defined in the `catalog.json`, so you must resolve"
+" plugin dependencies by your hand (for now)."
+msgstr ""
+"注意:`\"sample-logger\"`は`\"search\"`よりも前に置く必要があります。これは、`sample-logger`プラグインが`search"
+"`に依存しているからです。Droonga Engineはアダプション・フェーズにおいて、プラグインを`catalog.json`で定義された順に適用しますの"
+"で、プラグイン同士の依存関係は(今のところは)自分で解決しなくてはなりません。"
+
+msgid ""
+"Let's modify the result.\n"
+"For example, add `completedAt` attribute that shows the time completed the req"
+"uest.\n"
+"Update your plugin as follows:"
+msgstr ""
+"結果を加工してみましょう。\n"
+"例えば、リクエストに対する処理が完了した時刻を示す`completedAt`というアトリビュートを加えるとします。\n"
+"プラグインを以下のように更新して下さい:"
+
+msgid ""
+"We have learned the basics of plugins for the adaption phase so far.\n"
+"Let's try to build more practical plugin."
+msgstr ""
+"ここまでで、アダプション・フェーズで動作するプラグインの基本を学びました。\n"
+"それでは、より実践的なプラグインを開発してみることにしましょう。"
+
+msgid ""
+"~~~\n"
+"(snip)\n"
+"      \"datasets\": {\n"
+"        \"Starbucks\": {\n"
+"          (snip)\n"
+"          \"plugins\": [\"store-search\", \"groonga\", \"crud\", \"search\"],\n"
+"(snip)\n"
+"~~~"
+msgstr ""
+
+msgid ""
 "---\n"
 "title: \"Plugin: Adapt requests and responses, to add a new command based on ot"
 "her existing commands\"\n"
@@ -51,15 +122,17 @@ msgstr "## 入力メッセージの加工"
 msgid ""
 "First, let's study basics with a simple logger plugin named `sample-logger` af"
 "fects at the adaption phase."
-msgstr "まず`sample-logger`という簡単なロガープラグインを使って、アダプション・フェーズに作用するプラグインを作りながら、基礎を学びましょう。"
+msgstr "まず`sample-logger`という簡単なロガープラグインを使って、適合フェーズに作用するプラグインを作りながら、基礎を学びましょう。"
 
 msgid ""
 "We sometime need to modify incoming requests from outside to Droonga Engine.\n"
-"We can use a plugin for this purpose.\n"
-"Let's see how to create a plugin for the adaption phase, in this section."
-msgstr ""
-"外部のシステムからDroonga Engineにやってくるリクエストを加工する必要がある場合があります。このようなときに、プラグインを利用できます。このセク"
-"ションでは、どのようにしてアダプション・フェーズのプラグインをつくるのかをみていきます。"
+"We can use a plugin for this purpose."
+msgstr "外部のシステムからDroonga Engineにやってくるリクエストを加工する必要がある場合があります。このようなときに、プラグインを利用できます。"
+
+msgid ""
+"Let's see how to create a plugin for the *pre adaption phase*, in this section"
+"."
+msgstr "このセクションでは、どのようにして*前適合フェーズ*のプラグインを作るのかを見てみていきます。"
 
 msgid "### Directory Structure"
 msgstr "### ディレクトリの構造"
@@ -151,14 +224,14 @@ msgid ""
 " * The `sample-logger` is the name of the plugin itself. You'll use it in your"
 " `catalog.json`, to activate the plugin.\n"
 " * As the example above, you must define your plugin as a module.\n"
-" * Behaviors at the adaption phase is defined a class called *adapter*.\n"
+" * Behaviors at the pre adaption phase is defined a class called *adapter*.\n"
 "   An adapter class must be defined as a subclass of the `Droonga::Adapter`, u"
 "nder the namespace of the plugin module."
 msgstr ""
 " * `sample-logger`は、このプラグイン自身の名前です。これは`catalog.json`の中で、プラグインを有効化するために使う事になります"
 "。\n"
 " * 上記の例のように、プラグインはモジュールとして定義する必要があります。\n"
-" * アダプション・フェーズでの振る舞いは、*アダプター*と呼ばれるクラスとして定義します。\n"
+" * 前適合フェーズでの振る舞いは、*アダプター*と呼ばれるクラスとして定義します。\n"
 "   アダプタークラスは必ず、プラグインのモジュールの名前空間の配下で、`Droonga::Adapter`のサブクラスとして定義する必要があります。"
 
 msgid "### Activate the plugin with `catalog.json`"
@@ -181,7 +254,8 @@ msgid ""
 "      \"datasets\": {\n"
 "        \"Starbucks\": {\n"
 "          (snip)\n"
-"          \"plugins\": [\"sample-logger\", \"groonga\", \"crud\", \"search\"],\n"
+"          \"plugins\": [\"sample-logger\", \"groonga\", \"crud\", \"search\", \"dump\", \"s"
+"tatus\"],\n"
 "(snip)\n"
 "~~~"
 msgstr ""
@@ -189,12 +263,12 @@ msgstr ""
 msgid ""
 "Note: you must place `\"sample-logger\"` before `\"search\"`, because the `sample-"
 "logger` plugin depends on the `search`. Droonga Engine applies plugins at the "
-"adaption phase in the order defined in the `catalog.json`, so you must resolve"
-" plugin dependencies by your hand (for now)."
+"pre adaption phase in the order defined in the `catalog.json`, so you must res"
+"olve plugin dependencies by your hand (for now)."
 msgstr ""
 "注意:`\"sample-logger\"`は`\"search\"`よりも前に置く必要があります。これは、`sample-logger`プラグインが`search"
-"`に依存しているからです。Droonga Engineはアダプション・フェーズにおいて、プラグインを`catalog.json`で定義された順に適用しますの"
-"で、プラグイン同士の依存関係は(今のところは)自分で解決しなくてはなりません。"
+"`に依存しているからです。Droonga Engineは前適合フェーズにおいて、プラグインを`catalog.json`で定義された順に適用しますので、プラ"
+"グイン同士の依存関係は(今のところは)自分で解決しなくてはなりません。"
 
 msgid "### Run and test"
 msgstr "### 実行と動作を確認する"
@@ -608,15 +682,15 @@ msgid ""
 msgstr "ここには、`search`の結果が`adapt_output`メソッドに渡された事(そしてログ出力された事)が示されています。"
 
 msgid "### Modify results in the adaption phase"
-msgstr "### 結果をアダプション・フェーズで加工する"
+msgstr "### 結果を適合フェーズで加工する"
 
 msgid ""
-"Let's modify the result.\n"
+"Let's modify the result at the *post adaption phase*.\n"
 "For example, add `completedAt` attribute that shows the time completed the req"
 "uest.\n"
 "Update your plugin as follows:"
 msgstr ""
-"結果を加工してみましょう。\n"
+"*後適合フェーズ*において、結果を加工してみましょう。\n"
 "例えば、リクエストに対する処理が完了した時刻を示す`completedAt`というアトリビュートを加えるとします。\n"
 "プラグインを以下のように更新して下さい:"
 
@@ -699,10 +773,11 @@ msgid "## Adaption for both incoming and outgoing messages"
 msgstr "## 入出力メッセージの加工"
 
 msgid ""
-"We have learned the basics of plugins for the adaption phase so far.\n"
+"We have learned the basics of plugins for the pre adaption phase and the post "
+"adaption phase so far.\n"
 "Let's try to build more practical plugin."
 msgstr ""
-"ここまでで、アダプション・フェーズで動作するプラグインの基本を学びました。\n"
+"ここまでで、前適合フェーズと後適合フェーズで動作するプラグインの基本を学びました。\n"
 "それでは、より実践的なプラグインを開発してみることにしましょう。"
 
 msgid ""
@@ -807,7 +882,8 @@ msgid ""
 "      \"datasets\": {\n"
 "        \"Starbucks\": {\n"
 "          (snip)\n"
-"          \"plugins\": [\"store-search\", \"groonga\", \"crud\", \"search\"],\n"
+"          \"plugins\": [\"store-search\", \"groonga\", \"crud\", \"search\", \"dump\", \"st"
+"atus\"],\n"
 "(snip)\n"
 "~~~"
 msgstr ""

  Modified: _po/ja/tutorial/1.0.4/plugin-development/adapter/index.po (+69 -17)
===================================================================
--- _po/ja/tutorial/1.0.4/plugin-development/adapter/index.po    2014-08-20 17:02:21 +0900 (7d74767)
+++ _po/ja/tutorial/1.0.4/plugin-development/adapter/index.po    2014-08-20 17:14:36 +0900 (da7d900)
@@ -9,6 +9,55 @@ msgstr ""
 "Plural-Forms: nplurals=1; plural=0;\n"
 
 msgid ""
+"We sometime need to modify incoming requests from outside to Droonga Engine.\n"
+"We can use a plugin for this purpose.\n"
+"Let's see how to create a plugin for the adaption phase, in this section."
+msgstr ""
+"外部のシステムからDroonga Engineにやってくるリクエストを加工する必要がある場合があります。このようなときに、プラグインを利用できます。このセク"
+"ションでは、どのようにしてアダプション・フェーズのプラグインをつくるのかをみていきます。"
+
+msgid ""
+" * The `sample-logger` is the name of the plugin itself. You'll use it in your"
+" `catalog.json`, to activate the plugin.\n"
+" * As the example above, you must define your plugin as a module.\n"
+" * Behaviors at the adaption phase is defined a class called *adapter*.\n"
+"   An adapter class must be defined as a subclass of the `Droonga::Adapter`, u"
+"nder the namespace of the plugin module."
+msgstr ""
+" * `sample-logger`は、このプラグイン自身の名前です。これは`catalog.json`の中で、プラグインを有効化するために使う事になります"
+"。\n"
+" * 上記の例のように、プラグインはモジュールとして定義する必要があります。\n"
+" * アダプション・フェーズでの振る舞いは、*アダプター*と呼ばれるクラスとして定義します。\n"
+"   アダプタークラスは必ず、プラグインのモジュールの名前空間の配下で、`Droonga::Adapter`のサブクラスとして定義する必要があります。"
+
+msgid ""
+"Note: you must place `\"sample-logger\"` before `\"search\"`, because the `sample-"
+"logger` plugin depends on the `search`. Droonga Engine applies plugins at the "
+"adaption phase in the order defined in the `catalog.json`, so you must resolve"
+" plugin dependencies by your hand (for now)."
+msgstr ""
+"注意:`\"sample-logger\"`は`\"search\"`よりも前に置く必要があります。これは、`sample-logger`プラグインが`search"
+"`に依存しているからです。Droonga Engineはアダプション・フェーズにおいて、プラグインを`catalog.json`で定義された順に適用しますの"
+"で、プラグイン同士の依存関係は(今のところは)自分で解決しなくてはなりません。"
+
+msgid ""
+"Let's modify the result.\n"
+"For example, add `completedAt` attribute that shows the time completed the req"
+"uest.\n"
+"Update your plugin as follows:"
+msgstr ""
+"結果を加工してみましょう。\n"
+"例えば、リクエストに対する処理が完了した時刻を示す`completedAt`というアトリビュートを加えるとします。\n"
+"プラグインを以下のように更新して下さい:"
+
+msgid ""
+"We have learned the basics of plugins for the adaption phase so far.\n"
+"Let's try to build more practical plugin."
+msgstr ""
+"ここまでで、アダプション・フェーズで動作するプラグインの基本を学びました。\n"
+"それでは、より実践的なプラグインを開発してみることにしましょう。"
+
+msgid ""
 "---\n"
 "title: \"Plugin: Adapt requests and responses, to add a new command based on ot"
 "her existing commands\"\n"
@@ -51,15 +100,17 @@ msgstr "## 入力メッセージの加工"
 msgid ""
 "First, let's study basics with a simple logger plugin named `sample-logger` af"
 "fects at the adaption phase."
-msgstr "まず`sample-logger`という簡単なロガープラグインを使って、アダプション・フェーズに作用するプラグインを作りながら、基礎を学びましょう。"
+msgstr "まず`sample-logger`という簡単なロガープラグインを使って、適合フェーズに作用するプラグインを作りながら、基礎を学びましょう。"
 
 msgid ""
 "We sometime need to modify incoming requests from outside to Droonga Engine.\n"
-"We can use a plugin for this purpose.\n"
-"Let's see how to create a plugin for the adaption phase, in this section."
-msgstr ""
-"外部のシステムからDroonga Engineにやってくるリクエストを加工する必要がある場合があります。このようなときに、プラグインを利用できます。このセク"
-"ションでは、どのようにしてアダプション・フェーズのプラグインをつくるのかをみていきます。"
+"We can use a plugin for this purpose."
+msgstr "外部のシステムからDroonga Engineにやってくるリクエストを加工する必要がある場合があります。このようなときに、プラグインを利用できます。"
+
+msgid ""
+"Let's see how to create a plugin for the *pre adaption phase*, in this section"
+"."
+msgstr "このセクションでは、どのようにして*前適合フェーズ*のプラグインを作るのかを見てみていきます。"
 
 msgid "### Directory Structure"
 msgstr "### ディレクトリの構造"
@@ -151,14 +202,14 @@ msgid ""
 " * The `sample-logger` is the name of the plugin itself. You'll use it in your"
 " `catalog.json`, to activate the plugin.\n"
 " * As the example above, you must define your plugin as a module.\n"
-" * Behaviors at the adaption phase is defined a class called *adapter*.\n"
+" * Behaviors at the pre adaption phase is defined a class called *adapter*.\n"
 "   An adapter class must be defined as a subclass of the `Droonga::Adapter`, u"
 "nder the namespace of the plugin module."
 msgstr ""
 " * `sample-logger`は、このプラグイン自身の名前です。これは`catalog.json`の中で、プラグインを有効化するために使う事になります"
 "。\n"
 " * 上記の例のように、プラグインはモジュールとして定義する必要があります。\n"
-" * アダプション・フェーズでの振る舞いは、*アダプター*と呼ばれるクラスとして定義します。\n"
+" * 前適合フェーズでの振る舞いは、*アダプター*と呼ばれるクラスとして定義します。\n"
 "   アダプタークラスは必ず、プラグインのモジュールの名前空間の配下で、`Droonga::Adapter`のサブクラスとして定義する必要があります。"
 
 msgid "### Activate the plugin with `catalog.json`"
@@ -190,12 +241,12 @@ msgstr ""
 msgid ""
 "Note: you must place `\"sample-logger\"` before `\"search\"`, because the `sample-"
 "logger` plugin depends on the `search`. Droonga Engine applies plugins at the "
-"adaption phase in the order defined in the `catalog.json`, so you must resolve"
-" plugin dependencies by your hand (for now)."
+"pre adaption phase in the order defined in the `catalog.json`, so you must res"
+"olve plugin dependencies by your hand (for now)."
 msgstr ""
 "注意:`\"sample-logger\"`は`\"search\"`よりも前に置く必要があります。これは、`sample-logger`プラグインが`search"
-"`に依存しているからです。Droonga Engineはアダプション・フェーズにおいて、プラグインを`catalog.json`で定義された順に適用しますの"
-"で、プラグイン同士の依存関係は(今のところは)自分で解決しなくてはなりません。"
+"`に依存しているからです。Droonga Engineは前適合フェーズにおいて、プラグインを`catalog.json`で定義された順に適用しますので、プラ"
+"グイン同士の依存関係は(今のところは)自分で解決しなくてはなりません。"
 
 msgid "### Run and test"
 msgstr "### 実行と動作を確認する"
@@ -609,15 +660,15 @@ msgid ""
 msgstr "ここには、`search`の結果が`adapt_output`メソッドに渡された事(そしてログ出力された事)が示されています。"
 
 msgid "### Modify results in the adaption phase"
-msgstr "### 結果をアダプション・フェーズで加工する"
+msgstr "### 結果を適合フェーズで加工する"
 
 msgid ""
-"Let's modify the result.\n"
+"Let's modify the result at the *post adaption phase*.\n"
 "For example, add `completedAt` attribute that shows the time completed the req"
 "uest.\n"
 "Update your plugin as follows:"
 msgstr ""
-"結果を加工してみましょう。\n"
+"*後適合フェーズ*において、結果を加工してみましょう。\n"
 "例えば、リクエストに対する処理が完了した時刻を示す`completedAt`というアトリビュートを加えるとします。\n"
 "プラグインを以下のように更新して下さい:"
 
@@ -700,10 +751,11 @@ msgid "## Adaption for both incoming and outgoing messages"
 msgstr "## 入出力メッセージの加工"
 
 msgid ""
-"We have learned the basics of plugins for the adaption phase so far.\n"
+"We have learned the basics of plugins for the pre adaption phase and the post "
+"adaption phase so far.\n"
 "Let's try to build more practical plugin."
 msgstr ""
-"ここまでで、アダプション・フェーズで動作するプラグインの基本を学びました。\n"
+"ここまでで、前適合フェーズと後適合フェーズで動作するプラグインの基本を学びました。\n"
 "それでは、より実践的なプラグインを開発してみることにしましょう。"
 
 msgid ""

  Modified: _po/ja/tutorial/1.0.5/plugin-development/adapter/index.po (+69 -17)
===================================================================
--- _po/ja/tutorial/1.0.5/plugin-development/adapter/index.po    2014-08-20 17:02:21 +0900 (7d74767)
+++ _po/ja/tutorial/1.0.5/plugin-development/adapter/index.po    2014-08-20 17:14:36 +0900 (da7d900)
@@ -9,6 +9,55 @@ msgstr ""
 "Plural-Forms: nplurals=1; plural=0;\n"
 
 msgid ""
+"We sometime need to modify incoming requests from outside to Droonga Engine.\n"
+"We can use a plugin for this purpose.\n"
+"Let's see how to create a plugin for the adaption phase, in this section."
+msgstr ""
+"外部のシステムからDroonga Engineにやってくるリクエストを加工する必要がある場合があります。このようなときに、プラグインを利用できます。このセク"
+"ションでは、どのようにしてアダプション・フェーズのプラグインをつくるのかをみていきます。"
+
+msgid ""
+" * The `sample-logger` is the name of the plugin itself. You'll use it in your"
+" `catalog.json`, to activate the plugin.\n"
+" * As the example above, you must define your plugin as a module.\n"
+" * Behaviors at the adaption phase is defined a class called *adapter*.\n"
+"   An adapter class must be defined as a subclass of the `Droonga::Adapter`, u"
+"nder the namespace of the plugin module."
+msgstr ""
+" * `sample-logger`は、このプラグイン自身の名前です。これは`catalog.json`の中で、プラグインを有効化するために使う事になります"
+"。\n"
+" * 上記の例のように、プラグインはモジュールとして定義する必要があります。\n"
+" * アダプション・フェーズでの振る舞いは、*アダプター*と呼ばれるクラスとして定義します。\n"
+"   アダプタークラスは必ず、プラグインのモジュールの名前空間の配下で、`Droonga::Adapter`のサブクラスとして定義する必要があります。"
+
+msgid ""
+"Note: you must place `\"sample-logger\"` before `\"search\"`, because the `sample-"
+"logger` plugin depends on the `search`. Droonga Engine applies plugins at the "
+"adaption phase in the order defined in the `catalog.json`, so you must resolve"
+" plugin dependencies by your hand (for now)."
+msgstr ""
+"注意:`\"sample-logger\"`は`\"search\"`よりも前に置く必要があります。これは、`sample-logger`プラグインが`search"
+"`に依存しているからです。Droonga Engineはアダプション・フェーズにおいて、プラグインを`catalog.json`で定義された順に適用しますの"
+"で、プラグイン同士の依存関係は(今のところは)自分で解決しなくてはなりません。"
+
+msgid ""
+"Let's modify the result.\n"
+"For example, add `completedAt` attribute that shows the time completed the req"
+"uest.\n"
+"Update your plugin as follows:"
+msgstr ""
+"結果を加工してみましょう。\n"
+"例えば、リクエストに対する処理が完了した時刻を示す`completedAt`というアトリビュートを加えるとします。\n"
+"プラグインを以下のように更新して下さい:"
+
+msgid ""
+"We have learned the basics of plugins for the adaption phase so far.\n"
+"Let's try to build more practical plugin."
+msgstr ""
+"ここまでで、アダプション・フェーズで動作するプラグインの基本を学びました。\n"
+"それでは、より実践的なプラグインを開発してみることにしましょう。"
+
+msgid ""
 "---\n"
 "title: \"Plugin: Adapt requests and responses, to add a new command based on ot"
 "her existing commands\"\n"
@@ -51,15 +100,17 @@ msgstr "## 入力メッセージの加工"
 msgid ""
 "First, let's study basics with a simple logger plugin named `sample-logger` af"
 "fects at the adaption phase."
-msgstr "まず`sample-logger`という簡単なロガープラグインを使って、アダプション・フェーズに作用するプラグインを作りながら、基礎を学びましょう。"
+msgstr "まず`sample-logger`という簡単なロガープラグインを使って、適合フェーズに作用するプラグインを作りながら、基礎を学びましょう。"
 
 msgid ""
 "We sometime need to modify incoming requests from outside to Droonga Engine.\n"
-"We can use a plugin for this purpose.\n"
-"Let's see how to create a plugin for the adaption phase, in this section."
-msgstr ""
-"外部のシステムからDroonga Engineにやってくるリクエストを加工する必要がある場合があります。このようなときに、プラグインを利用できます。このセク"
-"ションでは、どのようにしてアダプション・フェーズのプラグインをつくるのかをみていきます。"
+"We can use a plugin for this purpose."
+msgstr "外部のシステムからDroonga Engineにやってくるリクエストを加工する必要がある場合があります。このようなときに、プラグインを利用できます。"
+
+msgid ""
+"Let's see how to create a plugin for the *pre adaption phase*, in this section"
+"."
+msgstr "このセクションでは、どのようにして*前適合フェーズ*のプラグインを作るのかを見てみていきます。"
 
 msgid "### Directory Structure"
 msgstr "### ディレクトリの構造"
@@ -151,14 +202,14 @@ msgid ""
 " * The `sample-logger` is the name of the plugin itself. You'll use it in your"
 " `catalog.json`, to activate the plugin.\n"
 " * As the example above, you must define your plugin as a module.\n"
-" * Behaviors at the adaption phase is defined a class called *adapter*.\n"
+" * Behaviors at the pre adaption phase is defined a class called *adapter*.\n"
 "   An adapter class must be defined as a subclass of the `Droonga::Adapter`, u"
 "nder the namespace of the plugin module."
 msgstr ""
 " * `sample-logger`は、このプラグイン自身の名前です。これは`catalog.json`の中で、プラグインを有効化するために使う事になります"
 "。\n"
 " * 上記の例のように、プラグインはモジュールとして定義する必要があります。\n"
-" * アダプション・フェーズでの振る舞いは、*アダプター*と呼ばれるクラスとして定義します。\n"
+" * 前適合フェーズでの振る舞いは、*アダプター*と呼ばれるクラスとして定義します。\n"
 "   アダプタークラスは必ず、プラグインのモジュールの名前空間の配下で、`Droonga::Adapter`のサブクラスとして定義する必要があります。"
 
 msgid "### Activate the plugin with `catalog.json`"
@@ -190,12 +241,12 @@ msgstr ""
 msgid ""
 "Note: you must place `\"sample-logger\"` before `\"search\"`, because the `sample-"
 "logger` plugin depends on the `search`. Droonga Engine applies plugins at the "
-"adaption phase in the order defined in the `catalog.json`, so you must resolve"
-" plugin dependencies by your hand (for now)."
+"pre adaption phase in the order defined in the `catalog.json`, so you must res"
+"olve plugin dependencies by your hand (for now)."
 msgstr ""
 "注意:`\"sample-logger\"`は`\"search\"`よりも前に置く必要があります。これは、`sample-logger`プラグインが`search"
-"`に依存しているからです。Droonga Engineはアダプション・フェーズにおいて、プラグインを`catalog.json`で定義された順に適用しますの"
-"で、プラグイン同士の依存関係は(今のところは)自分で解決しなくてはなりません。"
+"`に依存しているからです。Droonga Engineは前適合フェーズにおいて、プラグインを`catalog.json`で定義された順に適用しますので、プラ"
+"グイン同士の依存関係は(今のところは)自分で解決しなくてはなりません。"
 
 msgid "### Run and test"
 msgstr "### 実行と動作を確認する"
@@ -609,15 +660,15 @@ msgid ""
 msgstr "ここには、`search`の結果が`adapt_output`メソッドに渡された事(そしてログ出力された事)が示されています。"
 
 msgid "### Modify results in the adaption phase"
-msgstr "### 結果をアダプション・フェーズで加工する"
+msgstr "### 結果を適合フェーズで加工する"
 
 msgid ""
-"Let's modify the result.\n"
+"Let's modify the result at the *post adaption phase*.\n"
 "For example, add `completedAt` attribute that shows the time completed the req"
 "uest.\n"
 "Update your plugin as follows:"
 msgstr ""
-"結果を加工してみましょう。\n"
+"*後適合フェーズ*において、結果を加工してみましょう。\n"
 "例えば、リクエストに対する処理が完了した時刻を示す`completedAt`というアトリビュートを加えるとします。\n"
 "プラグインを以下のように更新して下さい:"
 
@@ -700,10 +751,11 @@ msgid "## Adaption for both incoming and outgoing messages"
 msgstr "## 入出力メッセージの加工"
 
 msgid ""
-"We have learned the basics of plugins for the adaption phase so far.\n"
+"We have learned the basics of plugins for the pre adaption phase and the post "
+"adaption phase so far.\n"
 "Let's try to build more practical plugin."
 msgstr ""
-"ここまでで、アダプション・フェーズで動作するプラグインの基本を学びました。\n"
+"ここまでで、前適合フェーズと後適合フェーズで動作するプラグインの基本を学びました。\n"
 "それでは、より実践的なプラグインを開発してみることにしましょう。"
 
 msgid ""

  Modified: _po/ja/tutorial/1.0.5/plugin-development/index.po (+1 -1)
===================================================================
--- _po/ja/tutorial/1.0.5/plugin-development/index.po    2014-08-20 17:02:21 +0900 (80037e9)
+++ _po/ja/tutorial/1.0.5/plugin-development/index.po    2014-08-20 17:14:36 +0900 (74b1706)
@@ -85,7 +85,7 @@ msgid ""
 "Adaption phase\n"
 ": At this phase, a plugin can modify incoming requests and outgoing responses."
 msgstr ""
-"アダプション・フェーズ\n"
+"適合フェーズ(adaption phase)\n"
 ": このフェーズでは、プラグインは入力のリクエストと出力のレスポンスを加工できます。"
 
 msgid ""

  Modified: ja/tutorial/1.0.2/plugin-development/adapter/index.md (+2 -2)
===================================================================
--- ja/tutorial/1.0.2/plugin-development/adapter/index.md    2014-08-20 17:02:21 +0900 (dc10623)
+++ ja/tutorial/1.0.2/plugin-development/adapter/index.md    2014-08-20 17:14:36 +0900 (8cf2685)
@@ -29,7 +29,7 @@ Droongaプラグインを自分で開発するための手順を身につけま
 
 ## 入力メッセージの加工
 
-まず`sample-logger`という簡単なロガープラグインを使って、アダプション・フェーズに作用するプラグインを作りながら、基礎を学びましょう。
+まず`sample-logger`という簡単なロガープラグインを使って、適合フェーズに作用するプラグインを作りながら、基礎を学びましょう。
 
 外部のシステムからDroonga Engineにやってくるリクエストを加工する必要がある場合があります。このようなときに、プラグインを利用できます。このセクションでは、どのようにしてアダプション・フェーズのプラグインをつくるのかをみていきます。
 
@@ -405,7 +405,7 @@ fluentdのログは以下のようになっているはずです:
 ここには、`search`の結果が`adapt_output`メソッドに渡された事(そしてログ出力された事)が示されています。
 
 
-### 結果をアダプション・フェーズで加工する
+### 結果を適合フェーズで加工する
 
 結果を加工してみましょう。
 例えば、リクエストに対する処理が完了した時刻を示す`completedAt`というアトリビュートを加えるとします。

  Modified: ja/tutorial/1.0.3/plugin-development/adapter/index.md (+2 -2)
===================================================================
--- ja/tutorial/1.0.3/plugin-development/adapter/index.md    2014-08-20 17:02:21 +0900 (3a57278)
+++ ja/tutorial/1.0.3/plugin-development/adapter/index.md    2014-08-20 17:14:36 +0900 (8bdc3bd)
@@ -29,7 +29,7 @@ Droongaプラグインを自分で開発するための手順を身につけま
 
 ## 入力メッセージの加工
 
-まず`sample-logger`という簡単なロガープラグインを使って、アダプション・フェーズに作用するプラグインを作りながら、基礎を学びましょう。
+まず`sample-logger`という簡単なロガープラグインを使って、適合フェーズに作用するプラグインを作りながら、基礎を学びましょう。
 
 外部のシステムからDroonga Engineにやってくるリクエストを加工する必要がある場合があります。このようなときに、プラグインを利用できます。このセクションでは、どのようにしてアダプション・フェーズのプラグインをつくるのかをみていきます。
 
@@ -405,7 +405,7 @@ fluentdのログは以下のようになっているはずです:
 ここには、`search`の結果が`adapt_output`メソッドに渡された事(そしてログ出力された事)が示されています。
 
 
-### 結果をアダプション・フェーズで加工する
+### 結果を適合フェーズで加工する
 
 結果を加工してみましょう。
 例えば、リクエストに対する処理が完了した時刻を示す`completedAt`というアトリビュートを加えるとします。

  Modified: ja/tutorial/1.0.4/plugin-development/adapter/index.md (+2 -2)
===================================================================
--- ja/tutorial/1.0.4/plugin-development/adapter/index.md    2014-08-20 17:02:21 +0900 (d05b264)
+++ ja/tutorial/1.0.4/plugin-development/adapter/index.md    2014-08-20 17:14:36 +0900 (de40d95)
@@ -29,7 +29,7 @@ Droongaプラグインを自分で開発するための手順を身につけま
 
 ## 入力メッセージの加工
 
-まず`sample-logger`という簡単なロガープラグインを使って、アダプション・フェーズに作用するプラグインを作りながら、基礎を学びましょう。
+まず`sample-logger`という簡単なロガープラグインを使って、適合フェーズに作用するプラグインを作りながら、基礎を学びましょう。
 
 外部のシステムからDroonga Engineにやってくるリクエストを加工する必要がある場合があります。このようなときに、プラグインを利用できます。このセクションでは、どのようにしてアダプション・フェーズのプラグインをつくるのかをみていきます。
 
@@ -405,7 +405,7 @@ fluentdのログは以下のようになっているはずです:
 ここには、`search`の結果が`adapt_output`メソッドに渡された事(そしてログ出力された事)が示されています。
 
 
-### 結果をアダプション・フェーズで加工する
+### 結果を適合フェーズで加工する
 
 結果を加工してみましょう。
 例えば、リクエストに対する処理が完了した時刻を示す`completedAt`というアトリビュートを加えるとします。

  Modified: ja/tutorial/1.0.5/plugin-development/adapter/index.md (+2 -2)
===================================================================
--- ja/tutorial/1.0.5/plugin-development/adapter/index.md    2014-08-20 17:02:21 +0900 (58a0dd6)
+++ ja/tutorial/1.0.5/plugin-development/adapter/index.md    2014-08-20 17:14:36 +0900 (b4d682a)
@@ -29,7 +29,7 @@ Droongaプラグインを自分で開発するための手順を身につけま
 
 ## 入力メッセージの加工
 
-まず`sample-logger`という簡単なロガープラグインを使って、アダプション・フェーズに作用するプラグインを作りながら、基礎を学びましょう。
+まず`sample-logger`という簡単なロガープラグインを使って、適合フェーズに作用するプラグインを作りながら、基礎を学びましょう。
 
 外部のシステムからDroonga Engineにやってくるリクエストを加工する必要がある場合があります。このようなときに、プラグインを利用できます。このセクションでは、どのようにしてアダプション・フェーズのプラグインをつくるのかをみていきます。
 
@@ -405,7 +405,7 @@ fluentdのログは以下のようになっているはずです:
 ここには、`search`の結果が`adapt_output`メソッドに渡された事(そしてログ出力された事)が示されています。
 
 
-### 結果をアダプション・フェーズで加工する
+### 結果を適合フェーズで加工する
 
 結果を加工してみましょう。
 例えば、リクエストに対する処理が完了した時刻を示す`completedAt`というアトリビュートを加えるとします。

  Modified: ja/tutorial/1.0.6/plugin-development/adapter/index.md (+2 -2)
===================================================================
--- ja/tutorial/1.0.6/plugin-development/adapter/index.md    2014-08-20 17:02:21 +0900 (fc785e2)
+++ ja/tutorial/1.0.6/plugin-development/adapter/index.md    2014-08-20 17:14:36 +0900 (1f118de)
@@ -29,7 +29,7 @@ Droongaプラグインを自分で開発するための手順を身につけま
 
 ## 入力メッセージの加工
 
-まず`sample-logger`という簡単なロガープラグインを使って、アダプション・フェーズに作用するプラグインを作りながら、基礎を学びましょう。
+まず`sample-logger`という簡単なロガープラグインを使って、適合フェーズに作用するプラグインを作りながら、基礎を学びましょう。
 
 外部のシステムからDroonga Engineにやってくるリクエストを加工する必要がある場合があります。このようなときに、プラグインを利用できます。
 
@@ -407,7 +407,7 @@ fluentdのログは以下のようになっているはずです:
 ここには、`search`の結果が`adapt_output`メソッドに渡された事(そしてログ出力された事)が示されています。
 
 
-### 結果をアダプション・フェーズで加工する
+### 結果を適合フェーズで加工する
 
 *後適合フェーズ*において、結果を加工してみましょう。
 例えば、リクエストに対する処理が完了した時刻を示す`completedAt`というアトリビュートを加えるとします。
-------------- next part --------------
HTML����������������������������...
Download 



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