Skip to content

Commit

Permalink
Merge branch 'sidebar-i18n' of https://github.com/liruifengv/starlight
Browse files Browse the repository at this point in the history
…into sidebar-i18n
  • Loading branch information
liruifengv committed Sep 22, 2023
2 parents 9d35362 + c5e9b8d commit ef1fff8
Show file tree
Hide file tree
Showing 52 changed files with 2,167 additions and 744 deletions.
5 changes: 0 additions & 5 deletions .changeset/gorgeous-wasps-report.md

This file was deleted.

5 changes: 5 additions & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Apply with:
# `git config --local blame.ignoreRevsFile .git-blame-ignore-revs`

# [Add Prettier and format files](https://github.com/withastro/starlight/pull/393)
9b172f5ee09697d80f301e9b70aca1946419ce24
Binary file added docs/src/assets/showcase/dev.vrchatfrance.fr.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/src/assets/showcase/refact.ai.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
61 changes: 61 additions & 0 deletions docs/src/components/showcase-sites.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
---
import Card from './showcase-card.astro';
import FluidGrid from './fluid-grid.astro';
---

<FluidGrid>
<Card title="Athena OS" href="https://athenaos.org" thumbnail="www.athenaos.org.png" />
<Card
title="PubIndexAPI Docs"
href="https://docs.pubindexapi.com/"
thumbnail="docs.pubindexapi.com.png"
/>
<Card title="pls" href="https://dhruvkb.github.io/pls" thumbnail="dhruvkb.github.io-pls.png" />
<Card title="capo.js" href="https://rviscomi.github.io/capo.js/" thumbnail="capo.js.png" />
<Card
title="Web Monetization API"
href="https://webmonetization.org/"
thumbnail="webmonetization.org.png"
/>
<Card
title="QBCore Docs"
href="https://brycerussell.github.io/qbcore-docs/"
thumbnail="brycerussell.github.io-qbcore-docs.png"
/>
<Card title="har.fyi" href="https://har.fyi/" thumbnail="har.fyi.png" />
<Card title="xs-dev docs" href="https://xs-dev.js.org" thumbnail="xs-dev.js.org.png" />
<Card title="Felicity" href="https://felicity.pages.dev/" thumbnail="felicity.pages.dev.png" />
<Card
title="NgxEditor"
href="https://sibiraj-s.github.io/ngx-editor/"
thumbnail="sibiraj-s.github.io-ngx-editor.png"
/>
<Card
title="Astro Error Pages"
href="https://astro-error-page-documentation.vercel.app/"
thumbnail="astro-error-page-documentation.vercel.app.png"
/>
<Card title="Terrateam Docs" href="https://terrateam.io/docs" thumbnail="terrateam.io-docs.png" />
<Card
title="simple-fm"
href="https://simple.arciniega.one"
thumbnail="simple.arciniega.one.png"
/>
<Card
title="CommandKit"
href="https://commandkit.underctrl.io"
thumbnail="commandkit.underctrl.io.png"
/>
<Card
title="Obytes Starter"
href="https://starter.obytes.com"
thumbnail="starter.obytes.com.jpg"
/>
<Card title="Kanri" href="https://kanriapp.com" thumbnail="kanriapp.com.png" />
<Card
title="VRCFR Creator"
href="https://dev.vrchatfrance.fr"
thumbnail="dev.vrchatfrance.fr.png"
/>
<Card title="Refact" href="https://docs.refact.ai/" thumbnail="refact.ai.png" />
</FluidGrid>
13 changes: 13 additions & 0 deletions docs/src/content/docs/es/guides/customization.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,19 @@ Puedes mostrar diferentes versiones de tu logo en modos claro y oscuro.
}),
```

## Habilitar el mapa del sitio

Starlight tiene soporte incorporado para generar un mapa del sitio. Habilita la generación del mapa del sitio estableciendo tu URL como `site` en `astro.config.mjs`:

```js
// astro.config.mjs

export default defineConfig({
site: 'https://stargazers.club',
integrations: [starlight({ title: 'Sitio con mapa del sitio' })],
});
```

## Diseño de página

De forma predeterminada, las páginas de Starlight utilizan un diseño con una barra lateral de navegación global y una tabla de contenidos que muestra los encabezados de la página actual.
Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/docs/es/guides/i18n.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ Si no hay una traducción disponible para un idioma, Starlight mostrará a los l

## Traduce la UI de Starlight

Starlight proporciona de forma predeterminada traducciones para los textos utilizados en la UI al inglés, checo, francés, alemán, italiano, japonés, holandés, portugués, danés, español, turco, árabe, noruego, farsi, chino simplificado, coreano y sueco. También damos la bienvenida a [contribuciones para agregar más idiomas predeterminados](https://github.com/withastro/starlight/blob/main/CONTRIBUTING.md).
Starlight proporciona de forma predeterminada traducciones para los textos utilizados en la UI al inglés, checo, francés, alemán, italiano, japonés, holandés, portugués, danés, español, turco, árabe, noruego, farsi, chino simplificado, coreano, ruso y sueco. También damos la bienvenida a [contribuciones para agregar más idiomas predeterminados](https://github.com/withastro/starlight/blob/main/CONTRIBUTING.md).

1. Configura la colección de datos `i18n` en `src/content/config.ts` si aún no está configurada:

Expand Down
Loading

0 comments on commit ef1fff8

Please sign in to comment.