From dc583398d44546ce5f795b62e5b2dd482298842c Mon Sep 17 00:00:00 2001 From: Sarah Rainsberger Date: Wed, 12 Jun 2024 21:26:09 +0000 Subject: [PATCH] fix more non-localized slugs --- src/content/docs/es/basics/project-structure.mdx | 2 +- src/content/docs/es/reference/cli-reference.mdx | 2 +- src/content/docs/ko/basics/project-structure.mdx | 2 +- src/content/docs/ko/guides/migrate-to-astro/from-docusaurus.mdx | 2 +- src/content/docs/ko/guides/migrate-to-astro/from-eleventy.mdx | 2 +- src/content/docs/ko/guides/migrate-to-astro/from-gatsby.mdx | 2 +- src/content/docs/ko/guides/migrate-to-astro/from-gitbook.mdx | 2 +- src/content/docs/ko/guides/migrate-to-astro/from-gridsome.mdx | 2 +- src/content/docs/ko/guides/migrate-to-astro/from-hugo.mdx | 2 +- src/content/docs/ko/guides/migrate-to-astro/from-jekyll.mdx | 2 +- src/content/docs/ko/guides/migrate-to-astro/from-nextjs.mdx | 2 +- src/content/docs/ko/guides/migrate-to-astro/from-nuxtjs.mdx | 2 +- src/content/docs/ko/guides/migrate-to-astro/from-pelican.mdx | 2 +- src/content/docs/ko/guides/migrate-to-astro/from-sveltekit.mdx | 2 +- src/content/docs/ko/guides/migrate-to-astro/from-vuepress.mdx | 2 +- src/content/docs/ko/guides/migrate-to-astro/from-wordpress.mdx | 2 +- src/content/docs/ko/recipes/bun.mdx | 2 +- src/content/docs/ko/reference/cli-reference.mdx | 2 +- src/content/docs/zh-cn/basics/project-structure.mdx | 2 +- .../docs/zh-cn/guides/migrate-to-astro/from-docusaurus.mdx | 2 +- .../docs/zh-cn/guides/migrate-to-astro/from-eleventy.mdx | 2 +- src/content/docs/zh-cn/guides/migrate-to-astro/from-gatsby.mdx | 2 +- src/content/docs/zh-cn/guides/migrate-to-astro/from-gitbook.mdx | 2 +- .../docs/zh-cn/guides/migrate-to-astro/from-gridsome.mdx | 2 +- src/content/docs/zh-cn/guides/migrate-to-astro/from-hugo.mdx | 2 +- src/content/docs/zh-cn/guides/migrate-to-astro/from-jekyll.mdx | 2 +- src/content/docs/zh-cn/guides/migrate-to-astro/from-nextjs.mdx | 2 +- src/content/docs/zh-cn/guides/migrate-to-astro/from-nuxtjs.mdx | 2 +- src/content/docs/zh-cn/guides/migrate-to-astro/from-pelican.mdx | 2 +- .../docs/zh-cn/guides/migrate-to-astro/from-sveltekit.mdx | 2 +- .../docs/zh-cn/guides/migrate-to-astro/from-vuepress.mdx | 2 +- .../docs/zh-cn/guides/migrate-to-astro/from-wordpress.mdx | 2 +- src/content/docs/zh-cn/reference/cli-reference.mdx | 2 +- 33 files changed, 33 insertions(+), 33 deletions(-) diff --git a/src/content/docs/es/basics/project-structure.mdx b/src/content/docs/es/basics/project-structure.mdx index 4e6d1febccc80..af189247669af 100644 --- a/src/content/docs/es/basics/project-structure.mdx +++ b/src/content/docs/es/basics/project-structure.mdx @@ -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` diff --git a/src/content/docs/es/reference/cli-reference.mdx b/src/content/docs/es/reference/cli-reference.mdx index 123aba8ad441f..aaff50bd0e8ca 100644 --- a/src/content/docs/es/reference/cli-reference.mdx +++ b/src/content/docs/es/reference/cli-reference.mdx @@ -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" { diff --git a/src/content/docs/ko/basics/project-structure.mdx b/src/content/docs/ko/basics/project-structure.mdx index 930df13ef9003..f274400f806d0 100644 --- a/src/content/docs/ko/basics/project-structure.mdx +++ b/src/content/docs/ko/basics/project-structure.mdx @@ -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` diff --git a/src/content/docs/ko/guides/migrate-to-astro/from-docusaurus.mdx b/src/content/docs/ko/guides/migrate-to-astro/from-docusaurus.mdx index d9328dfd9930c..30b76cfb9bcd4 100644 --- a/src/content/docs/ko/guides/migrate-to-astro/from-docusaurus.mdx +++ b/src/content/docs/ko/guides/migrate-to-astro/from-docusaurus.mdx @@ -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/#테마-또는-시작-템플릿-사용)할 수 있습니다. diff --git a/src/content/docs/ko/guides/migrate-to-astro/from-eleventy.mdx b/src/content/docs/ko/guides/migrate-to-astro/from-eleventy.mdx index 2bcd065acf296..3eb93816b74ae 100644 --- a/src/content/docs/ko/guides/migrate-to-astro/from-eleventy.mdx +++ b/src/content/docs/ko/guides/migrate-to-astro/from-eleventy.mdx @@ -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/#테마-또는-시작-템플릿-사용)할 수 있습니다. diff --git a/src/content/docs/ko/guides/migrate-to-astro/from-gatsby.mdx b/src/content/docs/ko/guides/migrate-to-astro/from-gatsby.mdx index 9879bd333798c..7aa7382c445de 100644 --- a/src/content/docs/ko/guides/migrate-to-astro/from-gatsby.mdx +++ b/src/content/docs/ko/guides/migrate-to-astro/from-gatsby.mdx @@ -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/#테마-또는-시작-템플릿-사용)할 수 있습니다. diff --git a/src/content/docs/ko/guides/migrate-to-astro/from-gitbook.mdx b/src/content/docs/ko/guides/migrate-to-astro/from-gitbook.mdx index 04de43092a328..f6a448082f21b 100644 --- a/src/content/docs/ko/guides/migrate-to-astro/from-gitbook.mdx +++ b/src/content/docs/ko/guides/migrate-to-astro/from-gitbook.mdx @@ -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/#테마-또는-시작-템플릿-사용)할 수 있습니다. diff --git a/src/content/docs/ko/guides/migrate-to-astro/from-gridsome.mdx b/src/content/docs/ko/guides/migrate-to-astro/from-gridsome.mdx index aeb0a715f9cb2..681b41b08fbbc 100644 --- a/src/content/docs/ko/guides/migrate-to-astro/from-gridsome.mdx +++ b/src/content/docs/ko/guides/migrate-to-astro/from-gridsome.mdx @@ -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/#테마-또는-시작-템플릿-사용)할 수 있습니다. diff --git a/src/content/docs/ko/guides/migrate-to-astro/from-hugo.mdx b/src/content/docs/ko/guides/migrate-to-astro/from-hugo.mdx index ba57b21cb5ce7..888756a5f9ef9 100644 --- a/src/content/docs/ko/guides/migrate-to-astro/from-hugo.mdx +++ b/src/content/docs/ko/guides/migrate-to-astro/from-hugo.mdx @@ -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/#테마-또는-시작-템플릿-사용)할 수 있습니다. diff --git a/src/content/docs/ko/guides/migrate-to-astro/from-jekyll.mdx b/src/content/docs/ko/guides/migrate-to-astro/from-jekyll.mdx index e7a9cc64510d2..c92c5c1532f18 100644 --- a/src/content/docs/ko/guides/migrate-to-astro/from-jekyll.mdx +++ b/src/content/docs/ko/guides/migrate-to-astro/from-jekyll.mdx @@ -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/#테마-또는-시작-템플릿-사용)할 수 있습니다. diff --git a/src/content/docs/ko/guides/migrate-to-astro/from-nextjs.mdx b/src/content/docs/ko/guides/migrate-to-astro/from-nextjs.mdx index 57d5fea57dde1..cd8c0fa7ab758 100644 --- a/src/content/docs/ko/guides/migrate-to-astro/from-nextjs.mdx +++ b/src/content/docs/ko/guides/migrate-to-astro/from-nextjs.mdx @@ -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/#테마-또는-시작-템플릿-사용)할 수 있습니다. diff --git a/src/content/docs/ko/guides/migrate-to-astro/from-nuxtjs.mdx b/src/content/docs/ko/guides/migrate-to-astro/from-nuxtjs.mdx index 3bd1d28f262b6..708cbc3bac090 100644 --- a/src/content/docs/ko/guides/migrate-to-astro/from-nuxtjs.mdx +++ b/src/content/docs/ko/guides/migrate-to-astro/from-nuxtjs.mdx @@ -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/#테마-또는-시작-템플릿-사용)할 수 있습니다. diff --git a/src/content/docs/ko/guides/migrate-to-astro/from-pelican.mdx b/src/content/docs/ko/guides/migrate-to-astro/from-pelican.mdx index cf38aac3fc922..432f5a3f4fe79 100644 --- a/src/content/docs/ko/guides/migrate-to-astro/from-pelican.mdx +++ b/src/content/docs/ko/guides/migrate-to-astro/from-pelican.mdx @@ -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/#테마-또는-시작-템플릿-사용)할 수 있습니다. diff --git a/src/content/docs/ko/guides/migrate-to-astro/from-sveltekit.mdx b/src/content/docs/ko/guides/migrate-to-astro/from-sveltekit.mdx index 5c6c5e5b6d100..8010ab6c80e08 100644 --- a/src/content/docs/ko/guides/migrate-to-astro/from-sveltekit.mdx +++ b/src/content/docs/ko/guides/migrate-to-astro/from-sveltekit.mdx @@ -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/#테마-또는-시작-템플릿-사용)할 수 있습니다. diff --git a/src/content/docs/ko/guides/migrate-to-astro/from-vuepress.mdx b/src/content/docs/ko/guides/migrate-to-astro/from-vuepress.mdx index f9aa7c08d22de..34b743982a960 100644 --- a/src/content/docs/ko/guides/migrate-to-astro/from-vuepress.mdx +++ b/src/content/docs/ko/guides/migrate-to-astro/from-vuepress.mdx @@ -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/#테마-또는-시작-템플릿-사용)할 수 있습니다. diff --git a/src/content/docs/ko/guides/migrate-to-astro/from-wordpress.mdx b/src/content/docs/ko/guides/migrate-to-astro/from-wordpress.mdx index 4c1f412dca31d..e54c698c539cf 100644 --- a/src/content/docs/ko/guides/migrate-to-astro/from-wordpress.mdx +++ b/src/content/docs/ko/guides/migrate-to-astro/from-wordpress.mdx @@ -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/#테마-또는-시작-템플릿-사용)할 수 있습니다. diff --git a/src/content/docs/ko/recipes/bun.mdx b/src/content/docs/ko/recipes/bun.mdx index f93acf1ee9b29..d808a7e0351d0 100644 --- a/src/content/docs/ko/recipes/bun.mdx +++ b/src/content/docs/ko/recipes/bun.mdx @@ -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 ``` diff --git a/src/content/docs/ko/reference/cli-reference.mdx b/src/content/docs/ko/reference/cli-reference.mdx index 98ebf48bbe38c..b5050e7793c97 100644 --- a/src/content/docs/ko/reference/cli-reference.mdx +++ b/src/content/docs/ko/reference/cli-reference.mdx @@ -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" { diff --git a/src/content/docs/zh-cn/basics/project-structure.mdx b/src/content/docs/zh-cn/basics/project-structure.mdx index eebd016ad9855..b6b3fda4cd0cd 100644 --- a/src/content/docs/zh-cn/basics/project-structure.mdx +++ b/src/content/docs/zh-cn/basics/project-structure.mdx @@ -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` diff --git a/src/content/docs/zh-cn/guides/migrate-to-astro/from-docusaurus.mdx b/src/content/docs/zh-cn/guides/migrate-to-astro/from-docusaurus.mdx index e99b360ee24be..61dec1d58a465 100644 --- a/src/content/docs/zh-cn/guides/migrate-to-astro/from-docusaurus.mdx +++ b/src/content/docs/zh-cn/guides/migrate-to-astro/from-docusaurus.mdx @@ -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/#使用主题或起始模板)。 diff --git a/src/content/docs/zh-cn/guides/migrate-to-astro/from-eleventy.mdx b/src/content/docs/zh-cn/guides/migrate-to-astro/from-eleventy.mdx index 9b32df95bc45b..bab33ee79ca61 100644 --- a/src/content/docs/zh-cn/guides/migrate-to-astro/from-eleventy.mdx +++ b/src/content/docs/zh-cn/guides/migrate-to-astro/from-eleventy.mdx @@ -36,7 +36,7 @@ Eleventy (11ty) 和 Astro 有一些相似之处,这将帮助你迁移你的项 要将 Eleventy 博客转换为 Astro,首先从我们的博客主题启动模板开始,或者在我们的[主题展示](https://astro.build/themes/)中探索更多社区博客主题。 -你可以向`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/#使用主题或起始模板) diff --git a/src/content/docs/zh-cn/guides/migrate-to-astro/from-gatsby.mdx b/src/content/docs/zh-cn/guides/migrate-to-astro/from-gatsby.mdx index 943ce2452b056..036ba29944a76 100644 --- a/src/content/docs/zh-cn/guides/migrate-to-astro/from-gatsby.mdx +++ b/src/content/docs/zh-cn/guides/migrate-to-astro/from-gatsby.mdx @@ -43,7 +43,7 @@ Gatsby 和 Astro 共享一些相似性,这将帮助你迁移你的项目: ### 创建一个新的 Astro 项目 使用你的包管理器的 `create astro` 命令启动 Astro 的 CLI 向导,或从 [Astro 主题展示](https://astro.build/themes)中选择一个社区主题。 -你可以向 `create astro` 命令传递一个 `--template` 参数,以使用我们的官方起始器(例如 `docs`,`blog`,`portfolio`)启动一个新的 Astro 项目。或者,你可以[从 GitHub 上的任何现有 Astro 存储库开始一个新项目](/zh-cn/install-and-setup/#use-a-theme-or-starter-template)。 +你可以向 `create astro` 命令传递一个 `--template` 参数,以使用我们的官方起始器(例如 `docs`,`blog`,`portfolio`)启动一个新的 Astro 项目。或者,你可以[从 GitHub 上的任何现有 Astro 存储库开始一个新项目](/zh-cn/install-and-setup/#使用主题或起始模板)。 diff --git a/src/content/docs/zh-cn/guides/migrate-to-astro/from-gitbook.mdx b/src/content/docs/zh-cn/guides/migrate-to-astro/from-gitbook.mdx index 7fe15ade92d9a..f3b08f30a591d 100644 --- a/src/content/docs/zh-cn/guides/migrate-to-astro/from-gitbook.mdx +++ b/src/content/docs/zh-cn/guides/migrate-to-astro/from-gitbook.mdx @@ -33,7 +33,7 @@ GitBook 与 Astro 之间有一些相似点,可以帮助你迁移项目: 要将 GitBook 文档站点转换为 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/#使用主题或起始模板)。 diff --git a/src/content/docs/zh-cn/guides/migrate-to-astro/from-gridsome.mdx b/src/content/docs/zh-cn/guides/migrate-to-astro/from-gridsome.mdx index f04723c538af2..87c781e7850a8 100644 --- a/src/content/docs/zh-cn/guides/migrate-to-astro/from-gridsome.mdx +++ b/src/content/docs/zh-cn/guides/migrate-to-astro/from-gridsome.mdx @@ -37,7 +37,7 @@ Gridsome 和 Astro 有一些相似之处,这将帮助你迁移你的项目: 要将 Gridsome 博客转换为 Astro,可以从我们的博客主题启动模板开始,或者在我们的[主题展示](https://astro.build/themes/)中查看更多社区博客主题。 -你可以向`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/#使用主题或起始模板)。 diff --git a/src/content/docs/zh-cn/guides/migrate-to-astro/from-hugo.mdx b/src/content/docs/zh-cn/guides/migrate-to-astro/from-hugo.mdx index 57e76dd83cdee..9015690e1176c 100644 --- a/src/content/docs/zh-cn/guides/migrate-to-astro/from-hugo.mdx +++ b/src/content/docs/zh-cn/guides/migrate-to-astro/from-hugo.mdx @@ -35,7 +35,7 @@ Hugo 和 Astro 有一些相似之处,可以帮助你迁移项目: 要将 Hugo 博客转换为 Astro,请从博客主题入门模板开始,或者在[主题展示](https://astro.build/themes/)中探索更多社区博客主题。 -你可以向 `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/#使用主题或起始模板)。 diff --git a/src/content/docs/zh-cn/guides/migrate-to-astro/from-jekyll.mdx b/src/content/docs/zh-cn/guides/migrate-to-astro/from-jekyll.mdx index d01dc69cc4765..c00672b0aca8a 100644 --- a/src/content/docs/zh-cn/guides/migrate-to-astro/from-jekyll.mdx +++ b/src/content/docs/zh-cn/guides/migrate-to-astro/from-jekyll.mdx @@ -33,7 +33,7 @@ Jekyll 和 Astro 有一些相似之处,可以帮助你迁移项目: 要将 Jekyll 博客转换为 Astro,请从我们的博客主题启动器模板开始,或者在[主题展示](https://astro.build/themes/)中探索更多社区博客主题。 -你可以向 `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/#使用主题或起始模板)。 diff --git a/src/content/docs/zh-cn/guides/migrate-to-astro/from-nextjs.mdx b/src/content/docs/zh-cn/guides/migrate-to-astro/from-nextjs.mdx index a2201112ade4b..067684bb2dc47 100644 --- a/src/content/docs/zh-cn/guides/migrate-to-astro/from-nextjs.mdx +++ b/src/content/docs/zh-cn/guides/migrate-to-astro/from-nextjs.mdx @@ -41,7 +41,7 @@ Next.js 和 Astro 有一些相似之处,可以帮助你迁移你的项目: 通过你的包管理器执行命令 `create astro` 来启动 Astro 的 CLI 向导,或从 [Astro Theme Showcase](https://astro.build/themes) 选择一个社区主题。 -你可以在 `create astro` 命令中传递一个 `--template` 参数,用我们的官方启动器(如 `docs`、`blog`、`portfolio`)启动一个新的 Astro 项目。或者,你可以[从 GitHub 上任何现有的 Astro 仓库开始一个新项目](/zh-cn/install-and-setup/#use-a-theme-or-starter-template)。 +你可以在 `create astro` 命令中传递一个 `--template` 参数,用我们的官方启动器(如 `docs`、`blog`、`portfolio`)启动一个新的 Astro 项目。或者,你可以[从 GitHub 上任何现有的 Astro 仓库开始一个新项目](/zh-cn/install-and-setup/#使用主题或起始模板)。 diff --git a/src/content/docs/zh-cn/guides/migrate-to-astro/from-nuxtjs.mdx b/src/content/docs/zh-cn/guides/migrate-to-astro/from-nuxtjs.mdx index fe49c30ea931e..0031251fd9604 100644 --- a/src/content/docs/zh-cn/guides/migrate-to-astro/from-nuxtjs.mdx +++ b/src/content/docs/zh-cn/guides/migrate-to-astro/from-nuxtjs.mdx @@ -42,7 +42,7 @@ Nuxt 和 Astro 有一些相似之处,这些相似性能够帮助你完成迁 ### 新建一个 Astro 项目 使用你的包管理器的 `create astro` 来启动 Astro 的 CLI 向导,或者从 [Astro 主题展示](https://astro.build/themes) 中选择一个社区主题。 -你可以将 `--template` 参数传给 `create astro` 命令,使用我们的官方入门模板之一启动新的 Astro 项目 (例如 `docs`, `blog`, `portfolio`)。或者,你可以从 [GitHub 上的任何现有的 Astro 库开始一个新项目](/zh-cn/install-and-setup/#use-a-theme-or-starter-template) 。 +你可以将 `--template` 参数传给 `create astro` 命令,使用我们的官方入门模板之一启动新的 Astro 项目 (例如 `docs`, `blog`, `portfolio`)。或者,你可以从 [GitHub 上的任何现有的 Astro 库开始一个新项目](/zh-cn/install-and-setup/#使用主题或起始模板) 。 diff --git a/src/content/docs/zh-cn/guides/migrate-to-astro/from-pelican.mdx b/src/content/docs/zh-cn/guides/migrate-to-astro/from-pelican.mdx index 1bfbe59e729eb..7e83f7c8eb57a 100644 --- a/src/content/docs/zh-cn/guides/migrate-to-astro/from-pelican.mdx +++ b/src/content/docs/zh-cn/guides/migrate-to-astro/from-pelican.mdx @@ -33,7 +33,7 @@ Pelican 和 Astro 的一些相似点会帮助你完成迁移。 为了将 Pelican 文档转换成 Astro,你可以从我们的 [Starlight 文档主题模板](https://starlight.astro.build)开始,或者从[主题展示](https://astro.build/themes/)里面的社区主题开始。 -你可以通过传入`--template`参数到`create astro`命令开启一个 Astro 项目,并选择我们提供的某个模板。或者,你也可以从一个 [Astro Github 仓库](/zh-cn/install-and-setup/#use-a-theme-or-starter-template)开始你的项目。 +你可以通过传入`--template`参数到`create astro`命令开启一个 Astro 项目,并选择我们提供的某个模板。或者,你也可以从一个 [Astro Github 仓库](/zh-cn/install-and-setup/#使用主题或起始模板)开始你的项目。 diff --git a/src/content/docs/zh-cn/guides/migrate-to-astro/from-sveltekit.mdx b/src/content/docs/zh-cn/guides/migrate-to-astro/from-sveltekit.mdx index bd5631d750735..31995ac00629b 100644 --- a/src/content/docs/zh-cn/guides/migrate-to-astro/from-sveltekit.mdx +++ b/src/content/docs/zh-cn/guides/migrate-to-astro/from-sveltekit.mdx @@ -38,7 +38,7 @@ SvelteKit 和 Astro 有一些相似之处,可以帮助你迁移你的项目: 要将 SvelteKit 博客转换为 Astro,请从我们的博客主题起始模板开始,或者在我们的[主题展示](https://astro.build/themes/)中探索更多社区博客主题。 -你可以将 `--template` 参数传递给 `create astro` 命令,以便使用其中一个模板开始一个新的 Astro 项目。或者,你可以[从 GitHub 上的任何现有的 Astro 的存储库中开始一个新项目](/zh-cn/install-and-setup/#use-a-theme-or-starter-template)。 +你可以将 `--template` 参数传递给 `create astro` 命令,以便使用其中一个模板开始一个新的 Astro 项目。或者,你可以[从 GitHub 上的任何现有的 Astro 的存储库中开始一个新项目](/zh-cn/install-and-setup/#使用主题或起始模板)。 diff --git a/src/content/docs/zh-cn/guides/migrate-to-astro/from-vuepress.mdx b/src/content/docs/zh-cn/guides/migrate-to-astro/from-vuepress.mdx index 7fc3dee569439..3b25f7d67de00 100644 --- a/src/content/docs/zh-cn/guides/migrate-to-astro/from-vuepress.mdx +++ b/src/content/docs/zh-cn/guides/migrate-to-astro/from-vuepress.mdx @@ -35,7 +35,7 @@ VuePress 和 Astro 有一些共同的特点,这些相似之处将有助于你 要将 VuePress 文档网站转换为 Astro ,可以通过我们的官方 [Starlight 文档主题起始模板](https://starlight.astro.build/zh/)开始创建,或者在我们的 [主题展示页面](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/#使用主题或起始模板)。 diff --git a/src/content/docs/zh-cn/guides/migrate-to-astro/from-wordpress.mdx b/src/content/docs/zh-cn/guides/migrate-to-astro/from-wordpress.mdx index 3b98243539274..4b2f03f31ec1a 100644 --- a/src/content/docs/zh-cn/guides/migrate-to-astro/from-wordpress.mdx +++ b/src/content/docs/zh-cn/guides/migrate-to-astro/from-wordpress.mdx @@ -36,7 +36,7 @@ WordPress 和 Astro 在以下方面有一些相似之处,这将有助于你迁 你可以在 `create astro` 命令中传递 `--template` 参数,使用我们官方的任意启动器开始一个新的 Astro 项目。 -或者,你可以从 [GitHub 上任何现有的 Astro 存储库开始一个新项目](/zh-cn/install-and-setup/#use-a-theme-or-starter-template) +或者,你可以从 [GitHub 上任何现有的 Astro 存储库开始一个新项目](/zh-cn/install-and-setup/#使用主题或起始模板) diff --git a/src/content/docs/zh-cn/reference/cli-reference.mdx b/src/content/docs/zh-cn/reference/cli-reference.mdx index cbe58f4fa0575..d3775ce67ea55 100644 --- a/src/content/docs/zh-cn/reference/cli-reference.mdx +++ b/src/content/docs/zh-cn/reference/cli-reference.mdx @@ -94,7 +94,7 @@ Global Flags 当你使用 [`create astro` 向导](/zh-cn/install-and-setup/) 创建项目时,以下脚本是为你自动添加的,用于最常用的 `astro` 命令(`astro dev`、`astro build` 和 `astro preview`)。 -当你按照[手动安装 Astro](/zh-cn/install-and-setup/#manual-setup) 的说明进行操作时,你会被告知自己添加这些脚本。你还可以手动为任何你经常使用的命令添加更多脚本到这个列表中。 +当你按照[手动安装 Astro](/zh-cn/install-and-setup/#手动设置) 的说明进行操作时,你会被告知自己添加这些脚本。你还可以手动为任何你经常使用的命令添加更多脚本到这个列表中。 ```json title="package.json" {