diff --git a/aio/content/guide/accessibility.md b/aio/content/guide/accessibility.md index 97197fcb6a..1f78bb617e 100644 --- a/aio/content/guide/accessibility.md +++ b/aio/content/guide/accessibility.md @@ -68,7 +68,7 @@ NOTE: See the [Template Syntax](https://angular.io/guide/template-syntax#html-attribute-vs-dom-property) guide for more background on the difference between attributes and properties. - 有关 Attribute 和 Property 之间差异的更多背景信息,请参见[模板语法](https://angular.io/guide/template-syntax#html-attribute-vs-dom-property)一章。 + 有关 Attribute 和 Property 之间差异的更多背景信息,请参见[模板语法](https://angular.cn/guide/template-syntax#html-attribute-vs-dom-property)一章。 diff --git a/aio/content/guide/cli-builder.md b/aio/content/guide/cli-builder.md index a0ba67318c..f9ae881a29 100644 --- a/aio/content/guide/cli-builder.md +++ b/aio/content/guide/cli-builder.md @@ -83,7 +83,7 @@ For example, your `myBuilder` folder could contain the following files. You can publish the builder to `npm` (see [Publishing your Library](https://angular.io/guide/creating-libraries#publishing-your-library)). If you publish it as `@example/my-builder`, you can install it using the following command. -你可以把构建器发布到 `npm`(请参阅[发布你的库](https://angular.io/guide/creating-libraries#publishing-your-library))。如果把它发布成了 `@example/my-builder`,就可以使用下面的命令来安装它。 +你可以把构建器发布到 `npm`(请参阅[发布你的库](https://angular.cn/guide/creating-libraries#publishing-your-library))。如果把它发布成了 `@example/my-builder`,就可以使用下面的命令来安装它。 @@ -411,7 +411,7 @@ Let’s create a simple `angular.json` file that puts target configurations into We can publish the builder to npm (see [Publishing your Library](guide/creating-libraries#publishing-your-library)), and install it using the following command: -我们可以把这个构建器发布到 npm(请参阅[发布你的库](https://angular.io/guide/creating-libraries#publishing-your-library)),并使用如下命令来安装它: +我们可以把这个构建器发布到 npm(请参阅[发布你的库](https://angular.cn/guide/creating-libraries#publishing-your-library)),并使用如下命令来安装它: @@ -479,7 +479,7 @@ We need to update the `angular.json` file to add a target for this builder to th * The target named "touch" uses our builder, which we published to `@example/command-runner`. (See [Publishing your Library](guide/creating-libraries#publishing-your-library)) - 名为 `touch` 的目标使用了我们的构建器,它发布到了 `@example/command-runner`。(参见[发布你的库](https://angular.io/guide/creating-libraries#publishing-your-library) ) + 名为 `touch` 的目标使用了我们的构建器,它发布到了 `@example/command-runner`。(参见[发布你的库](https://angular.cn/guide/creating-libraries#publishing-your-library) ) * The options object provides default values for the two inputs that we defined; `command`, which is the Unix command to execute, and `args`, an array that contains the file to operate on. diff --git a/aio/content/guide/deployment.md b/aio/content/guide/deployment.md index 200827e18f..20fc058fdc 100644 --- a/aio/content/guide/deployment.md +++ b/aio/content/guide/deployment.md @@ -87,7 +87,7 @@ This method is for development and testing only, and is not a supported or secur The Angular CLI command `ng deploy` (introduced in version 8.3.0) executes the `deploy` [CLI builder](https://angular.io/guide/cli-builder) associated with your project. A number of third-party builders implement deployment capabilities to different platforms. You can add any of them to your project by running `ng add [package name]`. -Angular CLI 命令 `ng deploy`(在版本 8.3.0 中引入)执行与你的项目关联的 `deploy` [CLI 构建器](https://angular.io/guide/cli-builder)。有许多第三方构建器实现了到不同平台的部署功能。你可以通过运行 `ng add [package name]` 把它们中的任何一个添加到项目中。 +Angular CLI 命令 `ng deploy`(在版本 8.3.0 中引入)执行与你的项目关联的 `deploy` [CLI 构建器](https://angular.cn/guide/cli-builder)。有许多第三方构建器实现了到不同平台的部署功能。你可以通过运行 `ng add [package name]` 把它们中的任何一个添加到项目中。 When you add a package with deployment capability, it'll automatically update your workspace configuration (`angular.json` file) with a `deploy` section for the selected project. You can then use the `ng deploy` command to deploy that project. diff --git a/aio/content/guide/file-structure.md b/aio/content/guide/file-structure.md index 8511848e8e..0e7592e749 100644 --- a/aio/content/guide/file-structure.md +++ b/aio/content/guide/file-structure.md @@ -124,7 +124,7 @@ Files at the top level of `src/` support testing and running your application. S | `index.html` | The main HTML page that is served when someone visits your site. The CLI automatically adds all JavaScript and CSS files when building your app, so you typically don't need to add any `