Skip to content

Commit

Permalink
fix more non-localized slugs
Browse files Browse the repository at this point in the history
  • Loading branch information
sarah11918 committed Jun 12, 2024
1 parent 73a32a0 commit dc58339
Show file tree
Hide file tree
Showing 33 changed files with 33 additions and 33 deletions.
2 changes: 1 addition & 1 deletion src/content/docs/es/basics/project-structure.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ Es un archivo utilizado por los gestores de paquetes de JavaScript para administ

Hay [dos tipos de dependencias](https://docs.npmjs.com/specifying-dependencies-and-devdependencies-in-a-package-json-file) que puedes especificar en `package.json`: `dependencies` (dependencias) y `devDependencies` (dependencias de desarrollo). En la mayoría de los casos, estas funcionan de la misma manera: Astro necesita todas las dependencias al hacer *build*, y tu gestor de paquetes instalará ambos. Recomendamos poner todas tus dependencias en `dependencies` para comenzar, y solo usar `devDependencies` si encuentras la necesidad de hacerlo.

Para obtener ayuda sobre crear un nuevo archivo `package.json` para tu proyecto, consulta las instrucciones en [instalación manual](/es/install-and-setup/#configuración-manual/).
Para obtener ayuda sobre crear un nuevo archivo `package.json` para tu proyecto, consulta las instrucciones en [instalación manual](/es/install-and-setup/#configuración-manual).

### `astro.config.mjs`

Expand Down
2 changes: 1 addition & 1 deletion src/content/docs/es/reference/cli-reference.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ También puedes usar scripts en el `package.json` para versiones más cortas de

El siguiente script para los comandos más comunes de `astro` (`astro dev`, `astro build` y `astro preview`) se agrega automáticamente cuando creas un proyecto usando [el asistente `create astro`](/es/install-and-setup/).

Cuando sigues las instrucciones para [instalar Astro manualmente](/es/install-and-setup/#configuración-manual/), se te indica que agregues estos scripts tú mismo. También puedes agregar más scripts a esta lista manualmente para cualquier comando que uses con frecuencia.
Cuando sigues las instrucciones para [instalar Astro manualmente](/es/install-and-setup/#configuración-manual), se te indica que agregues estos scripts tú mismo. También puedes agregar más scripts a esta lista manualmente para cualquier comando que uses con frecuencia.

```json title="package.json"
{
Expand Down
2 changes: 1 addition & 1 deletion src/content/docs/ko/basics/project-structure.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ JavaScript 패키지 관리자가 종속성을 관리하는 데 사용하는 파

`dependencies``devDependencies``package.json` 파일에서 설정할 수 있는 [두 종류의 종속성](https://docs.npmjs.com/specifying-dependencies-and-devdependencies-in-a-package-json-file)입니다. 대부분의 경우 이는 동일하게 작동합니다. Astro는 빌드 시 모든 종속성을 필요로 하며 패키지 관리자는 두 종류의 종속성을 모두 설치합니다. 프로젝트를 시작하기 위해 모든 종속성을 `dependencies`에 두고, 특정 요구 사항이 있는 경우에만 `devDependencies`를 사용하는 것을 권장합니다.

프로젝트에 새 `package.json` 파일을 생성하는 데 도움이 필요하면 [수동 설치](/ko/install-and-setup/#manual-setup)를 확인하세요.
프로젝트에 새 `package.json` 파일을 생성하는 데 도움이 필요하면 [수동 설치](/ko/install-and-setup/#수동-설정)를 확인하세요.

### `astro.config.mjs`

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Astro에서 Docusaurus 사이트를 다시 구축하면 몇 가지 중요한 차

Docusaurus 문서 사이트를 Astro로 변환하려면 공식 [Starlight 문서 테마 시작 템플릿](https://starlight.astro.build/ko)으로 시작하거나 [테마 쇼케이스](https://astro.build/themes?search=&categories%5B%5D=docs)에서 더 많은 커뮤니티 문서 테마를 탐색하세요.

`create astro` 명령에 `--template` 인수를 전달하여 공식 스타터 중 하나를 사용하여 새 Astro 프로젝트를 시작할 수 있습니다. 또는 [GitHub의 기존 Astro 저장소에서 새 프로젝트를 시작](/ko/install-and-setup/#use-a-theme-or-starter-template)할 수 있습니다.
`create astro` 명령에 `--template` 인수를 전달하여 공식 스타터 중 하나를 사용하여 새 Astro 프로젝트를 시작할 수 있습니다. 또는 [GitHub의 기존 Astro 저장소에서 새 프로젝트를 시작](/ko/install-and-setup/#테마-또는-시작-템플릿-사용)할 수 있습니다.

<PackageManagerTabs>
<Fragment slot="npm">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Astro에서 Eleventy (11ty) 사이트를 재빌드하면 몇 가지 중요한

Eleventy 블로그를 Astro로 변환하려면 블로그 테마 시작 템플릿으로 시작하거나 [테마 쇼케이스](https://astro.build/themes/)에서 더 많은 커뮤니티 블로그 테마를 탐색하세요.

공식 스타터 중 하나를 사용하여 새로운 Astro 프로젝트를 시작하려면 `--template` 인수를 `create astro` 명령에 전달할 수 있습니다. 또는 [GitHub의 기존 Astro 저장소에서 새 프로젝트를 시작](/ko/install-and-setup/#use-a-theme-or-starter-template)할 수 있습니다.
공식 스타터 중 하나를 사용하여 새로운 Astro 프로젝트를 시작하려면 `--template` 인수를 `create astro` 명령에 전달할 수 있습니다. 또는 [GitHub의 기존 Astro 저장소에서 새 프로젝트를 시작](/ko/install-and-setup/#테마-또는-시작-템플릿-사용)할 수 있습니다.

<PackageManagerTabs>
<Fragment slot="npm">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Astro에서 Gatsby 사이트를 다시 빌드하면 몇 가지 중요한 차이

패키지 관리자의 `create astro` 명령을 사용하여 Astro의 CLI 마법사를 시작하거나 [Astro 테마 쇼케이스](https://astro.build/themes)에서 커뮤니티 테마를 선택하세요.

`create astro` 명령에 `--template` 인수를 전달하여 공식 스타터 (예: `docs`, `blog`, `portfolio`) 중 하나를 사용하여 새 Astro 프로젝트를 시작할 수 있습니다. 또는 [GitHub의 기존 Astro 저장소에서 새 프로젝트를 시작](/ko/install-and-setup/#use-a-theme-or-starter-template)할 수 있습니다.
`create astro` 명령에 `--template` 인수를 전달하여 공식 스타터 (예: `docs`, `blog`, `portfolio`) 중 하나를 사용하여 새 Astro 프로젝트를 시작할 수 있습니다. 또는 [GitHub의 기존 Astro 저장소에서 새 프로젝트를 시작](/ko/install-and-setup/#테마-또는-시작-템플릿-사용)할 수 있습니다.

<PackageManagerTabs>
<Fragment slot="npm">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ GitBook 문서를 Astro로 마이그레이션하면 몇 가지 중요한 차이

GitBook 문서 사이트를 Astro로 변환하려면 공식 [Starlight 문서 테마 시작 템플릿](https://starlight.astro.build)으로 시작하거나 [테마 쇼케이스](https://astro.build/themes?search=&categories%5B%5D=docs)에서 더 많은 커뮤니티 문서 테마를 탐색하세요.

공식 스타터 중 하나를 사용하여 새로운 Astro 프로젝트를 시작하려면 `--template` 인수를 `create astro` 명령에 전달할 수 있습니다. 또는 [GitHub의 기존 Astro 저장소에서 새 프로젝트를 시작](/ko/install-and-setup/#use-a-theme-or-starter-template)할 수 있습니다.
공식 스타터 중 하나를 사용하여 새로운 Astro 프로젝트를 시작하려면 `--template` 인수를 `create astro` 명령에 전달할 수 있습니다. 또는 [GitHub의 기존 Astro 저장소에서 새 프로젝트를 시작](/ko/install-and-setup/#테마-또는-시작-템플릿-사용)할 수 있습니다.

<PackageManagerTabs>
<Fragment slot="npm">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Astro에서 Gridsome 사이트를 다시 구축하면 몇 가지 중요한 차

Gridsome 블로그를 Astro로 변환하려면 블로그 테마 시작 템플릿으로 시작하거나 [테마 쇼케이스](https://astro.build/themes/)에서 더 많은 커뮤니티 블로그 테마를 탐색하세요.

공식 스타터 중 하나를 사용하여 새로운 Astro 프로젝트를 시작하려면 `--template` 인수를 `create astro` 명령에 전달할 수 있습니다. 또는 [GitHub의 기존 Astro 저장소에서 새 프로젝트를 시작](/ko/install-and-setup/#use-a-theme-or-starter-template)할 수 있습니다.
공식 스타터 중 하나를 사용하여 새로운 Astro 프로젝트를 시작하려면 `--template` 인수를 `create astro` 명령에 전달할 수 있습니다. 또는 [GitHub의 기존 Astro 저장소에서 새 프로젝트를 시작](/ko/install-and-setup/#테마-또는-시작-템플릿-사용)할 수 있습니다.

<PackageManagerTabs>
<Fragment slot="npm">
Expand Down
2 changes: 1 addition & 1 deletion src/content/docs/ko/guides/migrate-to-astro/from-hugo.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Astro에서 Hugo 사이트를 다시 구축하면 다음과 같은 몇 가지

Hugo 블로그를 Astro로 변환하려면 블로그 테마 시작 템플릿으로 시작하거나 [테마 쇼케이스](https://astro.build/themes/)에서 더 많은 커뮤니티 블로그 테마를 탐색하세요.

공식 스타터 중 하나를 사용하여 새로운 Astro 프로젝트를 시작하려면 `--template` 인수를 `create astro` 명령에 전달할 수 있습니다. 또는 [GitHub의 기존 Astro 저장소에서 새 프로젝트를 시작](/ko/install-and-setup/#use-a-theme-or-starter-template)할 수 있습니다.
공식 스타터 중 하나를 사용하여 새로운 Astro 프로젝트를 시작하려면 `--template` 인수를 `create astro` 명령에 전달할 수 있습니다. 또는 [GitHub의 기존 Astro 저장소에서 새 프로젝트를 시작](/ko/install-and-setup/#테마-또는-시작-템플릿-사용)할 수 있습니다.

<PackageManagerTabs>
<Fragment slot="npm">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Astro에서 Jekyll 사이트를 다시 구축하면 몇 가지 중요한 차이

Jekyll 블로그를 Astro로 변환하려면 블로그 테마 시작 템플릿으로 시작하거나 [테마 쇼케이스](https://astro.build/themes/)에서 더 많은 커뮤니티 블로그 테마를 탐색하세요.

공식 스타터 중 하나를 사용하여 새로운 Astro 프로젝트를 시작하려면 `--template` 인수를 `create astro` 명령에 전달할 수 있습니다. 또는 [GitHub의 기존 Astro 저장소에서 새 프로젝트를 시작](/ko/install-and-setup/#use-a-theme-or-starter-template)할 수 있습니다.
공식 스타터 중 하나를 사용하여 새로운 Astro 프로젝트를 시작하려면 `--template` 인수를 `create astro` 명령에 전달할 수 있습니다. 또는 [GitHub의 기존 Astro 저장소에서 새 프로젝트를 시작](/ko/install-and-setup/#테마-또는-시작-템플릿-사용)할 수 있습니다.

<PackageManagerTabs>
<Fragment slot="npm">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Astro에서 Next.js 사이트를 다시 빌드하면 몇 가지 중요한 차이

패키지 관리자의 `create astro` 명령을 사용하여 Astro의 CLI 마법사를 시작하거나 [Astro 테마 쇼케이스](https://astro.build/themes)에서 커뮤니티 테마를 선택하세요.

`create astro` 명령에 `--template` 인수를 전달하여 공식 스타터 (예: `docs`, `blog`, `portfolio`) 중 하나를 사용하여 새 Astro 프로젝트를 시작할 수 있습니다. 또는 [GitHub의 기존 Astro 저장소에서 새 프로젝트를 시작](/ko/install-and-setup/#use-a-theme-or-starter-template)할 수 있습니다.
`create astro` 명령에 `--template` 인수를 전달하여 공식 스타터 (예: `docs`, `blog`, `portfolio`) 중 하나를 사용하여 새 Astro 프로젝트를 시작할 수 있습니다. 또는 [GitHub의 기존 Astro 저장소에서 새 프로젝트를 시작](/ko/install-and-setup/#테마-또는-시작-템플릿-사용)할 수 있습니다.

<PackageManagerTabs>
<Fragment slot="npm">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Astro에서 Nuxt 사이트를 재빌드하면 몇 가지 중요한 차이점을

패키지 관리자의 `create astro` 명령을 사용하여 Astro의 CLI 마법사를 시작하거나 [Astro 테마 쇼케이스](https://astro.build/themes)에서 커뮤니티 테마를 선택하세요.

`create astro` 명령에 `--template` 인수를 전달하여 공식 스타터 (예: `docs`, `blog`, `portfolio`) 중 하나를 사용하여 새 Astro 프로젝트를 시작할 수 있습니다. 또는 [GitHub의 기존 Astro 저장소에서 새 프로젝트를 시작](/ko/install-and-setup/#use-a-theme-or-starter-template)할 수 있습니다.
`create astro` 명령에 `--template` 인수를 전달하여 공식 스타터 (예: `docs`, `blog`, `portfolio`) 중 하나를 사용하여 새 Astro 프로젝트를 시작할 수 있습니다. 또는 [GitHub의 기존 Astro 저장소에서 새 프로젝트를 시작](/ko/install-and-setup/#테마-또는-시작-템플릿-사용)할 수 있습니다.

<PackageManagerTabs>
<Fragment slot="npm">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Astro에서 Pelican 사이트를 다시 빌드하면 몇 가지 중요한 차이

Pelican 문서 사이트를 Astro로 변환하려면 공식 [Starlight 문서 테마 시작 템플릿](https://starlight.astro.build)으로 시작하거나 [테마 쇼케이스](https://astro.build/themes/)에서 더 많은 커뮤니티 테마를 탐색하세요.

공식 스타터 중 하나를 사용하여 새로운 Astro 프로젝트를 시작하려면 `--template` 인수를 `create astro` 명령에 전달할 수 있습니다. 또는 [GitHub의 기존 Astro 저장소에서 새 프로젝트를 시작](/ko/install-and-setup/#use-a-theme-or-starter-template)할 수 있습니다.
공식 스타터 중 하나를 사용하여 새로운 Astro 프로젝트를 시작하려면 `--template` 인수를 `create astro` 명령에 전달할 수 있습니다. 또는 [GitHub의 기존 Astro 저장소에서 새 프로젝트를 시작](/ko/install-and-setup/#테마-또는-시작-템플릿-사용)할 수 있습니다.

<PackageManagerTabs>
<Fragment slot="npm">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Astro에서 SvelteKit 사이트를 다시 구축하면 몇 가지 중요한 차

SvelteKit 블로그를 Astro로 변환하려면 블로그 테마 시작 템플릿으로 시작하거나 [테마 쇼케이스](https://astro.build/themes/)에서 더 많은 커뮤니티 블로그 테마를 탐색하세요.

공식 스타터 중 하나를 사용하여 새로운 Astro 프로젝트를 시작하려면 `--template` 인수를 `create astro` 명령에 전달할 수 있습니다. 또는 [GitHub의 기존 Astro 저장소에서 새 프로젝트를 시작](/ko/install-and-setup/#use-a-theme-or-starter-template)할 수 있습니다.
공식 스타터 중 하나를 사용하여 새로운 Astro 프로젝트를 시작하려면 `--template` 인수를 `create astro` 명령에 전달할 수 있습니다. 또는 [GitHub의 기존 Astro 저장소에서 새 프로젝트를 시작](/ko/install-and-setup/#테마-또는-시작-템플릿-사용)할 수 있습니다.

<PackageManagerTabs>
<Fragment slot="npm">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Astro에서 VuePress 사이트를 다시 구축하면 몇 가지 중요한 차

VuePress 문서 사이트를 Astro로 변환하려면 공식 [Starlight 문서 테마 시작 템플릿](https://starlight.astro.build)으로 시작하거나 [테마 쇼케이스](https://astro.build/themes?search=&categories%5B%5D=docs)에서 더 많은 커뮤니티 문서 테마를 탐색하세요.

공식 스타터 중 하나를 사용하여 새로운 Astro 프로젝트를 시작하려면 `--template` 인수를 `create astro` 명령에 전달할 수 있습니다. 또는 [GitHub의 기존 Astro 저장소에서 새 프로젝트를 시작](/ko/install-and-setup/#use-a-theme-or-starter-template)할 수 있습니다.
공식 스타터 중 하나를 사용하여 새로운 Astro 프로젝트를 시작하려면 `--template` 인수를 `create astro` 명령에 전달할 수 있습니다. 또는 [GitHub의 기존 Astro 저장소에서 새 프로젝트를 시작](/ko/install-and-setup/#테마-또는-시작-템플릿-사용)할 수 있습니다.

<PackageManagerTabs>
<Fragment slot="npm">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Astro에서 WordPress 사이트를 다시 빌드하면 몇 가지 중요한 차

WordPress 블로그를 Astro로 변환하려면 블로그 테마 시작 템플릿으로 시작하거나 [테마 쇼케이스](https://astro.build/themes)에서 더 많은 커뮤니티 블로그 테마를 탐색하세요.

공식 스타터 중 하나를 사용하여 새로운 Astro 프로젝트를 시작하려면 `--template` 인수를 `create astro` 명령에 전달할 수 있습니다. 또는 [GitHub의 기존 Astro 저장소에서 새 프로젝트를 시작](/ko/install-and-setup/#use-a-theme-or-starter-template)할 수 있습니다.
공식 스타터 중 하나를 사용하여 새로운 Astro 프로젝트를 시작하려면 `--template` 인수를 `create astro` 명령에 전달할 수 있습니다. 또는 [GitHub의 기존 Astro 저장소에서 새 프로젝트를 시작](/ko/install-and-setup/#테마-또는-시작-템플릿-사용)할 수 있습니다.

<PackageManagerTabs>
<Fragment slot="npm">
Expand Down
2 changes: 1 addition & 1 deletion src/content/docs/ko/recipes/bun.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Bun을 사용하면서 문제를 발견했다면, [Github의 Bun 공식 저장
bunx create-astro@latest my-astro-project-using-bun
```
:::tip
또한 `--template` 플래그를 사용하여, [기존에 존재하던 다른 Astro Github 저장소로부터 새 Astro 프로젝트를 생성할 수도 있습니다.](/ko/install-and-setup/#use-a-theme-or-starter-template)
또한 `--template` 플래그를 사용하여, [기존에 존재하던 다른 Astro Github 저장소로부터 새 Astro 프로젝트를 생성할 수도 있습니다.](/ko/install-and-setup/#테마-또는-시작-템플릿-사용)
```bash
bunx create-astro@latest my-astro-project-using-bun --template eliancodes/brutal
```
Expand Down
2 changes: 1 addition & 1 deletion src/content/docs/ko/reference/cli-reference.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ Global Flags

가장 일반적인 `astro` 명령 (`astro dev`, `astro build`, `astro preview`)에 대한 다음 스크립트는 [`create astro` 마법사](/ko/install-and-setup/) 를 사용하여 프로젝트를 생성할 때 자동으로 추가됩니다.

[Astro 수동 설치](/ko/install-and-setup/#manual-setup) 지침을 따르면 이러한 스크립트를 직접 추가하라는 메시지가 표시됩니다. 자주 사용하는 명령에 대해 수동으로 이 목록에 더 많은 스크립트를 추가할 수도 있습니다.
[Astro 수동 설치](/ko/install-and-setup/#수동-설정) 지침을 따르면 이러한 스크립트를 직접 추가하라는 메시지가 표시됩니다. 자주 사용하는 명령에 대해 수동으로 이 목록에 더 많은 스크립트를 추가할 수도 있습니다.

```json title="package.json"
{
Expand Down
2 changes: 1 addition & 1 deletion src/content/docs/zh-cn/basics/project-structure.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ JavaScript 包管理器用它来管理依赖关系。它也定义了通常用于

`package.json` 中可以指定[两种依赖关系](https://docs.npmjs.com/specifying-dependencies-and-devdependencies-in-a-package-json-file)`dependencies``devDependencies`。在大多数情况下它们效果一样,Astro 在构建时需要所有依赖,而你的包管理器则会同时安装这两种依赖。我们建议把所有的依赖项放在 `dependencies` 中,只有在你发现有特殊需要后,再使用 `devDependencies`

如果想要为你的项目创建新的 `package.json` 文件时遇到困难,请查看[手动设置](/zh-cn/install-and-setup/#manual-setup)中的说明。
如果想要为你的项目创建新的 `package.json` 文件时遇到困难,请查看[手动设置](/zh-cn/install-and-setup/#手动设置)中的说明。

### `astro.config.mjs`

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Docusaurus 和 Astro 之间有一些相似之处,这将有助于你迁移你

要把一个 Docusaurus 文档站点转换为 Astro,首先使用我们的官方 [Starlight 文档主题启动模板](https://starlight.astro.build),或者在我们的[主题展示](https://astro.build/themes?search=&categories%5B%5D=docs)中探索更多社区文档主题。

你可以向`create astro`命令传递一个`--template`参数,以一个我们的官方启动器开始一个新的 Astro 项目。或者,你可以[从 GitHub 上任何现有的 Astro 存储库开始一个新项目](/zh-cn/install-and-setup/#use-a-theme-or-starter-template)
你可以向`create astro`命令传递一个`--template`参数,以一个我们的官方启动器开始一个新的 Astro 项目。或者,你可以[从 GitHub 上任何现有的 Astro 存储库开始一个新项目](/zh-cn/install-and-setup/#使用主题或起始模板)

<PackageManagerTabs>
<Fragment slot="npm">
Expand Down
Loading

0 comments on commit dc58339

Please sign in to comment.