Skip to content

Commit 1b7a2eb

Browse files
committed
translate pipeline/activate.md
1 parent 48945da commit 1b7a2eb

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

docs/ja/pipeline/activate.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
# `activate(transition) [-> Promise]`
22

3-
Called on an incoming component during the activation phase when it is created and about to get transitioned in.
3+
作成されて移行した時、活性化フェーズの間に入ってくるコンポーネントに呼び出されます。
44

5-
### Arguments
5+
### 引数
66

77
- [`transition {Transition}`](hooks.md#transition-object)
88

9-
Call `transition.next()` to resolve the hook. Note calling `transition.abort()` here will not take the app back to the previous route because the transition has already been validated.
9+
フックを解決するために `transition.next()` を呼び出します。ここで `transition.abort()` を呼び出すと、トランジションは既に検証されているため、アプリケーションは以前のルートへ戻りません。
1010

11-
### Return Value
11+
### 戻り値
1212

13-
- Optionally return a Promise.
13+
- 任意で Promise を返します。
1414
- `resolve` -> `transition.next()`
1515
- `reject(reason)` -> `transition.abort(reason)`
1616

17-
### Details
17+
### 詳細
1818

19-
In most cases this hook is used to control the timing of the view switching, because the view switching will not happen until this hook is resolved.
19+
ほとんどの場合、このフックは view の切り替えのタイミングで制御するために使用されます。view の切り替えはこのフックは解決されるまで起こりません。
2020

21-
This hook is called top-down. A child view's `activate` will only get called when its parent view's `activate` has been resolved.
21+
このフックはトップダウンで呼ばれます。子の view`activate` は親の view`activate` が解決された時にのみ呼び出されます。

0 commit comments

Comments
 (0)