diff --git a/public/docs/ts/latest/tutorial/toh-pt5.jade b/public/docs/ts/latest/tutorial/toh-pt5.jade index c6739720ce..74761a5c2a 100644 --- a/public/docs/ts/latest/tutorial/toh-pt5.jade +++ b/public/docs/ts/latest/tutorial/toh-pt5.jade @@ -10,12 +10,16 @@ block includes :marked We received new requirements for our Tour of Heroes application: - 我们收到了一份《英雄指南》的新需求: + 我们收到了《英雄指南》的一些新需求: * Add a *Dashboard* view. - * 添加一个*控制台*视图。 + + * 添加一个*仪表盘*视图。 + * Navigate between the *Heroes* and *Dashboard* views. - * 在*英雄列表*和*控制台*视图之间导航。 + + * 在*英雄列表*和*仪表盘*视图之间导航。 + * Clicking on a hero in either view navigates to a detail view of the selected hero. * 无论在哪个视图中点击一个英雄,都会导航到该英雄的详情页。 * Clicking a *deep link* in an email opens the detail view for a particular hero. @@ -59,7 +63,7 @@ figure.image-display :marked ## Where We Left Off - ## 我们在哪 + ## 延续上一步教程 Before we continue with our Tour of Heroes, let’s verify that we have the following structure after adding our hero service @@ -128,11 +132,11 @@ block keep-app-running * Create a new `DashboardComponent` - * 添加一个新的`DashboardComponent`组件 + * 创建一个新的`DashboardComponent`组件 * Tie the *Dashboard* into the navigation structure - * 把*控制台*加入导航结构中。 + * 把*仪表盘*加入导航结构中。 .l-sub-section :marked @@ -153,7 +157,7 @@ block keep-app-running Our revised app should present a shell with a choice of views (*Dashboard* and *Heroes*) and then default to one of them. - 我们修改后的应用将提供一个壳,它会选择*控制台*和*英雄列表*视图之一,然后默认显示它。 + 我们修改后的应用将提供一个壳,它会选择*仪表盘*和*英雄列表*视图之一,然后默认显示它。 The `AppComponent` should only handle navigation. Let's move the display of *Heroes* out of `AppComponent` and into its own `HeroesComponent`. @@ -229,11 +233,11 @@ block keep-app-running * `@Component` template `