diff --git a/aio/content/getting-started/index.md b/aio/content/getting-started/index.md
index 639a22c66e..af5ff30536 100644
--- a/aio/content/getting-started/index.md
+++ b/aio/content/getting-started/index.md
@@ -1,11 +1,19 @@
# Getting Started with Angular: Your First App
+# Angular 入门:你的第一个应用
+
+
Welcome to Angular!
+Angular 欢迎你!
+
+
This tutorial introduces you to the essentials of Angular.
It leverages what you already know about HTML and JavaScript—plus some useful Angular features—to build a simple online store application, with a catalog, shopping cart, and check-out form.
You don't need to install anything: you'll build the app using the [StackBlitz](https://stackblitz.com/ "StackBlitz web site") online development environment.
+本教程将向你介绍 Angular 的基本知识。它利用你已经知道的 HTML 和 JavaScript 以及一些有用的 Angular 特性来构建一个简单的在线商店应用,它具有商品名录、购物车和结账表单功能。你无需安装任何东西:你将使用 [StackBlitz](https://stackblitz.com/ "StackBlitz 网站") 在线开发环境来构建本应用。
+
@@ -13,6 +21,8 @@ You don't need to install anything: you'll build the app using the [StackBlitz](
You'll find many resources to complement the Angular docs. Mozilla's MDN docs include both [HTML](https://developer.mozilla.org/en-US/docs/Learn/HTML "Learning HTML: Guides and tutorials") and [JavaScript](https://developer.mozilla.org/en-US/docs/Web/JavaScript "JavaScript") introductions. [TypeScript's docs](https://www.typescriptlang.org/docs/home.html "TypeScript documentation") include a 5-minute tutorial. Various online course platforms, such as [Udemy](http://www.udemy.com "Udemy online courses") and [Codeacademy](https://www.codecademy.com/ "Codeacademy online courses"), also cover web development basics.
+你可以找到很多资源作为 Angular 文档的补充。Mozilla 的 MDN 文档同时包含了 [HTML](https://developer.mozilla.org/en-US/docs/Learn/HTML "学习 HTML:指南和教程") 和 [JavaScript 的](https://developer.mozilla.org/en-US/docs/Web/JavaScript "JavaScript") 介绍。[TypeScript 的文档](https://www.typescriptlang.org/docs/home.html "TypeScript 文档")中包含一个 5 分钟教程。各种在线课程平台,比如 [Udemy](http://www.udemy.com "Udemy 在线课程") 和 [Codeacademy](https://www.codecademy.com/ "Codeacademy 在线课程"),也涵盖了 Web 开发的一些基础知识。
+
@@ -21,6 +31,9 @@ You'll find many resources to complement the Angular docs. Mozilla's MDN docs in
{@a new-project}
## Create a new project
+## 创建一个新项目
+
+
Click here to create a new project in StackBlitz.
@@ -28,6 +41,9 @@ You'll find many resources to complement the Angular docs. Mozilla's MDN docs in
StackBlitz creates a starter Angular app.
We've seeded this particular app with a top bar—containing the store name and checkout icon—and the title for a product list.
+用 StackBlitz 创建一个入门级 Angular 应用。我们已经为这个应用添加了一个包含商店名称和结帐图标的顶栏,以及产品列表的标题。
+
+
@@ -41,15 +57,30 @@ We've seeded this particular app with a top bar—containing the store name
* Log into StackBlitz, so you can save and resume your work. If you have a GitHub account, you can log into StackBlitz with that account.
+
+ 登录 StackBlitz,就可以随时保存和恢复你的工作。如果你已经有了 GitHub 账号,也可以用该账号登录 StackBlitz。
+
* To copy a code example from this tutorial, click the icon at the top right of the code example box, and then paste the code snippet from the clipboard into StackBlitz.
+
+ 要复制本教程中的代码示例,请单击代码示例框右上角的图标,然后将剪贴板中的代码片段粘贴到 StackBlitz 中。
+
* If the StackBlitz preview pane isn't showing what you expect, save and then click the refresh button.
+
+ 如果 StackBlitz 预览窗格没有如你预期般显示出来,请保存并点击刷新按钮。
+
* StackBlitz is continually improving, so there may be slight differences in generated code, but the app's behavior will be the same.
+ StackBlitz 正在不断改进,因此生成的代码可能会略有不同,但应用的行为是一样的。
+
+
{@a template-syntax}
## Template syntax
+## 模板语法
+
+