Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

i18n(ko-KR): update pages.mdx #2227

Merged
merged 3 commits into from
Aug 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 13 additions & 12 deletions docs/src/content/docs/ko/guides/pages.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -109,26 +109,25 @@ Markdown 페이지의 프론트매터와 유사하게 이 페이지에 대한 [

##### `sidebar`

**타입:** `SidebarEntry[]`
**타입:** [`SidebarItem[]`](/ko/reference/configuration/#sidebaritem)
**기본값:** [전역 `sidebar` 구성](/ko/reference/configuration/#sidebar)을 기반으로 생성된 사이드바

이 페이지에 대한 사용자 정의 사이트 탐색 사이드바를 제공합니다.
설정하지 않으면 페이지에서 기본 전역 사이드바를 사용합니다.

예를 들어, 다음 페이지는 홈페이지 링크와 다양한 별자리에 대한 링크 그룹으로 기본 사이드바를 재정의합니다.
사이드바의 현재 페이지는 `isCurrent` 속성을 사용하여 설정되었으며 선택적인 `badge`가 링크 항목에 추가되었습니다.
예를 들어, 다음 페이지는 홈페이지 링크와 다양한 다른 사용자 지정 페이지로 연결되는 링크 그룹으로 기본 사이드바를 재정의합니다.

```astro {3-13}
<StarlightPage
frontmatter={{ title: '오리온' }}
sidebar={[
{ label: '홈', href: '/' },
{ label: '홈', link: '/' },
{
label: '별자리',
items: [
{ label: '안드로메다', href: '/andromeda/' },
{ label: '오리온', href: '/orion/', isCurrent: true },
{ label: '작은곰자리', href: '/ursa-minor/', badge: 'Stub' },
{ label: '안드로메다', link: '/andromeda/' },
{ label: '오리온', link: '/orion/' },
{ label: '작은곰자리', link: '/ursa-minor/', badge: 'Stub' },
],
},
]}
Expand All @@ -137,38 +136,40 @@ Markdown 페이지의 프론트매터와 유사하게 이 페이지에 대한 [
</StarlightPage>
```

사이드바를 사용자 정의하기 위해 사용할 수 있는 옵션에 대해 자세히 알아보려면 [“사이드바 탐색”](/ko/guides/sidebar/) 가이드를 참조하세요.

##### `hasSidebar`

**타입:** `boolean`
**타입:** `boolean`
**기본값:** [`frontmatter.template`](/ko/reference/frontmatter/#template)의 값이 `'splash'`라면 `false`, 그렇지 않다면 `true`

이 페이지에 사이드바를 표시할지 여부를 제어합니다.

##### `headings`

**타입:** `{ depth: number; slug: string; text: string }[]`
**타입:** `{ depth: number; slug: string; text: string }[]`
**기본값:** `[]`

이 페이지의 모든 제목 배열을 제공하세요.
제공된 경우 Starlight는 이 제목에서 페이지 목차를 생성합니다.

##### `dir`

**타입:** `'ltr' | 'rtl'`
**타입:** `'ltr' | 'rtl'`
**기본값:** 현재 로케일의 쓰기 방향

이 페이지 콘텐츠의 쓰기 방향을 설정합니다.

##### `lang`

**타입:** `string`
**타입:** `string`
**기본값:** 현재 로케일의 언어

이 페이지 콘텐츠에 대해 BCP-47 언어 태그를 설정합니다. 예: `en`, `zh-CN` 또는 `pt-BR`.

##### `isFallback`

**타입:** `boolean`
**타입:** `boolean`
**기본값:** `false`

현재 언어에 대한 번역이 존재하지 않아 이 페이지가 [대체 콘텐츠](/ko/guides/i18n/#대체-콘텐츠)를 사용하고 있는지 표시합니다.
Loading