@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/pl.json
DELETED
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"skipLink.label": "Przejdź do głównej zawartości",
|
|
3
|
-
"search.label": "Szukaj",
|
|
4
|
-
"search.ctrlKey": "Ctrl",
|
|
5
|
-
"search.cancelLabel": "Anuluj",
|
|
6
|
-
"search.devWarning": "Wyszukiwanie jest dostępne tylko w buildach produkcyjnych. \nSpróbuj zbudować i uruchomić aplikację, aby przetestować lokalnie.",
|
|
7
|
-
"themeSelect.accessibleLabel": "Wybierz motyw",
|
|
8
|
-
"themeSelect.dark": "Ciemny",
|
|
9
|
-
"themeSelect.light": "Jasny",
|
|
10
|
-
"themeSelect.auto": "Auto",
|
|
11
|
-
"languageSelect.accessibleLabel": "Wybierz język",
|
|
12
|
-
"menuButton.accessibleLabel": "Menu",
|
|
13
|
-
"sidebarNav.accessibleLabel": "Główne",
|
|
14
|
-
"tableOfContents.onThisPage": "Na tej stronie",
|
|
15
|
-
"tableOfContents.overview": "Przegląd",
|
|
16
|
-
"i18n.untranslatedContent": "Ta treść nie jest jeszcze dostępna w Twoim języku.",
|
|
17
|
-
"page.editLink": "Edytuj stronę",
|
|
18
|
-
"page.lastUpdated": "Ostatnia aktualizacja:",
|
|
19
|
-
"page.previousLink": "Poprzednia strona",
|
|
20
|
-
"page.nextLink": "Następna strona",
|
|
21
|
-
"page.draft": "This content is a draft and will not be included in production builds.",
|
|
22
|
-
"404.text": "Nie znaleziono. Sprawdź URL lub użyj wyszukiwarki.",
|
|
23
|
-
"aside.note": "Notatka",
|
|
24
|
-
"aside.tip": "Wskazówka",
|
|
25
|
-
"aside.caution": "Uwaga",
|
|
26
|
-
"aside.danger": "Ważne",
|
|
27
|
-
"fileTree.directory": "Folder",
|
|
28
|
-
"expressiveCode.copyButtonCopied": "Skopiowane!",
|
|
29
|
-
"expressiveCode.copyButtonTooltip": "Skopiuj do schowka",
|
|
30
|
-
"expressiveCode.terminalWindowFallbackTitle": "Okno terminala",
|
|
31
|
-
"builtWithStarlight.label": "Built with Starlight",
|
|
32
|
-
"heading.anchorLabel": "Dział zatytułowany „{{title}}”"
|
|
33
|
-
}
|
package/translations/pt.json
DELETED
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"skipLink.label": "Pular para o conteúdo",
|
|
3
|
-
"search.label": "Pesquisar",
|
|
4
|
-
"search.ctrlKey": "Ctrl",
|
|
5
|
-
"search.cancelLabel": "Cancelar",
|
|
6
|
-
"search.devWarning": "A pesquisa está disponível apenas em builds em produção. \nTente fazer a build e pré-visualize o site para testar localmente.",
|
|
7
|
-
"themeSelect.accessibleLabel": "Selecionar tema",
|
|
8
|
-
"themeSelect.dark": "Escuro",
|
|
9
|
-
"themeSelect.light": "Claro",
|
|
10
|
-
"themeSelect.auto": "Auto",
|
|
11
|
-
"languageSelect.accessibleLabel": "Selecionar língua",
|
|
12
|
-
"menuButton.accessibleLabel": "Menu",
|
|
13
|
-
"sidebarNav.accessibleLabel": "Principal",
|
|
14
|
-
"tableOfContents.onThisPage": "Nesta página",
|
|
15
|
-
"tableOfContents.overview": "Visão geral",
|
|
16
|
-
"i18n.untranslatedContent": "Este conteúdo não está disponível em sua língua ainda.",
|
|
17
|
-
"page.editLink": "Editar página",
|
|
18
|
-
"page.lastUpdated": "Última atualização:",
|
|
19
|
-
"page.previousLink": "Anterior",
|
|
20
|
-
"page.nextLink": "Próximo",
|
|
21
|
-
"page.draft": "Esse conteúdo é um rascunho e não será incluído em builds de produção.",
|
|
22
|
-
"404.text": "Página não encontrada. Verifique o URL ou tente usar a barra de pesquisa.",
|
|
23
|
-
"aside.note": "Nota",
|
|
24
|
-
"aside.tip": "Dica",
|
|
25
|
-
"aside.caution": "Cuidado",
|
|
26
|
-
"aside.danger": "Perigo",
|
|
27
|
-
"expressiveCode.terminalWindowFallbackTitle": "Janela do terminal",
|
|
28
|
-
"expressiveCode.copyButtonTooltip": "Copiar para área de transferência",
|
|
29
|
-
"expressiveCode.copyButtonCopied": "Copiado!",
|
|
30
|
-
"fileTree.directory": "Directory",
|
|
31
|
-
"builtWithStarlight.label": "Feito com Starlight",
|
|
32
|
-
"heading.anchorLabel": "Seção intitulada “{{title}}”"
|
|
33
|
-
}
|
package/translations/ro.json
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
{
|
|
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": "Cuprins",
|
|
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 precedentă",
|
|
20
|
-
"page.nextLink": "Pagina următoare",
|
|
21
|
-
"page.draft": "Acest conținut este o schiță și nu va fi inclus în versiunile de producție.",
|
|
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": "Director",
|
|
28
|
-
"builtWithStarlight.label": "Creat cu Starlight",
|
|
29
|
-
"heading.anchorLabel": "Secțiune intitulată „{{title}}”"
|
|
30
|
-
}
|
package/translations/ru.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
|
-
"fileTree.directory": "Директория",
|
|
28
|
-
"expressiveCode.copyButtonCopied": "Скопировано!",
|
|
29
|
-
"expressiveCode.copyButtonTooltip": "Копировать",
|
|
30
|
-
"expressiveCode.terminalWindowFallbackTitle": "Окно терминала",
|
|
31
|
-
"builtWithStarlight.label": "Сделано с помощью Starlight",
|
|
32
|
-
"heading.anchorLabel": "Заголовок раздела «{{title}}»"
|
|
33
|
-
}
|
package/translations/sk.json
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
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
|
-
}
|
package/translations/sv.json
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
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
|
-
}
|
package/translations/th.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": "เนื้อหานี้เป็นแบบร่างและจะไม่ถูกใส่ในเวอร์ชันใช้งานจริง",
|
|
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
|
-
}
|
package/translations/tr.json
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
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 yapımlarında kullanılabilir. \nYerel olarak denemek için siteyi oluşturmayı ve önizlemeyi deneyin.",
|
|
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 bir taslaktır ve üretim yapımlarına dahil edilmeyecektir.",
|
|
22
|
-
"404.text": "Sayfa bulunamadı. URL'yi gözden geçirin veya 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": "Starlight ile oluşturuldu",
|
|
29
|
-
"heading.anchorLabel": "Bölüm başlığı “{{title}}”"
|
|
30
|
-
}
|
package/translations/uk.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": "Цей контент є чернеткою і не буде включений до виробничих збірок.",
|
|
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
|
-
}
|
package/translations/vi.json
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
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
|
-
}
|
package/translations/zh-CN.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/zh-TW.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": "找不到頁面。請檢查網址或改用搜尋功能。",
|
|
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": "Built with Starlight",
|
|
32
|
-
"heading.anchorLabel": "Section titled “{{title}}”"
|
|
33
|
-
}
|
package/types.ts
DELETED