Skip to content

Commit

Permalink
i18n(zh-cn): Update dev-toolbar.mdx
Browse files Browse the repository at this point in the history
  • Loading branch information
Nin3lee authored Dec 23, 2024
1 parent c6b1555 commit ccba373
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/content/docs/zh-cn/guides/dev-toolbar.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import RecipeLinks from "~/components/RecipeLinks.astro";

当开发服务器运行时,Astro 会在你本地浏览器预览的每个页面底部包含一个开发者工具栏。

此工具栏包含许多有用的工具,用于在开发过程中调试和检查你的网站,并且可以在集成目录中找到[更多开发者工具栏应用](#扩展开发工具栏)进行扩展。你甚至可以使用 [开发者工具栏 API](/zh-cn/reference/dev-toolbar-app-reference/) [构建你自己的工具栏应用](/zh-cn/recipes/making-toolbar-apps/)
此工具栏包含许多有用的工具,用于在开发过程中调试和检查你的网站,并且可以在集成目录中找到 [更多开发者工具栏应用](#扩展开发工具栏) 进行扩展。你甚至可以使用 [开发者工具栏 API](/zh-cn/reference/dev-toolbar-app-reference/) [构建你自己的工具栏应用](/zh-cn/recipes/making-toolbar-apps/)

此工具栏默认启用,并在你将鼠标悬停在页面底部时出现。它仅是一个开发工具,并不会在你的发布网站上出现。

Expand All @@ -21,7 +21,7 @@ Astro Menu 应用提供了便捷的方式来访问当前项目的各种信息和

### Inspect

Inspect 应用提供了当前页面上任何[群岛结构](/zh-cn/concepts/islands/)的信息。这将向你展示传递给每个群岛的属性,以及用于渲染它们的客户端指令。
Inspect 应用提供了当前页面上任何 [群岛架构](/zh-cn/concepts/islands/) 的信息。这将向你展示传递给每个群岛的属性,以及用于渲染它们的客户端指令。

### Audit

Expand All @@ -39,7 +39,7 @@ Settings 应用程序允许你为开发工具栏配置选项,例如详细日

## 扩展开发工具栏

Astro 集成可以向开发工具栏添加新的应用,允许你使用特定于你的项目的自定义工具来扩展它。你可以在[集成目录中找到更多开发工具应用进行安装](https://astro.build/integrations/?search=&categories%5B%5D=toolbar)或使用 [Astro Menu](#astro-menu)
Astro 集成可以向开发工具栏添加新的应用,允许你使用特定于你的项目的自定义工具来扩展它。你可以在 [集成目录中找到更多开发工具应用进行安装](https://astro.build/integrations/?search=&categories%5B%5D=toolbar) 或使用 [Astro Menu](#astro-menu)

根据各自的安装说明,像安装任何其他 [Astro 集成](/zh-cn/guides/integrations-guide/) 一样,在你的项目中安装额外的开发工具栏应用集成。

Expand All @@ -51,7 +51,7 @@ Astro 集成可以向开发工具栏添加新的应用,允许你使用特定

### 按项目

要为在项目中工作的每个人禁用开发者工具栏,请在 [Astro 配置文件](/zh-cn/reference/configuration-reference/#devtoolbarenabled)中设置 `devToolbar: false`
要为在项目中工作的每个人禁用开发者工具栏,请在 [Astro 配置文件](/zh-cn/reference/configuration-reference/#devtoolbarenabled) 中设置 `devToolbar: false`

```js title="astro.config.mjs" ins={4-6}
import { defineConfig } from "astro/config";
Expand Down Expand Up @@ -83,4 +83,4 @@ astro preferences disable --global devToolbar

```shell
astro preferences enable devToolbar
```
```

0 comments on commit ccba373

Please sign in to comment.