@astrojs/starlight 0.41.10 → 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/{style → dist/style}/anchor-links.css +13 -1
- 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 +62 -33
- package/CHANGELOG.md +0 -3043
- 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 -566
- 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 -135
- 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}/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
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
//#region src/translations/id.json
|
|
2
|
+
var id_default = {
|
|
3
|
+
"skipLink.label": "Lewati ke konten",
|
|
4
|
+
"search.label": "Pencarian",
|
|
5
|
+
"search.ctrlKey": "Ctrl",
|
|
6
|
+
"search.cancelLabel": "Batal",
|
|
7
|
+
"search.devWarning": "Pencarian hanya tersedia pada build produksi. \nLakukan proses build dan pratinjau situs Anda sebelum mencoba di lingkungan lokal.",
|
|
8
|
+
"themeSelect.accessibleLabel": "Pilih tema",
|
|
9
|
+
"themeSelect.dark": "Gelap",
|
|
10
|
+
"themeSelect.light": "Terang",
|
|
11
|
+
"themeSelect.auto": "Otomatis",
|
|
12
|
+
"languageSelect.accessibleLabel": "Pilih Bahasa",
|
|
13
|
+
"menuButton.accessibleLabel": "Menu",
|
|
14
|
+
"sidebarNav.accessibleLabel": "Utama",
|
|
15
|
+
"tableOfContents.onThisPage": "Di halaman ini",
|
|
16
|
+
"tableOfContents.overview": "Ringkasan",
|
|
17
|
+
"i18n.untranslatedContent": "Konten ini belum tersedia dalam bahasa Anda.",
|
|
18
|
+
"page.editLink": "Edit halaman",
|
|
19
|
+
"page.lastUpdated": "Terakhir diperbaharui:",
|
|
20
|
+
"page.previousLink": "Sebelumnya",
|
|
21
|
+
"page.nextLink": "Selanjutnya",
|
|
22
|
+
"page.draft": "This content is a draft and will not be included in production builds.",
|
|
23
|
+
"404.text": "Halaman tidak ditemukan. Cek kembali kolom URL atau gunakan fitur pencarian.",
|
|
24
|
+
"aside.note": "Catatan",
|
|
25
|
+
"aside.tip": "Tips",
|
|
26
|
+
"aside.caution": "Perhatian",
|
|
27
|
+
"aside.danger": "Bahaya",
|
|
28
|
+
"fileTree.directory": "Directory",
|
|
29
|
+
"builtWithStarlight.label": "Built with Starlight",
|
|
30
|
+
"heading.anchorLabel": "Section titled “{{title}}”"
|
|
31
|
+
};
|
|
32
|
+
//#endregion
|
|
33
|
+
export { id_default as default };
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
//#region src/translations/index.d.ts
|
|
2
|
+
declare const _default: {
|
|
3
|
+
[k: string]: {
|
|
4
|
+
'skipLink.label': string;
|
|
5
|
+
'search.label': string;
|
|
6
|
+
'search.ctrlKey': string;
|
|
7
|
+
'search.cancelLabel': string;
|
|
8
|
+
'search.devWarning': string;
|
|
9
|
+
'themeSelect.accessibleLabel': string;
|
|
10
|
+
'themeSelect.dark': string;
|
|
11
|
+
'themeSelect.light': string;
|
|
12
|
+
'themeSelect.auto': string;
|
|
13
|
+
'languageSelect.accessibleLabel': string;
|
|
14
|
+
'menuButton.accessibleLabel': string;
|
|
15
|
+
'sidebarNav.accessibleLabel': string;
|
|
16
|
+
'tableOfContents.onThisPage': string;
|
|
17
|
+
'tableOfContents.overview': string;
|
|
18
|
+
'i18n.untranslatedContent': string;
|
|
19
|
+
'page.editLink': string;
|
|
20
|
+
'page.lastUpdated': string;
|
|
21
|
+
'page.previousLink': string;
|
|
22
|
+
'page.nextLink': string;
|
|
23
|
+
'page.draft': string;
|
|
24
|
+
'404.text': string;
|
|
25
|
+
'aside.tip': string;
|
|
26
|
+
'aside.note': string;
|
|
27
|
+
'aside.caution': string;
|
|
28
|
+
'aside.danger': string;
|
|
29
|
+
'fileTree.directory': string;
|
|
30
|
+
'builtWithStarlight.label': string;
|
|
31
|
+
'heading.anchorLabel': string;
|
|
32
|
+
'expressiveCode.copyButtonCopied'?: string | undefined;
|
|
33
|
+
'expressiveCode.copyButtonTooltip'?: string | undefined;
|
|
34
|
+
'expressiveCode.terminalWindowFallbackTitle'?: string | undefined;
|
|
35
|
+
'pagefind.clear_search'?: string | undefined;
|
|
36
|
+
'pagefind.load_more'?: string | undefined;
|
|
37
|
+
'pagefind.search_label'?: string | undefined;
|
|
38
|
+
'pagefind.filters_label'?: string | undefined;
|
|
39
|
+
'pagefind.zero_results'?: string | undefined;
|
|
40
|
+
'pagefind.many_results'?: string | undefined;
|
|
41
|
+
'pagefind.one_result'?: string | undefined;
|
|
42
|
+
'pagefind.alt_search'?: string | undefined;
|
|
43
|
+
'pagefind.search_suggestion'?: string | undefined;
|
|
44
|
+
'pagefind.searching'?: string | undefined;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
//#endregion
|
|
48
|
+
export { _default as default };
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
import { builtinI18nSchema } from "../schemas/i18n.js";
|
|
2
|
+
import cs_default from "./cs.js";
|
|
3
|
+
import en_default from "./en.js";
|
|
4
|
+
import es_default from "./es.js";
|
|
5
|
+
import ca_default from "./ca.js";
|
|
6
|
+
import de_default from "./de.js";
|
|
7
|
+
import ja_default from "./ja.js";
|
|
8
|
+
import pt_default from "./pt.js";
|
|
9
|
+
import fa_default from "./fa.js";
|
|
10
|
+
import fi_default from "./fi.js";
|
|
11
|
+
import fr_default from "./fr.js";
|
|
12
|
+
import gl_default from "./gl.js";
|
|
13
|
+
import he_default from "./he.js";
|
|
14
|
+
import id_default from "./id.js";
|
|
15
|
+
import it_default from "./it.js";
|
|
16
|
+
import nl_default from "./nl.js";
|
|
17
|
+
import da_default from "./da.js";
|
|
18
|
+
import th_default from "./th.js";
|
|
19
|
+
import tr_default from "./tr.js";
|
|
20
|
+
import ar_default from "./ar.js";
|
|
21
|
+
import nb_default from "./nb.js";
|
|
22
|
+
import zh_CN_default from "./zh-CN.js";
|
|
23
|
+
import ko_default from "./ko.js";
|
|
24
|
+
import sv_default from "./sv.js";
|
|
25
|
+
import ro_default from "./ro.js";
|
|
26
|
+
import ru_default from "./ru.js";
|
|
27
|
+
import vi_default from "./vi.js";
|
|
28
|
+
import uk_default from "./uk.js";
|
|
29
|
+
import hi_default from "./hi.js";
|
|
30
|
+
import zh_TW_default from "./zh-TW.js";
|
|
31
|
+
import pl_default from "./pl.js";
|
|
32
|
+
import sk_default from "./sk.js";
|
|
33
|
+
import lv_default from "./lv.js";
|
|
34
|
+
import hu_default from "./hu.js";
|
|
35
|
+
import el_default from "./el.js";
|
|
36
|
+
//#region src/translations/index.ts
|
|
37
|
+
const { parse } = builtinI18nSchema();
|
|
38
|
+
var translations_default = Object.fromEntries(Object.entries({
|
|
39
|
+
cs: cs_default,
|
|
40
|
+
en: en_default,
|
|
41
|
+
es: es_default,
|
|
42
|
+
ca: ca_default,
|
|
43
|
+
de: de_default,
|
|
44
|
+
ja: ja_default,
|
|
45
|
+
pt: pt_default,
|
|
46
|
+
fa: fa_default,
|
|
47
|
+
fi: fi_default,
|
|
48
|
+
fr: fr_default,
|
|
49
|
+
gl: gl_default,
|
|
50
|
+
he: he_default,
|
|
51
|
+
id: id_default,
|
|
52
|
+
it: it_default,
|
|
53
|
+
nl: nl_default,
|
|
54
|
+
da: da_default,
|
|
55
|
+
th: th_default,
|
|
56
|
+
tr: tr_default,
|
|
57
|
+
ar: ar_default,
|
|
58
|
+
nb: nb_default,
|
|
59
|
+
zh: zh_CN_default,
|
|
60
|
+
ko: ko_default,
|
|
61
|
+
sv: sv_default,
|
|
62
|
+
ro: ro_default,
|
|
63
|
+
ru: ru_default,
|
|
64
|
+
vi: vi_default,
|
|
65
|
+
uk: uk_default,
|
|
66
|
+
hi: hi_default,
|
|
67
|
+
"zh-TW": zh_TW_default,
|
|
68
|
+
pl: pl_default,
|
|
69
|
+
sk: sk_default,
|
|
70
|
+
lv: lv_default,
|
|
71
|
+
hu: hu_default,
|
|
72
|
+
el: el_default
|
|
73
|
+
}).map(([key, dict]) => [key, parse(dict)]));
|
|
74
|
+
//#endregion
|
|
75
|
+
export { translations_default as default };
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
//#region src/translations/it.json
|
|
2
|
+
var it_default = {
|
|
3
|
+
"skipLink.label": "Salta ai contenuti",
|
|
4
|
+
"search.label": "Cerca",
|
|
5
|
+
"search.ctrlKey": "Ctrl",
|
|
6
|
+
"search.cancelLabel": "Cancella",
|
|
7
|
+
"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.",
|
|
8
|
+
"themeSelect.accessibleLabel": "Seleziona tema",
|
|
9
|
+
"themeSelect.dark": "Scuro",
|
|
10
|
+
"themeSelect.light": "Chiaro",
|
|
11
|
+
"themeSelect.auto": "Auto",
|
|
12
|
+
"languageSelect.accessibleLabel": "Seleziona lingua",
|
|
13
|
+
"menuButton.accessibleLabel": "Menu",
|
|
14
|
+
"sidebarNav.accessibleLabel": "Principale",
|
|
15
|
+
"tableOfContents.onThisPage": "In questa pagina",
|
|
16
|
+
"tableOfContents.overview": "Panoramica",
|
|
17
|
+
"i18n.untranslatedContent": "Questi contenuti non sono ancora disponibili nella tua lingua.",
|
|
18
|
+
"page.editLink": "Modifica pagina",
|
|
19
|
+
"page.lastUpdated": "Ultimo aggiornamento:",
|
|
20
|
+
"page.previousLink": "Indietro",
|
|
21
|
+
"page.nextLink": "Avanti",
|
|
22
|
+
"page.draft": "This content is a draft and will not be included in production builds.",
|
|
23
|
+
"404.text": "Pagina non trovata. Verifica l'URL o prova a utilizzare la barra di ricerca.",
|
|
24
|
+
"aside.note": "Nota",
|
|
25
|
+
"aside.tip": "Consiglio",
|
|
26
|
+
"aside.caution": "Attenzione",
|
|
27
|
+
"aside.danger": "Pericolo",
|
|
28
|
+
"expressiveCode.terminalWindowFallbackTitle": "Finestra del terminale",
|
|
29
|
+
"expressiveCode.copyButtonTooltip": "Copia",
|
|
30
|
+
"expressiveCode.copyButtonCopied": "Copiato!",
|
|
31
|
+
"fileTree.directory": "Directory",
|
|
32
|
+
"builtWithStarlight.label": "Built with Starlight",
|
|
33
|
+
"heading.anchorLabel": "Sezione intitolata “{{title}}”"
|
|
34
|
+
};
|
|
35
|
+
//#endregion
|
|
36
|
+
export { it_default as default };
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
//#region src/translations/ja.json
|
|
2
|
+
var ja_default = {
|
|
3
|
+
"skipLink.label": "コンテンツにスキップ",
|
|
4
|
+
"search.label": "検索",
|
|
5
|
+
"search.ctrlKey": "Ctrl",
|
|
6
|
+
"search.cancelLabel": "キャンセル",
|
|
7
|
+
"search.devWarning": "検索はプロダクションビルドでのみ利用可能です。\nローカルでテストするには、サイトをビルドしてプレビューしてください。",
|
|
8
|
+
"themeSelect.accessibleLabel": "テーマの選択",
|
|
9
|
+
"themeSelect.dark": "ダーク",
|
|
10
|
+
"themeSelect.light": "ライト",
|
|
11
|
+
"themeSelect.auto": "自動",
|
|
12
|
+
"languageSelect.accessibleLabel": "言語の選択",
|
|
13
|
+
"menuButton.accessibleLabel": "メニュー",
|
|
14
|
+
"sidebarNav.accessibleLabel": "メイン",
|
|
15
|
+
"tableOfContents.onThisPage": "目次",
|
|
16
|
+
"tableOfContents.overview": "概要",
|
|
17
|
+
"i18n.untranslatedContent": "このコンテンツはまだ日本語訳がありません。",
|
|
18
|
+
"page.editLink": "ページを編集",
|
|
19
|
+
"page.lastUpdated": "最終更新日:",
|
|
20
|
+
"page.previousLink": "前へ",
|
|
21
|
+
"page.nextLink": "次へ",
|
|
22
|
+
"page.draft": "このコンテンツは下書きです。プロダクションビルドには含まれません。",
|
|
23
|
+
"404.text": "ページが見つかりません。 URL を確認するか、検索バーを使用してみてください。",
|
|
24
|
+
"aside.note": "ノート",
|
|
25
|
+
"aside.tip": "ヒント",
|
|
26
|
+
"aside.caution": "注意",
|
|
27
|
+
"aside.danger": "危険",
|
|
28
|
+
"expressiveCode.terminalWindowFallbackTitle": "ターミナルウィンドウ",
|
|
29
|
+
"expressiveCode.copyButtonTooltip": "クリップボードにコピー",
|
|
30
|
+
"expressiveCode.copyButtonCopied": "コピーしました!",
|
|
31
|
+
"fileTree.directory": "ディレクトリ",
|
|
32
|
+
"builtWithStarlight.label": "Starlightで作成",
|
|
33
|
+
"heading.anchorLabel": "Section titled “{{title}}”"
|
|
34
|
+
};
|
|
35
|
+
//#endregion
|
|
36
|
+
export { ja_default as default };
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
//#region src/translations/ko.json
|
|
2
|
+
var ko_default = {
|
|
3
|
+
"skipLink.label": "콘텐츠로 이동",
|
|
4
|
+
"search.label": "검색",
|
|
5
|
+
"search.ctrlKey": "Ctrl",
|
|
6
|
+
"search.cancelLabel": "취소",
|
|
7
|
+
"search.devWarning": "검색 기능은 프로덕션 빌드에서만 작동합니다. \n로컬에서 테스트하려면 사이트를 빌드하고 미리 보기를 실행하세요.",
|
|
8
|
+
"themeSelect.accessibleLabel": "테마 선택",
|
|
9
|
+
"themeSelect.dark": "어두운 테마",
|
|
10
|
+
"themeSelect.light": "밝은 테마",
|
|
11
|
+
"themeSelect.auto": "자동",
|
|
12
|
+
"languageSelect.accessibleLabel": "언어 선택",
|
|
13
|
+
"menuButton.accessibleLabel": "메뉴",
|
|
14
|
+
"sidebarNav.accessibleLabel": "메인",
|
|
15
|
+
"tableOfContents.onThisPage": "목차",
|
|
16
|
+
"tableOfContents.overview": "개요",
|
|
17
|
+
"i18n.untranslatedContent": "이 콘텐츠는 아직 번역되지 않았습니다.",
|
|
18
|
+
"page.editLink": "페이지 편집",
|
|
19
|
+
"page.lastUpdated": "마지막 업데이트:",
|
|
20
|
+
"page.previousLink": "이전 페이지",
|
|
21
|
+
"page.nextLink": "다음 페이지",
|
|
22
|
+
"page.draft": "이 콘텐츠는 아직 초안 상태이며, 최종 빌드에는 포함되지 않습니다.",
|
|
23
|
+
"404.text": "페이지를 찾을 수 없습니다. URL을 다시 확인해보거나 검색을 사용해보세요.",
|
|
24
|
+
"aside.note": "참고",
|
|
25
|
+
"aside.tip": "팁",
|
|
26
|
+
"aside.caution": "주의",
|
|
27
|
+
"aside.danger": "위험",
|
|
28
|
+
"expressiveCode.terminalWindowFallbackTitle": "터미널 창",
|
|
29
|
+
"expressiveCode.copyButtonTooltip": "클립보드로 복사",
|
|
30
|
+
"expressiveCode.copyButtonCopied": "복사 완료!",
|
|
31
|
+
"fileTree.directory": "디렉터리",
|
|
32
|
+
"builtWithStarlight.label": "이 웹사이트는 Starlight로 제작되었습니다.",
|
|
33
|
+
"heading.anchorLabel": "섹션 제목: “{{title}}”"
|
|
34
|
+
};
|
|
35
|
+
//#endregion
|
|
36
|
+
export { ko_default as default };
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
//#region src/translations/lv.json
|
|
2
|
+
var lv_default = {
|
|
3
|
+
"skipLink.label": "Pāriet uz saturu",
|
|
4
|
+
"search.label": "Meklēt",
|
|
5
|
+
"search.ctrlKey": "Ctrl",
|
|
6
|
+
"search.cancelLabel": "Atcelt",
|
|
7
|
+
"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.",
|
|
8
|
+
"themeSelect.accessibleLabel": "Izvēlieties tēmu",
|
|
9
|
+
"themeSelect.dark": "Tumša",
|
|
10
|
+
"themeSelect.light": "Gaiša",
|
|
11
|
+
"themeSelect.auto": "Automātiska",
|
|
12
|
+
"languageSelect.accessibleLabel": "Izvēlieties valodu",
|
|
13
|
+
"menuButton.accessibleLabel": "Izvēlne",
|
|
14
|
+
"sidebarNav.accessibleLabel": "Galvenā",
|
|
15
|
+
"tableOfContents.onThisPage": "Šajā lapā",
|
|
16
|
+
"tableOfContents.overview": "Pārskats",
|
|
17
|
+
"i18n.untranslatedContent": "Šis saturs vēl nav pieejams jūsu valodā.",
|
|
18
|
+
"page.editLink": "Rediģēt lapu",
|
|
19
|
+
"page.lastUpdated": "Pēdējoreiz atjaunināts:",
|
|
20
|
+
"page.previousLink": "Iepriekšējā",
|
|
21
|
+
"page.nextLink": "Nākamā",
|
|
22
|
+
"page.draft": "Šis saturs ir melnraksts un netiks iekļauts ražošanas kompilācijās.",
|
|
23
|
+
"404.text": "Lapa nav atrasta. Pārbaudiet URL vai mēģiniet izmantot meklēšanas joslu.",
|
|
24
|
+
"aside.note": "Piezīme",
|
|
25
|
+
"aside.tip": "Padoms",
|
|
26
|
+
"aside.caution": "Uzmanību",
|
|
27
|
+
"aside.danger": "Bīstamība",
|
|
28
|
+
"fileTree.directory": "Direktorija",
|
|
29
|
+
"builtWithStarlight.label": "Veidots ar Starlight",
|
|
30
|
+
"heading.anchorLabel": "Section titled “{{title}}”"
|
|
31
|
+
};
|
|
32
|
+
//#endregion
|
|
33
|
+
export { lv_default as default };
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
//#region src/translations/nb.json
|
|
2
|
+
var nb_default = {
|
|
3
|
+
"skipLink.label": "Gå til innholdet",
|
|
4
|
+
"search.label": "Søk",
|
|
5
|
+
"search.ctrlKey": "Ctrl",
|
|
6
|
+
"search.cancelLabel": "Avbryt",
|
|
7
|
+
"search.devWarning": "Søk er bare tilgjengelig i produksjonsbygg. \nPrøv å bygg siden og forhåndsvis den for å teste det lokalt.",
|
|
8
|
+
"themeSelect.accessibleLabel": "Velg tema",
|
|
9
|
+
"themeSelect.dark": "Mørk",
|
|
10
|
+
"themeSelect.light": "Lys",
|
|
11
|
+
"themeSelect.auto": "Auto",
|
|
12
|
+
"languageSelect.accessibleLabel": "Velg språk",
|
|
13
|
+
"menuButton.accessibleLabel": "Meny",
|
|
14
|
+
"sidebarNav.accessibleLabel": "Hovednavigasjon",
|
|
15
|
+
"tableOfContents.onThisPage": "På denne siden",
|
|
16
|
+
"tableOfContents.overview": "Oversikt",
|
|
17
|
+
"i18n.untranslatedContent": "Dette innholdet er ikke tilgjengelig på ditt språk.",
|
|
18
|
+
"page.editLink": "Rediger side",
|
|
19
|
+
"page.lastUpdated": "Sist oppdatert:",
|
|
20
|
+
"page.previousLink": "Forrige",
|
|
21
|
+
"page.nextLink": "Neste",
|
|
22
|
+
"page.draft": "This content is a draft and will not be included in production builds.",
|
|
23
|
+
"404.text": "Siden ble ikke funnet. Sjekk URL-en eller prøv å bruke søkefeltet.",
|
|
24
|
+
"aside.note": "Merknad",
|
|
25
|
+
"aside.tip": "Tips",
|
|
26
|
+
"aside.caution": "Advarsel",
|
|
27
|
+
"aside.danger": "Fare",
|
|
28
|
+
"fileTree.directory": "Mappe",
|
|
29
|
+
"builtWithStarlight.label": "Laget med Starlight",
|
|
30
|
+
"heading.anchorLabel": "Section titled “{{title}}”"
|
|
31
|
+
};
|
|
32
|
+
//#endregion
|
|
33
|
+
export { nb_default as default };
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
//#region src/translations/nl.json
|
|
2
|
+
var nl_default = {
|
|
3
|
+
"skipLink.label": "Ga naar inhoud",
|
|
4
|
+
"search.label": "Zoeken",
|
|
5
|
+
"search.ctrlKey": "Ctrl",
|
|
6
|
+
"search.cancelLabel": "Annuleren",
|
|
7
|
+
"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.",
|
|
8
|
+
"themeSelect.accessibleLabel": "Selecteer thema",
|
|
9
|
+
"themeSelect.dark": "Donker",
|
|
10
|
+
"themeSelect.light": "Licht",
|
|
11
|
+
"themeSelect.auto": "Auto",
|
|
12
|
+
"languageSelect.accessibleLabel": "Selecteer taal",
|
|
13
|
+
"menuButton.accessibleLabel": "Menu",
|
|
14
|
+
"sidebarNav.accessibleLabel": "Hoofdnavigatie",
|
|
15
|
+
"tableOfContents.onThisPage": "Op deze pagina",
|
|
16
|
+
"tableOfContents.overview": "Overzicht",
|
|
17
|
+
"i18n.untranslatedContent": "Deze inhoud is nog niet vertaald.",
|
|
18
|
+
"page.editLink": "Bewerk pagina",
|
|
19
|
+
"page.lastUpdated": "Laatst bewerkt:",
|
|
20
|
+
"page.previousLink": "Vorige",
|
|
21
|
+
"page.nextLink": "Volgende",
|
|
22
|
+
"page.draft": "This content is a draft and will not be included in production builds.",
|
|
23
|
+
"404.text": "Pagina niet gevonden. Controleer de URL of probeer de zoekbalk.",
|
|
24
|
+
"aside.note": "Opmerking",
|
|
25
|
+
"aside.tip": "Tip",
|
|
26
|
+
"aside.caution": "Opgepast",
|
|
27
|
+
"aside.danger": "Gevaar",
|
|
28
|
+
"fileTree.directory": "Directory",
|
|
29
|
+
"builtWithStarlight.label": "Built with Starlight",
|
|
30
|
+
"heading.anchorLabel": "Section titled “{{title}}”"
|
|
31
|
+
};
|
|
32
|
+
//#endregion
|
|
33
|
+
export { nl_default as default };
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
//#region src/translations/pl.json
|
|
2
|
+
var pl_default = {
|
|
3
|
+
"skipLink.label": "Przejdź do głównej zawartości",
|
|
4
|
+
"search.label": "Szukaj",
|
|
5
|
+
"search.ctrlKey": "Ctrl",
|
|
6
|
+
"search.cancelLabel": "Anuluj",
|
|
7
|
+
"search.devWarning": "Wyszukiwanie jest dostępne tylko w buildach produkcyjnych. \nSpróbuj zbudować i uruchomić aplikację, aby przetestować lokalnie.",
|
|
8
|
+
"themeSelect.accessibleLabel": "Wybierz motyw",
|
|
9
|
+
"themeSelect.dark": "Ciemny",
|
|
10
|
+
"themeSelect.light": "Jasny",
|
|
11
|
+
"themeSelect.auto": "Auto",
|
|
12
|
+
"languageSelect.accessibleLabel": "Wybierz język",
|
|
13
|
+
"menuButton.accessibleLabel": "Menu",
|
|
14
|
+
"sidebarNav.accessibleLabel": "Główne",
|
|
15
|
+
"tableOfContents.onThisPage": "Na tej stronie",
|
|
16
|
+
"tableOfContents.overview": "Przegląd",
|
|
17
|
+
"i18n.untranslatedContent": "Ta treść nie jest jeszcze dostępna w Twoim języku.",
|
|
18
|
+
"page.editLink": "Edytuj stronę",
|
|
19
|
+
"page.lastUpdated": "Ostatnia aktualizacja:",
|
|
20
|
+
"page.previousLink": "Poprzednia strona",
|
|
21
|
+
"page.nextLink": "Następna strona",
|
|
22
|
+
"page.draft": "This content is a draft and will not be included in production builds.",
|
|
23
|
+
"404.text": "Nie znaleziono. Sprawdź URL lub użyj wyszukiwarki.",
|
|
24
|
+
"aside.note": "Notatka",
|
|
25
|
+
"aside.tip": "Wskazówka",
|
|
26
|
+
"aside.caution": "Uwaga",
|
|
27
|
+
"aside.danger": "Ważne",
|
|
28
|
+
"fileTree.directory": "Folder",
|
|
29
|
+
"expressiveCode.copyButtonCopied": "Skopiowane!",
|
|
30
|
+
"expressiveCode.copyButtonTooltip": "Skopiuj do schowka",
|
|
31
|
+
"expressiveCode.terminalWindowFallbackTitle": "Okno terminala",
|
|
32
|
+
"builtWithStarlight.label": "Built with Starlight",
|
|
33
|
+
"heading.anchorLabel": "Dział zatytułowany „{{title}}”"
|
|
34
|
+
};
|
|
35
|
+
//#endregion
|
|
36
|
+
export { pl_default as default };
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
//#region src/translations/pt.json
|
|
2
|
+
var pt_default = {
|
|
3
|
+
"skipLink.label": "Pular para o conteúdo",
|
|
4
|
+
"search.label": "Pesquisar",
|
|
5
|
+
"search.ctrlKey": "Ctrl",
|
|
6
|
+
"search.cancelLabel": "Cancelar",
|
|
7
|
+
"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.",
|
|
8
|
+
"themeSelect.accessibleLabel": "Selecionar tema",
|
|
9
|
+
"themeSelect.dark": "Escuro",
|
|
10
|
+
"themeSelect.light": "Claro",
|
|
11
|
+
"themeSelect.auto": "Auto",
|
|
12
|
+
"languageSelect.accessibleLabel": "Selecionar língua",
|
|
13
|
+
"menuButton.accessibleLabel": "Menu",
|
|
14
|
+
"sidebarNav.accessibleLabel": "Principal",
|
|
15
|
+
"tableOfContents.onThisPage": "Nesta página",
|
|
16
|
+
"tableOfContents.overview": "Visão geral",
|
|
17
|
+
"i18n.untranslatedContent": "Este conteúdo não está disponível em sua língua ainda.",
|
|
18
|
+
"page.editLink": "Editar página",
|
|
19
|
+
"page.lastUpdated": "Última atualização:",
|
|
20
|
+
"page.previousLink": "Anterior",
|
|
21
|
+
"page.nextLink": "Próximo",
|
|
22
|
+
"page.draft": "Esse conteúdo é um rascunho e não será incluído em builds de produção.",
|
|
23
|
+
"404.text": "Página não encontrada. Verifique o URL ou tente usar a barra de pesquisa.",
|
|
24
|
+
"aside.note": "Nota",
|
|
25
|
+
"aside.tip": "Dica",
|
|
26
|
+
"aside.caution": "Cuidado",
|
|
27
|
+
"aside.danger": "Perigo",
|
|
28
|
+
"expressiveCode.terminalWindowFallbackTitle": "Janela do terminal",
|
|
29
|
+
"expressiveCode.copyButtonTooltip": "Copiar para área de transferência",
|
|
30
|
+
"expressiveCode.copyButtonCopied": "Copiado!",
|
|
31
|
+
"fileTree.directory": "Directory",
|
|
32
|
+
"builtWithStarlight.label": "Feito com Starlight",
|
|
33
|
+
"heading.anchorLabel": "Seção intitulada “{{title}}”"
|
|
34
|
+
};
|
|
35
|
+
//#endregion
|
|
36
|
+
export { pt_default as default };
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
//#region src/translations/ro.json
|
|
2
|
+
var ro_default = {
|
|
3
|
+
"skipLink.label": "Sari la conținut",
|
|
4
|
+
"search.label": "Caută",
|
|
5
|
+
"search.ctrlKey": "Ctrl",
|
|
6
|
+
"search.cancelLabel": "Anulează",
|
|
7
|
+
"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.",
|
|
8
|
+
"themeSelect.accessibleLabel": "Selectează tema",
|
|
9
|
+
"themeSelect.dark": "Întunecată",
|
|
10
|
+
"themeSelect.light": "Deschisă",
|
|
11
|
+
"themeSelect.auto": "Auto",
|
|
12
|
+
"languageSelect.accessibleLabel": "Selectează limba",
|
|
13
|
+
"menuButton.accessibleLabel": "Meniu",
|
|
14
|
+
"sidebarNav.accessibleLabel": "Principal",
|
|
15
|
+
"tableOfContents.onThisPage": "Pe această pagină",
|
|
16
|
+
"tableOfContents.overview": "Cuprins",
|
|
17
|
+
"i18n.untranslatedContent": "Acest conținut nu este încă disponibil în limba selectată.",
|
|
18
|
+
"page.editLink": "Editează pagina",
|
|
19
|
+
"page.lastUpdated": "Ultima actualizare:",
|
|
20
|
+
"page.previousLink": "Pagina precedentă",
|
|
21
|
+
"page.nextLink": "Pagina următoare",
|
|
22
|
+
"page.draft": "Acest conținut este o schiță și nu va fi inclus în versiunile de producție.",
|
|
23
|
+
"404.text": "Pagina nu a fost găsită. Verifică adresa URL sau încercă să folosești bara de căutare.",
|
|
24
|
+
"aside.note": "Mențiune",
|
|
25
|
+
"aside.tip": "Sfat",
|
|
26
|
+
"aside.caution": "Atenție",
|
|
27
|
+
"aside.danger": "Pericol",
|
|
28
|
+
"fileTree.directory": "Director",
|
|
29
|
+
"builtWithStarlight.label": "Creat cu Starlight",
|
|
30
|
+
"heading.anchorLabel": "Secțiune intitulată „{{title}}”"
|
|
31
|
+
};
|
|
32
|
+
//#endregion
|
|
33
|
+
export { ro_default as default };
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
//#region src/translations/ru.json
|
|
2
|
+
var ru_default = {
|
|
3
|
+
"skipLink.label": "Перейти к содержимому",
|
|
4
|
+
"search.label": "Поиск",
|
|
5
|
+
"search.ctrlKey": "Ctrl",
|
|
6
|
+
"search.cancelLabel": "Отменить",
|
|
7
|
+
"search.devWarning": "Поиск доступен только в продакшен-сборках. \nВыполните сборку и запустите превью, чтобы протестировать поиск локально.",
|
|
8
|
+
"themeSelect.accessibleLabel": "Выберите тему",
|
|
9
|
+
"themeSelect.dark": "Тёмная",
|
|
10
|
+
"themeSelect.light": "Светлая",
|
|
11
|
+
"themeSelect.auto": "Авто",
|
|
12
|
+
"languageSelect.accessibleLabel": "Выберите язык",
|
|
13
|
+
"menuButton.accessibleLabel": "Меню",
|
|
14
|
+
"sidebarNav.accessibleLabel": "Основное",
|
|
15
|
+
"tableOfContents.onThisPage": "На этой странице",
|
|
16
|
+
"tableOfContents.overview": "Обзор",
|
|
17
|
+
"i18n.untranslatedContent": "Это содержимое пока не доступно на вашем языке.",
|
|
18
|
+
"page.editLink": "Редактировать страницу",
|
|
19
|
+
"page.lastUpdated": "Последнее обновление:",
|
|
20
|
+
"page.previousLink": "Предыдущая",
|
|
21
|
+
"page.nextLink": "Следующая",
|
|
22
|
+
"page.draft": "Этот контент является черновиком и не будет добавлен в продакшен-сборки.",
|
|
23
|
+
"404.text": "Страница не найдена. Проверьте URL или используйте поиск по сайту.",
|
|
24
|
+
"aside.note": "Заметка",
|
|
25
|
+
"aside.tip": "Совет",
|
|
26
|
+
"aside.caution": "Осторожно",
|
|
27
|
+
"aside.danger": "Опасно",
|
|
28
|
+
"fileTree.directory": "Директория",
|
|
29
|
+
"expressiveCode.copyButtonCopied": "Скопировано!",
|
|
30
|
+
"expressiveCode.copyButtonTooltip": "Копировать",
|
|
31
|
+
"expressiveCode.terminalWindowFallbackTitle": "Окно терминала",
|
|
32
|
+
"builtWithStarlight.label": "Сделано с помощью Starlight",
|
|
33
|
+
"heading.anchorLabel": "Заголовок раздела «{{title}}»"
|
|
34
|
+
};
|
|
35
|
+
//#endregion
|
|
36
|
+
export { ru_default as default };
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
//#region src/translations/sk.json
|
|
2
|
+
var sk_default = {
|
|
3
|
+
"skipLink.label": "Preskočiť na obsah",
|
|
4
|
+
"search.label": "Hľadať",
|
|
5
|
+
"search.ctrlKey": "Ctrl",
|
|
6
|
+
"search.cancelLabel": "Zrušiť",
|
|
7
|
+
"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.",
|
|
8
|
+
"themeSelect.accessibleLabel": "Vyberte tému",
|
|
9
|
+
"themeSelect.dark": "Tmavý",
|
|
10
|
+
"themeSelect.light": "Svetlý",
|
|
11
|
+
"themeSelect.auto": "Auto",
|
|
12
|
+
"languageSelect.accessibleLabel": "Vyberte jazyk",
|
|
13
|
+
"menuButton.accessibleLabel": "Menu",
|
|
14
|
+
"sidebarNav.accessibleLabel": "Hlavný",
|
|
15
|
+
"tableOfContents.onThisPage": "Na tejto stránke",
|
|
16
|
+
"tableOfContents.overview": "Prehľad",
|
|
17
|
+
"i18n.untranslatedContent": "Tento obsah zatiaľ nie je dostupný vo vašom jazyku.",
|
|
18
|
+
"page.editLink": "Upraviť stránku",
|
|
19
|
+
"page.lastUpdated": "Posledná aktualizácia:",
|
|
20
|
+
"page.previousLink": "Predchádzajúce",
|
|
21
|
+
"page.nextLink": "Nasledujúce",
|
|
22
|
+
"page.draft": "Tento obsah je koncept a nebude zahrnutý do produkčných zostavení.",
|
|
23
|
+
"404.text": "Stránka nenájdená. Skontrolujte URL alebo skúste použiť vyhľadávacie pole.",
|
|
24
|
+
"aside.note": "Poznámka",
|
|
25
|
+
"aside.tip": "Tip",
|
|
26
|
+
"aside.caution": "Upozornenie",
|
|
27
|
+
"aside.danger": "Nebezpečenstvo",
|
|
28
|
+
"fileTree.directory": "Adresár",
|
|
29
|
+
"builtWithStarlight.label": "Postavené so Starlight",
|
|
30
|
+
"heading.anchorLabel": "Section titled “{{title}}”"
|
|
31
|
+
};
|
|
32
|
+
//#endregion
|
|
33
|
+
export { sk_default as default };
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
//#region src/translations/sv.json
|
|
2
|
+
var sv_default = {
|
|
3
|
+
"skipLink.label": "Hoppa till innehåll",
|
|
4
|
+
"search.label": "Sök",
|
|
5
|
+
"search.ctrlKey": "Ctrl",
|
|
6
|
+
"search.cancelLabel": "Avbryt",
|
|
7
|
+
"search.devWarning": "Sökfunktionen är endast tillgänglig i produktionsbyggen. \nProva att bygga och förhandsvisa siten för att testa det lokalt.",
|
|
8
|
+
"themeSelect.accessibleLabel": "Välj tema",
|
|
9
|
+
"themeSelect.dark": "Mörkt",
|
|
10
|
+
"themeSelect.light": "Ljust",
|
|
11
|
+
"themeSelect.auto": "Auto",
|
|
12
|
+
"languageSelect.accessibleLabel": "Välj språk",
|
|
13
|
+
"menuButton.accessibleLabel": "Meny",
|
|
14
|
+
"sidebarNav.accessibleLabel": "Huvudmeny",
|
|
15
|
+
"tableOfContents.onThisPage": "På den här sidan",
|
|
16
|
+
"tableOfContents.overview": "Översikt",
|
|
17
|
+
"i18n.untranslatedContent": "Det här innehållet är inte tillgängligt på ditt språk än.",
|
|
18
|
+
"page.editLink": "Redigera sida",
|
|
19
|
+
"page.lastUpdated": "Senast uppdaterad:",
|
|
20
|
+
"page.previousLink": "Föregående",
|
|
21
|
+
"page.nextLink": "Nästa",
|
|
22
|
+
"page.draft": "This content is a draft and will not be included in production builds.",
|
|
23
|
+
"404.text": "Sidan hittades inte. Kontrollera URL:n eller testa att använda sökfältet.",
|
|
24
|
+
"aside.note": "Note",
|
|
25
|
+
"aside.tip": "Tip",
|
|
26
|
+
"aside.caution": "Caution",
|
|
27
|
+
"aside.danger": "Danger",
|
|
28
|
+
"fileTree.directory": "Directory",
|
|
29
|
+
"builtWithStarlight.label": "Built with Starlight",
|
|
30
|
+
"heading.anchorLabel": "Section titled “{{title}}”"
|
|
31
|
+
};
|
|
32
|
+
//#endregion
|
|
33
|
+
export { sv_default as default };
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
//#region src/translations/th.json
|
|
2
|
+
var th_default = {
|
|
3
|
+
"skipLink.label": "ข้ามไปยังเนื้อหา",
|
|
4
|
+
"search.label": "ค้นหา",
|
|
5
|
+
"search.ctrlKey": "Ctrl",
|
|
6
|
+
"search.cancelLabel": "ยกเลิก",
|
|
7
|
+
"search.devWarning": "การค้นหาสามารถใช้งานได้ในเฉพาะเวอร์ชันใช้งานจริงเท่านั้น\nโปรดลองบิลด์และดูตัวอย่างเว็บไซต์เพื่อทดสอบฟังก์ชันบนอุปกรณ์ของคุณ",
|
|
8
|
+
"themeSelect.accessibleLabel": "เลือกธีม",
|
|
9
|
+
"themeSelect.dark": "มืด",
|
|
10
|
+
"themeSelect.light": "สว่าง",
|
|
11
|
+
"themeSelect.auto": "อัตโนมัติ",
|
|
12
|
+
"languageSelect.accessibleLabel": "เลือกภาษา",
|
|
13
|
+
"menuButton.accessibleLabel": "เมนู",
|
|
14
|
+
"sidebarNav.accessibleLabel": "หลัก",
|
|
15
|
+
"tableOfContents.onThisPage": "ในหน้านี้",
|
|
16
|
+
"tableOfContents.overview": "ภาพรวม",
|
|
17
|
+
"i18n.untranslatedContent": "เนื้อหานี้ยังไม่มีในภาษาของคุณ",
|
|
18
|
+
"page.editLink": "แก้ไขหน้า",
|
|
19
|
+
"page.lastUpdated": "อัพเดทล่าสุด:",
|
|
20
|
+
"page.previousLink": "ก่อนหน้า",
|
|
21
|
+
"page.nextLink": "ถัดไป",
|
|
22
|
+
"page.draft": "เนื้อหานี้เป็นแบบร่างและจะไม่ถูกใส่ในเวอร์ชันใช้งานจริง",
|
|
23
|
+
"404.text": "ไม่พบหน้า โปรดตรวจสอบ URL หรือลองใช้ฟังก์ชันการค้นหา",
|
|
24
|
+
"aside.note": "หมายเหตุ",
|
|
25
|
+
"aside.tip": "เคล็ดลับ",
|
|
26
|
+
"aside.caution": "คำเตือน",
|
|
27
|
+
"aside.danger": "อันตราย",
|
|
28
|
+
"fileTree.directory": "โฟลเดอร์",
|
|
29
|
+
"builtWithStarlight.label": "ถูกสร้างขึ้นด้วย Starlight",
|
|
30
|
+
"heading.anchorLabel": "หัวข้อที่มีชื่อว่า “{{title}}”"
|
|
31
|
+
};
|
|
32
|
+
//#endregion
|
|
33
|
+
export { th_default as default };
|