Skip to content

Commit

Permalink
i18n(ja): Update pages.mdx (#1551)
Browse files Browse the repository at this point in the history
  • Loading branch information
morinokami authored Feb 23, 2024
1 parent 8a0699b commit 9e5c4f3
Showing 1 changed file with 29 additions and 9 deletions.
38 changes: 29 additions & 9 deletions docs/src/content/docs/ja/guides/pages.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -96,15 +96,35 @@ import CustomComponent from './CustomComponent.astro';

- [`slug`](/ja/reference/frontmatter/#slug)プロパティはサポートされておらず、カスタムページのURLに基づいて自動的に設定されます。
- [`editUrl`](/ja/reference/frontmatter/#editurl)オプションは、編集リンクを表示するためのURLが必要です。
- [`sidebar`](/ja/reference/frontmatter/#sidebar)プロパティはサポートされていません。Markdownのフロントマターでは、このオプションは[自動生成されるリンクグループ](/ja/reference/configuration/#sidebar)のカスタマイズを可能にしますが、`<StarlightPage />`コンポーネントを使用するページには適用されません。

{/* ##### `sidebar` */}

{/* **type:** `SidebarEntry[] | undefined` */}
{/* **default:** the sidebar generated based on the [global `sidebar` config](/reference/configuration/#sidebar) */}

{/* Provide a custom site navigation sidebar for this page. */}
{/* If not set, the page will use the default global sidebar. */}
- [自動生成されるリンクグループ](/ja/reference/configuration/#sidebar)にページを表示する方法をカスタマイズするための[`sidebar`](/ja/reference/frontmatter/#sidebar)フロントマタープロパティは利用できません。`<StarlightPage />`コンポーネントを使用するページはコレクションの一部ではなく、自動生成されるサイドバーグループには追加できません。

##### `sidebar`

**type:** `SidebarEntry[]`
**default:** [グローバルな`sidebar`設定値](/ja/reference/configuration/#sidebar)に基づき生成されるサイドバー

ページにカスタムのサイトナビゲーションサイドバーを設定します。未設定の場合、ページはデフォルトのグローバルサイドバーを使用します。

たとえば以下のページは、ホームページへのリンクと星座へのリンクグループによりデフォルトのサイドバーをオーバーライドします。サイドバーの現在のページは`isCurrent`プロパティを使用して設定され、またリンクアイテムにオプションの`badge`が追加されています。

```astro {3-13}
<StarlightPage
frontmatter={{ title: 'オリオン座' }}
sidebar={[
{ label: 'ホーム', href: '/' },
{
label: '星座',
items: [
{ label: 'アンドロメダ座', href: '/andromeda/' },
{ label: 'オリオン座', href: '/orion/', isCurrent: true },
{ label: 'こぐま座', href: '/ursa-minor/', badge: 'スタブ' },
],
},
]}
>
何らかのコンテンツ。
</StarlightPage>
```

##### `hasSidebar`

Expand Down

0 comments on commit 9e5c4f3

Please sign in to comment.