123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 |
- import type { DefaultTheme, LocaleSpecificConfig } from "vitepress";
- export const plConfig: LocaleSpecificConfig<DefaultTheme.Config> = {
- themeConfig: {
- editLink: {
- pattern: "https://github.com/tresjs/tres/edit/main/packages/docs/:path",
- text: "Zaproponuj zmiany na tej stronie",
- },
- sidebar: [
- {
- text: "Przewodnik",
- items: [
- // Esto muestra la página `/guide/index.md`.
- { text: "Wstęp", link: "/pl/guide/" },
- { text: "Pierwsze kroki", link: "/pl/guide/getting-started" },
- { text: "Twoja pierwsza scena", link: "/pl/guide/your-first-scene" },
- { text: "Nuxt", link: "/pl/guide/nuxt" },
- {
- text: "Rozwiązywanie problemów",
- link: "/pl/guide/troubleshooting",
- },
- { text: "Migracja z v1", link: "/pl/guide/migration-guide" },
- ],
- },
- {
- text: "API",
- items: [
- { text: "TresCanvas", link: "/pl/api/tres-canvas" },
- {
- text: "Instancje, argumenty i właściwości",
- link: "/pl/api/instances-arguments-and-props",
- },
- {
- text: "Komponowalne",
- link: "/pl/api/composables",
- },
- {
- text: "Wydarzenia",
- link: "/pl/api/events",
- },
- ],
- },
- {
- text: "Zaawansowany",
- items: [
- { text: "Rozszerzanie", link: "/pl/advanced/extending" },
- { text: "Prymitywny", link: "/pl/advanced/primitive" },
- {
- text: "Zastrzeżenia",
- link: "/pl/advanced/caveats",
- },
- ],
- },
- {
- text: "Znajdowanie",
- items: [
- { text: "Narzędzia deweloperskie", link: "/pl/debug/devtools" },
- ],
- },
- {
- text: "Przykłady",
- collapsed: true,
- items: [
- { text: "Sterowanie orbitą", link: "/pl/examples/orbit-controls" },
- {
- text: "Podstawowe animacje",
- link: "/pl/examples/basic-animations",
- },
- { text: "Grupy", link: "/pl/examples/groups" },
- { text: "Ładowanie tekstur", link: "/pl/examples/load-textures" },
- { text: "Ładowanie modelu", link: "/pl/examples/load-models" },
- { text: "Ładowanie tekstu", link: "/pl/examples/text-3d" },
- { text: "Światła i cienie", link: "/pl/examples/lights-shadows" },
- { text: "Shadery", link: "/pl/examples/shaders" },
- ],
- },
- {
- text: "Dyrektywy",
- collapsed: true,
- items: [
- { text: "v-log", link: "/pl/directives/v-log" },
- { text: "v-light-helper", link: "/pl/directives/v-light-helper" },
- { text: "v-always-look-at", link: "/pl/directives/v-always-look-at" },
- { text: "v-distance-to", link: "/pl/directives/v-distance-to" },
- ],
- },
- {
- text: "Ekosystem",
- items: [
- {
- text: "Cientos 💛",
- link: "https://cientos.tresjs.org/",
- },
- {
- text: "Nuxt module",
- link: "https://github.com/Tresjs/nuxt",
- },
- {
- text: "TresLeches 🍰",
- link: "https://tresleches.tresjs.org/",
- },
- {
- text: "Post-processing (wkrótce)",
- },
- ],
- },
- ],
- nav: [
- { text: "Przewodnik", link: "/pl/guide/" },
- { text: "API", link: "/pl/api/tres-canvas" },
- /* { text: 'API', link: '/pl/api/' },
- { text: 'Konfiguracja', link: '/pl/config/' }, */
- {
- text: "Zasoby",
- items: [
- { text: "Zespół", link: "/pl/team" },
- { text: "Wydania", link: "https://github.com/Tresjs/tres/releases" },
- {
- text: "Plac zabaw",
- link: "https://playground.tresjs.org/",
- },
- {
- text: "Github",
- link: "https://github.com/Tresjs/tres/",
- },
- {
- text: "Problemy",
- link: "https://github.com/Tresjs/tres/issues",
- },
- {
- text: "Ekosystem",
- items: [
- {
- text: "Cientos 💛",
- link: "https://cientos.tresjs.org/",
- },
- {
- text: "Módulo Nuxt",
- link: "https://github.com/Tresjs/nuxt",
- },
- {
- text: "TresLeches 🍰",
- link: "https://tresleches.tresjs.org/",
- },
- ],
- },
- ],
- },
- ],
- },
- };
|