@treeseed/core 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +145 -0
- package/dist/agents/index.js +5 -0
- package/dist/agents/registry-helper.js +14 -0
- package/dist/agents/registry.js +88 -0
- package/dist/components/DevWatchReload.astro +45 -0
- package/dist/components/SiteTitle.astro +51 -0
- package/dist/components/content/ContentStatusLegend.astro +18 -0
- package/dist/components/content/StatusBadge.astro +11 -0
- package/dist/components/docs/BookFontControls.astro +180 -0
- package/dist/components/docs/DesktopSidebarToggle.astro +88 -0
- package/dist/components/docs/DownloadBook.astro +34 -0
- package/dist/components/docs/Footer.astro +196 -0
- package/dist/components/docs/Header.astro +150 -0
- package/dist/components/docs/PageFrame.astro +260 -0
- package/dist/components/docs/PageSidebar.astro +63 -0
- package/dist/components/docs/PageTitle.astro +39 -0
- package/dist/components/docs/Sidebar.astro +41 -0
- package/dist/components/docs/ThemeSelect.astro +3 -0
- package/dist/components/forms/ContactForm.astro +234 -0
- package/dist/components/forms/FooterSubscribeForm.astro +189 -0
- package/dist/components/site/BookList.astro +27 -0
- package/dist/components/site/CTASection.astro +24 -0
- package/dist/components/site/ChronicleList.astro +33 -0
- package/dist/components/site/Hero.astro +18 -0
- package/dist/components/site/NotesList.astro +18 -0
- package/dist/components/site/PathCard.astro +16 -0
- package/dist/components/site/ProfileList.astro +30 -0
- package/dist/components/site/SectionIntro.astro +9 -0
- package/dist/components/site/StageBanner.astro +8 -0
- package/dist/components/site/TrustCallout.astro +9 -0
- package/dist/components/starlight.js +6 -0
- package/dist/config.js +8 -0
- package/dist/content-config.js +9 -0
- package/dist/content.js +230 -0
- package/dist/contracts.d.ts +130 -0
- package/dist/contracts.js +0 -0
- package/dist/deploy/config.d.ts +4 -0
- package/dist/deploy/config.js +154 -0
- package/dist/deploy/runtime.js +77 -0
- package/dist/env.yaml +322 -0
- package/dist/environment.d.ts +130 -0
- package/dist/environment.js +324 -0
- package/dist/index.js +81 -0
- package/dist/layouts/AuthoredEntryLayout.astro +87 -0
- package/dist/layouts/BookLayout.astro +35 -0
- package/dist/layouts/BridgeLayout.astro +11 -0
- package/dist/layouts/ContentLayout.astro +24 -0
- package/dist/layouts/MainLayout.astro +203 -0
- package/dist/layouts/NoteLayout.astro +26 -0
- package/dist/layouts/ProfileLayout.astro +81 -0
- package/dist/middleware/starlightRouteData.js +45 -0
- package/dist/pages/404.astro +29 -0
- package/dist/pages/[slug].astro +30 -0
- package/dist/pages/agents/[slug].astro +29 -0
- package/dist/pages/agents/index.astro +27 -0
- package/dist/pages/api/form/submit.js +14 -0
- package/dist/pages/books/[slug].astro +19 -0
- package/dist/pages/books/index.astro +28 -0
- package/dist/pages/contact.astro +27 -0
- package/dist/pages/feed.xml.js +34 -0
- package/dist/pages/index.astro +290 -0
- package/dist/pages/notes/[slug].astro +19 -0
- package/dist/pages/notes/index.astro +21 -0
- package/dist/pages/objectives/[slug].astro +31 -0
- package/dist/pages/objectives/index.astro +30 -0
- package/dist/pages/people/[slug].astro +29 -0
- package/dist/pages/people/index.astro +28 -0
- package/dist/pages/questions/[slug].astro +31 -0
- package/dist/pages/questions/index.astro +30 -0
- package/dist/plugin-default.js +4 -0
- package/dist/plugins/builtin/default-plugin.d.ts +21 -0
- package/dist/plugins/builtin/default-plugin.js +32 -0
- package/dist/plugins/constants.d.ts +21 -0
- package/dist/plugins/constants.js +28 -0
- package/dist/plugins/plugin.d.ts +42 -0
- package/dist/plugins/plugin.js +6 -0
- package/dist/plugins/runtime.d.ts +31 -0
- package/dist/plugins/runtime.js +120 -0
- package/dist/scripts/aggregate-book.js +112 -0
- package/dist/scripts/assert-release-tag-version.js +21 -0
- package/dist/scripts/build-dist.js +384 -0
- package/dist/scripts/build-tenant-worker.js +36 -0
- package/dist/scripts/package-tools.js +88 -0
- package/dist/scripts/patch-starlight-content-path.js +172 -0
- package/dist/scripts/paths.js +11 -0
- package/dist/scripts/publish-package.js +20 -0
- package/dist/scripts/release-verify.js +52 -0
- package/dist/scripts/run-fixture-astro-command.js +21 -0
- package/dist/scripts/tenant-astro-command.js +3 -0
- package/dist/scripts/tenant-build.js +16 -0
- package/dist/scripts/tenant-check.js +7 -0
- package/dist/scripts/test-smoke.js +105 -0
- package/dist/server.js +53 -0
- package/dist/site-resources.d.ts +29 -0
- package/dist/site-resources.js +127 -0
- package/dist/site.js +313 -0
- package/dist/styles/global.css +683 -0
- package/dist/styles/prose.css +89 -0
- package/dist/styles/tokens.css +24 -0
- package/dist/tenant/bridge.js +5 -0
- package/dist/tenant/config.d.ts +9 -0
- package/dist/tenant/config.js +124 -0
- package/dist/tenant/runtime-config.js +20 -0
- package/dist/tsconfigs/strict.json +3 -0
- package/dist/types/agents.d.ts +1 -0
- package/dist/types/agents.js +1 -0
- package/dist/types/astro-build.d.js +0 -0
- package/dist/types/cloudflare-sockets.d.js +0 -0
- package/dist/types/cloudflare.d.ts +1 -0
- package/dist/types/cloudflare.js +1 -0
- package/dist/types/forms.js +4 -0
- package/dist/utils/agents/adapters/execution.js +90 -0
- package/dist/utils/agents/adapters/mutations.js +30 -0
- package/dist/utils/agents/adapters/notification.js +16 -0
- package/dist/utils/agents/adapters/repository.js +61 -0
- package/dist/utils/agents/adapters/research.js +25 -0
- package/dist/utils/agents/adapters/verification.js +62 -0
- package/dist/utils/agents/cli-tools.js +5 -0
- package/dist/utils/agents/contracts/messages.d.ts +88 -0
- package/dist/utils/agents/contracts/messages.js +138 -0
- package/dist/utils/agents/contracts/run.d.ts +20 -0
- package/dist/utils/agents/contracts/run.js +0 -0
- package/dist/utils/agents/runtime-types.d.ts +117 -0
- package/dist/utils/agents/runtime-types.js +4 -0
- package/dist/utils/books-data.js +82 -0
- package/dist/utils/content-status.js +38 -0
- package/dist/utils/forms/config.js +87 -0
- package/dist/utils/forms/constants.js +27 -0
- package/dist/utils/forms/contact-submissions-local.js +19 -0
- package/dist/utils/forms/contact-submissions.js +72 -0
- package/dist/utils/forms/crypto.js +64 -0
- package/dist/utils/forms/guard.js +76 -0
- package/dist/utils/forms/http.js +51 -0
- package/dist/utils/forms/provider-core.js +88 -0
- package/dist/utils/forms/routing-core.js +7 -0
- package/dist/utils/forms/routing.js +13 -0
- package/dist/utils/forms/runtime-core.js +17 -0
- package/dist/utils/forms/runtime.js +27 -0
- package/dist/utils/forms/service-core.js +256 -0
- package/dist/utils/forms/service.js +55 -0
- package/dist/utils/forms/session.js +57 -0
- package/dist/utils/forms/smtp-cloudflare.js +107 -0
- package/dist/utils/forms/smtp-node.js +27 -0
- package/dist/utils/forms/smtp.js +10 -0
- package/dist/utils/forms/subscribers-local.js +21 -0
- package/dist/utils/forms/subscribers.js +53 -0
- package/dist/utils/forms/turnstile.js +31 -0
- package/dist/utils/forms/validation.js +58 -0
- package/dist/utils/hub-content.js +28 -0
- package/dist/utils/plugin-runtime.js +158 -0
- package/dist/utils/routes.js +17 -0
- package/dist/utils/seo.js +4 -0
- package/dist/utils/site-config-schema.js +282 -0
- package/dist/utils/site-config.js +122 -0
- package/dist/utils/starlight-nav.js +62 -0
- package/dist/utils/theme.js +49 -0
- package/dist/vendor/starlight/components/AnchorHeading.astro +53 -0
- package/dist/vendor/starlight/components/Banner.astro +23 -0
- package/dist/vendor/starlight/components/ContentNotice.astro +33 -0
- package/dist/vendor/starlight/components/ContentPanel.astro +27 -0
- package/dist/vendor/starlight/components/DraftContentNotice.astro +5 -0
- package/dist/vendor/starlight/components/EditLink.astro +28 -0
- package/dist/vendor/starlight/components/FallbackContentNotice.astro +5 -0
- package/dist/vendor/starlight/components/Footer.astro +61 -0
- package/dist/vendor/starlight/components/Head.astro +5 -0
- package/dist/vendor/starlight/components/Header.astro +94 -0
- package/dist/vendor/starlight/components/Hero.astro +143 -0
- package/dist/vendor/starlight/components/Icons.js +121 -0
- package/dist/vendor/starlight/components/LanguageSelect.astro +57 -0
- package/dist/vendor/starlight/components/LastUpdated.astro +14 -0
- package/dist/vendor/starlight/components/MarkdownContent.astro +5 -0
- package/dist/vendor/starlight/components/MobileMenuFooter.astro +35 -0
- package/dist/vendor/starlight/components/MobileMenuToggle.astro +107 -0
- package/dist/vendor/starlight/components/MobileTableOfContents.astro +151 -0
- package/dist/vendor/starlight/components/Page.astro +126 -0
- package/dist/vendor/starlight/components/PageFrame.astro +97 -0
- package/dist/vendor/starlight/components/PageSidebar.astro +59 -0
- package/dist/vendor/starlight/components/PageTitle.astro +17 -0
- package/dist/vendor/starlight/components/Pagination.astro +79 -0
- package/dist/vendor/starlight/components/Search.astro +488 -0
- package/dist/vendor/starlight/components/Select.astro +99 -0
- package/dist/vendor/starlight/components/Sidebar.astro +15 -0
- package/dist/vendor/starlight/components/SidebarPersistState.js +43 -0
- package/dist/vendor/starlight/components/SidebarPersister.astro +78 -0
- package/dist/vendor/starlight/components/SidebarRestorePoint.astro +12 -0
- package/dist/vendor/starlight/components/SidebarSublist.astro +154 -0
- package/dist/vendor/starlight/components/SiteTitle.astro +59 -0
- package/dist/vendor/starlight/components/SkipLink.astro +26 -0
- package/dist/vendor/starlight/components/SocialIcons.astro +32 -0
- package/dist/vendor/starlight/components/StarlightPage.astro +17 -0
- package/dist/vendor/starlight/components/TableOfContents/TableOfContentsList.astro +79 -0
- package/dist/vendor/starlight/components/TableOfContents/starlight-toc.js +93 -0
- package/dist/vendor/starlight/components/TableOfContents.astro +18 -0
- package/dist/vendor/starlight/components/ThemeProvider.astro +38 -0
- package/dist/vendor/starlight/components/ThemeSelect.astro +73 -0
- package/dist/vendor/starlight/components/TwoColumnContent.astro +54 -0
- package/dist/vendor/starlight/components.js +26 -0
- package/dist/vendor/starlight/constants.js +4 -0
- package/dist/vendor/starlight/expressive-code.d.js +1 -0
- package/dist/vendor/starlight/global.d.js +0 -0
- package/dist/vendor/starlight/i18n.d.js +1 -0
- package/dist/vendor/starlight/index.js +119 -0
- package/dist/vendor/starlight/integrations/asides-error.js +12 -0
- package/dist/vendor/starlight/integrations/asides.js +179 -0
- package/dist/vendor/starlight/integrations/code-rtl-support.js +21 -0
- package/dist/vendor/starlight/integrations/expressive-code/hast.d.js +1 -0
- package/dist/vendor/starlight/integrations/expressive-code/index.js +63 -0
- package/dist/vendor/starlight/integrations/expressive-code/preprocessor.js +92 -0
- package/dist/vendor/starlight/integrations/expressive-code/themes/night-owl-dark.jsonc +1796 -0
- package/dist/vendor/starlight/integrations/expressive-code/themes/night-owl-dark.jsonc.js +1 -0
- package/dist/vendor/starlight/integrations/expressive-code/themes/night-owl-light.jsonc +1695 -0
- package/dist/vendor/starlight/integrations/expressive-code/themes/night-owl-light.jsonc.js +1 -0
- package/dist/vendor/starlight/integrations/expressive-code/theming.js +62 -0
- package/dist/vendor/starlight/integrations/expressive-code/translations.js +29 -0
- package/dist/vendor/starlight/integrations/heading-links.js +61 -0
- package/dist/vendor/starlight/integrations/pagefind.js +43 -0
- package/dist/vendor/starlight/integrations/remark-rehype.js +68 -0
- package/dist/vendor/starlight/integrations/shared/absolutePathToLang.js +15 -0
- package/dist/vendor/starlight/integrations/shared/localeToLang.js +9 -0
- package/dist/vendor/starlight/integrations/shared/slugToLocale.js +10 -0
- package/dist/vendor/starlight/integrations/sitemap.js +20 -0
- package/dist/vendor/starlight/integrations/virtual-user-config.js +110 -0
- package/dist/vendor/starlight/integrations/vite-layer-order.js +42 -0
- package/dist/vendor/starlight/internal.js +6 -0
- package/dist/vendor/starlight/loaders.js +36 -0
- package/dist/vendor/starlight/locals.d.js +0 -0
- package/dist/vendor/starlight/locals.js +30 -0
- package/dist/vendor/starlight/package.json +231 -0
- package/dist/vendor/starlight/package.json.js +248 -0
- package/dist/vendor/starlight/props.js +0 -0
- package/dist/vendor/starlight/route-data.js +6 -0
- package/dist/vendor/starlight/routes/common.astro +23 -0
- package/dist/vendor/starlight/routes/ssr/404.astro +7 -0
- package/dist/vendor/starlight/routes/ssr/index.astro +14 -0
- package/dist/vendor/starlight/routes/static/404.astro +7 -0
- package/dist/vendor/starlight/routes/static/index.astro +12 -0
- package/dist/vendor/starlight/schema.js +102 -0
- package/dist/vendor/starlight/schemas/badge.js +26 -0
- package/dist/vendor/starlight/schemas/components.js +235 -0
- package/dist/vendor/starlight/schemas/expressiveCode.js +12 -0
- package/dist/vendor/starlight/schemas/favicon.js +33 -0
- package/dist/vendor/starlight/schemas/head.js +32 -0
- package/dist/vendor/starlight/schemas/hero.js +57 -0
- package/dist/vendor/starlight/schemas/i18n.js +101 -0
- package/dist/vendor/starlight/schemas/icon.js +7 -0
- package/dist/vendor/starlight/schemas/logo.js +24 -0
- package/dist/vendor/starlight/schemas/pagefind.js +108 -0
- package/dist/vendor/starlight/schemas/prevNextLink.js +14 -0
- package/dist/vendor/starlight/schemas/sidebar.js +80 -0
- package/dist/vendor/starlight/schemas/site-title.js +19 -0
- package/dist/vendor/starlight/schemas/social.js +19 -0
- package/dist/vendor/starlight/schemas/tableOfContents.js +16 -0
- package/dist/vendor/starlight/style/anchor-links.css +131 -0
- package/dist/vendor/starlight/style/asides.css +51 -0
- package/dist/vendor/starlight/style/layers.css +1 -0
- package/dist/vendor/starlight/style/markdown.css +253 -0
- package/dist/vendor/starlight/style/print.css +175 -0
- package/dist/vendor/starlight/style/props.css +188 -0
- package/dist/vendor/starlight/style/reset.css +52 -0
- package/dist/vendor/starlight/style/util.css +63 -0
- package/dist/vendor/starlight/translations/ar.json +30 -0
- package/dist/vendor/starlight/translations/ar.json.js +32 -0
- package/dist/vendor/starlight/translations/ca.json +43 -0
- package/dist/vendor/starlight/translations/ca.json.js +45 -0
- package/dist/vendor/starlight/translations/cs.json +43 -0
- package/dist/vendor/starlight/translations/cs.json.js +45 -0
- package/dist/vendor/starlight/translations/da.json +30 -0
- package/dist/vendor/starlight/translations/da.json.js +32 -0
- package/dist/vendor/starlight/translations/de.json +30 -0
- package/dist/vendor/starlight/translations/de.json.js +32 -0
- package/dist/vendor/starlight/translations/el.json +30 -0
- package/dist/vendor/starlight/translations/el.json.js +32 -0
- package/dist/vendor/starlight/translations/en.json +30 -0
- package/dist/vendor/starlight/translations/en.json.js +32 -0
- package/dist/vendor/starlight/translations/es.json +43 -0
- package/dist/vendor/starlight/translations/es.json.js +45 -0
- package/dist/vendor/starlight/translations/fa.json +30 -0
- package/dist/vendor/starlight/translations/fa.json.js +32 -0
- package/dist/vendor/starlight/translations/fi.json +30 -0
- package/dist/vendor/starlight/translations/fi.json.js +32 -0
- package/dist/vendor/starlight/translations/fr.json +33 -0
- package/dist/vendor/starlight/translations/fr.json.js +35 -0
- package/dist/vendor/starlight/translations/gl.json +43 -0
- package/dist/vendor/starlight/translations/gl.json.js +45 -0
- package/dist/vendor/starlight/translations/he.json +30 -0
- package/dist/vendor/starlight/translations/he.json.js +32 -0
- package/dist/vendor/starlight/translations/hi.json +30 -0
- package/dist/vendor/starlight/translations/hi.json.js +32 -0
- package/dist/vendor/starlight/translations/hu.json +43 -0
- package/dist/vendor/starlight/translations/hu.json.js +45 -0
- package/dist/vendor/starlight/translations/id.json +30 -0
- package/dist/vendor/starlight/translations/id.json.js +32 -0
- package/dist/vendor/starlight/translations/index.js +77 -0
- package/dist/vendor/starlight/translations/it.json +30 -0
- package/dist/vendor/starlight/translations/it.json.js +32 -0
- package/dist/vendor/starlight/translations/ja.json +30 -0
- package/dist/vendor/starlight/translations/ja.json.js +32 -0
- package/dist/vendor/starlight/translations/ko.json +30 -0
- package/dist/vendor/starlight/translations/ko.json.js +32 -0
- package/dist/vendor/starlight/translations/lv.json +30 -0
- package/dist/vendor/starlight/translations/lv.json.js +32 -0
- package/dist/vendor/starlight/translations/nb.json +30 -0
- package/dist/vendor/starlight/translations/nb.json.js +32 -0
- package/dist/vendor/starlight/translations/nl.json +30 -0
- package/dist/vendor/starlight/translations/nl.json.js +32 -0
- package/dist/vendor/starlight/translations/pl.json +33 -0
- package/dist/vendor/starlight/translations/pl.json.js +35 -0
- package/dist/vendor/starlight/translations/pt.json +30 -0
- package/dist/vendor/starlight/translations/pt.json.js +32 -0
- package/dist/vendor/starlight/translations/ro.json +30 -0
- package/dist/vendor/starlight/translations/ro.json.js +32 -0
- package/dist/vendor/starlight/translations/ru.json +33 -0
- package/dist/vendor/starlight/translations/ru.json.js +35 -0
- package/dist/vendor/starlight/translations/sk.json +30 -0
- package/dist/vendor/starlight/translations/sk.json.js +32 -0
- package/dist/vendor/starlight/translations/sv.json +30 -0
- package/dist/vendor/starlight/translations/sv.json.js +32 -0
- package/dist/vendor/starlight/translations/th.json +30 -0
- package/dist/vendor/starlight/translations/th.json.js +32 -0
- package/dist/vendor/starlight/translations/tr.json +30 -0
- package/dist/vendor/starlight/translations/tr.json.js +32 -0
- package/dist/vendor/starlight/translations/uk.json +30 -0
- package/dist/vendor/starlight/translations/uk.json.js +32 -0
- package/dist/vendor/starlight/translations/vi.json +30 -0
- package/dist/vendor/starlight/translations/vi.json.js +32 -0
- package/dist/vendor/starlight/translations/zh-CN.json +30 -0
- package/dist/vendor/starlight/translations/zh-CN.json.js +32 -0
- package/dist/vendor/starlight/translations/zh-TW.json +30 -0
- package/dist/vendor/starlight/translations/zh-TW.json.js +32 -0
- package/dist/vendor/starlight/types.js +0 -0
- package/dist/vendor/starlight/user-components/Aside.astro +40 -0
- package/dist/vendor/starlight/user-components/Badge.astro +148 -0
- package/dist/vendor/starlight/user-components/Card.astro +68 -0
- package/dist/vendor/starlight/user-components/CardGrid.astro +38 -0
- package/dist/vendor/starlight/user-components/FileTree.astro +137 -0
- package/dist/vendor/starlight/user-components/Icon.astro +42 -0
- package/dist/vendor/starlight/user-components/LinkButton.astro +78 -0
- package/dist/vendor/starlight/user-components/LinkCard.astro +78 -0
- package/dist/vendor/starlight/user-components/Steps.astro +90 -0
- package/dist/vendor/starlight/user-components/TabItem.astro +19 -0
- package/dist/vendor/starlight/user-components/Tabs.astro +268 -0
- package/dist/vendor/starlight/user-components/file-tree-icons.js +608 -0
- package/dist/vendor/starlight/user-components/rehype-file-tree.js +160 -0
- package/dist/vendor/starlight/user-components/rehype-steps.js +53 -0
- package/dist/vendor/starlight/user-components/rehype-tabs.js +73 -0
- package/dist/vendor/starlight/utils/base.js +14 -0
- package/dist/vendor/starlight/utils/canonical.js +13 -0
- package/dist/vendor/starlight/utils/collection-fs.js +13 -0
- package/dist/vendor/starlight/utils/collection.js +16 -0
- package/dist/vendor/starlight/utils/createPathFormatter.js +39 -0
- package/dist/vendor/starlight/utils/createTranslationSystem.js +60 -0
- package/dist/vendor/starlight/utils/error-map.js +110 -0
- package/dist/vendor/starlight/utils/format-path.js +9 -0
- package/dist/vendor/starlight/utils/generateToC.js +18 -0
- package/dist/vendor/starlight/utils/git.js +92 -0
- package/dist/vendor/starlight/utils/gitInlined.js +13 -0
- package/dist/vendor/starlight/utils/head.js +156 -0
- package/dist/vendor/starlight/utils/i18n.js +121 -0
- package/dist/vendor/starlight/utils/localizedUrl.js +37 -0
- package/dist/vendor/starlight/utils/navigation.js +320 -0
- package/dist/vendor/starlight/utils/path.js +52 -0
- package/dist/vendor/starlight/utils/plugins.js +355 -0
- package/dist/vendor/starlight/utils/routing/data.js +116 -0
- package/dist/vendor/starlight/utils/routing/index.js +107 -0
- package/dist/vendor/starlight/utils/routing/middleware.js +40 -0
- package/dist/vendor/starlight/utils/routing/types.js +0 -0
- package/dist/vendor/starlight/utils/routing.js +1 -0
- package/dist/vendor/starlight/utils/slugs.js +70 -0
- package/dist/vendor/starlight/utils/starlight-page.js +123 -0
- package/dist/vendor/starlight/utils/translations-fs.js +31 -0
- package/dist/vendor/starlight/utils/translations.js +31 -0
- package/dist/vendor/starlight/utils/types.js +0 -0
- package/dist/vendor/starlight/utils/url.js +5 -0
- package/dist/vendor/starlight/utils/user-config.js +255 -0
- package/dist/vendor/starlight/utils/validateLogoImports.js +22 -0
- package/dist/vendor/starlight/virtual-internal.d.js +0 -0
- package/dist/vendor/starlight/virtual.d.js +0 -0
- package/dist/worker/forms-worker.js +141 -0
- package/package.json +156 -0
- package/style/anchor-links.css +131 -0
- package/templates/github/deploy.workflow.yml +47 -0
- package/tsconfigs/strict.json +3 -0
- package/utils/git.ts +121 -0
- package/utils/gitInlined.ts +20 -0
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
const __treeseedJson = {
|
|
2
|
+
"skipLink.label": "Sari la conținut",
|
|
3
|
+
"search.label": "Caută",
|
|
4
|
+
"search.ctrlKey": "Ctrl",
|
|
5
|
+
"search.cancelLabel": "Anulează",
|
|
6
|
+
"search.devWarning": "Căutarea este disponibilă numai în versiunea de producție. \nÎncercă să construiești și să previzualizezi site-ul pentru a-l testa local.",
|
|
7
|
+
"themeSelect.accessibleLabel": "Selectează tema",
|
|
8
|
+
"themeSelect.dark": "Întunecată",
|
|
9
|
+
"themeSelect.light": "Deschisă",
|
|
10
|
+
"themeSelect.auto": "Auto",
|
|
11
|
+
"languageSelect.accessibleLabel": "Selectează limba",
|
|
12
|
+
"menuButton.accessibleLabel": "Meniu",
|
|
13
|
+
"sidebarNav.accessibleLabel": "Principal",
|
|
14
|
+
"tableOfContents.onThisPage": "Pe această pagină",
|
|
15
|
+
"tableOfContents.overview": "Sinopsis",
|
|
16
|
+
"i18n.untranslatedContent": "Acest conținut nu este încă disponibil în limba selectată.",
|
|
17
|
+
"page.editLink": "Editează pagina",
|
|
18
|
+
"page.lastUpdated": "Ultima actualizare:",
|
|
19
|
+
"page.previousLink": "Pagina precendentă",
|
|
20
|
+
"page.nextLink": "Pagina următoare",
|
|
21
|
+
"page.draft": "This content is a draft and will not be included in production builds.",
|
|
22
|
+
"404.text": "Pagina nu a fost găsită. Verifică adresa URL sau încercă să folosești bara de căutare.",
|
|
23
|
+
"aside.note": "Mențiune",
|
|
24
|
+
"aside.tip": "Sfat",
|
|
25
|
+
"aside.caution": "Atenție",
|
|
26
|
+
"aside.danger": "Pericol",
|
|
27
|
+
"fileTree.directory": "Directory",
|
|
28
|
+
"builtWithStarlight.label": "Built with Starlight",
|
|
29
|
+
"heading.anchorLabel": "Section titled “{{title}}”"
|
|
30
|
+
};
|
|
31
|
+
export default __treeseedJson;
|
|
32
|
+
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
{
|
|
2
|
+
"skipLink.label": "Перейти к содержимому",
|
|
3
|
+
"search.label": "Поиск",
|
|
4
|
+
"search.ctrlKey": "Ctrl",
|
|
5
|
+
"search.cancelLabel": "Отменить",
|
|
6
|
+
"search.devWarning": "Поиск доступен только в продакшен-сборках. \nВыполните сборку и запустите превью, чтобы протестировать поиск локально.",
|
|
7
|
+
"themeSelect.accessibleLabel": "Выберите тему",
|
|
8
|
+
"themeSelect.dark": "Тёмная",
|
|
9
|
+
"themeSelect.light": "Светлая",
|
|
10
|
+
"themeSelect.auto": "Авто",
|
|
11
|
+
"languageSelect.accessibleLabel": "Выберите язык",
|
|
12
|
+
"menuButton.accessibleLabel": "Меню",
|
|
13
|
+
"sidebarNav.accessibleLabel": "Основное",
|
|
14
|
+
"tableOfContents.onThisPage": "На этой странице",
|
|
15
|
+
"tableOfContents.overview": "Обзор",
|
|
16
|
+
"i18n.untranslatedContent": "Это содержимое пока не доступно на вашем языке.",
|
|
17
|
+
"page.editLink": "Редактировать страницу",
|
|
18
|
+
"page.lastUpdated": "Последнее обновление:",
|
|
19
|
+
"page.previousLink": "Предыдущая",
|
|
20
|
+
"page.nextLink": "Следующая",
|
|
21
|
+
"page.draft": "Этот контент является черновиком и не будет добавлен в продакшен-сборки.",
|
|
22
|
+
"404.text": "Страница не найдена. Проверьте URL или используйте поиск по сайту.",
|
|
23
|
+
"aside.note": "Заметка",
|
|
24
|
+
"aside.tip": "Совет",
|
|
25
|
+
"aside.caution": "Осторожно",
|
|
26
|
+
"aside.danger": "Опасно",
|
|
27
|
+
"fileTree.directory": "Директория",
|
|
28
|
+
"expressiveCode.copyButtonCopied": "Скопировано!",
|
|
29
|
+
"expressiveCode.copyButtonTooltip": "Копировать",
|
|
30
|
+
"expressiveCode.terminalWindowFallbackTitle": "Окно терминала",
|
|
31
|
+
"builtWithStarlight.label": "Сделано с помощью Starlight",
|
|
32
|
+
"heading.anchorLabel": "Заголовок раздела «{{title}}»"
|
|
33
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
const __treeseedJson = {
|
|
2
|
+
"skipLink.label": "Перейти к содержимому",
|
|
3
|
+
"search.label": "Поиск",
|
|
4
|
+
"search.ctrlKey": "Ctrl",
|
|
5
|
+
"search.cancelLabel": "Отменить",
|
|
6
|
+
"search.devWarning": "Поиск доступен только в продакшен-сборках. \nВыполните сборку и запустите превью, чтобы протестировать поиск локально.",
|
|
7
|
+
"themeSelect.accessibleLabel": "Выберите тему",
|
|
8
|
+
"themeSelect.dark": "Тёмная",
|
|
9
|
+
"themeSelect.light": "Светлая",
|
|
10
|
+
"themeSelect.auto": "Авто",
|
|
11
|
+
"languageSelect.accessibleLabel": "Выберите язык",
|
|
12
|
+
"menuButton.accessibleLabel": "Меню",
|
|
13
|
+
"sidebarNav.accessibleLabel": "Основное",
|
|
14
|
+
"tableOfContents.onThisPage": "На этой странице",
|
|
15
|
+
"tableOfContents.overview": "Обзор",
|
|
16
|
+
"i18n.untranslatedContent": "Это содержимое пока не доступно на вашем языке.",
|
|
17
|
+
"page.editLink": "Редактировать страницу",
|
|
18
|
+
"page.lastUpdated": "Последнее обновление:",
|
|
19
|
+
"page.previousLink": "Предыдущая",
|
|
20
|
+
"page.nextLink": "Следующая",
|
|
21
|
+
"page.draft": "Этот контент является черновиком и не будет добавлен в продакшен-сборки.",
|
|
22
|
+
"404.text": "Страница не найдена. Проверьте URL или используйте поиск по сайту.",
|
|
23
|
+
"aside.note": "Заметка",
|
|
24
|
+
"aside.tip": "Совет",
|
|
25
|
+
"aside.caution": "Осторожно",
|
|
26
|
+
"aside.danger": "Опасно",
|
|
27
|
+
"fileTree.directory": "Директория",
|
|
28
|
+
"expressiveCode.copyButtonCopied": "Скопировано!",
|
|
29
|
+
"expressiveCode.copyButtonTooltip": "Копировать",
|
|
30
|
+
"expressiveCode.terminalWindowFallbackTitle": "Окно терминала",
|
|
31
|
+
"builtWithStarlight.label": "Сделано с помощью Starlight",
|
|
32
|
+
"heading.anchorLabel": "Заголовок раздела «{{title}}»"
|
|
33
|
+
};
|
|
34
|
+
export default __treeseedJson;
|
|
35
|
+
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"skipLink.label": "Preskočiť na obsah",
|
|
3
|
+
"search.label": "Hľadať",
|
|
4
|
+
"search.ctrlKey": "Ctrl",
|
|
5
|
+
"search.cancelLabel": "Zrušiť",
|
|
6
|
+
"search.devWarning": "Vyhľadávanie je dostupné len v produkčných zostaveniach. \nSkúste vytvoriť a zobraziť náhľad stránky lokálne.",
|
|
7
|
+
"themeSelect.accessibleLabel": "Vyberte tému",
|
|
8
|
+
"themeSelect.dark": "Tmavý",
|
|
9
|
+
"themeSelect.light": "Svetlý",
|
|
10
|
+
"themeSelect.auto": "Auto",
|
|
11
|
+
"languageSelect.accessibleLabel": "Vyberte jazyk",
|
|
12
|
+
"menuButton.accessibleLabel": "Menu",
|
|
13
|
+
"sidebarNav.accessibleLabel": "Hlavný",
|
|
14
|
+
"tableOfContents.onThisPage": "Na tejto stránke",
|
|
15
|
+
"tableOfContents.overview": "Prehľad",
|
|
16
|
+
"i18n.untranslatedContent": "Tento obsah zatiaľ nie je dostupný vo vašom jazyku.",
|
|
17
|
+
"page.editLink": "Upraviť stránku",
|
|
18
|
+
"page.lastUpdated": "Posledná aktualizácia:",
|
|
19
|
+
"page.previousLink": "Predchádzajúce",
|
|
20
|
+
"page.nextLink": "Nasledujúce",
|
|
21
|
+
"page.draft": "Tento obsah je koncept a nebude zahrnutý do produkčných zostavení.",
|
|
22
|
+
"404.text": "Stránka nenájdená. Skontrolujte URL alebo skúste použiť vyhľadávacie pole.",
|
|
23
|
+
"aside.note": "Poznámka",
|
|
24
|
+
"aside.tip": "Tip",
|
|
25
|
+
"aside.caution": "Upozornenie",
|
|
26
|
+
"aside.danger": "Nebezpečenstvo",
|
|
27
|
+
"fileTree.directory": "Adresár",
|
|
28
|
+
"builtWithStarlight.label": "Postavené so Starlight",
|
|
29
|
+
"heading.anchorLabel": "Section titled “{{title}}”"
|
|
30
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
const __treeseedJson = {
|
|
2
|
+
"skipLink.label": "Preskočiť na obsah",
|
|
3
|
+
"search.label": "Hľadať",
|
|
4
|
+
"search.ctrlKey": "Ctrl",
|
|
5
|
+
"search.cancelLabel": "Zrušiť",
|
|
6
|
+
"search.devWarning": "Vyhľadávanie je dostupné len v produkčných zostaveniach. \nSkúste vytvoriť a zobraziť náhľad stránky lokálne.",
|
|
7
|
+
"themeSelect.accessibleLabel": "Vyberte tému",
|
|
8
|
+
"themeSelect.dark": "Tmavý",
|
|
9
|
+
"themeSelect.light": "Svetlý",
|
|
10
|
+
"themeSelect.auto": "Auto",
|
|
11
|
+
"languageSelect.accessibleLabel": "Vyberte jazyk",
|
|
12
|
+
"menuButton.accessibleLabel": "Menu",
|
|
13
|
+
"sidebarNav.accessibleLabel": "Hlavný",
|
|
14
|
+
"tableOfContents.onThisPage": "Na tejto stránke",
|
|
15
|
+
"tableOfContents.overview": "Prehľad",
|
|
16
|
+
"i18n.untranslatedContent": "Tento obsah zatiaľ nie je dostupný vo vašom jazyku.",
|
|
17
|
+
"page.editLink": "Upraviť stránku",
|
|
18
|
+
"page.lastUpdated": "Posledná aktualizácia:",
|
|
19
|
+
"page.previousLink": "Predchádzajúce",
|
|
20
|
+
"page.nextLink": "Nasledujúce",
|
|
21
|
+
"page.draft": "Tento obsah je koncept a nebude zahrnutý do produkčných zostavení.",
|
|
22
|
+
"404.text": "Stránka nenájdená. Skontrolujte URL alebo skúste použiť vyhľadávacie pole.",
|
|
23
|
+
"aside.note": "Poznámka",
|
|
24
|
+
"aside.tip": "Tip",
|
|
25
|
+
"aside.caution": "Upozornenie",
|
|
26
|
+
"aside.danger": "Nebezpečenstvo",
|
|
27
|
+
"fileTree.directory": "Adresár",
|
|
28
|
+
"builtWithStarlight.label": "Postavené so Starlight",
|
|
29
|
+
"heading.anchorLabel": "Section titled “{{title}}”"
|
|
30
|
+
};
|
|
31
|
+
export default __treeseedJson;
|
|
32
|
+
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"skipLink.label": "Hoppa till innehåll",
|
|
3
|
+
"search.label": "Sök",
|
|
4
|
+
"search.ctrlKey": "Ctrl",
|
|
5
|
+
"search.cancelLabel": "Avbryt",
|
|
6
|
+
"search.devWarning": "Sökfunktionen är endast tillgänglig i produktionsbyggen. \nProva att bygga och förhandsvisa siten för att testa det lokalt.",
|
|
7
|
+
"themeSelect.accessibleLabel": "Välj tema",
|
|
8
|
+
"themeSelect.dark": "Mörkt",
|
|
9
|
+
"themeSelect.light": "Ljust",
|
|
10
|
+
"themeSelect.auto": "Auto",
|
|
11
|
+
"languageSelect.accessibleLabel": "Välj språk",
|
|
12
|
+
"menuButton.accessibleLabel": "Meny",
|
|
13
|
+
"sidebarNav.accessibleLabel": "Huvudmeny",
|
|
14
|
+
"tableOfContents.onThisPage": "På den här sidan",
|
|
15
|
+
"tableOfContents.overview": "Översikt",
|
|
16
|
+
"i18n.untranslatedContent": "Det här innehållet är inte tillgängligt på ditt språk än.",
|
|
17
|
+
"page.editLink": "Redigera sida",
|
|
18
|
+
"page.lastUpdated": "Senast uppdaterad:",
|
|
19
|
+
"page.previousLink": "Föregående",
|
|
20
|
+
"page.nextLink": "Nästa",
|
|
21
|
+
"page.draft": "This content is a draft and will not be included in production builds.",
|
|
22
|
+
"404.text": "Sidan hittades inte. Kontrollera URL:n eller testa att använda sökfältet.",
|
|
23
|
+
"aside.note": "Note",
|
|
24
|
+
"aside.tip": "Tip",
|
|
25
|
+
"aside.caution": "Caution",
|
|
26
|
+
"aside.danger": "Danger",
|
|
27
|
+
"fileTree.directory": "Directory",
|
|
28
|
+
"builtWithStarlight.label": "Built with Starlight",
|
|
29
|
+
"heading.anchorLabel": "Section titled “{{title}}”"
|
|
30
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
const __treeseedJson = {
|
|
2
|
+
"skipLink.label": "Hoppa till innehåll",
|
|
3
|
+
"search.label": "Sök",
|
|
4
|
+
"search.ctrlKey": "Ctrl",
|
|
5
|
+
"search.cancelLabel": "Avbryt",
|
|
6
|
+
"search.devWarning": "Sökfunktionen är endast tillgänglig i produktionsbyggen. \nProva att bygga och förhandsvisa siten för att testa det lokalt.",
|
|
7
|
+
"themeSelect.accessibleLabel": "Välj tema",
|
|
8
|
+
"themeSelect.dark": "Mörkt",
|
|
9
|
+
"themeSelect.light": "Ljust",
|
|
10
|
+
"themeSelect.auto": "Auto",
|
|
11
|
+
"languageSelect.accessibleLabel": "Välj språk",
|
|
12
|
+
"menuButton.accessibleLabel": "Meny",
|
|
13
|
+
"sidebarNav.accessibleLabel": "Huvudmeny",
|
|
14
|
+
"tableOfContents.onThisPage": "På den här sidan",
|
|
15
|
+
"tableOfContents.overview": "Översikt",
|
|
16
|
+
"i18n.untranslatedContent": "Det här innehållet är inte tillgängligt på ditt språk än.",
|
|
17
|
+
"page.editLink": "Redigera sida",
|
|
18
|
+
"page.lastUpdated": "Senast uppdaterad:",
|
|
19
|
+
"page.previousLink": "Föregående",
|
|
20
|
+
"page.nextLink": "Nästa",
|
|
21
|
+
"page.draft": "This content is a draft and will not be included in production builds.",
|
|
22
|
+
"404.text": "Sidan hittades inte. Kontrollera URL:n eller testa att använda sökfältet.",
|
|
23
|
+
"aside.note": "Note",
|
|
24
|
+
"aside.tip": "Tip",
|
|
25
|
+
"aside.caution": "Caution",
|
|
26
|
+
"aside.danger": "Danger",
|
|
27
|
+
"fileTree.directory": "Directory",
|
|
28
|
+
"builtWithStarlight.label": "Built with Starlight",
|
|
29
|
+
"heading.anchorLabel": "Section titled “{{title}}”"
|
|
30
|
+
};
|
|
31
|
+
export default __treeseedJson;
|
|
32
|
+
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"skipLink.label": "ข้ามไปยังเนื้อหา",
|
|
3
|
+
"search.label": "ค้นหา",
|
|
4
|
+
"search.ctrlKey": "Ctrl",
|
|
5
|
+
"search.cancelLabel": "ยกเลิก",
|
|
6
|
+
"search.devWarning": "การค้นหาสามารถใช้งานได้ในเฉพาะเวอร์ชันใช้งานจริงเท่านั้น\nโปรดลองบิลด์และดูตัวอย่างเว็บไซต์เพื่อทดสอบฟังก์ชันบนอุปกรณ์ของคุณ",
|
|
7
|
+
"themeSelect.accessibleLabel": "เลือกธีม",
|
|
8
|
+
"themeSelect.dark": "มืด",
|
|
9
|
+
"themeSelect.light": "สว่าง",
|
|
10
|
+
"themeSelect.auto": "อัตโนมัติ",
|
|
11
|
+
"languageSelect.accessibleLabel": "เลือกภาษา",
|
|
12
|
+
"menuButton.accessibleLabel": "เมนู",
|
|
13
|
+
"sidebarNav.accessibleLabel": "หลัก",
|
|
14
|
+
"tableOfContents.onThisPage": "ในหน้านี้",
|
|
15
|
+
"tableOfContents.overview": "ภาพรวม",
|
|
16
|
+
"i18n.untranslatedContent": "เนื้อหานี้ยังไม่มีในภาษาของคุณ",
|
|
17
|
+
"page.editLink": "แก้ไขหน้า",
|
|
18
|
+
"page.lastUpdated": "อัพเดทล่าสุด:",
|
|
19
|
+
"page.previousLink": "ก่อนหน้า",
|
|
20
|
+
"page.nextLink": "ถัดไป",
|
|
21
|
+
"page.draft": "เนื้อหานี้เป็นแบบร่างและจะไม่ถูกใส่ในเวอร์ชันใช้งานจริง",
|
|
22
|
+
"404.text": "ไม่พบหน้า โปรดตรวจสอบ URL หรือลองใช้ฟังก์ชันการค้นหา",
|
|
23
|
+
"aside.note": "หมายเหตุ",
|
|
24
|
+
"aside.tip": "เคล็ดลับ",
|
|
25
|
+
"aside.caution": "คำเตือน",
|
|
26
|
+
"aside.danger": "อันตราย",
|
|
27
|
+
"fileTree.directory": "โฟลเดอร์",
|
|
28
|
+
"builtWithStarlight.label": "ถูกสร้างขึ้นด้วย Starlight",
|
|
29
|
+
"heading.anchorLabel": "หัวข้อที่มีชื่อว่า “{{title}}”"
|
|
30
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
const __treeseedJson = {
|
|
2
|
+
"skipLink.label": "ข้ามไปยังเนื้อหา",
|
|
3
|
+
"search.label": "ค้นหา",
|
|
4
|
+
"search.ctrlKey": "Ctrl",
|
|
5
|
+
"search.cancelLabel": "ยกเลิก",
|
|
6
|
+
"search.devWarning": "การค้นหาสามารถใช้งานได้ในเฉพาะเวอร์ชันใช้งานจริงเท่านั้น\nโปรดลองบิลด์และดูตัวอย่างเว็บไซต์เพื่อทดสอบฟังก์ชันบนอุปกรณ์ของคุณ",
|
|
7
|
+
"themeSelect.accessibleLabel": "เลือกธีม",
|
|
8
|
+
"themeSelect.dark": "มืด",
|
|
9
|
+
"themeSelect.light": "สว่าง",
|
|
10
|
+
"themeSelect.auto": "อัตโนมัติ",
|
|
11
|
+
"languageSelect.accessibleLabel": "เลือกภาษา",
|
|
12
|
+
"menuButton.accessibleLabel": "เมนู",
|
|
13
|
+
"sidebarNav.accessibleLabel": "หลัก",
|
|
14
|
+
"tableOfContents.onThisPage": "ในหน้านี้",
|
|
15
|
+
"tableOfContents.overview": "ภาพรวม",
|
|
16
|
+
"i18n.untranslatedContent": "เนื้อหานี้ยังไม่มีในภาษาของคุณ",
|
|
17
|
+
"page.editLink": "แก้ไขหน้า",
|
|
18
|
+
"page.lastUpdated": "อัพเดทล่าสุด:",
|
|
19
|
+
"page.previousLink": "ก่อนหน้า",
|
|
20
|
+
"page.nextLink": "ถัดไป",
|
|
21
|
+
"page.draft": "เนื้อหานี้เป็นแบบร่างและจะไม่ถูกใส่ในเวอร์ชันใช้งานจริง",
|
|
22
|
+
"404.text": "ไม่พบหน้า โปรดตรวจสอบ URL หรือลองใช้ฟังก์ชันการค้นหา",
|
|
23
|
+
"aside.note": "หมายเหตุ",
|
|
24
|
+
"aside.tip": "เคล็ดลับ",
|
|
25
|
+
"aside.caution": "คำเตือน",
|
|
26
|
+
"aside.danger": "อันตราย",
|
|
27
|
+
"fileTree.directory": "โฟลเดอร์",
|
|
28
|
+
"builtWithStarlight.label": "ถูกสร้างขึ้นด้วย Starlight",
|
|
29
|
+
"heading.anchorLabel": "หัวข้อที่มีชื่อว่า “{{title}}”"
|
|
30
|
+
};
|
|
31
|
+
export default __treeseedJson;
|
|
32
|
+
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"skipLink.label": "İçeriğe geç",
|
|
3
|
+
"search.label": "Ara",
|
|
4
|
+
"search.ctrlKey": "Ctrl",
|
|
5
|
+
"search.cancelLabel": "İptal",
|
|
6
|
+
"search.devWarning": "Arama yalnızca üretim derlemelerinde kullanılabilir. \nYerel bilgisayarınızda test etmek için siteyi derleyin ve önizleme yapın.",
|
|
7
|
+
"themeSelect.accessibleLabel": "Tema seç",
|
|
8
|
+
"themeSelect.dark": "Koyu",
|
|
9
|
+
"themeSelect.light": "Açık",
|
|
10
|
+
"themeSelect.auto": "Otomatik",
|
|
11
|
+
"languageSelect.accessibleLabel": "Dil seçin",
|
|
12
|
+
"menuButton.accessibleLabel": "Menü",
|
|
13
|
+
"sidebarNav.accessibleLabel": "Ana",
|
|
14
|
+
"tableOfContents.onThisPage": "Sayfa içeriği",
|
|
15
|
+
"tableOfContents.overview": "Genel bakış",
|
|
16
|
+
"i18n.untranslatedContent": "Bu içerik henüz dilinizde mevcut değil.",
|
|
17
|
+
"page.editLink": "Sayfayı düzenle",
|
|
18
|
+
"page.lastUpdated": "Son güncelleme:",
|
|
19
|
+
"page.previousLink": "Önceki",
|
|
20
|
+
"page.nextLink": "Sonraki",
|
|
21
|
+
"page.draft": "Bu içerik taslaktır ve canlı sürümde bulunmayacaktır.",
|
|
22
|
+
"404.text": "Sayfa bulunamadı. URL'i kontrol edin ya da arama çubuğunu kullanmayı deneyin.",
|
|
23
|
+
"aside.note": "Not",
|
|
24
|
+
"aside.tip": "İpucu",
|
|
25
|
+
"aside.caution": "Dikkat",
|
|
26
|
+
"aside.danger": "Tehlike",
|
|
27
|
+
"fileTree.directory": "Dizin",
|
|
28
|
+
"builtWithStarlight.label": "Built with Starlight",
|
|
29
|
+
"heading.anchorLabel": "Section titled “{{title}}”"
|
|
30
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
const __treeseedJson = {
|
|
2
|
+
"skipLink.label": "İçeriğe geç",
|
|
3
|
+
"search.label": "Ara",
|
|
4
|
+
"search.ctrlKey": "Ctrl",
|
|
5
|
+
"search.cancelLabel": "İptal",
|
|
6
|
+
"search.devWarning": "Arama yalnızca üretim derlemelerinde kullanılabilir. \nYerel bilgisayarınızda test etmek için siteyi derleyin ve önizleme yapın.",
|
|
7
|
+
"themeSelect.accessibleLabel": "Tema seç",
|
|
8
|
+
"themeSelect.dark": "Koyu",
|
|
9
|
+
"themeSelect.light": "Açık",
|
|
10
|
+
"themeSelect.auto": "Otomatik",
|
|
11
|
+
"languageSelect.accessibleLabel": "Dil seçin",
|
|
12
|
+
"menuButton.accessibleLabel": "Menü",
|
|
13
|
+
"sidebarNav.accessibleLabel": "Ana",
|
|
14
|
+
"tableOfContents.onThisPage": "Sayfa içeriği",
|
|
15
|
+
"tableOfContents.overview": "Genel bakış",
|
|
16
|
+
"i18n.untranslatedContent": "Bu içerik henüz dilinizde mevcut değil.",
|
|
17
|
+
"page.editLink": "Sayfayı düzenle",
|
|
18
|
+
"page.lastUpdated": "Son güncelleme:",
|
|
19
|
+
"page.previousLink": "Önceki",
|
|
20
|
+
"page.nextLink": "Sonraki",
|
|
21
|
+
"page.draft": "Bu içerik taslaktır ve canlı sürümde bulunmayacaktır.",
|
|
22
|
+
"404.text": "Sayfa bulunamadı. URL'i kontrol edin ya da arama çubuğunu kullanmayı deneyin.",
|
|
23
|
+
"aside.note": "Not",
|
|
24
|
+
"aside.tip": "İpucu",
|
|
25
|
+
"aside.caution": "Dikkat",
|
|
26
|
+
"aside.danger": "Tehlike",
|
|
27
|
+
"fileTree.directory": "Dizin",
|
|
28
|
+
"builtWithStarlight.label": "Built with Starlight",
|
|
29
|
+
"heading.anchorLabel": "Section titled “{{title}}”"
|
|
30
|
+
};
|
|
31
|
+
export default __treeseedJson;
|
|
32
|
+
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"skipLink.label": "Перейти до вмісту",
|
|
3
|
+
"search.label": "Пошук",
|
|
4
|
+
"search.ctrlKey": "Ctrl",
|
|
5
|
+
"search.cancelLabel": "Скасувати",
|
|
6
|
+
"search.devWarning": "Пошук доступний лише у виробничих збірках. \nСпробуйте зібрати та переглянути сайт, щоби протестувати його локально",
|
|
7
|
+
"themeSelect.accessibleLabel": "Обрати тему",
|
|
8
|
+
"themeSelect.dark": "Темна",
|
|
9
|
+
"themeSelect.light": "Світла",
|
|
10
|
+
"themeSelect.auto": "Авто",
|
|
11
|
+
"languageSelect.accessibleLabel": "Обрати мову",
|
|
12
|
+
"menuButton.accessibleLabel": "Меню",
|
|
13
|
+
"sidebarNav.accessibleLabel": "Головне",
|
|
14
|
+
"tableOfContents.onThisPage": "На цій сторінці",
|
|
15
|
+
"tableOfContents.overview": "Огляд",
|
|
16
|
+
"i18n.untranslatedContent": "Цей контент ще не доступний вашою мовою.",
|
|
17
|
+
"page.editLink": "Редагувати сторінку",
|
|
18
|
+
"page.lastUpdated": "Останнє оновлення:",
|
|
19
|
+
"page.previousLink": "Назад",
|
|
20
|
+
"page.nextLink": "Далі",
|
|
21
|
+
"page.draft": "Цей контент є чернеткою і не буде включений до виробничих збірок.",
|
|
22
|
+
"404.text": "Сторінку не знайдено. Перевірте URL або спробуйте скористатися пошуком.",
|
|
23
|
+
"aside.note": "Заувага",
|
|
24
|
+
"aside.tip": "Порада",
|
|
25
|
+
"aside.caution": "Обережно",
|
|
26
|
+
"aside.danger": "Небезпечно",
|
|
27
|
+
"fileTree.directory": "Каталог",
|
|
28
|
+
"builtWithStarlight.label": "Створено з Starlight",
|
|
29
|
+
"heading.anchorLabel": "Section titled “{{title}}”"
|
|
30
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
const __treeseedJson = {
|
|
2
|
+
"skipLink.label": "Перейти до вмісту",
|
|
3
|
+
"search.label": "Пошук",
|
|
4
|
+
"search.ctrlKey": "Ctrl",
|
|
5
|
+
"search.cancelLabel": "Скасувати",
|
|
6
|
+
"search.devWarning": "Пошук доступний лише у виробничих збірках. \nСпробуйте зібрати та переглянути сайт, щоби протестувати його локально",
|
|
7
|
+
"themeSelect.accessibleLabel": "Обрати тему",
|
|
8
|
+
"themeSelect.dark": "Темна",
|
|
9
|
+
"themeSelect.light": "Світла",
|
|
10
|
+
"themeSelect.auto": "Авто",
|
|
11
|
+
"languageSelect.accessibleLabel": "Обрати мову",
|
|
12
|
+
"menuButton.accessibleLabel": "Меню",
|
|
13
|
+
"sidebarNav.accessibleLabel": "Головне",
|
|
14
|
+
"tableOfContents.onThisPage": "На цій сторінці",
|
|
15
|
+
"tableOfContents.overview": "Огляд",
|
|
16
|
+
"i18n.untranslatedContent": "Цей контент ще не доступний вашою мовою.",
|
|
17
|
+
"page.editLink": "Редагувати сторінку",
|
|
18
|
+
"page.lastUpdated": "Останнє оновлення:",
|
|
19
|
+
"page.previousLink": "Назад",
|
|
20
|
+
"page.nextLink": "Далі",
|
|
21
|
+
"page.draft": "Цей контент є чернеткою і не буде включений до виробничих збірок.",
|
|
22
|
+
"404.text": "Сторінку не знайдено. Перевірте URL або спробуйте скористатися пошуком.",
|
|
23
|
+
"aside.note": "Заувага",
|
|
24
|
+
"aside.tip": "Порада",
|
|
25
|
+
"aside.caution": "Обережно",
|
|
26
|
+
"aside.danger": "Небезпечно",
|
|
27
|
+
"fileTree.directory": "Каталог",
|
|
28
|
+
"builtWithStarlight.label": "Створено з Starlight",
|
|
29
|
+
"heading.anchorLabel": "Section titled “{{title}}”"
|
|
30
|
+
};
|
|
31
|
+
export default __treeseedJson;
|
|
32
|
+
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"skipLink.label": "Bỏ qua để đến nội dung",
|
|
3
|
+
"search.label": "Tìm kiếm",
|
|
4
|
+
"search.ctrlKey": "Ctrl",
|
|
5
|
+
"search.cancelLabel": "Hủy",
|
|
6
|
+
"search.devWarning": "Chức năng tìm kiếm chỉ có sẵn trong các phiên bản thật.\nHãy thử xây dựng và xem trước trang web để kiểm tra.",
|
|
7
|
+
"themeSelect.accessibleLabel": "Chọn giao diện",
|
|
8
|
+
"themeSelect.dark": "Tối",
|
|
9
|
+
"themeSelect.light": "Sáng",
|
|
10
|
+
"themeSelect.auto": "Tự động",
|
|
11
|
+
"languageSelect.accessibleLabel": "Chọn ngôn ngữ",
|
|
12
|
+
"menuButton.accessibleLabel": "Menu",
|
|
13
|
+
"sidebarNav.accessibleLabel": "Chính",
|
|
14
|
+
"tableOfContents.onThisPage": "Trên trang này",
|
|
15
|
+
"tableOfContents.overview": "Tổng quan",
|
|
16
|
+
"i18n.untranslatedContent": "Nội dung này hiện chưa có sẵn bằng ngôn ngữ của bạn.",
|
|
17
|
+
"page.editLink": "Chỉnh sửa trang",
|
|
18
|
+
"page.lastUpdated": "Cập nhật lần cuối:",
|
|
19
|
+
"page.previousLink": "Trước",
|
|
20
|
+
"page.nextLink": "Tiếp",
|
|
21
|
+
"page.draft": "Nội dung này là bản nháp và sẽ không được đưa vào các phiên bản thật.",
|
|
22
|
+
"404.text": "Không tìm thấy trang. Hãy kiểm tra lại URL hoặc thử dùng thanh tìm kiếm.",
|
|
23
|
+
"aside.note": "Ghi chú",
|
|
24
|
+
"aside.tip": "Mẹo",
|
|
25
|
+
"aside.caution": "Chú ý",
|
|
26
|
+
"aside.danger": "Nguy hiểm",
|
|
27
|
+
"fileTree.directory": "Thư mục",
|
|
28
|
+
"builtWithStarlight.label": "Được xây dựng bằng Starlight",
|
|
29
|
+
"heading.anchorLabel": "Phần tiêu đề “{{title}}”"
|
|
30
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
const __treeseedJson = {
|
|
2
|
+
"skipLink.label": "Bỏ qua để đến nội dung",
|
|
3
|
+
"search.label": "Tìm kiếm",
|
|
4
|
+
"search.ctrlKey": "Ctrl",
|
|
5
|
+
"search.cancelLabel": "Hủy",
|
|
6
|
+
"search.devWarning": "Chức năng tìm kiếm chỉ có sẵn trong các phiên bản thật.\nHãy thử xây dựng và xem trước trang web để kiểm tra.",
|
|
7
|
+
"themeSelect.accessibleLabel": "Chọn giao diện",
|
|
8
|
+
"themeSelect.dark": "Tối",
|
|
9
|
+
"themeSelect.light": "Sáng",
|
|
10
|
+
"themeSelect.auto": "Tự động",
|
|
11
|
+
"languageSelect.accessibleLabel": "Chọn ngôn ngữ",
|
|
12
|
+
"menuButton.accessibleLabel": "Menu",
|
|
13
|
+
"sidebarNav.accessibleLabel": "Chính",
|
|
14
|
+
"tableOfContents.onThisPage": "Trên trang này",
|
|
15
|
+
"tableOfContents.overview": "Tổng quan",
|
|
16
|
+
"i18n.untranslatedContent": "Nội dung này hiện chưa có sẵn bằng ngôn ngữ của bạn.",
|
|
17
|
+
"page.editLink": "Chỉnh sửa trang",
|
|
18
|
+
"page.lastUpdated": "Cập nhật lần cuối:",
|
|
19
|
+
"page.previousLink": "Trước",
|
|
20
|
+
"page.nextLink": "Tiếp",
|
|
21
|
+
"page.draft": "Nội dung này là bản nháp và sẽ không được đưa vào các phiên bản thật.",
|
|
22
|
+
"404.text": "Không tìm thấy trang. Hãy kiểm tra lại URL hoặc thử dùng thanh tìm kiếm.",
|
|
23
|
+
"aside.note": "Ghi chú",
|
|
24
|
+
"aside.tip": "Mẹo",
|
|
25
|
+
"aside.caution": "Chú ý",
|
|
26
|
+
"aside.danger": "Nguy hiểm",
|
|
27
|
+
"fileTree.directory": "Thư mục",
|
|
28
|
+
"builtWithStarlight.label": "Được xây dựng bằng Starlight",
|
|
29
|
+
"heading.anchorLabel": "Phần tiêu đề “{{title}}”"
|
|
30
|
+
};
|
|
31
|
+
export default __treeseedJson;
|
|
32
|
+
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"skipLink.label": "跳转到内容",
|
|
3
|
+
"search.label": "搜索",
|
|
4
|
+
"search.ctrlKey": "Ctrl",
|
|
5
|
+
"search.cancelLabel": "取消",
|
|
6
|
+
"search.devWarning": "搜索仅适用于生产版本。\n尝试构建并预览网站以在本地测试。",
|
|
7
|
+
"themeSelect.accessibleLabel": "选择主题",
|
|
8
|
+
"themeSelect.dark": "深色",
|
|
9
|
+
"themeSelect.light": "浅色",
|
|
10
|
+
"themeSelect.auto": "自动",
|
|
11
|
+
"languageSelect.accessibleLabel": "选择语言",
|
|
12
|
+
"menuButton.accessibleLabel": "菜单",
|
|
13
|
+
"sidebarNav.accessibleLabel": "主要",
|
|
14
|
+
"tableOfContents.onThisPage": "本页内容",
|
|
15
|
+
"tableOfContents.overview": "概述",
|
|
16
|
+
"i18n.untranslatedContent": "此内容尚不支持你的语言。",
|
|
17
|
+
"page.editLink": "编辑此页",
|
|
18
|
+
"page.lastUpdated": "最近更新:",
|
|
19
|
+
"page.previousLink": "上一页",
|
|
20
|
+
"page.nextLink": "下一页",
|
|
21
|
+
"page.draft": "此内容为草稿,不会包含在生产版本中。",
|
|
22
|
+
"404.text": "页面未找到。检查 URL 或尝试使用搜索栏。",
|
|
23
|
+
"aside.note": "注意",
|
|
24
|
+
"aside.tip": "提示",
|
|
25
|
+
"aside.caution": "警告",
|
|
26
|
+
"aside.danger": "危险",
|
|
27
|
+
"fileTree.directory": "文件夹",
|
|
28
|
+
"builtWithStarlight.label": "基于 Starlight 构建",
|
|
29
|
+
"heading.anchorLabel": "Section titled “{{title}}”"
|
|
30
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
const __treeseedJson = {
|
|
2
|
+
"skipLink.label": "跳转到内容",
|
|
3
|
+
"search.label": "搜索",
|
|
4
|
+
"search.ctrlKey": "Ctrl",
|
|
5
|
+
"search.cancelLabel": "取消",
|
|
6
|
+
"search.devWarning": "搜索仅适用于生产版本。\n尝试构建并预览网站以在本地测试。",
|
|
7
|
+
"themeSelect.accessibleLabel": "选择主题",
|
|
8
|
+
"themeSelect.dark": "深色",
|
|
9
|
+
"themeSelect.light": "浅色",
|
|
10
|
+
"themeSelect.auto": "自动",
|
|
11
|
+
"languageSelect.accessibleLabel": "选择语言",
|
|
12
|
+
"menuButton.accessibleLabel": "菜单",
|
|
13
|
+
"sidebarNav.accessibleLabel": "主要",
|
|
14
|
+
"tableOfContents.onThisPage": "本页内容",
|
|
15
|
+
"tableOfContents.overview": "概述",
|
|
16
|
+
"i18n.untranslatedContent": "此内容尚不支持你的语言。",
|
|
17
|
+
"page.editLink": "编辑此页",
|
|
18
|
+
"page.lastUpdated": "最近更新:",
|
|
19
|
+
"page.previousLink": "上一页",
|
|
20
|
+
"page.nextLink": "下一页",
|
|
21
|
+
"page.draft": "此内容为草稿,不会包含在生产版本中。",
|
|
22
|
+
"404.text": "页面未找到。检查 URL 或尝试使用搜索栏。",
|
|
23
|
+
"aside.note": "注意",
|
|
24
|
+
"aside.tip": "提示",
|
|
25
|
+
"aside.caution": "警告",
|
|
26
|
+
"aside.danger": "危险",
|
|
27
|
+
"fileTree.directory": "文件夹",
|
|
28
|
+
"builtWithStarlight.label": "基于 Starlight 构建",
|
|
29
|
+
"heading.anchorLabel": "Section titled “{{title}}”"
|
|
30
|
+
};
|
|
31
|
+
export default __treeseedJson;
|
|
32
|
+
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"skipLink.label": "跳到內容",
|
|
3
|
+
"search.label": "搜尋",
|
|
4
|
+
"search.ctrlKey": "Ctrl",
|
|
5
|
+
"search.cancelLabel": "取消",
|
|
6
|
+
"search.devWarning": "正式版本才能使用搜尋功能。\n如要在本地測試,請先建置並預覽網站。",
|
|
7
|
+
"themeSelect.accessibleLabel": "選擇佈景主題",
|
|
8
|
+
"themeSelect.dark": "深色",
|
|
9
|
+
"themeSelect.light": "淺色",
|
|
10
|
+
"themeSelect.auto": "自動",
|
|
11
|
+
"languageSelect.accessibleLabel": "選擇語言",
|
|
12
|
+
"menuButton.accessibleLabel": "選單",
|
|
13
|
+
"sidebarNav.accessibleLabel": "主要",
|
|
14
|
+
"tableOfContents.onThisPage": "本頁內容",
|
|
15
|
+
"tableOfContents.overview": "概述",
|
|
16
|
+
"i18n.untranslatedContent": "本頁內容尚未翻譯。",
|
|
17
|
+
"page.editLink": "編輯頁面",
|
|
18
|
+
"page.lastUpdated": "最後更新於:",
|
|
19
|
+
"page.previousLink": "前一則",
|
|
20
|
+
"page.nextLink": "下一則",
|
|
21
|
+
"page.draft": "This content is a draft and will not be included in production builds.",
|
|
22
|
+
"404.text": "找不到頁面。請檢查網址或改用搜尋功能。",
|
|
23
|
+
"aside.note": "注意",
|
|
24
|
+
"aside.tip": "提示",
|
|
25
|
+
"aside.caution": "警告",
|
|
26
|
+
"aside.danger": "危險",
|
|
27
|
+
"fileTree.directory": "目錄",
|
|
28
|
+
"builtWithStarlight.label": "Built with Starlight",
|
|
29
|
+
"heading.anchorLabel": "Section titled “{{title}}”"
|
|
30
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
const __treeseedJson = {
|
|
2
|
+
"skipLink.label": "跳到內容",
|
|
3
|
+
"search.label": "搜尋",
|
|
4
|
+
"search.ctrlKey": "Ctrl",
|
|
5
|
+
"search.cancelLabel": "取消",
|
|
6
|
+
"search.devWarning": "正式版本才能使用搜尋功能。\n如要在本地測試,請先建置並預覽網站。",
|
|
7
|
+
"themeSelect.accessibleLabel": "選擇佈景主題",
|
|
8
|
+
"themeSelect.dark": "深色",
|
|
9
|
+
"themeSelect.light": "淺色",
|
|
10
|
+
"themeSelect.auto": "自動",
|
|
11
|
+
"languageSelect.accessibleLabel": "選擇語言",
|
|
12
|
+
"menuButton.accessibleLabel": "選單",
|
|
13
|
+
"sidebarNav.accessibleLabel": "主要",
|
|
14
|
+
"tableOfContents.onThisPage": "本頁內容",
|
|
15
|
+
"tableOfContents.overview": "概述",
|
|
16
|
+
"i18n.untranslatedContent": "本頁內容尚未翻譯。",
|
|
17
|
+
"page.editLink": "編輯頁面",
|
|
18
|
+
"page.lastUpdated": "最後更新於:",
|
|
19
|
+
"page.previousLink": "前一則",
|
|
20
|
+
"page.nextLink": "下一則",
|
|
21
|
+
"page.draft": "This content is a draft and will not be included in production builds.",
|
|
22
|
+
"404.text": "找不到頁面。請檢查網址或改用搜尋功能。",
|
|
23
|
+
"aside.note": "注意",
|
|
24
|
+
"aside.tip": "提示",
|
|
25
|
+
"aside.caution": "警告",
|
|
26
|
+
"aside.danger": "危險",
|
|
27
|
+
"fileTree.directory": "目錄",
|
|
28
|
+
"builtWithStarlight.label": "Built with Starlight",
|
|
29
|
+
"heading.anchorLabel": "Section titled “{{title}}”"
|
|
30
|
+
};
|
|
31
|
+
export default __treeseedJson;
|
|
32
|
+
|
|
File without changes
|