blume 0.0.0 → 0.1.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/bin/blume.mjs +18 -0
- package/dist/cli/index.js +11989 -0
- package/dist/cli/index.js.map +141 -0
- package/docs/01-quickstart.mdx +99 -0
- package/docs/02-deployment.mdx +129 -0
- package/docs/advanced/api-reference.mdx +114 -0
- package/docs/advanced/blog.mdx +121 -0
- package/docs/advanced/changelog.mdx +113 -0
- package/docs/advanced/custom-pages.mdx +187 -0
- package/docs/advanced/meta.ts +7 -0
- package/docs/changelog/v0-1-0.mdx +12 -0
- package/docs/changelog/v0-2-0.mdx +16 -0
- package/docs/configuration/ai.mdx +228 -0
- package/docs/configuration/analytics.mdx +98 -0
- package/docs/configuration/customization.mdx +91 -0
- package/docs/configuration/export.mdx +70 -0
- package/docs/configuration/index.mdx +271 -0
- package/docs/configuration/meta.ts +15 -0
- package/docs/configuration/search.mdx +172 -0
- package/docs/configuration/seo.mdx +196 -0
- package/docs/configuration/theming.mdx +178 -0
- package/docs/content/components.mdx +565 -0
- package/docs/content/i18n.mdx +205 -0
- package/docs/content/index.mdx +161 -0
- package/docs/content/islands.mdx +94 -0
- package/docs/content/meta.mdx +119 -0
- package/docs/content/meta.ts +15 -0
- package/docs/content/navigation.mdx +168 -0
- package/docs/content/sources.mdx +216 -0
- package/docs/content/syntax.mdx +445 -0
- package/docs/index.mdx +112 -0
- package/docs/reference/cli.mdx +43 -0
- package/docs/reference/frontmatter.mdx +74 -0
- package/docs/reference/meta.ts +7 -0
- package/package.json +140 -6
- package/src/ai/ask.ts +93 -0
- package/src/ai/llms.ts +65 -0
- package/src/ai/markdown.ts +31 -0
- package/src/ai/mcp/data.ts +74 -0
- package/src/ai/mcp/discovery.ts +49 -0
- package/src/ai/mcp/server.ts +225 -0
- package/src/ai/mcp/tools.ts +47 -0
- package/src/assets/icon.png +0 -0
- package/src/astro/generate.ts +878 -0
- package/src/astro/index.ts +4 -0
- package/src/astro/integration.ts +74 -0
- package/src/astro/islands.ts +131 -0
- package/src/astro/markdown-negotiation.ts +68 -0
- package/src/astro/pages.ts +28 -0
- package/src/astro/templates.ts +1199 -0
- package/src/cli/commands/add.ts +81 -0
- package/src/cli/commands/build.ts +103 -0
- package/src/cli/commands/dev.ts +108 -0
- package/src/cli/commands/doctor.ts +74 -0
- package/src/cli/commands/eject.ts +57 -0
- package/src/cli/commands/init.ts +98 -0
- package/src/cli/commands/migrate.ts +39 -0
- package/src/cli/commands/preview.ts +39 -0
- package/src/cli/commands/sync.ts +52 -0
- package/src/cli/commands/validate.ts +60 -0
- package/src/cli/index.ts +35 -0
- package/src/cli/log.ts +37 -0
- package/src/cli/prepare.ts +80 -0
- package/src/components/Icon.astro +99 -0
- package/src/components/content/Accordion.astro +8 -0
- package/src/components/content/AccordionItem.astro +121 -0
- package/src/components/content/AutoTypeTable.astro +51 -0
- package/src/components/content/Badge.astro +124 -0
- package/src/components/content/Callout.astro +73 -0
- package/src/components/content/Card.astro +104 -0
- package/src/components/content/CardGroup.astro +14 -0
- package/src/components/content/CodeGroup.astro +13 -0
- package/src/components/content/Color.astro +15 -0
- package/src/components/content/ColorItem.astro +87 -0
- package/src/components/content/ColorRow.astro +10 -0
- package/src/components/content/Column.astro +6 -0
- package/src/components/content/Columns.astro +9 -0
- package/src/components/content/Expandable.astro +11 -0
- package/src/components/content/FileTree.astro +8 -0
- package/src/components/content/Frame.astro +70 -0
- package/src/components/content/GithubInfo.astro +110 -0
- package/src/components/content/Math.astro +24 -0
- package/src/components/content/Panel.astro +20 -0
- package/src/components/content/Prompt.astro +129 -0
- package/src/components/content/Step.astro +34 -0
- package/src/components/content/Steps.astro +20 -0
- package/src/components/content/Tab.astro +40 -0
- package/src/components/content/Tabs.astro +273 -0
- package/src/components/content/Tile.astro +42 -0
- package/src/components/content/Tooltip.astro +68 -0
- package/src/components/content/Tree.astro +300 -0
- package/src/components/content/TreeFile.astro +15 -0
- package/src/components/content/TreeFolder.astro +62 -0
- package/src/components/content/TypeTable.astro +106 -0
- package/src/components/content/Update.astro +66 -0
- package/src/components/content/Visibility.astro +12 -0
- package/src/components/content/Warning.astro +9 -0
- package/src/components/content/auto-type-table.ts +141 -0
- package/src/components/content/github-info.ts +79 -0
- package/src/components/content/mermaid-element.ts +68 -0
- package/src/components/github-mark.ts +9 -0
- package/src/components/index.ts +14 -0
- package/src/components/islands/AskAI.astro +12 -0
- package/src/components/islands/ask-ai.tsx +156 -0
- package/src/components/layout/Analytics.astro +63 -0
- package/src/components/layout/Banner.astro +50 -0
- package/src/components/layout/Breadcrumbs.astro +31 -0
- package/src/components/layout/Favicon.astro +15 -0
- package/src/components/layout/Fonts.astro +14 -0
- package/src/components/layout/Header.astro +188 -0
- package/src/components/layout/LanguageSwitcher.astro +56 -0
- package/src/components/layout/NavTree.astro +462 -0
- package/src/components/layout/PageActions.astro +438 -0
- package/src/components/layout/PageFeedback.astro +58 -0
- package/src/components/layout/Pagination.astro +56 -0
- package/src/components/layout/ReferenceLayout.astro +102 -0
- package/src/components/layout/RootLayout.astro +533 -0
- package/src/components/layout/Search.astro +608 -0
- package/src/components/layout/TableOfContents.astro +68 -0
- package/src/components/layout/analytics-client.ts +38 -0
- package/src/components/layout/nav-utils.ts +87 -0
- package/src/components/layout/overrides.ts +32 -0
- package/src/components/layout/search/algolia.ts +43 -0
- package/src/components/layout/search/endpoint.ts +22 -0
- package/src/components/layout/search/flexsearch.ts +52 -0
- package/src/components/layout/search/orama-cloud.ts +41 -0
- package/src/components/layout/search/orama.ts +26 -0
- package/src/components/layout/search/pagefind.ts +43 -0
- package/src/components/layout/search/types.ts +163 -0
- package/src/components/layout/search/typesense.ts +60 -0
- package/src/components/layout/toc-element.ts +108 -0
- package/src/core/bridge.ts +92 -0
- package/src/core/config.ts +112 -0
- package/src/core/content.ts +50 -0
- package/src/core/define-components.ts +34 -0
- package/src/core/define-meta.ts +20 -0
- package/src/core/deployment-env.ts +73 -0
- package/src/core/diagnostics.ts +104 -0
- package/src/core/graph.ts +128 -0
- package/src/core/i18n-ui.ts +171 -0
- package/src/core/i18n.ts +169 -0
- package/src/core/last-modified.ts +88 -0
- package/src/core/links.ts +336 -0
- package/src/core/load-module.ts +15 -0
- package/src/core/manifest.ts +126 -0
- package/src/core/meta.ts +97 -0
- package/src/core/navigation.ts +392 -0
- package/src/core/package-root.ts +37 -0
- package/src/core/project-graph.ts +153 -0
- package/src/core/project.ts +56 -0
- package/src/core/schema.ts +1057 -0
- package/src/core/server-features.ts +23 -0
- package/src/core/sources/assets.ts +77 -0
- package/src/core/sources/cache.ts +122 -0
- package/src/core/sources/filesystem.ts +99 -0
- package/src/core/sources/mdx-remote.ts +216 -0
- package/src/core/sources/mintlify.ts +161 -0
- package/src/core/sources/normalize.ts +227 -0
- package/src/core/sources/notion.ts +440 -0
- package/src/core/sources/portable-text.ts +143 -0
- package/src/core/sources/read.ts +36 -0
- package/src/core/sources/resolve.ts +158 -0
- package/src/core/sources/sanity.ts +218 -0
- package/src/core/sources/types.ts +105 -0
- package/src/core/types.ts +261 -0
- package/src/core/ui-packs/ar.ts +47 -0
- package/src/core/ui-packs/bg.ts +47 -0
- package/src/core/ui-packs/bn.ts +47 -0
- package/src/core/ui-packs/ca.ts +47 -0
- package/src/core/ui-packs/cs.ts +47 -0
- package/src/core/ui-packs/da.ts +47 -0
- package/src/core/ui-packs/de.ts +47 -0
- package/src/core/ui-packs/el.ts +47 -0
- package/src/core/ui-packs/es.ts +47 -0
- package/src/core/ui-packs/fa.ts +47 -0
- package/src/core/ui-packs/fi.ts +47 -0
- package/src/core/ui-packs/fr.ts +47 -0
- package/src/core/ui-packs/he.ts +47 -0
- package/src/core/ui-packs/hi.ts +47 -0
- package/src/core/ui-packs/hr.ts +47 -0
- package/src/core/ui-packs/hu.ts +47 -0
- package/src/core/ui-packs/id.ts +47 -0
- package/src/core/ui-packs/index.ts +87 -0
- package/src/core/ui-packs/it.ts +47 -0
- package/src/core/ui-packs/ja.ts +47 -0
- package/src/core/ui-packs/ko.ts +47 -0
- package/src/core/ui-packs/nl.ts +47 -0
- package/src/core/ui-packs/no.ts +47 -0
- package/src/core/ui-packs/pl.ts +47 -0
- package/src/core/ui-packs/pt-br.ts +47 -0
- package/src/core/ui-packs/pt.ts +47 -0
- package/src/core/ui-packs/ro.ts +47 -0
- package/src/core/ui-packs/ru.ts +47 -0
- package/src/core/ui-packs/sk.ts +47 -0
- package/src/core/ui-packs/sr.ts +47 -0
- package/src/core/ui-packs/sv.ts +47 -0
- package/src/core/ui-packs/th.ts +47 -0
- package/src/core/ui-packs/tr.ts +47 -0
- package/src/core/ui-packs/uk.ts +47 -0
- package/src/core/ui-packs/vi.ts +47 -0
- package/src/core/ui-packs/zh-tw.ts +47 -0
- package/src/core/ui-packs/zh.ts +47 -0
- package/src/core/version.ts +23 -0
- package/src/deploy/robots.ts +20 -0
- package/src/deploy/rss.ts +128 -0
- package/src/deploy/sitemap.ts +28 -0
- package/src/index.ts +27 -0
- package/src/markdown/code-title.ts +71 -0
- package/src/markdown/directives.ts +83 -0
- package/src/markdown/heading-anchors.ts +137 -0
- package/src/markdown/index.ts +159 -0
- package/src/markdown/inline-code.ts +108 -0
- package/src/markdown/language-icon.ts +172 -0
- package/src/markdown/math.ts +32 -0
- package/src/markdown/mdast.ts +48 -0
- package/src/markdown/mermaid.ts +37 -0
- package/src/markdown/package-commands.ts +159 -0
- package/src/markdown/package-install.ts +40 -0
- package/src/migrate/fumadocs/config.ts +106 -0
- package/src/migrate/fumadocs/content.ts +365 -0
- package/src/migrate/fumadocs/frontmatter.ts +18 -0
- package/src/migrate/fumadocs/index.ts +252 -0
- package/src/migrate/fumadocs/meta.ts +114 -0
- package/src/migrate/migrate.ts +53 -0
- package/src/migrate/mintlify/config.ts +1040 -0
- package/src/migrate/mintlify/content.ts +98 -0
- package/src/migrate/mintlify/frontmatter.ts +126 -0
- package/src/migrate/mintlify/i18n.ts +51 -0
- package/src/migrate/mintlify/icons.ts +128 -0
- package/src/migrate/mintlify/index.ts +266 -0
- package/src/migrate/mintlify/snippets.ts +305 -0
- package/src/migrate/mintlify/transform.ts +81 -0
- package/src/migrate/nextra/content.ts +46 -0
- package/src/migrate/nextra/frontmatter.ts +40 -0
- package/src/migrate/nextra/index.ts +374 -0
- package/src/migrate/nextra/meta.ts +266 -0
- package/src/migrate/shared.ts +623 -0
- package/src/migrate/starlight/config.ts +459 -0
- package/src/migrate/starlight/content.ts +78 -0
- package/src/migrate/starlight/frontmatter.ts +111 -0
- package/src/migrate/starlight/i18n.ts +54 -0
- package/src/migrate/starlight/index.ts +131 -0
- package/src/og/card.ts +92 -0
- package/src/og/index.ts +2 -0
- package/src/openapi/scalar.ts +246 -0
- package/src/registry/eject.ts +263 -0
- package/src/registry/registry.ts +100 -0
- package/src/registry/rewrite-imports.ts +39 -0
- package/src/runtime/index.ts +14 -0
- package/src/search/build.ts +23 -0
- package/src/search/documents.ts +165 -0
- package/src/search/orama-index.ts +66 -0
- package/src/search/providers.ts +91 -0
- package/src/search/sync/algolia.ts +30 -0
- package/src/search/sync/index.ts +50 -0
- package/src/search/sync/orama-cloud.ts +40 -0
- package/src/search/sync/typesense.ts +65 -0
- package/src/seo/jsonld.ts +113 -0
- package/src/theme/entry.ts +608 -0
- package/src/theme/fonts.ts +198 -0
- package/src/theme/icons.ts +184 -0
- package/src/theme/palette.ts +143 -0
- package/src/theme/twoslash.ts +81 -0
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import type { UIStringsOverride } from "../i18n-ui.ts";
|
|
2
|
+
|
|
3
|
+
/** Spanish (es) UI strings. */
|
|
4
|
+
export const es: UIStringsOverride = {
|
|
5
|
+
actions: {
|
|
6
|
+
addToCursor: "Añadir a Cursor",
|
|
7
|
+
addToVscode: "Añadir a VS Code",
|
|
8
|
+
askAI: "Preguntar a la IA sobre esta página",
|
|
9
|
+
connectMcp: "Conectar a MCP",
|
|
10
|
+
copied: "¡Copiado!",
|
|
11
|
+
copyClaudeCode: "Copiar comando de Claude Code",
|
|
12
|
+
copyMarkdown: "Copiar como Markdown",
|
|
13
|
+
copyServerUrl: "Copiar URL del servidor",
|
|
14
|
+
edit: "Editar en GitHub",
|
|
15
|
+
openInChat: "Abrir en el chat",
|
|
16
|
+
scrollToTop: "Volver arriba",
|
|
17
|
+
},
|
|
18
|
+
ask: {
|
|
19
|
+
empty: "Haz una pregunta sobre la documentación.",
|
|
20
|
+
error: "Lo sentimos, algo salió mal.",
|
|
21
|
+
label: "Haz una pregunta",
|
|
22
|
+
placeholder: "Haz una pregunta…",
|
|
23
|
+
send: "Enviar",
|
|
24
|
+
title: "Preguntar a la IA",
|
|
25
|
+
},
|
|
26
|
+
feedback: {
|
|
27
|
+
no: "No",
|
|
28
|
+
question: "¿Te ha resultado útil esta página?",
|
|
29
|
+
thanks: "¡Gracias por tus comentarios!",
|
|
30
|
+
yes: "Sí",
|
|
31
|
+
},
|
|
32
|
+
languageSwitcher: { label: "Idioma", untranslated: "Sin traducir" },
|
|
33
|
+
page: {
|
|
34
|
+
lastUpdated: "Última actualización el",
|
|
35
|
+
next: "Siguiente",
|
|
36
|
+
previous: "Anterior",
|
|
37
|
+
skipToContent: "Saltar al contenido",
|
|
38
|
+
},
|
|
39
|
+
search: {
|
|
40
|
+
button: "Buscar",
|
|
41
|
+
devOnly: "La búsqueda está disponible en la compilación de producción.",
|
|
42
|
+
label: "Buscar en la documentación",
|
|
43
|
+
noResults: "No se encontraron resultados.",
|
|
44
|
+
placeholder: "Buscar en la documentación…",
|
|
45
|
+
},
|
|
46
|
+
toc: { title: "En esta página" },
|
|
47
|
+
};
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import type { UIStringsOverride } from "../i18n-ui.ts";
|
|
2
|
+
|
|
3
|
+
/** Persian (fa) UI strings. */
|
|
4
|
+
export const fa: UIStringsOverride = {
|
|
5
|
+
actions: {
|
|
6
|
+
addToCursor: "افزودن به Cursor",
|
|
7
|
+
addToVscode: "افزودن به VS Code",
|
|
8
|
+
askAI: "از هوش مصنوعی درباره این صفحه بپرسید",
|
|
9
|
+
connectMcp: "اتصال به MCP",
|
|
10
|
+
copied: "کپی شد!",
|
|
11
|
+
copyClaudeCode: "کپی دستور Claude Code",
|
|
12
|
+
copyMarkdown: "کپی بهصورت Markdown",
|
|
13
|
+
copyServerUrl: "کپی نشانی سرور",
|
|
14
|
+
edit: "ویرایش در GitHub",
|
|
15
|
+
openInChat: "باز کردن در گفتگو",
|
|
16
|
+
scrollToTop: "بازگشت به بالا",
|
|
17
|
+
},
|
|
18
|
+
ask: {
|
|
19
|
+
empty: "سؤالی درباره مستندات بپرسید.",
|
|
20
|
+
error: "متأسفیم، مشکلی پیش آمد.",
|
|
21
|
+
label: "یک سؤال بپرسید",
|
|
22
|
+
placeholder: "یک سؤال بپرسید…",
|
|
23
|
+
send: "ارسال",
|
|
24
|
+
title: "از هوش مصنوعی بپرسید",
|
|
25
|
+
},
|
|
26
|
+
feedback: {
|
|
27
|
+
no: "خیر",
|
|
28
|
+
question: "آیا این صفحه مفید بود؟",
|
|
29
|
+
thanks: "از بازخورد شما سپاسگزاریم!",
|
|
30
|
+
yes: "بله",
|
|
31
|
+
},
|
|
32
|
+
languageSwitcher: { label: "زبان", untranslated: "ترجمهنشده" },
|
|
33
|
+
page: {
|
|
34
|
+
lastUpdated: "آخرین بهروزرسانی",
|
|
35
|
+
next: "بعدی",
|
|
36
|
+
previous: "قبلی",
|
|
37
|
+
skipToContent: "پرش به محتوا",
|
|
38
|
+
},
|
|
39
|
+
search: {
|
|
40
|
+
button: "جستجو",
|
|
41
|
+
devOnly: "جستجو در نسخه تولید در دسترس است.",
|
|
42
|
+
label: "جستجو در مستندات",
|
|
43
|
+
noResults: "نتیجهای یافت نشد.",
|
|
44
|
+
placeholder: "جستجو در مستندات…",
|
|
45
|
+
},
|
|
46
|
+
toc: { title: "در این صفحه" },
|
|
47
|
+
};
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import type { UIStringsOverride } from "../i18n-ui.ts";
|
|
2
|
+
|
|
3
|
+
/** Finnish (fi) UI strings. */
|
|
4
|
+
export const fi: UIStringsOverride = {
|
|
5
|
+
actions: {
|
|
6
|
+
addToCursor: "Lisää Cursoriin",
|
|
7
|
+
addToVscode: "Lisää VS Codeen",
|
|
8
|
+
askAI: "Kysy tekoälyltä tästä sivusta",
|
|
9
|
+
connectMcp: "Yhdistä MCP:hen",
|
|
10
|
+
copied: "Kopioitu!",
|
|
11
|
+
copyClaudeCode: "Kopioi Claude Code -komento",
|
|
12
|
+
copyMarkdown: "Kopioi Markdownina",
|
|
13
|
+
copyServerUrl: "Kopioi palvelimen URL",
|
|
14
|
+
edit: "Muokkaa GitHubissa",
|
|
15
|
+
openInChat: "Avaa keskustelussa",
|
|
16
|
+
scrollToTop: "Takaisin ylös",
|
|
17
|
+
},
|
|
18
|
+
ask: {
|
|
19
|
+
empty: "Kysy kysymys dokumentaatiosta.",
|
|
20
|
+
error: "Pahoittelut, jokin meni pieleen.",
|
|
21
|
+
label: "Kysy kysymys",
|
|
22
|
+
placeholder: "Kysy kysymys…",
|
|
23
|
+
send: "Lähetä",
|
|
24
|
+
title: "Kysy tekoälyltä",
|
|
25
|
+
},
|
|
26
|
+
feedback: {
|
|
27
|
+
no: "Ei",
|
|
28
|
+
question: "Oliko tästä sivusta apua?",
|
|
29
|
+
thanks: "Kiitos palautteestasi!",
|
|
30
|
+
yes: "Kyllä",
|
|
31
|
+
},
|
|
32
|
+
languageSwitcher: { label: "Kieli", untranslated: "Ei käännetty" },
|
|
33
|
+
page: {
|
|
34
|
+
lastUpdated: "Viimeksi päivitetty",
|
|
35
|
+
next: "Seuraava",
|
|
36
|
+
previous: "Edellinen",
|
|
37
|
+
skipToContent: "Siirry sisältöön",
|
|
38
|
+
},
|
|
39
|
+
search: {
|
|
40
|
+
button: "Hae",
|
|
41
|
+
devOnly: "Haku on käytettävissä tuotantokäännöksessä.",
|
|
42
|
+
label: "Hae dokumentaatiosta",
|
|
43
|
+
noResults: "Ei tuloksia.",
|
|
44
|
+
placeholder: "Hae dokumentaatiosta…",
|
|
45
|
+
},
|
|
46
|
+
toc: { title: "Tällä sivulla" },
|
|
47
|
+
};
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import type { UIStringsOverride } from "../i18n-ui.ts";
|
|
2
|
+
|
|
3
|
+
/** French (fr) UI strings. */
|
|
4
|
+
export const fr: UIStringsOverride = {
|
|
5
|
+
actions: {
|
|
6
|
+
addToCursor: "Ajouter à Cursor",
|
|
7
|
+
addToVscode: "Ajouter à VS Code",
|
|
8
|
+
askAI: "Demander à l'IA",
|
|
9
|
+
connectMcp: "Se connecter à MCP",
|
|
10
|
+
copied: "Copié !",
|
|
11
|
+
copyClaudeCode: "Copier la commande Claude Code",
|
|
12
|
+
copyMarkdown: "Copier en Markdown",
|
|
13
|
+
copyServerUrl: "Copier l'URL du serveur",
|
|
14
|
+
edit: "Modifier sur GitHub",
|
|
15
|
+
openInChat: "Ouvrir dans le chat",
|
|
16
|
+
scrollToTop: "Revenir en haut",
|
|
17
|
+
},
|
|
18
|
+
ask: {
|
|
19
|
+
empty: "Posez une question sur la documentation.",
|
|
20
|
+
error: "Désolé, une erreur s'est produite.",
|
|
21
|
+
label: "Poser une question",
|
|
22
|
+
placeholder: "Posez une question…",
|
|
23
|
+
send: "Envoyer",
|
|
24
|
+
title: "Demander à l'IA",
|
|
25
|
+
},
|
|
26
|
+
feedback: {
|
|
27
|
+
no: "Non",
|
|
28
|
+
question: "Cette page vous a-t-elle été utile ?",
|
|
29
|
+
thanks: "Merci pour votre retour !",
|
|
30
|
+
yes: "Oui",
|
|
31
|
+
},
|
|
32
|
+
languageSwitcher: { label: "Langue", untranslated: "Non traduit" },
|
|
33
|
+
page: {
|
|
34
|
+
lastUpdated: "Dernière mise à jour le",
|
|
35
|
+
next: "Suivant",
|
|
36
|
+
previous: "Précédent",
|
|
37
|
+
skipToContent: "Aller au contenu",
|
|
38
|
+
},
|
|
39
|
+
search: {
|
|
40
|
+
button: "Rechercher",
|
|
41
|
+
devOnly: "La recherche est disponible dans la version de production.",
|
|
42
|
+
label: "Rechercher dans la doc",
|
|
43
|
+
noResults: "Aucun résultat.",
|
|
44
|
+
placeholder: "Rechercher dans la documentation…",
|
|
45
|
+
},
|
|
46
|
+
toc: { title: "Sur cette page" },
|
|
47
|
+
};
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import type { UIStringsOverride } from "../i18n-ui.ts";
|
|
2
|
+
|
|
3
|
+
/** Hebrew (he) UI strings. */
|
|
4
|
+
export const he: UIStringsOverride = {
|
|
5
|
+
actions: {
|
|
6
|
+
addToCursor: "הוסף ל-Cursor",
|
|
7
|
+
addToVscode: "הוסף ל-VS Code",
|
|
8
|
+
askAI: "שאל את ה-AI על העמוד הזה",
|
|
9
|
+
connectMcp: "התחבר ל-MCP",
|
|
10
|
+
copied: "הועתק!",
|
|
11
|
+
copyClaudeCode: "העתק פקודת Claude Code",
|
|
12
|
+
copyMarkdown: "העתק כ-Markdown",
|
|
13
|
+
copyServerUrl: "העתק כתובת URL של השרת",
|
|
14
|
+
edit: "ערוך ב-GitHub",
|
|
15
|
+
openInChat: "פתח בצ'אט",
|
|
16
|
+
scrollToTop: "חזרה למעלה",
|
|
17
|
+
},
|
|
18
|
+
ask: {
|
|
19
|
+
empty: "שאל שאלה על התיעוד.",
|
|
20
|
+
error: "מצטערים, משהו השתבש.",
|
|
21
|
+
label: "שאל שאלה",
|
|
22
|
+
placeholder: "שאל שאלה…",
|
|
23
|
+
send: "שלח",
|
|
24
|
+
title: "שאל את ה-AI",
|
|
25
|
+
},
|
|
26
|
+
feedback: {
|
|
27
|
+
no: "לא",
|
|
28
|
+
question: "האם העמוד הזה היה מועיל?",
|
|
29
|
+
thanks: "תודה על המשוב שלך!",
|
|
30
|
+
yes: "כן",
|
|
31
|
+
},
|
|
32
|
+
languageSwitcher: { label: "שפה", untranslated: "לא מתורגם" },
|
|
33
|
+
page: {
|
|
34
|
+
lastUpdated: "עודכן לאחרונה",
|
|
35
|
+
next: "הבא",
|
|
36
|
+
previous: "הקודם",
|
|
37
|
+
skipToContent: "דלג לתוכן",
|
|
38
|
+
},
|
|
39
|
+
search: {
|
|
40
|
+
button: "חיפוש",
|
|
41
|
+
devOnly: "החיפוש זמין בבנייה לייצור.",
|
|
42
|
+
label: "חפש בתיעוד",
|
|
43
|
+
noResults: "לא נמצאו תוצאות.",
|
|
44
|
+
placeholder: "חפש בתיעוד…",
|
|
45
|
+
},
|
|
46
|
+
toc: { title: "בעמוד זה" },
|
|
47
|
+
};
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import type { UIStringsOverride } from "../i18n-ui.ts";
|
|
2
|
+
|
|
3
|
+
/** Hindi (hi) UI strings. */
|
|
4
|
+
export const hi: UIStringsOverride = {
|
|
5
|
+
actions: {
|
|
6
|
+
addToCursor: "Cursor में जोड़ें",
|
|
7
|
+
addToVscode: "VS Code में जोड़ें",
|
|
8
|
+
askAI: "इस पेज के बारे में AI से पूछें",
|
|
9
|
+
connectMcp: "MCP से कनेक्ट करें",
|
|
10
|
+
copied: "कॉपी किया गया!",
|
|
11
|
+
copyClaudeCode: "Claude Code कमांड कॉपी करें",
|
|
12
|
+
copyMarkdown: "Markdown के रूप में कॉपी करें",
|
|
13
|
+
copyServerUrl: "सर्वर URL कॉपी करें",
|
|
14
|
+
edit: "GitHub पर संपादित करें",
|
|
15
|
+
openInChat: "चैट में खोलें",
|
|
16
|
+
scrollToTop: "ऊपर जाएँ",
|
|
17
|
+
},
|
|
18
|
+
ask: {
|
|
19
|
+
empty: "दस्तावेज़ के बारे में एक प्रश्न पूछें।",
|
|
20
|
+
error: "क्षमा करें, कुछ गलत हो गया।",
|
|
21
|
+
label: "एक प्रश्न पूछें",
|
|
22
|
+
placeholder: "एक प्रश्न पूछें…",
|
|
23
|
+
send: "भेजें",
|
|
24
|
+
title: "AI से पूछें",
|
|
25
|
+
},
|
|
26
|
+
feedback: {
|
|
27
|
+
no: "नहीं",
|
|
28
|
+
question: "क्या यह पेज सहायक था?",
|
|
29
|
+
thanks: "आपकी प्रतिक्रिया के लिए धन्यवाद!",
|
|
30
|
+
yes: "हाँ",
|
|
31
|
+
},
|
|
32
|
+
languageSwitcher: { label: "भाषा", untranslated: "अनुवादित नहीं" },
|
|
33
|
+
page: {
|
|
34
|
+
lastUpdated: "अंतिम अपडेट",
|
|
35
|
+
next: "अगला",
|
|
36
|
+
previous: "पिछला",
|
|
37
|
+
skipToContent: "सामग्री पर जाएँ",
|
|
38
|
+
},
|
|
39
|
+
search: {
|
|
40
|
+
button: "खोजें",
|
|
41
|
+
devOnly: "खोज प्रोडक्शन बिल्ड में उपलब्ध है।",
|
|
42
|
+
label: "दस्तावेज़ खोजें",
|
|
43
|
+
noResults: "कोई परिणाम नहीं मिला।",
|
|
44
|
+
placeholder: "दस्तावेज़ खोजें…",
|
|
45
|
+
},
|
|
46
|
+
toc: { title: "इस पेज पर" },
|
|
47
|
+
};
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import type { UIStringsOverride } from "../i18n-ui.ts";
|
|
2
|
+
|
|
3
|
+
/** Croatian (hr) UI strings. */
|
|
4
|
+
export const hr: UIStringsOverride = {
|
|
5
|
+
actions: {
|
|
6
|
+
addToCursor: "Dodaj u Cursor",
|
|
7
|
+
addToVscode: "Dodaj u VS Code",
|
|
8
|
+
askAI: "Pitaj AI o ovoj stranici",
|
|
9
|
+
connectMcp: "Poveži se s MCP-om",
|
|
10
|
+
copied: "Kopirano!",
|
|
11
|
+
copyClaudeCode: "Kopiraj naredbu Claude Code",
|
|
12
|
+
copyMarkdown: "Kopiraj kao Markdown",
|
|
13
|
+
copyServerUrl: "Kopiraj URL poslužitelja",
|
|
14
|
+
edit: "Uredi na GitHubu",
|
|
15
|
+
openInChat: "Otvori u chatu",
|
|
16
|
+
scrollToTop: "Natrag na vrh",
|
|
17
|
+
},
|
|
18
|
+
ask: {
|
|
19
|
+
empty: "Postavite pitanje o dokumentaciji.",
|
|
20
|
+
error: "Žao nam je, nešto je pošlo po zlu.",
|
|
21
|
+
label: "Postavi pitanje",
|
|
22
|
+
placeholder: "Postavite pitanje…",
|
|
23
|
+
send: "Pošalji",
|
|
24
|
+
title: "Pitaj AI",
|
|
25
|
+
},
|
|
26
|
+
feedback: {
|
|
27
|
+
no: "Ne",
|
|
28
|
+
question: "Je li vam ova stranica bila korisna?",
|
|
29
|
+
thanks: "Hvala na povratnoj informaciji!",
|
|
30
|
+
yes: "Da",
|
|
31
|
+
},
|
|
32
|
+
languageSwitcher: { label: "Jezik", untranslated: "Nije prevedeno" },
|
|
33
|
+
page: {
|
|
34
|
+
lastUpdated: "Posljednje ažuriranje",
|
|
35
|
+
next: "Sljedeće",
|
|
36
|
+
previous: "Prethodno",
|
|
37
|
+
skipToContent: "Prijeđi na sadržaj",
|
|
38
|
+
},
|
|
39
|
+
search: {
|
|
40
|
+
button: "Pretraži",
|
|
41
|
+
devOnly: "Pretraživanje je dostupno u produkcijskoj verziji.",
|
|
42
|
+
label: "Pretraži dokumentaciju",
|
|
43
|
+
noResults: "Nema rezultata.",
|
|
44
|
+
placeholder: "Pretraži dokumentaciju…",
|
|
45
|
+
},
|
|
46
|
+
toc: { title: "Na ovoj stranici" },
|
|
47
|
+
};
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import type { UIStringsOverride } from "../i18n-ui.ts";
|
|
2
|
+
|
|
3
|
+
/** Hungarian (hu) UI strings. */
|
|
4
|
+
export const hu: UIStringsOverride = {
|
|
5
|
+
actions: {
|
|
6
|
+
addToCursor: "Hozzáadás a Cursorhoz",
|
|
7
|
+
addToVscode: "Hozzáadás a VS Code-hoz",
|
|
8
|
+
askAI: "Kérdezd az AI-t erről az oldalról",
|
|
9
|
+
connectMcp: "Kapcsolódás az MCP-hez",
|
|
10
|
+
copied: "Másolva!",
|
|
11
|
+
copyClaudeCode: "Claude Code parancs másolása",
|
|
12
|
+
copyMarkdown: "Másolás Markdownként",
|
|
13
|
+
copyServerUrl: "Szerver URL másolása",
|
|
14
|
+
edit: "Szerkesztés a GitHubon",
|
|
15
|
+
openInChat: "Megnyitás a csevegésben",
|
|
16
|
+
scrollToTop: "Vissza a tetejére",
|
|
17
|
+
},
|
|
18
|
+
ask: {
|
|
19
|
+
empty: "Tegyél fel kérdést a dokumentációval kapcsolatban.",
|
|
20
|
+
error: "Sajnáljuk, valami hiba történt.",
|
|
21
|
+
label: "Tegyél fel egy kérdést",
|
|
22
|
+
placeholder: "Tegyél fel egy kérdést…",
|
|
23
|
+
send: "Küldés",
|
|
24
|
+
title: "Kérdezd az AI-t",
|
|
25
|
+
},
|
|
26
|
+
feedback: {
|
|
27
|
+
no: "Nem",
|
|
28
|
+
question: "Hasznos volt ez az oldal?",
|
|
29
|
+
thanks: "Köszönjük a visszajelzésed!",
|
|
30
|
+
yes: "Igen",
|
|
31
|
+
},
|
|
32
|
+
languageSwitcher: { label: "Nyelv", untranslated: "Nincs lefordítva" },
|
|
33
|
+
page: {
|
|
34
|
+
lastUpdated: "Utoljára frissítve",
|
|
35
|
+
next: "Következő",
|
|
36
|
+
previous: "Előző",
|
|
37
|
+
skipToContent: "Ugrás a tartalomra",
|
|
38
|
+
},
|
|
39
|
+
search: {
|
|
40
|
+
button: "Keresés",
|
|
41
|
+
devOnly: "A keresés az éles buildben érhető el.",
|
|
42
|
+
label: "Keresés a dokumentációban",
|
|
43
|
+
noResults: "Nincs találat.",
|
|
44
|
+
placeholder: "Keresés a dokumentációban…",
|
|
45
|
+
},
|
|
46
|
+
toc: { title: "Ezen az oldalon" },
|
|
47
|
+
};
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import type { UIStringsOverride } from "../i18n-ui.ts";
|
|
2
|
+
|
|
3
|
+
/** Indonesian (id) UI strings. */
|
|
4
|
+
export const id: UIStringsOverride = {
|
|
5
|
+
actions: {
|
|
6
|
+
addToCursor: "Tambahkan ke Cursor",
|
|
7
|
+
addToVscode: "Tambahkan ke VS Code",
|
|
8
|
+
askAI: "Tanya AI tentang halaman ini",
|
|
9
|
+
connectMcp: "Hubungkan ke MCP",
|
|
10
|
+
copied: "Disalin!",
|
|
11
|
+
copyClaudeCode: "Salin perintah Claude Code",
|
|
12
|
+
copyMarkdown: "Salin sebagai Markdown",
|
|
13
|
+
copyServerUrl: "Salin URL server",
|
|
14
|
+
edit: "Edit di GitHub",
|
|
15
|
+
openInChat: "Buka di obrolan",
|
|
16
|
+
scrollToTop: "Kembali ke atas",
|
|
17
|
+
},
|
|
18
|
+
ask: {
|
|
19
|
+
empty: "Ajukan pertanyaan tentang dokumentasi.",
|
|
20
|
+
error: "Maaf, terjadi kesalahan.",
|
|
21
|
+
label: "Ajukan pertanyaan",
|
|
22
|
+
placeholder: "Ajukan pertanyaan…",
|
|
23
|
+
send: "Kirim",
|
|
24
|
+
title: "Tanya AI",
|
|
25
|
+
},
|
|
26
|
+
feedback: {
|
|
27
|
+
no: "Tidak",
|
|
28
|
+
question: "Apakah halaman ini membantu?",
|
|
29
|
+
thanks: "Terima kasih atas masukan Anda!",
|
|
30
|
+
yes: "Ya",
|
|
31
|
+
},
|
|
32
|
+
languageSwitcher: { label: "Bahasa", untranslated: "Belum diterjemahkan" },
|
|
33
|
+
page: {
|
|
34
|
+
lastUpdated: "Terakhir diperbarui",
|
|
35
|
+
next: "Berikutnya",
|
|
36
|
+
previous: "Sebelumnya",
|
|
37
|
+
skipToContent: "Lewati ke konten",
|
|
38
|
+
},
|
|
39
|
+
search: {
|
|
40
|
+
button: "Cari",
|
|
41
|
+
devOnly: "Pencarian tersedia di build produksi.",
|
|
42
|
+
label: "Cari dokumentasi",
|
|
43
|
+
noResults: "Tidak ada hasil ditemukan.",
|
|
44
|
+
placeholder: "Cari dokumentasi…",
|
|
45
|
+
},
|
|
46
|
+
toc: { title: "Di halaman ini" },
|
|
47
|
+
};
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
import type { UIStringsOverride } from "../i18n-ui.ts";
|
|
2
|
+
import { ar } from "./ar.ts";
|
|
3
|
+
import { bg } from "./bg.ts";
|
|
4
|
+
import { bn } from "./bn.ts";
|
|
5
|
+
import { ca } from "./ca.ts";
|
|
6
|
+
import { cs } from "./cs.ts";
|
|
7
|
+
import { da } from "./da.ts";
|
|
8
|
+
import { de } from "./de.ts";
|
|
9
|
+
import { el } from "./el.ts";
|
|
10
|
+
import { es } from "./es.ts";
|
|
11
|
+
import { fa } from "./fa.ts";
|
|
12
|
+
import { fi } from "./fi.ts";
|
|
13
|
+
import { fr } from "./fr.ts";
|
|
14
|
+
import { he } from "./he.ts";
|
|
15
|
+
import { hi } from "./hi.ts";
|
|
16
|
+
import { hr } from "./hr.ts";
|
|
17
|
+
import { hu } from "./hu.ts";
|
|
18
|
+
import { id } from "./id.ts";
|
|
19
|
+
import { it } from "./it.ts";
|
|
20
|
+
import { ja } from "./ja.ts";
|
|
21
|
+
import { ko } from "./ko.ts";
|
|
22
|
+
import { nl } from "./nl.ts";
|
|
23
|
+
import { no } from "./no.ts";
|
|
24
|
+
import { pl } from "./pl.ts";
|
|
25
|
+
import { ptBR } from "./pt-br.ts";
|
|
26
|
+
import { pt } from "./pt.ts";
|
|
27
|
+
import { ro } from "./ro.ts";
|
|
28
|
+
import { ru } from "./ru.ts";
|
|
29
|
+
import { sk } from "./sk.ts";
|
|
30
|
+
import { sr } from "./sr.ts";
|
|
31
|
+
import { sv } from "./sv.ts";
|
|
32
|
+
import { th } from "./th.ts";
|
|
33
|
+
import { tr } from "./tr.ts";
|
|
34
|
+
import { uk } from "./uk.ts";
|
|
35
|
+
import { vi } from "./vi.ts";
|
|
36
|
+
import { zhTW } from "./zh-tw.ts";
|
|
37
|
+
import { zh } from "./zh.ts";
|
|
38
|
+
|
|
39
|
+
/**
|
|
40
|
+
* Built-in translation packs, one module per locale (`./<code>.ts`). English is
|
|
41
|
+
* the schema baseline, so it has no pack; every other locale ships a starter
|
|
42
|
+
* pack so adopters get translated chrome out of the box. Brand names (Cursor,
|
|
43
|
+
* VS Code, MCP, Claude Code, Markdown, GitHub) are kept verbatim. Packs are
|
|
44
|
+
* community-maintained — open a PR to add a locale or sharpen a translation.
|
|
45
|
+
*
|
|
46
|
+
* Keyed by locale code; regional variants use the BCP 47 form (`pt-BR`,
|
|
47
|
+
* `zh-TW`). A locale's pack is merged onto English by {@link resolveUIStrings},
|
|
48
|
+
* so a pack only needs the keys it translates.
|
|
49
|
+
*/
|
|
50
|
+
export const UI_PACKS: Record<string, UIStringsOverride> = {
|
|
51
|
+
ar,
|
|
52
|
+
bg,
|
|
53
|
+
bn,
|
|
54
|
+
ca,
|
|
55
|
+
cs,
|
|
56
|
+
da,
|
|
57
|
+
de,
|
|
58
|
+
el,
|
|
59
|
+
es,
|
|
60
|
+
fa,
|
|
61
|
+
fi,
|
|
62
|
+
fr,
|
|
63
|
+
he,
|
|
64
|
+
hi,
|
|
65
|
+
hr,
|
|
66
|
+
hu,
|
|
67
|
+
id,
|
|
68
|
+
it,
|
|
69
|
+
ja,
|
|
70
|
+
ko,
|
|
71
|
+
nl,
|
|
72
|
+
no,
|
|
73
|
+
pl,
|
|
74
|
+
pt,
|
|
75
|
+
"pt-BR": ptBR,
|
|
76
|
+
ro,
|
|
77
|
+
ru,
|
|
78
|
+
sk,
|
|
79
|
+
sr,
|
|
80
|
+
sv,
|
|
81
|
+
th,
|
|
82
|
+
tr,
|
|
83
|
+
uk,
|
|
84
|
+
vi,
|
|
85
|
+
zh,
|
|
86
|
+
"zh-TW": zhTW,
|
|
87
|
+
};
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import type { UIStringsOverride } from "../i18n-ui.ts";
|
|
2
|
+
|
|
3
|
+
/** Italian (it) UI strings. */
|
|
4
|
+
export const it: UIStringsOverride = {
|
|
5
|
+
actions: {
|
|
6
|
+
addToCursor: "Aggiungi a Cursor",
|
|
7
|
+
addToVscode: "Aggiungi a VS Code",
|
|
8
|
+
askAI: "Chiedi all'IA di questa pagina",
|
|
9
|
+
connectMcp: "Connetti a MCP",
|
|
10
|
+
copied: "Copiato!",
|
|
11
|
+
copyClaudeCode: "Copia comando di Claude Code",
|
|
12
|
+
copyMarkdown: "Copia come Markdown",
|
|
13
|
+
copyServerUrl: "Copia URL del server",
|
|
14
|
+
edit: "Modifica su GitHub",
|
|
15
|
+
openInChat: "Apri nella chat",
|
|
16
|
+
scrollToTop: "Torna su",
|
|
17
|
+
},
|
|
18
|
+
ask: {
|
|
19
|
+
empty: "Fai una domanda sulla documentazione.",
|
|
20
|
+
error: "Spiacenti, qualcosa è andato storto.",
|
|
21
|
+
label: "Fai una domanda",
|
|
22
|
+
placeholder: "Fai una domanda…",
|
|
23
|
+
send: "Invia",
|
|
24
|
+
title: "Chiedi all'IA",
|
|
25
|
+
},
|
|
26
|
+
feedback: {
|
|
27
|
+
no: "No",
|
|
28
|
+
question: "Questa pagina ti è stata utile?",
|
|
29
|
+
thanks: "Grazie per il tuo feedback!",
|
|
30
|
+
yes: "Sì",
|
|
31
|
+
},
|
|
32
|
+
languageSwitcher: { label: "Lingua", untranslated: "Non tradotto" },
|
|
33
|
+
page: {
|
|
34
|
+
lastUpdated: "Ultimo aggiornamento il",
|
|
35
|
+
next: "Successivo",
|
|
36
|
+
previous: "Precedente",
|
|
37
|
+
skipToContent: "Vai al contenuto",
|
|
38
|
+
},
|
|
39
|
+
search: {
|
|
40
|
+
button: "Cerca",
|
|
41
|
+
devOnly: "La ricerca è disponibile nella build di produzione.",
|
|
42
|
+
label: "Cerca nella documentazione",
|
|
43
|
+
noResults: "Nessun risultato trovato.",
|
|
44
|
+
placeholder: "Cerca nella documentazione…",
|
|
45
|
+
},
|
|
46
|
+
toc: { title: "In questa pagina" },
|
|
47
|
+
};
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import type { UIStringsOverride } from "../i18n-ui.ts";
|
|
2
|
+
|
|
3
|
+
/** Japanese (ja) UI strings. */
|
|
4
|
+
export const ja: UIStringsOverride = {
|
|
5
|
+
actions: {
|
|
6
|
+
addToCursor: "Cursor に追加",
|
|
7
|
+
addToVscode: "VS Code に追加",
|
|
8
|
+
askAI: "このページについて AI に質問",
|
|
9
|
+
connectMcp: "MCP に接続",
|
|
10
|
+
copied: "コピーしました!",
|
|
11
|
+
copyClaudeCode: "Claude Code コマンドをコピー",
|
|
12
|
+
copyMarkdown: "Markdown としてコピー",
|
|
13
|
+
copyServerUrl: "サーバー URL をコピー",
|
|
14
|
+
edit: "GitHub で編集",
|
|
15
|
+
openInChat: "チャットで開く",
|
|
16
|
+
scrollToTop: "トップに戻る",
|
|
17
|
+
},
|
|
18
|
+
ask: {
|
|
19
|
+
empty: "ドキュメントについて質問してください。",
|
|
20
|
+
error: "申し訳ありません。問題が発生しました。",
|
|
21
|
+
label: "質問する",
|
|
22
|
+
placeholder: "質問を入力…",
|
|
23
|
+
send: "送信",
|
|
24
|
+
title: "AI に質問",
|
|
25
|
+
},
|
|
26
|
+
feedback: {
|
|
27
|
+
no: "いいえ",
|
|
28
|
+
question: "このページは役に立ちましたか?",
|
|
29
|
+
thanks: "フィードバックありがとうございます!",
|
|
30
|
+
yes: "はい",
|
|
31
|
+
},
|
|
32
|
+
languageSwitcher: { label: "言語", untranslated: "未翻訳" },
|
|
33
|
+
page: {
|
|
34
|
+
lastUpdated: "最終更新",
|
|
35
|
+
next: "次へ",
|
|
36
|
+
previous: "前へ",
|
|
37
|
+
skipToContent: "コンテンツにスキップ",
|
|
38
|
+
},
|
|
39
|
+
search: {
|
|
40
|
+
button: "検索",
|
|
41
|
+
devOnly: "検索は本番ビルドで利用できます。",
|
|
42
|
+
label: "ドキュメントを検索",
|
|
43
|
+
noResults: "結果が見つかりませんでした。",
|
|
44
|
+
placeholder: "ドキュメントを検索…",
|
|
45
|
+
},
|
|
46
|
+
toc: { title: "このページの内容" },
|
|
47
|
+
};
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import type { UIStringsOverride } from "../i18n-ui.ts";
|
|
2
|
+
|
|
3
|
+
/** Korean (ko) UI strings. */
|
|
4
|
+
export const ko: UIStringsOverride = {
|
|
5
|
+
actions: {
|
|
6
|
+
addToCursor: "Cursor에 추가",
|
|
7
|
+
addToVscode: "VS Code에 추가",
|
|
8
|
+
askAI: "이 페이지에 대해 AI에게 질문",
|
|
9
|
+
connectMcp: "MCP에 연결",
|
|
10
|
+
copied: "복사됨!",
|
|
11
|
+
copyClaudeCode: "Claude Code 명령 복사",
|
|
12
|
+
copyMarkdown: "Markdown으로 복사",
|
|
13
|
+
copyServerUrl: "서버 URL 복사",
|
|
14
|
+
edit: "GitHub에서 편집",
|
|
15
|
+
openInChat: "채팅에서 열기",
|
|
16
|
+
scrollToTop: "맨 위로",
|
|
17
|
+
},
|
|
18
|
+
ask: {
|
|
19
|
+
empty: "문서에 대해 질문하세요.",
|
|
20
|
+
error: "죄송합니다. 문제가 발생했습니다.",
|
|
21
|
+
label: "질문하기",
|
|
22
|
+
placeholder: "질문하기…",
|
|
23
|
+
send: "보내기",
|
|
24
|
+
title: "AI에게 질문",
|
|
25
|
+
},
|
|
26
|
+
feedback: {
|
|
27
|
+
no: "아니요",
|
|
28
|
+
question: "이 페이지가 도움이 되었나요?",
|
|
29
|
+
thanks: "의견 주셔서 감사합니다!",
|
|
30
|
+
yes: "예",
|
|
31
|
+
},
|
|
32
|
+
languageSwitcher: { label: "언어", untranslated: "번역되지 않음" },
|
|
33
|
+
page: {
|
|
34
|
+
lastUpdated: "마지막 업데이트",
|
|
35
|
+
next: "다음",
|
|
36
|
+
previous: "이전",
|
|
37
|
+
skipToContent: "본문으로 건너뛰기",
|
|
38
|
+
},
|
|
39
|
+
search: {
|
|
40
|
+
button: "검색",
|
|
41
|
+
devOnly: "검색은 프로덕션 빌드에서 사용할 수 있습니다.",
|
|
42
|
+
label: "문서 검색",
|
|
43
|
+
noResults: "결과를 찾을 수 없습니다.",
|
|
44
|
+
placeholder: "문서 검색…",
|
|
45
|
+
},
|
|
46
|
+
toc: { title: "이 페이지에서" },
|
|
47
|
+
};
|