@astrojs/starlight 0.41.11 → 0.42.0
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/dist/_virtual/_rolldown/runtime.js +13 -0
- package/dist/components/MobileMenuToggle.astro +65 -0
- package/{components → dist/components}/PageFrame.astro +32 -8
- package/dist/components-internals/Icons.d.ts +415 -0
- package/dist/components-internals/Icons.js +140 -0
- package/dist/components-internals/SidebarPersistState.d.ts +1 -0
- package/dist/components-internals/SidebarPersistState.js +53 -0
- package/dist/components-internals/TableOfContents/starlight-toc.d.ts +18 -0
- package/dist/components-internals/TableOfContents/starlight-toc.js +88 -0
- package/dist/constants.d.ts +4 -0
- package/dist/constants.js +4 -0
- package/{expressive-code.d.ts → dist/expressive-code.d.ts} +6 -13
- package/dist/expressive-code.js +31 -0
- package/dist/global.d.ts +62 -0
- package/dist/global.js +2 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.js +109 -0
- package/dist/integrations/aside-utils.d.ts +9 -0
- package/dist/integrations/aside-utils.js +35 -0
- package/dist/integrations/expressive-code/hast.d.ts +1 -0
- package/dist/integrations/expressive-code/hast.js +2 -0
- package/dist/integrations/expressive-code/index.d.ts +60 -0
- package/dist/integrations/expressive-code/index.js +48 -0
- package/dist/integrations/expressive-code/preprocessor.d.ts +17 -0
- package/dist/integrations/expressive-code/preprocessor.js +76 -0
- package/dist/integrations/expressive-code/themes/night-owl-dark.js +4 -0
- package/dist/integrations/expressive-code/themes/night-owl-light.js +4 -0
- package/dist/integrations/expressive-code/theming.d.ts +16 -0
- package/dist/integrations/expressive-code/theming.js +71 -0
- package/dist/integrations/expressive-code/translations.d.ts +8 -0
- package/dist/integrations/expressive-code/translations.js +26 -0
- package/dist/integrations/markdown-icon.d.ts +8 -0
- package/dist/integrations/markdown-icon.js +14 -0
- package/dist/integrations/markdown-plugins.d.ts +18 -0
- package/dist/integrations/markdown-plugins.js +36 -0
- package/dist/integrations/markdown-processor.d.ts +29 -0
- package/dist/integrations/markdown-processor.js +44 -0
- package/dist/integrations/pagefind.d.ts +7 -0
- package/dist/integrations/pagefind.js +34 -0
- package/dist/integrations/rehype-code-rtl-support.d.ts +21 -0
- package/dist/integrations/rehype-code-rtl-support.js +36 -0
- package/dist/integrations/rehype-heading-links.d.ts +10 -0
- package/dist/integrations/rehype-heading-links.js +57 -0
- package/dist/integrations/remark-asides.d.ts +32 -0
- package/dist/integrations/remark-asides.js +166 -0
- package/dist/integrations/remark-rehype.d.ts +17 -0
- package/dist/integrations/remark-rehype.js +51 -0
- package/dist/integrations/satteri.d.ts +13 -0
- package/dist/integrations/satteri.js +209 -0
- package/dist/integrations/shared/absolutePathToLang.d.ts +10 -0
- package/dist/integrations/shared/absolutePathToLang.js +13 -0
- package/dist/integrations/shared/localeToLang.d.ts +10 -0
- package/dist/integrations/shared/localeToLang.js +13 -0
- package/dist/integrations/shared/slugToLocale.d.ts +12 -0
- package/dist/integrations/shared/slugToLocale.js +15 -0
- package/dist/integrations/sitemap.d.ts +12 -0
- package/dist/integrations/sitemap.js +19 -0
- package/dist/integrations/vite-layer-order.d.ts +15 -0
- package/dist/integrations/vite-layer-order.js +56 -0
- package/dist/integrations/vite-lazy-barrel-optimization.d.ts +12 -0
- package/dist/integrations/vite-lazy-barrel-optimization.js +33 -0
- package/dist/integrations/vite-virtual-modules.d.ts +14 -0
- package/dist/integrations/vite-virtual-modules.js +108 -0
- package/dist/internal.d.ts +3 -0
- package/dist/internal.js +3 -0
- package/dist/loaders.d.ts +20 -0
- package/dist/loaders.js +49 -0
- package/dist/locals.d.ts +15 -0
- package/dist/locals.js +33 -0
- package/dist/package.js +4 -0
- package/{props.ts → dist/props.d.ts} +6 -4
- package/dist/props.js +1 -0
- package/dist/route-data.d.ts +7 -0
- package/dist/route-data.js +6 -0
- package/dist/schema.d.ts +426 -0
- package/dist/schema.js +103 -0
- package/dist/schemas/badge.d.ts +86 -0
- package/dist/schemas/badge.js +39 -0
- package/dist/schemas/components.d.ts +236 -0
- package/dist/schemas/components.js +36 -0
- package/dist/schemas/expressiveCode.d.ts +7 -0
- package/dist/schemas/expressiveCode.js +5 -0
- package/dist/schemas/favicon.d.ts +9 -0
- package/dist/schemas/favicon.js +32 -0
- package/dist/schemas/head.d.ts +33 -0
- package/dist/schemas/head.js +41 -0
- package/dist/schemas/hero.d.ts +319 -0
- package/dist/schemas/hero.js +73 -0
- package/dist/schemas/i18n.d.ts +125 -0
- package/dist/schemas/i18n.js +76 -0
- package/dist/schemas/icon.d.ts +284 -0
- package/dist/schemas/icon.js +7 -0
- package/dist/schemas/locale.d.ts +20 -0
- package/dist/schemas/locale.js +11 -0
- package/dist/schemas/logo.d.ts +32 -0
- package/dist/schemas/logo.js +14 -0
- package/dist/schemas/pagefind.d.ts +166 -0
- package/dist/schemas/pagefind.js +31 -0
- package/dist/schemas/prevNextLink.d.ts +10 -0
- package/dist/schemas/prevNextLink.js +14 -0
- package/dist/schemas/sidebar.d.ts +205 -0
- package/dist/schemas/sidebar.js +71 -0
- package/dist/schemas/site-title.d.ts +7 -0
- package/dist/schemas/site-title.js +17 -0
- package/dist/schemas/social.d.ts +292 -0
- package/dist/schemas/social.js +18 -0
- package/dist/schemas/tableOfContents.d.ts +24 -0
- package/dist/schemas/tableOfContents.js +16 -0
- package/dist/translations/ar.js +36 -0
- package/dist/translations/ca.js +46 -0
- package/dist/translations/cs.js +46 -0
- package/dist/translations/da.js +33 -0
- package/dist/translations/de.js +33 -0
- package/dist/translations/el.js +33 -0
- package/dist/translations/en.js +33 -0
- package/dist/translations/es.js +46 -0
- package/dist/translations/fa.js +33 -0
- package/dist/translations/fi.js +33 -0
- package/dist/translations/fr.js +36 -0
- package/dist/translations/gl.js +46 -0
- package/dist/translations/he.js +33 -0
- package/dist/translations/hi.js +36 -0
- package/dist/translations/hu.js +46 -0
- package/dist/translations/id.js +33 -0
- package/dist/translations/index.d.ts +48 -0
- package/dist/translations/index.js +75 -0
- package/dist/translations/it.js +36 -0
- package/dist/translations/ja.js +36 -0
- package/dist/translations/ko.js +36 -0
- package/dist/translations/lv.js +33 -0
- package/dist/translations/nb.js +33 -0
- package/dist/translations/nl.js +33 -0
- package/dist/translations/pl.js +36 -0
- package/dist/translations/pt.js +36 -0
- package/dist/translations/ro.js +33 -0
- package/dist/translations/ru.js +36 -0
- package/dist/translations/sk.js +33 -0
- package/dist/translations/sv.js +33 -0
- package/dist/translations/th.js +33 -0
- package/dist/translations/tr.js +33 -0
- package/dist/translations/uk.js +33 -0
- package/dist/translations/vi.js +33 -0
- package/dist/translations/zh-CN.js +36 -0
- package/dist/translations/zh-TW.js +36 -0
- package/dist/types.d.ts +4 -0
- package/dist/types.js +1 -0
- package/{user-components → dist/user-components}/FileTree.astro +1 -1
- package/{user-components → dist/user-components}/Steps.astro +1 -1
- package/{user-components → dist/user-components}/TabItem.astro +1 -1
- package/{user-components → dist/user-components}/Tabs.astro +1 -1
- package/dist/user-components/file-tree-icons.d.ts +178 -0
- package/dist/user-components/file-tree-icons.js +632 -0
- package/dist/user-components/file-tree-processor.d.ts +16 -0
- package/dist/user-components/file-tree-processor.js +132 -0
- package/dist/user-components/steps-processor.d.ts +10 -0
- package/dist/user-components/steps-processor.js +39 -0
- package/dist/user-components/tabs-processor.d.ts +23 -0
- package/dist/user-components/tabs-processor.js +70 -0
- package/dist/utils/base.d.ts +7 -0
- package/dist/utils/base.js +15 -0
- package/dist/utils/canonical.d.ts +10 -0
- package/dist/utils/canonical.js +14 -0
- package/dist/utils/collection-fs.d.ts +13 -0
- package/dist/utils/collection-fs.js +19 -0
- package/{utils/collection.ts → dist/utils/collection.d.ts} +9 -20
- package/dist/utils/collection.js +26 -0
- package/dist/utils/createPathFormatter.d.ts +9 -0
- package/dist/utils/createPathFormatter.js +35 -0
- package/dist/utils/createTranslationSystem.d.ts +23 -0
- package/dist/utils/createTranslationSystem.js +84 -0
- package/dist/utils/error-map.d.ts +23 -0
- package/dist/utils/error-map.js +125 -0
- package/dist/utils/format-path.d.ts +4 -0
- package/dist/utils/format-path.js +9 -0
- package/dist/utils/generateToC.d.ts +14 -0
- package/dist/utils/generateToC.js +25 -0
- package/dist/utils/git.d.ts +12 -0
- package/dist/utils/git.js +71 -0
- package/dist/utils/gitInlined.d.ts +6 -0
- package/dist/utils/gitInlined.js +11 -0
- package/dist/utils/head.d.ts +7 -0
- package/dist/utils/head.js +233 -0
- package/dist/utils/i18n.d.ts +50 -0
- package/dist/utils/i18n.js +141 -0
- package/dist/utils/localizedUrl.d.ts +8 -0
- package/dist/utils/localizedUrl.js +28 -0
- package/dist/utils/navigation.d.ts +19 -0
- package/dist/utils/navigation.js +353 -0
- package/dist/utils/path.d.ts +21 -0
- package/dist/utils/path.js +51 -0
- package/dist/utils/plugins.d.ts +721 -0
- package/dist/utils/plugins.js +174 -0
- package/dist/utils/routing/data.d.ts +20 -0
- package/dist/utils/routing/data.js +127 -0
- package/dist/utils/routing/index.d.ts +21 -0
- package/dist/utils/routing/index.js +106 -0
- package/dist/utils/routing/middleware.d.ts +11 -0
- package/dist/utils/routing/middleware.js +65 -0
- package/dist/utils/routing/types.d.ts +93 -0
- package/dist/utils/routing/types.js +1 -0
- package/dist/utils/slugs.d.ts +45 -0
- package/dist/utils/slugs.js +104 -0
- package/dist/utils/starlight-page.d.ts +36 -0
- package/dist/utils/starlight-page.js +120 -0
- package/dist/utils/translations-fs.d.ts +15 -0
- package/dist/utils/translations-fs.js +39 -0
- package/dist/utils/translations.d.ts +20 -0
- package/dist/utils/translations.js +29 -0
- package/dist/utils/types.d.ts +5 -0
- package/dist/utils/types.js +1 -0
- package/dist/utils/url.d.ts +7 -0
- package/{utils/url.ts → dist/utils/url.js} +5 -4
- package/dist/utils/user-config.d.ts +2055 -0
- package/dist/utils/user-config.js +136 -0
- package/dist/utils/validateLogoImports.d.ts +5 -0
- package/dist/utils/validateLogoImports.js +16 -0
- package/dist/utils/zodDeepMerge.d.ts +16 -0
- package/dist/utils/zodDeepMerge.js +53 -0
- package/package.json +60 -34
- package/CHANGELOG.md +0 -3051
- package/components/MobileMenuToggle.astro +0 -114
- package/components-internals/Icons.ts +0 -248
- package/components-internals/SidebarPersistState.ts +0 -71
- package/components-internals/TableOfContents/starlight-toc.ts +0 -127
- package/constants.ts +0 -4
- package/expressive-code.mjs +0 -23
- package/global.d.ts +0 -11
- package/i18n.d.ts +0 -18
- package/index.ts +0 -200
- package/integrations/aside-utils.ts +0 -41
- package/integrations/expressive-code/hast.d.ts +0 -5
- package/integrations/expressive-code/hast.mjs +0 -9
- package/integrations/expressive-code/index.ts +0 -125
- package/integrations/expressive-code/preprocessor.ts +0 -126
- package/integrations/expressive-code/themes/night-owl-dark.jsonc +0 -1796
- package/integrations/expressive-code/themes/night-owl-light.jsonc +0 -1695
- package/integrations/expressive-code/theming.ts +0 -105
- package/integrations/expressive-code/translations.ts +0 -36
- package/integrations/markdown-icon.ts +0 -13
- package/integrations/markdown-plugins.ts +0 -71
- package/integrations/markdown-processor.ts +0 -64
- package/integrations/pagefind.ts +0 -60
- package/integrations/rehype-code-rtl-support.ts +0 -37
- package/integrations/rehype-heading-links.ts +0 -79
- package/integrations/remark-asides.ts +0 -219
- package/integrations/remark-rehype.ts +0 -87
- package/integrations/satteri.ts +0 -265
- package/integrations/shared/absolutePathToLang.ts +0 -26
- package/integrations/shared/localeToLang.ts +0 -15
- package/integrations/shared/slugToLocale.ts +0 -18
- package/integrations/sitemap.ts +0 -23
- package/integrations/vite-layer-order.ts +0 -69
- package/integrations/vite-lazy-barrel-optimization.ts +0 -40
- package/integrations/vite-virtual-modules.ts +0 -175
- package/internal.ts +0 -6
- package/loaders.ts +0 -63
- package/locals.d.ts +0 -43
- package/locals.ts +0 -43
- package/route-data.ts +0 -11
- package/schema.ts +0 -167
- package/schemas/badge.ts +0 -40
- package/schemas/components.ts +0 -265
- package/schemas/expressiveCode.ts +0 -12
- package/schemas/favicon.ts +0 -40
- package/schemas/head.ts +0 -50
- package/schemas/hero.ts +0 -69
- package/schemas/i18n.ts +0 -244
- package/schemas/icon.ts +0 -7
- package/schemas/logo.ts +0 -28
- package/schemas/pagefind.ts +0 -128
- package/schemas/prevNextLink.ts +0 -18
- package/schemas/sidebar.ts +0 -163
- package/schemas/site-title.ts +0 -20
- package/schemas/social.ts +0 -23
- package/schemas/tableOfContents.ts +0 -21
- package/translations/README.md +0 -14
- package/translations/ar.json +0 -33
- package/translations/ca.json +0 -43
- package/translations/cs.json +0 -43
- package/translations/da.json +0 -30
- package/translations/de.json +0 -30
- package/translations/el.json +0 -30
- package/translations/en.json +0 -30
- package/translations/es.json +0 -43
- package/translations/fa.json +0 -30
- package/translations/fi.json +0 -30
- package/translations/fr.json +0 -33
- package/translations/gl.json +0 -43
- package/translations/he.json +0 -30
- package/translations/hi.json +0 -33
- package/translations/hu.json +0 -43
- package/translations/id.json +0 -30
- package/translations/index.ts +0 -76
- package/translations/it.json +0 -33
- package/translations/ja.json +0 -33
- package/translations/ko.json +0 -33
- package/translations/lv.json +0 -30
- package/translations/nb.json +0 -30
- package/translations/nl.json +0 -30
- package/translations/pl.json +0 -33
- package/translations/pt.json +0 -33
- package/translations/ro.json +0 -30
- package/translations/ru.json +0 -33
- package/translations/sk.json +0 -30
- package/translations/sv.json +0 -30
- package/translations/th.json +0 -30
- package/translations/tr.json +0 -30
- package/translations/uk.json +0 -30
- package/translations/vi.json +0 -30
- package/translations/zh-CN.json +0 -33
- package/translations/zh-TW.json +0 -33
- package/types.ts +0 -7
- package/user-components/file-tree-icons.ts +0 -782
- package/user-components/rehype-file-tree.ts +0 -251
- package/user-components/rehype-steps.ts +0 -85
- package/user-components/rehype-tabs.ts +0 -121
- package/utils/base.ts +0 -15
- package/utils/canonical.ts +0 -19
- package/utils/collection-fs.ts +0 -20
- package/utils/createPathFormatter.ts +0 -60
- package/utils/createTranslationSystem.ts +0 -137
- package/utils/error-map.ts +0 -222
- package/utils/format-path.ts +0 -7
- package/utils/generateToC.ts +0 -33
- package/utils/git.ts +0 -121
- package/utils/gitInlined.ts +0 -20
- package/utils/head.ts +0 -235
- package/utils/i18n.ts +0 -221
- package/utils/localizedUrl.ts +0 -51
- package/utils/navigation.ts +0 -574
- package/utils/path.ts +0 -58
- package/utils/plugins.ts +0 -498
- package/utils/routing/data.ts +0 -154
- package/utils/routing/index.ts +0 -139
- package/utils/routing/middleware.ts +0 -81
- package/utils/routing/types.ts +0 -101
- package/utils/slugs.ts +0 -119
- package/utils/starlight-page.ts +0 -205
- package/utils/translations-fs.ts +0 -54
- package/utils/translations.ts +0 -57
- package/utils/types.ts +0 -15
- package/utils/user-config.ts +0 -348
- package/utils/validateLogoImports.ts +0 -21
- package/utils/zodDeepMerge.ts +0 -144
- package/virtual-internal.d.ts +0 -149
- package/virtual.d.ts +0 -27
- /package/{components → dist/components}/AnchorHeading.astro +0 -0
- /package/{components → dist/components}/Banner.astro +0 -0
- /package/{components → dist/components}/ContentNotice.astro +0 -0
- /package/{components → dist/components}/ContentPanel.astro +0 -0
- /package/{components → dist/components}/DraftContentNotice.astro +0 -0
- /package/{components → dist/components}/EditLink.astro +0 -0
- /package/{components → dist/components}/FallbackContentNotice.astro +0 -0
- /package/{components → dist/components}/Footer.astro +0 -0
- /package/{components → dist/components}/Head.astro +0 -0
- /package/{components → dist/components}/Header.astro +0 -0
- /package/{components → dist/components}/Hero.astro +0 -0
- /package/{components → dist/components}/LanguageSelect.astro +0 -0
- /package/{components → dist/components}/LastUpdated.astro +0 -0
- /package/{components → dist/components}/MarkdownContent.astro +0 -0
- /package/{components → dist/components}/MobileMenuFooter.astro +0 -0
- /package/{components → dist/components}/MobileTableOfContents.astro +0 -0
- /package/{components → dist/components}/Page.astro +0 -0
- /package/{components → dist/components}/PageSidebar.astro +0 -0
- /package/{components → dist/components}/PageTitle.astro +0 -0
- /package/{components → dist/components}/Pagination.astro +0 -0
- /package/{components → dist/components}/Search.astro +0 -0
- /package/{components → dist/components}/Select.astro +0 -0
- /package/{components → dist/components}/Sidebar.astro +0 -0
- /package/{components → dist/components}/SidebarPersister.astro +0 -0
- /package/{components → dist/components}/SidebarRestorePoint.astro +0 -0
- /package/{components → dist/components}/SidebarSublist.astro +0 -0
- /package/{components → dist/components}/SiteTitle.astro +0 -0
- /package/{components → dist/components}/SkipLink.astro +0 -0
- /package/{components → dist/components}/SocialIcons.astro +0 -0
- /package/{components → dist/components}/StarlightPage.astro +0 -0
- /package/{components → dist/components}/TableOfContents.astro +0 -0
- /package/{components → dist/components}/ThemeProvider.astro +0 -0
- /package/{components → dist/components}/ThemeSelect.astro +0 -0
- /package/{components → dist/components}/TwoColumnContent.astro +0 -0
- /package/{components-internals → dist/components-internals}/TableOfContents/TableOfContentsList.astro +0 -0
- /package/{components.ts → dist/components.ts} +0 -0
- /package/{routes → dist/routes}/common.astro +0 -0
- /package/{routes → dist/routes}/ssr/404.astro +0 -0
- /package/{routes → dist/routes}/ssr/index.astro +0 -0
- /package/{routes → dist/routes}/static/404.astro +0 -0
- /package/{routes → dist/routes}/static/index.astro +0 -0
- /package/{style → dist/style}/anchor-links.css +0 -0
- /package/{style → dist/style}/asides.css +0 -0
- /package/{style → dist/style}/layers.css +0 -0
- /package/{style → dist/style}/markdown.css +0 -0
- /package/{style → dist/style}/print.css +0 -0
- /package/{style → dist/style}/props.css +0 -0
- /package/{style → dist/style}/reset.css +0 -0
- /package/{style → dist/style}/util.css +0 -0
- /package/{user-components → dist/user-components}/Aside.astro +0 -0
- /package/{user-components → dist/user-components}/Badge.astro +0 -0
- /package/{user-components → dist/user-components}/Card.astro +0 -0
- /package/{user-components → dist/user-components}/CardGrid.astro +0 -0
- /package/{user-components → dist/user-components}/Icon.astro +0 -0
- /package/{user-components → dist/user-components}/LinkButton.astro +0 -0
- /package/{user-components → dist/user-components}/LinkCard.astro +0 -0
package/translations/en.json
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"skipLink.label": "Skip to content",
|
|
3
|
-
"search.label": "Search",
|
|
4
|
-
"search.ctrlKey": "Ctrl",
|
|
5
|
-
"search.cancelLabel": "Cancel",
|
|
6
|
-
"search.devWarning": "Search is only available in production builds. \nTry building and previewing the site to test it out locally.",
|
|
7
|
-
"themeSelect.accessibleLabel": "Select theme",
|
|
8
|
-
"themeSelect.dark": "Dark",
|
|
9
|
-
"themeSelect.light": "Light",
|
|
10
|
-
"themeSelect.auto": "Auto",
|
|
11
|
-
"languageSelect.accessibleLabel": "Select language",
|
|
12
|
-
"menuButton.accessibleLabel": "Menu",
|
|
13
|
-
"sidebarNav.accessibleLabel": "Main",
|
|
14
|
-
"tableOfContents.onThisPage": "On this page",
|
|
15
|
-
"tableOfContents.overview": "Overview",
|
|
16
|
-
"i18n.untranslatedContent": "This content is not available in your language yet.",
|
|
17
|
-
"page.editLink": "Edit page",
|
|
18
|
-
"page.lastUpdated": "Last updated:",
|
|
19
|
-
"page.previousLink": "Previous",
|
|
20
|
-
"page.nextLink": "Next",
|
|
21
|
-
"page.draft": "This content is a draft and will not be included in production builds.",
|
|
22
|
-
"404.text": "Page not found. Check the URL or try using the search bar.",
|
|
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
|
-
}
|
package/translations/es.json
DELETED
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"skipLink.label": "Ir al contenido",
|
|
3
|
-
"search.label": "Buscar",
|
|
4
|
-
"search.ctrlKey": "Ctrl",
|
|
5
|
-
"search.cancelLabel": "Cancelar",
|
|
6
|
-
"search.devWarning": "La búsqueda solo está disponible en las versiones de producción. \nIntenta construir y previsualizar el sitio para probarlo localmente.",
|
|
7
|
-
"themeSelect.accessibleLabel": "Seleccionar tema",
|
|
8
|
-
"themeSelect.dark": "Oscuro",
|
|
9
|
-
"themeSelect.light": "Claro",
|
|
10
|
-
"themeSelect.auto": "Automático",
|
|
11
|
-
"languageSelect.accessibleLabel": "Seleccionar idioma",
|
|
12
|
-
"menuButton.accessibleLabel": "Menú",
|
|
13
|
-
"sidebarNav.accessibleLabel": "Primario",
|
|
14
|
-
"tableOfContents.onThisPage": "En esta página",
|
|
15
|
-
"tableOfContents.overview": "Sinopsis",
|
|
16
|
-
"i18n.untranslatedContent": "Esta página aún no está disponible en tu idioma.",
|
|
17
|
-
"page.editLink": "Edita esta página",
|
|
18
|
-
"page.lastUpdated": "Última actualización:",
|
|
19
|
-
"page.previousLink": "Página anterior",
|
|
20
|
-
"page.nextLink": "Siguiente página",
|
|
21
|
-
"page.draft": "Este contenido es un borrador y no se incluirá en las versiones de producción.",
|
|
22
|
-
"404.text": "Página no encontrada. Verifica la URL o intenta usar la barra de búsqueda.",
|
|
23
|
-
"aside.note": "Nota",
|
|
24
|
-
"aside.tip": "Consejo",
|
|
25
|
-
"aside.caution": "Precaución",
|
|
26
|
-
"aside.danger": "Peligro",
|
|
27
|
-
"expressiveCode.copyButtonCopied": "¡Copiado!",
|
|
28
|
-
"expressiveCode.copyButtonTooltip": "Copiar al portapapeles",
|
|
29
|
-
"expressiveCode.terminalWindowFallbackTitle": "Ventana de terminal",
|
|
30
|
-
"fileTree.directory": "Directorio",
|
|
31
|
-
"builtWithStarlight.label": "Hecho con Starlight",
|
|
32
|
-
"pagefind.clear_search": "Limpiar",
|
|
33
|
-
"pagefind.load_more": "Cargar más resultados",
|
|
34
|
-
"pagefind.search_label": "Buscar página",
|
|
35
|
-
"pagefind.filters_label": "Filtros",
|
|
36
|
-
"pagefind.zero_results": "Ningún resultado para: [SEARCH_TERM]",
|
|
37
|
-
"pagefind.many_results": "[COUNT] resultados para: [SEARCH_TERM]",
|
|
38
|
-
"pagefind.one_result": "[COUNT] resultado para: [SEARCH_TERM]",
|
|
39
|
-
"pagefind.alt_search": "Ningún resultado para [SEARCH_TERM]. Mostrando resultados para: [DIFFERENT_TERM]",
|
|
40
|
-
"pagefind.search_suggestion": "Ningún resultado para [SEARCH_TERM]. Prueba alguna de estas búsquedas:",
|
|
41
|
-
"pagefind.searching": "Buscando [SEARCH_TERM]...",
|
|
42
|
-
"heading.anchorLabel": "Sección titulada «{{title}}»"
|
|
43
|
-
}
|
package/translations/fa.json
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
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": "صفحه یافت نشد. لطفاً URL را بررسی کنید یا از جستجو استفاده نمایید.",
|
|
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
|
-
}
|
package/translations/fi.json
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"skipLink.label": "Siirry sisältöön",
|
|
3
|
-
"search.label": "Haku",
|
|
4
|
-
"search.ctrlKey": "Ctrl",
|
|
5
|
-
"search.cancelLabel": "Peruuta",
|
|
6
|
-
"search.devWarning": "Haku on käytettävissä vain tuotantoversioissa.\nKokeile kääntää ja esikatsella sivustoa paikallisesti testataksesi sitä.",
|
|
7
|
-
"themeSelect.accessibleLabel": "Valitse teema",
|
|
8
|
-
"themeSelect.dark": "Tumma",
|
|
9
|
-
"themeSelect.light": "Vaalea",
|
|
10
|
-
"themeSelect.auto": "Automaattinen",
|
|
11
|
-
"languageSelect.accessibleLabel": "Valitse kieli",
|
|
12
|
-
"menuButton.accessibleLabel": "Valikko",
|
|
13
|
-
"sidebarNav.accessibleLabel": "Päävalikko",
|
|
14
|
-
"tableOfContents.onThisPage": "Tällä sivulla",
|
|
15
|
-
"tableOfContents.overview": "Yleiskatsaus",
|
|
16
|
-
"i18n.untranslatedContent": "Tämä sisältö ei ole vielä saatavilla valitsemallasi kielellä.",
|
|
17
|
-
"page.editLink": "Muokkaa sivua",
|
|
18
|
-
"page.lastUpdated": "Viimeksi päivitetty:",
|
|
19
|
-
"page.previousLink": "Edellinen",
|
|
20
|
-
"page.nextLink": "Seuraava",
|
|
21
|
-
"page.draft": "Tämä sisältö on luonnos eikä sitä sisällytetä tuotantoversioon.",
|
|
22
|
-
"404.text": "Sivua ei löytynyt. Tarkista URL-osoite tai käytä hakupalkkia.",
|
|
23
|
-
"aside.note": "Huomio",
|
|
24
|
-
"aside.tip": "Vinkki",
|
|
25
|
-
"aside.caution": "Varoitus",
|
|
26
|
-
"aside.danger": "Vaara",
|
|
27
|
-
"fileTree.directory": "Hakemisto",
|
|
28
|
-
"builtWithStarlight.label": "Rakennettu Starlightilla",
|
|
29
|
-
"heading.anchorLabel": "Osio nimeltä “{{title}}”"
|
|
30
|
-
}
|
package/translations/fr.json
DELETED
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"skipLink.label": "Aller au contenu",
|
|
3
|
-
"search.label": "Rechercher",
|
|
4
|
-
"search.ctrlKey": "Ctrl",
|
|
5
|
-
"search.cancelLabel": "Annuler",
|
|
6
|
-
"search.devWarning": "La recherche est disponible uniquement en mode production. \nEssayez de construire puis de prévisualiser votre site pour tester la recherche localement.",
|
|
7
|
-
"themeSelect.accessibleLabel": "Selectionner le thème",
|
|
8
|
-
"themeSelect.dark": "Sombre",
|
|
9
|
-
"themeSelect.light": "Clair",
|
|
10
|
-
"themeSelect.auto": "Auto",
|
|
11
|
-
"languageSelect.accessibleLabel": "Selectionner la langue",
|
|
12
|
-
"menuButton.accessibleLabel": "Menu",
|
|
13
|
-
"sidebarNav.accessibleLabel": "principale",
|
|
14
|
-
"tableOfContents.onThisPage": "Sur cette page",
|
|
15
|
-
"tableOfContents.overview": "Vue d’ensemble",
|
|
16
|
-
"i18n.untranslatedContent": "Ce contenu n’est pas encore disponible dans votre langue.",
|
|
17
|
-
"page.editLink": "Modifier cette page",
|
|
18
|
-
"page.lastUpdated": "Dernière mise à jour :",
|
|
19
|
-
"page.previousLink": "Précédent",
|
|
20
|
-
"page.nextLink": "Suivant",
|
|
21
|
-
"page.draft": "Ce contenu est une ébauche et ne sera pas inclus dans la version de production.",
|
|
22
|
-
"404.text": "Page non trouvée. Vérifiez l’URL ou essayez d’utiliser la barre de recherche.",
|
|
23
|
-
"aside.note": "Note",
|
|
24
|
-
"aside.tip": "Astuce",
|
|
25
|
-
"aside.caution": "Attention",
|
|
26
|
-
"aside.danger": "Danger",
|
|
27
|
-
"expressiveCode.copyButtonCopied": "Copié !",
|
|
28
|
-
"expressiveCode.copyButtonTooltip": "Copier dans le presse-papiers",
|
|
29
|
-
"expressiveCode.terminalWindowFallbackTitle": "Fenêtre de terminal",
|
|
30
|
-
"fileTree.directory": "Répertoire",
|
|
31
|
-
"builtWithStarlight.label": "Créé avec Starlight",
|
|
32
|
-
"heading.anchorLabel": "Section intitulée « {{title}} »"
|
|
33
|
-
}
|
package/translations/gl.json
DELETED
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"skipLink.label": "Ir ao contido",
|
|
3
|
-
"search.label": "Busca",
|
|
4
|
-
"search.ctrlKey": "Ctrl",
|
|
5
|
-
"search.cancelLabel": "Deixar",
|
|
6
|
-
"search.devWarning": "A busca só está dispoñible nas versións de producción. \nTrata de construir e ollear o sitio para probalo localmente.",
|
|
7
|
-
"themeSelect.accessibleLabel": "Selecciona tema",
|
|
8
|
-
"themeSelect.dark": "Escuro",
|
|
9
|
-
"themeSelect.light": "Claro",
|
|
10
|
-
"themeSelect.auto": "Auto",
|
|
11
|
-
"languageSelect.accessibleLabel": "Seleciona linguaxe",
|
|
12
|
-
"menuButton.accessibleLabel": "Menú",
|
|
13
|
-
"sidebarNav.accessibleLabel": "Principal",
|
|
14
|
-
"tableOfContents.onThisPage": "Nesta páxina",
|
|
15
|
-
"tableOfContents.overview": "Sinopse",
|
|
16
|
-
"i18n.untranslatedContent": "Este contido aínda non está dispoñible no teu idioma.",
|
|
17
|
-
"page.editLink": "Editar páxina",
|
|
18
|
-
"page.lastUpdated": "Última actualización:",
|
|
19
|
-
"page.previousLink": "Anterior",
|
|
20
|
-
"page.nextLink": "Seguinte",
|
|
21
|
-
"page.draft": "Este contido é un borrador e non se incluirá nas versións de producción.",
|
|
22
|
-
"404.text": "Páxina non atopada. Comproba a URL ou intenta usar a barra de busca.",
|
|
23
|
-
"aside.note": "Nota",
|
|
24
|
-
"aside.tip": "Consello",
|
|
25
|
-
"aside.caution": "Precaución",
|
|
26
|
-
"aside.danger": "Perigo",
|
|
27
|
-
"expressiveCode.copyButtonCopied": "¡Copiado!",
|
|
28
|
-
"expressiveCode.copyButtonTooltip": "Copiar ao portapapeis",
|
|
29
|
-
"expressiveCode.terminalWindowFallbackTitle": "Fiestra do terminal",
|
|
30
|
-
"fileTree.directory": "Directorio",
|
|
31
|
-
"builtWithStarlight.label": "Feito con Starlight",
|
|
32
|
-
"pagefind.clear_search": "Limpar",
|
|
33
|
-
"pagefind.load_more": "Cargar máis resultados",
|
|
34
|
-
"pagefind.search_label": "Buscar páxina",
|
|
35
|
-
"pagefind.filters_label": "Filtros",
|
|
36
|
-
"pagefind.zero_results": "Ningún resultado para: [SEARCH_TERM]",
|
|
37
|
-
"pagefind.many_results": "[COUNT] resultados para: [SEARCH_TERM]",
|
|
38
|
-
"pagefind.one_result": "[COUNT] resultado para: [SEARCH_TERM]",
|
|
39
|
-
"pagefind.alt_search": "Ningún resultado para [SEARCH_TERM]. Amósanse resultados para: [DIFFERENT_TERM]",
|
|
40
|
-
"pagefind.search_suggestion": "Ningún resultado para [SEARCH_TERM]. Proba algunha destas buscas:",
|
|
41
|
-
"pagefind.searching": "Buscando [SEARCH_TERM]...",
|
|
42
|
-
"heading.anchorLabel": "Sección titulada «{{title}}»"
|
|
43
|
-
}
|
package/translations/he.json
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
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": "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
|
-
}
|
package/translations/hi.json
DELETED
|
@@ -1,33 +0,0 @@
|
|
|
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": "यह पृष्ठ नहीं मिला। URL जांचें या खोज बार का उपयोग करने का प्रयास करें।",
|
|
23
|
-
"aside.note": "टिप्पणी",
|
|
24
|
-
"aside.tip": "संकेत",
|
|
25
|
-
"aside.caution": "सावधानी",
|
|
26
|
-
"aside.danger": "खतरा",
|
|
27
|
-
"expressiveCode.terminalWindowFallbackTitle": "टर्मिनल विंडो",
|
|
28
|
-
"expressiveCode.copyButtonTooltip": "क्लिपबोर्ड पर कॉपी करें",
|
|
29
|
-
"expressiveCode.copyButtonCopied": "कॉपी हो गया!",
|
|
30
|
-
"fileTree.directory": "Directory",
|
|
31
|
-
"builtWithStarlight.label": "Starlight द्वारा निर्मित",
|
|
32
|
-
"heading.anchorLabel": "Section titled “{{title}}”"
|
|
33
|
-
}
|
package/translations/hu.json
DELETED
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"skipLink.label": "Tovább a tartalomhoz",
|
|
3
|
-
"search.label": "Keresés",
|
|
4
|
-
"search.ctrlKey": "Ctrl",
|
|
5
|
-
"search.cancelLabel": "Mégsem",
|
|
6
|
-
"search.devWarning": "A keresés csak a production build-ekben működik. \nPróbáld meg először buildelni, hogy kipróbálhasd.",
|
|
7
|
-
"themeSelect.accessibleLabel": "Téma választás",
|
|
8
|
-
"themeSelect.dark": "Sötét",
|
|
9
|
-
"themeSelect.light": "Világos",
|
|
10
|
-
"themeSelect.auto": "Auto",
|
|
11
|
-
"languageSelect.accessibleLabel": "Nyelv választása",
|
|
12
|
-
"menuButton.accessibleLabel": "Menü",
|
|
13
|
-
"sidebarNav.accessibleLabel": "Fő",
|
|
14
|
-
"tableOfContents.onThisPage": "Ezen az oldalon",
|
|
15
|
-
"tableOfContents.overview": "Tartalom",
|
|
16
|
-
"i18n.untranslatedContent": "Ez a tartalom még nem érhető el a jelenlegi nyelven.",
|
|
17
|
-
"page.editLink": "Oldal szerkesztése",
|
|
18
|
-
"page.lastUpdated": "Utoljára frissítve:",
|
|
19
|
-
"page.previousLink": "Előző",
|
|
20
|
-
"page.nextLink": "Következő",
|
|
21
|
-
"page.draft": "Ez a tartalom még vázlat, így nem lesz benne a production build-ben.",
|
|
22
|
-
"404.text": "Az oldal nem található. Nézd meg az URL-t vagy használd a keresőt.",
|
|
23
|
-
"aside.note": "Megjegyzés",
|
|
24
|
-
"aside.tip": "Tipp",
|
|
25
|
-
"aside.caution": "Figyelem",
|
|
26
|
-
"aside.danger": "Veszély",
|
|
27
|
-
"fileTree.directory": "Könyvtár",
|
|
28
|
-
"builtWithStarlight.label": "Starlight-tal készítve",
|
|
29
|
-
"heading.anchorLabel": "Szekció neve “{{title}}”",
|
|
30
|
-
"expressiveCode.copyButtonCopied": "Másolva!",
|
|
31
|
-
"expressiveCode.copyButtonTooltip": "Másolás",
|
|
32
|
-
"expressiveCode.terminalWindowFallbackTitle": "Terminál",
|
|
33
|
-
"pagefind.clear_search": "Törlés",
|
|
34
|
-
"pagefind.load_more": "Több találat betöltése",
|
|
35
|
-
"pagefind.search_label": "Keresés ezen az oldalon",
|
|
36
|
-
"pagefind.filters_label": "Szűrők",
|
|
37
|
-
"pagefind.zero_results": "Erre a kifejezésre nincs találat: [SEARCH_TERM]",
|
|
38
|
-
"pagefind.many_results": "[COUNT] találat erre: [SEARCH_TERM]",
|
|
39
|
-
"pagefind.one_result": "[COUNT] találat erre: [SEARCH_TERM]",
|
|
40
|
-
"pagefind.alt_search": "Erre a kifejezésre nincs találat: [SEARCH_TERM]. Találatok mutatása erre: [DIFFERENT_TERM]",
|
|
41
|
-
"pagefind.search_suggestion": "Erre a kifejezésre nincs találat: [SEARCH_TERM]. Próbáld meg ezek közül az egyiket:",
|
|
42
|
-
"pagefind.searching": "Keresés erre: [SEARCH_TERM]..."
|
|
43
|
-
}
|
package/translations/id.json
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"skipLink.label": "Lewati ke konten",
|
|
3
|
-
"search.label": "Pencarian",
|
|
4
|
-
"search.ctrlKey": "Ctrl",
|
|
5
|
-
"search.cancelLabel": "Batal",
|
|
6
|
-
"search.devWarning": "Pencarian hanya tersedia pada build produksi. \nLakukan proses build dan pratinjau situs Anda sebelum mencoba di lingkungan lokal.",
|
|
7
|
-
"themeSelect.accessibleLabel": "Pilih tema",
|
|
8
|
-
"themeSelect.dark": "Gelap",
|
|
9
|
-
"themeSelect.light": "Terang",
|
|
10
|
-
"themeSelect.auto": "Otomatis",
|
|
11
|
-
"languageSelect.accessibleLabel": "Pilih Bahasa",
|
|
12
|
-
"menuButton.accessibleLabel": "Menu",
|
|
13
|
-
"sidebarNav.accessibleLabel": "Utama",
|
|
14
|
-
"tableOfContents.onThisPage": "Di halaman ini",
|
|
15
|
-
"tableOfContents.overview": "Ringkasan",
|
|
16
|
-
"i18n.untranslatedContent": "Konten ini belum tersedia dalam bahasa Anda.",
|
|
17
|
-
"page.editLink": "Edit halaman",
|
|
18
|
-
"page.lastUpdated": "Terakhir diperbaharui:",
|
|
19
|
-
"page.previousLink": "Sebelumnya",
|
|
20
|
-
"page.nextLink": "Selanjutnya",
|
|
21
|
-
"page.draft": "This content is a draft and will not be included in production builds.",
|
|
22
|
-
"404.text": "Halaman tidak ditemukan. Cek kembali kolom URL atau gunakan fitur pencarian.",
|
|
23
|
-
"aside.note": "Catatan",
|
|
24
|
-
"aside.tip": "Tips",
|
|
25
|
-
"aside.caution": "Perhatian",
|
|
26
|
-
"aside.danger": "Bahaya",
|
|
27
|
-
"fileTree.directory": "Directory",
|
|
28
|
-
"builtWithStarlight.label": "Built with Starlight",
|
|
29
|
-
"heading.anchorLabel": "Section titled “{{title}}”"
|
|
30
|
-
}
|
package/translations/index.ts
DELETED
|
@@ -1,76 +0,0 @@
|
|
|
1
|
-
import { builtinI18nSchema } from '../schemas/i18n';
|
|
2
|
-
import cs from './cs.json';
|
|
3
|
-
import en from './en.json';
|
|
4
|
-
import es from './es.json';
|
|
5
|
-
import ca from './ca.json';
|
|
6
|
-
import de from './de.json';
|
|
7
|
-
import ja from './ja.json';
|
|
8
|
-
import pt from './pt.json';
|
|
9
|
-
import fa from './fa.json';
|
|
10
|
-
import fi from './fi.json';
|
|
11
|
-
import fr from './fr.json';
|
|
12
|
-
import gl from './gl.json';
|
|
13
|
-
import he from './he.json';
|
|
14
|
-
import id from './id.json';
|
|
15
|
-
import it from './it.json';
|
|
16
|
-
import nl from './nl.json';
|
|
17
|
-
import da from './da.json';
|
|
18
|
-
import th from './th.json';
|
|
19
|
-
import tr from './tr.json';
|
|
20
|
-
import ar from './ar.json';
|
|
21
|
-
import nb from './nb.json';
|
|
22
|
-
import zh from './zh-CN.json';
|
|
23
|
-
import ko from './ko.json';
|
|
24
|
-
import sv from './sv.json';
|
|
25
|
-
import ro from './ro.json';
|
|
26
|
-
import ru from './ru.json';
|
|
27
|
-
import vi from './vi.json';
|
|
28
|
-
import uk from './uk.json';
|
|
29
|
-
import hi from './hi.json';
|
|
30
|
-
import zhTW from './zh-TW.json';
|
|
31
|
-
import pl from './pl.json';
|
|
32
|
-
import sk from './sk.json';
|
|
33
|
-
import lv from './lv.json';
|
|
34
|
-
import hu from './hu.json';
|
|
35
|
-
import el from './el.json';
|
|
36
|
-
|
|
37
|
-
const { parse } = builtinI18nSchema();
|
|
38
|
-
|
|
39
|
-
export default Object.fromEntries(
|
|
40
|
-
Object.entries({
|
|
41
|
-
cs,
|
|
42
|
-
en,
|
|
43
|
-
es,
|
|
44
|
-
ca,
|
|
45
|
-
de,
|
|
46
|
-
ja,
|
|
47
|
-
pt,
|
|
48
|
-
fa,
|
|
49
|
-
fi,
|
|
50
|
-
fr,
|
|
51
|
-
gl,
|
|
52
|
-
he,
|
|
53
|
-
id,
|
|
54
|
-
it,
|
|
55
|
-
nl,
|
|
56
|
-
da,
|
|
57
|
-
th,
|
|
58
|
-
tr,
|
|
59
|
-
ar,
|
|
60
|
-
nb,
|
|
61
|
-
zh,
|
|
62
|
-
ko,
|
|
63
|
-
sv,
|
|
64
|
-
ro,
|
|
65
|
-
ru,
|
|
66
|
-
vi,
|
|
67
|
-
uk,
|
|
68
|
-
hi,
|
|
69
|
-
'zh-TW': zhTW,
|
|
70
|
-
pl,
|
|
71
|
-
sk,
|
|
72
|
-
lv,
|
|
73
|
-
hu,
|
|
74
|
-
el,
|
|
75
|
-
}).map(([key, dict]) => [key, parse(dict)])
|
|
76
|
-
);
|
package/translations/it.json
DELETED
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"skipLink.label": "Salta ai contenuti",
|
|
3
|
-
"search.label": "Cerca",
|
|
4
|
-
"search.ctrlKey": "Ctrl",
|
|
5
|
-
"search.cancelLabel": "Cancella",
|
|
6
|
-
"search.devWarning": "La ricerca è disponibile solo nelle build di produzione. \nProvare ad eseguire il processo di build e visualizzare la preview del sito per testarlo localmente.",
|
|
7
|
-
"themeSelect.accessibleLabel": "Seleziona tema",
|
|
8
|
-
"themeSelect.dark": "Scuro",
|
|
9
|
-
"themeSelect.light": "Chiaro",
|
|
10
|
-
"themeSelect.auto": "Auto",
|
|
11
|
-
"languageSelect.accessibleLabel": "Seleziona lingua",
|
|
12
|
-
"menuButton.accessibleLabel": "Menu",
|
|
13
|
-
"sidebarNav.accessibleLabel": "Principale",
|
|
14
|
-
"tableOfContents.onThisPage": "In questa pagina",
|
|
15
|
-
"tableOfContents.overview": "Panoramica",
|
|
16
|
-
"i18n.untranslatedContent": "Questi contenuti non sono ancora disponibili nella tua lingua.",
|
|
17
|
-
"page.editLink": "Modifica pagina",
|
|
18
|
-
"page.lastUpdated": "Ultimo aggiornamento:",
|
|
19
|
-
"page.previousLink": "Indietro",
|
|
20
|
-
"page.nextLink": "Avanti",
|
|
21
|
-
"page.draft": "This content is a draft and will not be included in production builds.",
|
|
22
|
-
"404.text": "Pagina non trovata. Verifica l'URL o prova a utilizzare la barra di ricerca.",
|
|
23
|
-
"aside.note": "Nota",
|
|
24
|
-
"aside.tip": "Consiglio",
|
|
25
|
-
"aside.caution": "Attenzione",
|
|
26
|
-
"aside.danger": "Pericolo",
|
|
27
|
-
"expressiveCode.terminalWindowFallbackTitle": "Finestra del terminale",
|
|
28
|
-
"expressiveCode.copyButtonTooltip": "Copia",
|
|
29
|
-
"expressiveCode.copyButtonCopied": "Copiato!",
|
|
30
|
-
"fileTree.directory": "Directory",
|
|
31
|
-
"builtWithStarlight.label": "Built with Starlight",
|
|
32
|
-
"heading.anchorLabel": "Sezione intitolata “{{title}}”"
|
|
33
|
-
}
|
package/translations/ja.json
DELETED
|
@@ -1,33 +0,0 @@
|
|
|
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
|
-
"expressiveCode.terminalWindowFallbackTitle": "ターミナルウィンドウ",
|
|
28
|
-
"expressiveCode.copyButtonTooltip": "クリップボードにコピー",
|
|
29
|
-
"expressiveCode.copyButtonCopied": "コピーしました!",
|
|
30
|
-
"fileTree.directory": "ディレクトリ",
|
|
31
|
-
"builtWithStarlight.label": "Starlightで作成",
|
|
32
|
-
"heading.anchorLabel": "Section titled “{{title}}”"
|
|
33
|
-
}
|
package/translations/ko.json
DELETED
|
@@ -1,33 +0,0 @@
|
|
|
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
|
-
"expressiveCode.terminalWindowFallbackTitle": "터미널 창",
|
|
28
|
-
"expressiveCode.copyButtonTooltip": "클립보드로 복사",
|
|
29
|
-
"expressiveCode.copyButtonCopied": "복사 완료!",
|
|
30
|
-
"fileTree.directory": "디렉터리",
|
|
31
|
-
"builtWithStarlight.label": "이 웹사이트는 Starlight로 제작되었습니다.",
|
|
32
|
-
"heading.anchorLabel": "섹션 제목: “{{title}}”"
|
|
33
|
-
}
|
package/translations/lv.json
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"skipLink.label": "Pāriet uz saturu",
|
|
3
|
-
"search.label": "Meklēt",
|
|
4
|
-
"search.ctrlKey": "Ctrl",
|
|
5
|
-
"search.cancelLabel": "Atcelt",
|
|
6
|
-
"search.devWarning": "Meklēšana ir pieejama tikai ražošanas kompilācijās. \nMēģiniet kompilēt un priekšskatīt vietni, lai to pārbaudītu lokāli.",
|
|
7
|
-
"themeSelect.accessibleLabel": "Izvēlieties tēmu",
|
|
8
|
-
"themeSelect.dark": "Tumša",
|
|
9
|
-
"themeSelect.light": "Gaiša",
|
|
10
|
-
"themeSelect.auto": "Automātiska",
|
|
11
|
-
"languageSelect.accessibleLabel": "Izvēlieties valodu",
|
|
12
|
-
"menuButton.accessibleLabel": "Izvēlne",
|
|
13
|
-
"sidebarNav.accessibleLabel": "Galvenā",
|
|
14
|
-
"tableOfContents.onThisPage": "Šajā lapā",
|
|
15
|
-
"tableOfContents.overview": "Pārskats",
|
|
16
|
-
"i18n.untranslatedContent": "Šis saturs vēl nav pieejams jūsu valodā.",
|
|
17
|
-
"page.editLink": "Rediģēt lapu",
|
|
18
|
-
"page.lastUpdated": "Pēdējoreiz atjaunināts:",
|
|
19
|
-
"page.previousLink": "Iepriekšējā",
|
|
20
|
-
"page.nextLink": "Nākamā",
|
|
21
|
-
"page.draft": "Šis saturs ir melnraksts un netiks iekļauts ražošanas kompilācijās.",
|
|
22
|
-
"404.text": "Lapa nav atrasta. Pārbaudiet URL vai mēģiniet izmantot meklēšanas joslu.",
|
|
23
|
-
"aside.note": "Piezīme",
|
|
24
|
-
"aside.tip": "Padoms",
|
|
25
|
-
"aside.caution": "Uzmanību",
|
|
26
|
-
"aside.danger": "Bīstamība",
|
|
27
|
-
"fileTree.directory": "Direktorija",
|
|
28
|
-
"builtWithStarlight.label": "Veidots ar Starlight",
|
|
29
|
-
"heading.anchorLabel": "Section titled “{{title}}”"
|
|
30
|
-
}
|
package/translations/nb.json
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"skipLink.label": "Gå til innholdet",
|
|
3
|
-
"search.label": "Søk",
|
|
4
|
-
"search.ctrlKey": "Ctrl",
|
|
5
|
-
"search.cancelLabel": "Avbryt",
|
|
6
|
-
"search.devWarning": "Søk er bare tilgjengelig i produksjonsbygg. \nPrøv å bygg siden og forhåndsvis den for å teste det lokalt.",
|
|
7
|
-
"themeSelect.accessibleLabel": "Velg tema",
|
|
8
|
-
"themeSelect.dark": "Mørk",
|
|
9
|
-
"themeSelect.light": "Lys",
|
|
10
|
-
"themeSelect.auto": "Auto",
|
|
11
|
-
"languageSelect.accessibleLabel": "Velg språk",
|
|
12
|
-
"menuButton.accessibleLabel": "Meny",
|
|
13
|
-
"sidebarNav.accessibleLabel": "Hovednavigasjon",
|
|
14
|
-
"tableOfContents.onThisPage": "På denne siden",
|
|
15
|
-
"tableOfContents.overview": "Oversikt",
|
|
16
|
-
"i18n.untranslatedContent": "Dette innholdet er ikke tilgjengelig på ditt språk.",
|
|
17
|
-
"page.editLink": "Rediger side",
|
|
18
|
-
"page.lastUpdated": "Sist oppdatert:",
|
|
19
|
-
"page.previousLink": "Forrige",
|
|
20
|
-
"page.nextLink": "Neste",
|
|
21
|
-
"page.draft": "This content is a draft and will not be included in production builds.",
|
|
22
|
-
"404.text": "Siden ble ikke funnet. Sjekk URL-en eller prøv å bruke søkefeltet.",
|
|
23
|
-
"aside.note": "Merknad",
|
|
24
|
-
"aside.tip": "Tips",
|
|
25
|
-
"aside.caution": "Advarsel",
|
|
26
|
-
"aside.danger": "Fare",
|
|
27
|
-
"fileTree.directory": "Mappe",
|
|
28
|
-
"builtWithStarlight.label": "Laget med Starlight",
|
|
29
|
-
"heading.anchorLabel": "Section titled “{{title}}”"
|
|
30
|
-
}
|
package/translations/nl.json
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"skipLink.label": "Ga naar inhoud",
|
|
3
|
-
"search.label": "Zoeken",
|
|
4
|
-
"search.ctrlKey": "Ctrl",
|
|
5
|
-
"search.cancelLabel": "Annuleren",
|
|
6
|
-
"search.devWarning": "Zoeken is alleen beschikbaar tijdens productie. \nProbeer om de site te builden en er een preview van te bekijken om lokaal te testen.",
|
|
7
|
-
"themeSelect.accessibleLabel": "Selecteer thema",
|
|
8
|
-
"themeSelect.dark": "Donker",
|
|
9
|
-
"themeSelect.light": "Licht",
|
|
10
|
-
"themeSelect.auto": "Auto",
|
|
11
|
-
"languageSelect.accessibleLabel": "Selecteer taal",
|
|
12
|
-
"menuButton.accessibleLabel": "Menu",
|
|
13
|
-
"sidebarNav.accessibleLabel": "Hoofdnavigatie",
|
|
14
|
-
"tableOfContents.onThisPage": "Op deze pagina",
|
|
15
|
-
"tableOfContents.overview": "Overzicht",
|
|
16
|
-
"i18n.untranslatedContent": "Deze inhoud is nog niet vertaald.",
|
|
17
|
-
"page.editLink": "Bewerk pagina",
|
|
18
|
-
"page.lastUpdated": "Laatst bewerkt:",
|
|
19
|
-
"page.previousLink": "Vorige",
|
|
20
|
-
"page.nextLink": "Volgende",
|
|
21
|
-
"page.draft": "This content is a draft and will not be included in production builds.",
|
|
22
|
-
"404.text": "Pagina niet gevonden. Controleer de URL of probeer de zoekbalk.",
|
|
23
|
-
"aside.note": "Opmerking",
|
|
24
|
-
"aside.tip": "Tip",
|
|
25
|
-
"aside.caution": "Opgepast",
|
|
26
|
-
"aside.danger": "Gevaar",
|
|
27
|
-
"fileTree.directory": "Directory",
|
|
28
|
-
"builtWithStarlight.label": "Built with Starlight",
|
|
29
|
-
"heading.anchorLabel": "Section titled “{{title}}”"
|
|
30
|
-
}
|