Skip to content

Commit

Permalink
ja: Update translations
Browse files Browse the repository at this point in the history
  • Loading branch information
darashi committed Mar 3, 2014
1 parent b121442 commit 3aeb09b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion ja/reference/plugin/handler/index.md
Expand Up @@ -83,7 +83,7 @@ As described above, the Droonga Engine creates an instance of the handler class
Any error raised from the handler is handled by the Droonga Engine itself. See also [error handling][].


## Configurations {#config}
## 設定 {#config}

`action.synchronous` (boolean, optional, default=false)
: (TBD)
Expand Down
10 changes: 5 additions & 5 deletions ja/tutorial/plugin-development/handler/index.md
Expand Up @@ -212,7 +212,7 @@ The `Collectors::Sum` is one of built-in collectors.
It merges results returned from handler instances for each partition to one result.


### Activate the plugin with `catalog.json`
### `catalog.json`でプラグインを有効化する

Update catalog.json to activate this plugin.
Add `"count-records"` to `"plugins"`.
Expand All @@ -226,7 +226,7 @@ Add `"count-records"` to `"plugins"`.
(snip)
~~~

### Run and test
### 実行と動作を確認する

Let's get Droonga started.
Note that you need to specify ./lib directory in RUBYLIB environment variable in order to make ruby possible to find your plugin.
Expand Down Expand Up @@ -369,7 +369,7 @@ If the request is successfully processed, the `body` becomes `true`. Otherwise `
The `body` is just one boolean value, because we don't have to receive multiple results from partitions.


### Directory Structure
### ディレクトリの構造

Now let's create the `delete-stores` plugin, as the file `delete-stores.rb`. The directory tree will be:

Expand Down Expand Up @@ -470,7 +470,7 @@ The handler finds and deletes existing records which have the given keyword in i
And, the `Collectors::And` is bound to the step by the configuration `step.collector`.
It is is also one of built-in collectors, and merges boolean values returned from handler instances for each partition and replica, to one boolean value.

### Activate the plugin with `catalog.json`
### `catalog.json`でプラグインを有効化する

Update catalog.json to activate this plugin.
Add `"delete-stores"` to `"plugins"`.
Expand All @@ -484,7 +484,7 @@ Add `"delete-stores"` to `"plugins"`.
(snip)
~~~

### Run and test
### 実行と動作を確認する

Restart the Droonga Engine and send the request.

Expand Down

0 comments on commit 3aeb09b

Please sign in to comment.