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.
Files changed (263) hide show
  1. package/bin/blume.mjs +18 -0
  2. package/dist/cli/index.js +11989 -0
  3. package/dist/cli/index.js.map +141 -0
  4. package/docs/01-quickstart.mdx +99 -0
  5. package/docs/02-deployment.mdx +129 -0
  6. package/docs/advanced/api-reference.mdx +114 -0
  7. package/docs/advanced/blog.mdx +121 -0
  8. package/docs/advanced/changelog.mdx +113 -0
  9. package/docs/advanced/custom-pages.mdx +187 -0
  10. package/docs/advanced/meta.ts +7 -0
  11. package/docs/changelog/v0-1-0.mdx +12 -0
  12. package/docs/changelog/v0-2-0.mdx +16 -0
  13. package/docs/configuration/ai.mdx +228 -0
  14. package/docs/configuration/analytics.mdx +98 -0
  15. package/docs/configuration/customization.mdx +91 -0
  16. package/docs/configuration/export.mdx +70 -0
  17. package/docs/configuration/index.mdx +271 -0
  18. package/docs/configuration/meta.ts +15 -0
  19. package/docs/configuration/search.mdx +172 -0
  20. package/docs/configuration/seo.mdx +196 -0
  21. package/docs/configuration/theming.mdx +178 -0
  22. package/docs/content/components.mdx +565 -0
  23. package/docs/content/i18n.mdx +205 -0
  24. package/docs/content/index.mdx +161 -0
  25. package/docs/content/islands.mdx +94 -0
  26. package/docs/content/meta.mdx +119 -0
  27. package/docs/content/meta.ts +15 -0
  28. package/docs/content/navigation.mdx +168 -0
  29. package/docs/content/sources.mdx +216 -0
  30. package/docs/content/syntax.mdx +445 -0
  31. package/docs/index.mdx +112 -0
  32. package/docs/reference/cli.mdx +43 -0
  33. package/docs/reference/frontmatter.mdx +74 -0
  34. package/docs/reference/meta.ts +7 -0
  35. package/package.json +140 -6
  36. package/src/ai/ask.ts +93 -0
  37. package/src/ai/llms.ts +65 -0
  38. package/src/ai/markdown.ts +31 -0
  39. package/src/ai/mcp/data.ts +74 -0
  40. package/src/ai/mcp/discovery.ts +49 -0
  41. package/src/ai/mcp/server.ts +225 -0
  42. package/src/ai/mcp/tools.ts +47 -0
  43. package/src/assets/icon.png +0 -0
  44. package/src/astro/generate.ts +878 -0
  45. package/src/astro/index.ts +4 -0
  46. package/src/astro/integration.ts +74 -0
  47. package/src/astro/islands.ts +131 -0
  48. package/src/astro/markdown-negotiation.ts +68 -0
  49. package/src/astro/pages.ts +28 -0
  50. package/src/astro/templates.ts +1199 -0
  51. package/src/cli/commands/add.ts +81 -0
  52. package/src/cli/commands/build.ts +103 -0
  53. package/src/cli/commands/dev.ts +108 -0
  54. package/src/cli/commands/doctor.ts +74 -0
  55. package/src/cli/commands/eject.ts +57 -0
  56. package/src/cli/commands/init.ts +98 -0
  57. package/src/cli/commands/migrate.ts +39 -0
  58. package/src/cli/commands/preview.ts +39 -0
  59. package/src/cli/commands/sync.ts +52 -0
  60. package/src/cli/commands/validate.ts +60 -0
  61. package/src/cli/index.ts +35 -0
  62. package/src/cli/log.ts +37 -0
  63. package/src/cli/prepare.ts +80 -0
  64. package/src/components/Icon.astro +99 -0
  65. package/src/components/content/Accordion.astro +8 -0
  66. package/src/components/content/AccordionItem.astro +121 -0
  67. package/src/components/content/AutoTypeTable.astro +51 -0
  68. package/src/components/content/Badge.astro +124 -0
  69. package/src/components/content/Callout.astro +73 -0
  70. package/src/components/content/Card.astro +104 -0
  71. package/src/components/content/CardGroup.astro +14 -0
  72. package/src/components/content/CodeGroup.astro +13 -0
  73. package/src/components/content/Color.astro +15 -0
  74. package/src/components/content/ColorItem.astro +87 -0
  75. package/src/components/content/ColorRow.astro +10 -0
  76. package/src/components/content/Column.astro +6 -0
  77. package/src/components/content/Columns.astro +9 -0
  78. package/src/components/content/Expandable.astro +11 -0
  79. package/src/components/content/FileTree.astro +8 -0
  80. package/src/components/content/Frame.astro +70 -0
  81. package/src/components/content/GithubInfo.astro +110 -0
  82. package/src/components/content/Math.astro +24 -0
  83. package/src/components/content/Panel.astro +20 -0
  84. package/src/components/content/Prompt.astro +129 -0
  85. package/src/components/content/Step.astro +34 -0
  86. package/src/components/content/Steps.astro +20 -0
  87. package/src/components/content/Tab.astro +40 -0
  88. package/src/components/content/Tabs.astro +273 -0
  89. package/src/components/content/Tile.astro +42 -0
  90. package/src/components/content/Tooltip.astro +68 -0
  91. package/src/components/content/Tree.astro +300 -0
  92. package/src/components/content/TreeFile.astro +15 -0
  93. package/src/components/content/TreeFolder.astro +62 -0
  94. package/src/components/content/TypeTable.astro +106 -0
  95. package/src/components/content/Update.astro +66 -0
  96. package/src/components/content/Visibility.astro +12 -0
  97. package/src/components/content/Warning.astro +9 -0
  98. package/src/components/content/auto-type-table.ts +141 -0
  99. package/src/components/content/github-info.ts +79 -0
  100. package/src/components/content/mermaid-element.ts +68 -0
  101. package/src/components/github-mark.ts +9 -0
  102. package/src/components/index.ts +14 -0
  103. package/src/components/islands/AskAI.astro +12 -0
  104. package/src/components/islands/ask-ai.tsx +156 -0
  105. package/src/components/layout/Analytics.astro +63 -0
  106. package/src/components/layout/Banner.astro +50 -0
  107. package/src/components/layout/Breadcrumbs.astro +31 -0
  108. package/src/components/layout/Favicon.astro +15 -0
  109. package/src/components/layout/Fonts.astro +14 -0
  110. package/src/components/layout/Header.astro +188 -0
  111. package/src/components/layout/LanguageSwitcher.astro +56 -0
  112. package/src/components/layout/NavTree.astro +462 -0
  113. package/src/components/layout/PageActions.astro +438 -0
  114. package/src/components/layout/PageFeedback.astro +58 -0
  115. package/src/components/layout/Pagination.astro +56 -0
  116. package/src/components/layout/ReferenceLayout.astro +102 -0
  117. package/src/components/layout/RootLayout.astro +533 -0
  118. package/src/components/layout/Search.astro +608 -0
  119. package/src/components/layout/TableOfContents.astro +68 -0
  120. package/src/components/layout/analytics-client.ts +38 -0
  121. package/src/components/layout/nav-utils.ts +87 -0
  122. package/src/components/layout/overrides.ts +32 -0
  123. package/src/components/layout/search/algolia.ts +43 -0
  124. package/src/components/layout/search/endpoint.ts +22 -0
  125. package/src/components/layout/search/flexsearch.ts +52 -0
  126. package/src/components/layout/search/orama-cloud.ts +41 -0
  127. package/src/components/layout/search/orama.ts +26 -0
  128. package/src/components/layout/search/pagefind.ts +43 -0
  129. package/src/components/layout/search/types.ts +163 -0
  130. package/src/components/layout/search/typesense.ts +60 -0
  131. package/src/components/layout/toc-element.ts +108 -0
  132. package/src/core/bridge.ts +92 -0
  133. package/src/core/config.ts +112 -0
  134. package/src/core/content.ts +50 -0
  135. package/src/core/define-components.ts +34 -0
  136. package/src/core/define-meta.ts +20 -0
  137. package/src/core/deployment-env.ts +73 -0
  138. package/src/core/diagnostics.ts +104 -0
  139. package/src/core/graph.ts +128 -0
  140. package/src/core/i18n-ui.ts +171 -0
  141. package/src/core/i18n.ts +169 -0
  142. package/src/core/last-modified.ts +88 -0
  143. package/src/core/links.ts +336 -0
  144. package/src/core/load-module.ts +15 -0
  145. package/src/core/manifest.ts +126 -0
  146. package/src/core/meta.ts +97 -0
  147. package/src/core/navigation.ts +392 -0
  148. package/src/core/package-root.ts +37 -0
  149. package/src/core/project-graph.ts +153 -0
  150. package/src/core/project.ts +56 -0
  151. package/src/core/schema.ts +1057 -0
  152. package/src/core/server-features.ts +23 -0
  153. package/src/core/sources/assets.ts +77 -0
  154. package/src/core/sources/cache.ts +122 -0
  155. package/src/core/sources/filesystem.ts +99 -0
  156. package/src/core/sources/mdx-remote.ts +216 -0
  157. package/src/core/sources/mintlify.ts +161 -0
  158. package/src/core/sources/normalize.ts +227 -0
  159. package/src/core/sources/notion.ts +440 -0
  160. package/src/core/sources/portable-text.ts +143 -0
  161. package/src/core/sources/read.ts +36 -0
  162. package/src/core/sources/resolve.ts +158 -0
  163. package/src/core/sources/sanity.ts +218 -0
  164. package/src/core/sources/types.ts +105 -0
  165. package/src/core/types.ts +261 -0
  166. package/src/core/ui-packs/ar.ts +47 -0
  167. package/src/core/ui-packs/bg.ts +47 -0
  168. package/src/core/ui-packs/bn.ts +47 -0
  169. package/src/core/ui-packs/ca.ts +47 -0
  170. package/src/core/ui-packs/cs.ts +47 -0
  171. package/src/core/ui-packs/da.ts +47 -0
  172. package/src/core/ui-packs/de.ts +47 -0
  173. package/src/core/ui-packs/el.ts +47 -0
  174. package/src/core/ui-packs/es.ts +47 -0
  175. package/src/core/ui-packs/fa.ts +47 -0
  176. package/src/core/ui-packs/fi.ts +47 -0
  177. package/src/core/ui-packs/fr.ts +47 -0
  178. package/src/core/ui-packs/he.ts +47 -0
  179. package/src/core/ui-packs/hi.ts +47 -0
  180. package/src/core/ui-packs/hr.ts +47 -0
  181. package/src/core/ui-packs/hu.ts +47 -0
  182. package/src/core/ui-packs/id.ts +47 -0
  183. package/src/core/ui-packs/index.ts +87 -0
  184. package/src/core/ui-packs/it.ts +47 -0
  185. package/src/core/ui-packs/ja.ts +47 -0
  186. package/src/core/ui-packs/ko.ts +47 -0
  187. package/src/core/ui-packs/nl.ts +47 -0
  188. package/src/core/ui-packs/no.ts +47 -0
  189. package/src/core/ui-packs/pl.ts +47 -0
  190. package/src/core/ui-packs/pt-br.ts +47 -0
  191. package/src/core/ui-packs/pt.ts +47 -0
  192. package/src/core/ui-packs/ro.ts +47 -0
  193. package/src/core/ui-packs/ru.ts +47 -0
  194. package/src/core/ui-packs/sk.ts +47 -0
  195. package/src/core/ui-packs/sr.ts +47 -0
  196. package/src/core/ui-packs/sv.ts +47 -0
  197. package/src/core/ui-packs/th.ts +47 -0
  198. package/src/core/ui-packs/tr.ts +47 -0
  199. package/src/core/ui-packs/uk.ts +47 -0
  200. package/src/core/ui-packs/vi.ts +47 -0
  201. package/src/core/ui-packs/zh-tw.ts +47 -0
  202. package/src/core/ui-packs/zh.ts +47 -0
  203. package/src/core/version.ts +23 -0
  204. package/src/deploy/robots.ts +20 -0
  205. package/src/deploy/rss.ts +128 -0
  206. package/src/deploy/sitemap.ts +28 -0
  207. package/src/index.ts +27 -0
  208. package/src/markdown/code-title.ts +71 -0
  209. package/src/markdown/directives.ts +83 -0
  210. package/src/markdown/heading-anchors.ts +137 -0
  211. package/src/markdown/index.ts +159 -0
  212. package/src/markdown/inline-code.ts +108 -0
  213. package/src/markdown/language-icon.ts +172 -0
  214. package/src/markdown/math.ts +32 -0
  215. package/src/markdown/mdast.ts +48 -0
  216. package/src/markdown/mermaid.ts +37 -0
  217. package/src/markdown/package-commands.ts +159 -0
  218. package/src/markdown/package-install.ts +40 -0
  219. package/src/migrate/fumadocs/config.ts +106 -0
  220. package/src/migrate/fumadocs/content.ts +365 -0
  221. package/src/migrate/fumadocs/frontmatter.ts +18 -0
  222. package/src/migrate/fumadocs/index.ts +252 -0
  223. package/src/migrate/fumadocs/meta.ts +114 -0
  224. package/src/migrate/migrate.ts +53 -0
  225. package/src/migrate/mintlify/config.ts +1040 -0
  226. package/src/migrate/mintlify/content.ts +98 -0
  227. package/src/migrate/mintlify/frontmatter.ts +126 -0
  228. package/src/migrate/mintlify/i18n.ts +51 -0
  229. package/src/migrate/mintlify/icons.ts +128 -0
  230. package/src/migrate/mintlify/index.ts +266 -0
  231. package/src/migrate/mintlify/snippets.ts +305 -0
  232. package/src/migrate/mintlify/transform.ts +81 -0
  233. package/src/migrate/nextra/content.ts +46 -0
  234. package/src/migrate/nextra/frontmatter.ts +40 -0
  235. package/src/migrate/nextra/index.ts +374 -0
  236. package/src/migrate/nextra/meta.ts +266 -0
  237. package/src/migrate/shared.ts +623 -0
  238. package/src/migrate/starlight/config.ts +459 -0
  239. package/src/migrate/starlight/content.ts +78 -0
  240. package/src/migrate/starlight/frontmatter.ts +111 -0
  241. package/src/migrate/starlight/i18n.ts +54 -0
  242. package/src/migrate/starlight/index.ts +131 -0
  243. package/src/og/card.ts +92 -0
  244. package/src/og/index.ts +2 -0
  245. package/src/openapi/scalar.ts +246 -0
  246. package/src/registry/eject.ts +263 -0
  247. package/src/registry/registry.ts +100 -0
  248. package/src/registry/rewrite-imports.ts +39 -0
  249. package/src/runtime/index.ts +14 -0
  250. package/src/search/build.ts +23 -0
  251. package/src/search/documents.ts +165 -0
  252. package/src/search/orama-index.ts +66 -0
  253. package/src/search/providers.ts +91 -0
  254. package/src/search/sync/algolia.ts +30 -0
  255. package/src/search/sync/index.ts +50 -0
  256. package/src/search/sync/orama-cloud.ts +40 -0
  257. package/src/search/sync/typesense.ts +65 -0
  258. package/src/seo/jsonld.ts +113 -0
  259. package/src/theme/entry.ts +608 -0
  260. package/src/theme/fonts.ts +198 -0
  261. package/src/theme/icons.ts +184 -0
  262. package/src/theme/palette.ts +143 -0
  263. package/src/theme/twoslash.ts +81 -0
@@ -0,0 +1,47 @@
1
+ import type { UIStringsOverride } from "../i18n-ui.ts";
2
+
3
+ /** Dutch (nl) UI strings. */
4
+ export const nl: UIStringsOverride = {
5
+ actions: {
6
+ addToCursor: "Toevoegen aan Cursor",
7
+ addToVscode: "Toevoegen aan VS Code",
8
+ askAI: "AI vragen over deze pagina",
9
+ connectMcp: "Verbinden met MCP",
10
+ copied: "Gekopieerd!",
11
+ copyClaudeCode: "Claude Code-opdracht kopiëren",
12
+ copyMarkdown: "Kopiëren als Markdown",
13
+ copyServerUrl: "Server-URL kopiëren",
14
+ edit: "Bewerken op GitHub",
15
+ openInChat: "Openen in chat",
16
+ scrollToTop: "Naar boven scrollen",
17
+ },
18
+ ask: {
19
+ empty: "Stel een vraag over de documentatie.",
20
+ error: "Sorry, er is iets misgegaan.",
21
+ label: "Stel een vraag",
22
+ placeholder: "Stel een vraag…",
23
+ send: "Verzenden",
24
+ title: "AI vragen",
25
+ },
26
+ feedback: {
27
+ no: "Nee",
28
+ question: "Was deze pagina nuttig?",
29
+ thanks: "Bedankt voor je feedback!",
30
+ yes: "Ja",
31
+ },
32
+ languageSwitcher: { label: "Taal", untranslated: "Niet vertaald" },
33
+ page: {
34
+ lastUpdated: "Laatst bijgewerkt op",
35
+ next: "Volgende",
36
+ previous: "Vorige",
37
+ skipToContent: "Naar inhoud springen",
38
+ },
39
+ search: {
40
+ button: "Zoeken",
41
+ devOnly: "Zoeken is beschikbaar in de productiebuild.",
42
+ label: "Documentatie doorzoeken",
43
+ noResults: "Geen resultaten gevonden.",
44
+ placeholder: "Documentatie doorzoeken…",
45
+ },
46
+ toc: { title: "Op deze pagina" },
47
+ };
@@ -0,0 +1,47 @@
1
+ import type { UIStringsOverride } from "../i18n-ui.ts";
2
+
3
+ /** Norwegian Bokmål (no) UI strings. */
4
+ export const no: UIStringsOverride = {
5
+ actions: {
6
+ addToCursor: "Legg til i Cursor",
7
+ addToVscode: "Legg til i VS Code",
8
+ askAI: "Spør AI om denne siden",
9
+ connectMcp: "Koble til MCP",
10
+ copied: "Kopiert!",
11
+ copyClaudeCode: "Kopier Claude Code-kommando",
12
+ copyMarkdown: "Kopier som Markdown",
13
+ copyServerUrl: "Kopier server-URL",
14
+ edit: "Rediger på GitHub",
15
+ openInChat: "Åpne i chat",
16
+ scrollToTop: "Til toppen",
17
+ },
18
+ ask: {
19
+ empty: "Still et spørsmål om dokumentasjonen.",
20
+ error: "Beklager, noe gikk galt.",
21
+ label: "Still et spørsmål",
22
+ placeholder: "Still et spørsmål…",
23
+ send: "Send",
24
+ title: "Spør AI",
25
+ },
26
+ feedback: {
27
+ no: "Nei",
28
+ question: "Var denne siden nyttig?",
29
+ thanks: "Takk for tilbakemeldingen!",
30
+ yes: "Ja",
31
+ },
32
+ languageSwitcher: { label: "Språk", untranslated: "Ikke oversatt" },
33
+ page: {
34
+ lastUpdated: "Sist oppdatert",
35
+ next: "Neste",
36
+ previous: "Forrige",
37
+ skipToContent: "Hopp til innhold",
38
+ },
39
+ search: {
40
+ button: "Søk",
41
+ devOnly: "Søk er tilgjengelig i produksjonsbygget.",
42
+ label: "Søk i dokumentasjonen",
43
+ noResults: "Ingen resultater funnet.",
44
+ placeholder: "Søk i dokumentasjonen…",
45
+ },
46
+ toc: { title: "På denne siden" },
47
+ };
@@ -0,0 +1,47 @@
1
+ import type { UIStringsOverride } from "../i18n-ui.ts";
2
+
3
+ /** Polish (pl) UI strings. */
4
+ export const pl: UIStringsOverride = {
5
+ actions: {
6
+ addToCursor: "Dodaj do Cursor",
7
+ addToVscode: "Dodaj do VS Code",
8
+ askAI: "Zapytaj AI o tę stronę",
9
+ connectMcp: "Połącz z MCP",
10
+ copied: "Skopiowano!",
11
+ copyClaudeCode: "Kopiuj polecenie Claude Code",
12
+ copyMarkdown: "Kopiuj jako Markdown",
13
+ copyServerUrl: "Kopiuj adres URL serwera",
14
+ edit: "Edytuj na GitHubie",
15
+ openInChat: "Otwórz w czacie",
16
+ scrollToTop: "Wróć na górę",
17
+ },
18
+ ask: {
19
+ empty: "Zadaj pytanie dotyczące dokumentacji.",
20
+ error: "Przepraszamy, coś poszło nie tak.",
21
+ label: "Zadaj pytanie",
22
+ placeholder: "Zadaj pytanie…",
23
+ send: "Wyślij",
24
+ title: "Zapytaj AI",
25
+ },
26
+ feedback: {
27
+ no: "Nie",
28
+ question: "Czy ta strona była pomocna?",
29
+ thanks: "Dziękujemy za opinię!",
30
+ yes: "Tak",
31
+ },
32
+ languageSwitcher: { label: "Język", untranslated: "Nieprzetłumaczone" },
33
+ page: {
34
+ lastUpdated: "Ostatnia aktualizacja",
35
+ next: "Następny",
36
+ previous: "Poprzedni",
37
+ skipToContent: "Przejdź do treści",
38
+ },
39
+ search: {
40
+ button: "Szukaj",
41
+ devOnly: "Wyszukiwanie jest dostępne w kompilacji produkcyjnej.",
42
+ label: "Przeszukaj dokumentację",
43
+ noResults: "Nie znaleziono wyników.",
44
+ placeholder: "Przeszukaj dokumentację…",
45
+ },
46
+ toc: { title: "Na tej stronie" },
47
+ };
@@ -0,0 +1,47 @@
1
+ import type { UIStringsOverride } from "../i18n-ui.ts";
2
+
3
+ /** Portuguese — Brazil (pt-BR) UI strings. */
4
+ export const ptBR: UIStringsOverride = {
5
+ actions: {
6
+ addToCursor: "Adicionar ao Cursor",
7
+ addToVscode: "Adicionar ao VS Code",
8
+ askAI: "Perguntar à IA sobre esta página",
9
+ connectMcp: "Conectar ao MCP",
10
+ copied: "Copiado!",
11
+ copyClaudeCode: "Copiar comando do Claude Code",
12
+ copyMarkdown: "Copiar como Markdown",
13
+ copyServerUrl: "Copiar URL do servidor",
14
+ edit: "Editar no GitHub",
15
+ openInChat: "Abrir no chat",
16
+ scrollToTop: "Voltar ao topo",
17
+ },
18
+ ask: {
19
+ empty: "Faça uma pergunta sobre a documentação.",
20
+ error: "Desculpe, algo deu errado.",
21
+ label: "Faça uma pergunta",
22
+ placeholder: "Faça uma pergunta…",
23
+ send: "Enviar",
24
+ title: "Perguntar à IA",
25
+ },
26
+ feedback: {
27
+ no: "Não",
28
+ question: "Esta página foi útil?",
29
+ thanks: "Obrigado pelo seu feedback!",
30
+ yes: "Sim",
31
+ },
32
+ languageSwitcher: { label: "Idioma", untranslated: "Não traduzido" },
33
+ page: {
34
+ lastUpdated: "Última atualização em",
35
+ next: "Próximo",
36
+ previous: "Anterior",
37
+ skipToContent: "Pular para o conteúdo",
38
+ },
39
+ search: {
40
+ button: "Pesquisar",
41
+ devOnly: "A busca está disponível na build de produção.",
42
+ label: "Pesquisar na documentação",
43
+ noResults: "Nenhum resultado encontrado.",
44
+ placeholder: "Pesquisar na documentação…",
45
+ },
46
+ toc: { title: "Nesta página" },
47
+ };
@@ -0,0 +1,47 @@
1
+ import type { UIStringsOverride } from "../i18n-ui.ts";
2
+
3
+ /** Portuguese (pt) UI strings. */
4
+ export const pt: UIStringsOverride = {
5
+ actions: {
6
+ addToCursor: "Adicionar ao Cursor",
7
+ addToVscode: "Adicionar ao VS Code",
8
+ askAI: "Perguntar à IA sobre esta página",
9
+ connectMcp: "Ligar ao MCP",
10
+ copied: "Copiado!",
11
+ copyClaudeCode: "Copiar comando do Claude Code",
12
+ copyMarkdown: "Copiar como Markdown",
13
+ copyServerUrl: "Copiar URL do servidor",
14
+ edit: "Editar no GitHub",
15
+ openInChat: "Abrir no chat",
16
+ scrollToTop: "Voltar ao topo",
17
+ },
18
+ ask: {
19
+ empty: "Faça uma pergunta sobre a documentação.",
20
+ error: "Lamentamos, algo correu mal.",
21
+ label: "Faça uma pergunta",
22
+ placeholder: "Faça uma pergunta…",
23
+ send: "Enviar",
24
+ title: "Perguntar à IA",
25
+ },
26
+ feedback: {
27
+ no: "Não",
28
+ question: "Esta página foi útil?",
29
+ thanks: "Obrigado pelo seu feedback!",
30
+ yes: "Sim",
31
+ },
32
+ languageSwitcher: { label: "Idioma", untranslated: "Não traduzido" },
33
+ page: {
34
+ lastUpdated: "Última atualização a",
35
+ next: "Seguinte",
36
+ previous: "Anterior",
37
+ skipToContent: "Saltar para o conteúdo",
38
+ },
39
+ search: {
40
+ button: "Pesquisar",
41
+ devOnly: "A pesquisa está disponível na compilação de produção.",
42
+ label: "Pesquisar na documentação",
43
+ noResults: "Nenhum resultado encontrado.",
44
+ placeholder: "Pesquisar na documentação…",
45
+ },
46
+ toc: { title: "Nesta página" },
47
+ };
@@ -0,0 +1,47 @@
1
+ import type { UIStringsOverride } from "../i18n-ui.ts";
2
+
3
+ /** Romanian (ro) UI strings. */
4
+ export const ro: UIStringsOverride = {
5
+ actions: {
6
+ addToCursor: "Adaugă în Cursor",
7
+ addToVscode: "Adaugă în VS Code",
8
+ askAI: "Întreabă AI despre această pagină",
9
+ connectMcp: "Conectează-te la MCP",
10
+ copied: "Copiat!",
11
+ copyClaudeCode: "Copiază comanda Claude Code",
12
+ copyMarkdown: "Copiază ca Markdown",
13
+ copyServerUrl: "Copiază URL-ul serverului",
14
+ edit: "Editează pe GitHub",
15
+ openInChat: "Deschide în chat",
16
+ scrollToTop: "Sus de tot",
17
+ },
18
+ ask: {
19
+ empty: "Pune o întrebare despre documentație.",
20
+ error: "Ne pare rău, ceva nu a mers bine.",
21
+ label: "Pune o întrebare",
22
+ placeholder: "Pune o întrebare…",
23
+ send: "Trimite",
24
+ title: "Întreabă AI",
25
+ },
26
+ feedback: {
27
+ no: "Nu",
28
+ question: "Ți-a fost utilă această pagină?",
29
+ thanks: "Mulțumim pentru feedback!",
30
+ yes: "Da",
31
+ },
32
+ languageSwitcher: { label: "Limbă", untranslated: "Netradus" },
33
+ page: {
34
+ lastUpdated: "Ultima actualizare",
35
+ next: "Următorul",
36
+ previous: "Anteriorul",
37
+ skipToContent: "Sari la conținut",
38
+ },
39
+ search: {
40
+ button: "Caută",
41
+ devOnly: "Căutarea este disponibilă în versiunea de producție.",
42
+ label: "Caută în documentație",
43
+ noResults: "Niciun rezultat găsit.",
44
+ placeholder: "Caută în documentație…",
45
+ },
46
+ toc: { title: "Pe această pagină" },
47
+ };
@@ -0,0 +1,47 @@
1
+ import type { UIStringsOverride } from "../i18n-ui.ts";
2
+
3
+ /** Russian (ru) UI strings. */
4
+ export const ru: 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: "Скопировать URL сервера",
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: "Поиск доступен в production-сборке.",
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
+ /** Slovak (sk) UI strings. */
4
+ export const sk: UIStringsOverride = {
5
+ actions: {
6
+ addToCursor: "Pridať do Cursoru",
7
+ addToVscode: "Pridať do VS Code",
8
+ askAI: "Opýtať sa AI na túto stránku",
9
+ connectMcp: "Pripojiť k MCP",
10
+ copied: "Skopírované!",
11
+ copyClaudeCode: "Kopírovať príkaz Claude Code",
12
+ copyMarkdown: "Kopírovať ako Markdown",
13
+ copyServerUrl: "Kopírovať URL servera",
14
+ edit: "Upraviť na GitHube",
15
+ openInChat: "Otvoriť v chate",
16
+ scrollToTop: "Späť nahor",
17
+ },
18
+ ask: {
19
+ empty: "Opýtajte sa na dokumentáciu.",
20
+ error: "Ospravedlňujeme sa, niečo sa pokazilo.",
21
+ label: "Položiť otázku",
22
+ placeholder: "Položiť otázku…",
23
+ send: "Odoslať",
24
+ title: "Opýtať sa AI",
25
+ },
26
+ feedback: {
27
+ no: "Nie",
28
+ question: "Bola táto stránka užitočná?",
29
+ thanks: "Ďakujeme za vašu spätnú väzbu!",
30
+ yes: "Áno",
31
+ },
32
+ languageSwitcher: { label: "Jazyk", untranslated: "Nepreložené" },
33
+ page: {
34
+ lastUpdated: "Naposledy aktualizované",
35
+ next: "Ďalej",
36
+ previous: "Predchádzajúce",
37
+ skipToContent: "Prejsť na obsah",
38
+ },
39
+ search: {
40
+ button: "Hľadať",
41
+ devOnly: "Vyhľadávanie je dostupné v produkčnom builde.",
42
+ label: "Prehľadať dokumentáciu",
43
+ noResults: "Nenašli sa žiadne výsledky.",
44
+ placeholder: "Prehľadať dokumentáciu…",
45
+ },
46
+ toc: { title: "Na tejto stránke" },
47
+ };
@@ -0,0 +1,47 @@
1
+ import type { UIStringsOverride } from "../i18n-ui.ts";
2
+
3
+ /** Serbian (sr) UI strings. */
4
+ export const sr: 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
+ /** Swedish (sv) UI strings. */
4
+ export const sv: UIStringsOverride = {
5
+ actions: {
6
+ addToCursor: "Lägg till i Cursor",
7
+ addToVscode: "Lägg till i VS Code",
8
+ askAI: "Fråga AI om den här sidan",
9
+ connectMcp: "Anslut till MCP",
10
+ copied: "Kopierat!",
11
+ copyClaudeCode: "Kopiera Claude Code-kommando",
12
+ copyMarkdown: "Kopiera som Markdown",
13
+ copyServerUrl: "Kopiera server-URL",
14
+ edit: "Redigera på GitHub",
15
+ openInChat: "Öppna i chatt",
16
+ scrollToTop: "Till toppen",
17
+ },
18
+ ask: {
19
+ empty: "Ställ en fråga om dokumentationen.",
20
+ error: "Tyvärr, något gick fel.",
21
+ label: "Ställ en fråga",
22
+ placeholder: "Ställ en fråga…",
23
+ send: "Skicka",
24
+ title: "Fråga AI",
25
+ },
26
+ feedback: {
27
+ no: "Nej",
28
+ question: "Var den här sidan till hjälp?",
29
+ thanks: "Tack för din feedback!",
30
+ yes: "Ja",
31
+ },
32
+ languageSwitcher: { label: "Språk", untranslated: "Inte översatt" },
33
+ page: {
34
+ lastUpdated: "Senast uppdaterad",
35
+ next: "Nästa",
36
+ previous: "Föregående",
37
+ skipToContent: "Hoppa till innehåll",
38
+ },
39
+ search: {
40
+ button: "Sök",
41
+ devOnly: "Sökning är tillgänglig i produktionsbygget.",
42
+ label: "Sök i dokumentationen",
43
+ noResults: "Inga resultat hittades.",
44
+ placeholder: "Sök i dokumentationen…",
45
+ },
46
+ toc: { title: "På den här sidan" },
47
+ };
@@ -0,0 +1,47 @@
1
+ import type { UIStringsOverride } from "../i18n-ui.ts";
2
+
3
+ /** Thai (th) UI strings. */
4
+ export const th: 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
+ /** Turkish (tr) UI strings. */
4
+ export const tr: UIStringsOverride = {
5
+ actions: {
6
+ addToCursor: "Cursor'a ekle",
7
+ addToVscode: "VS Code'a ekle",
8
+ askAI: "Bu sayfa hakkında yapay zekâya sor",
9
+ connectMcp: "MCP'ye bağlan",
10
+ copied: "Kopyalandı!",
11
+ copyClaudeCode: "Claude Code komutunu kopyala",
12
+ copyMarkdown: "Markdown olarak kopyala",
13
+ copyServerUrl: "Sunucu URL'sini kopyala",
14
+ edit: "GitHub'da düzenle",
15
+ openInChat: "Sohbette aç",
16
+ scrollToTop: "Başa dön",
17
+ },
18
+ ask: {
19
+ empty: "Belgeler hakkında bir soru sorun.",
20
+ error: "Üzgünüz, bir şeyler ters gitti.",
21
+ label: "Bir soru sorun",
22
+ placeholder: "Bir soru sorun…",
23
+ send: "Gönder",
24
+ title: "Yapay zekâya sor",
25
+ },
26
+ feedback: {
27
+ no: "Hayır",
28
+ question: "Bu sayfa yardımcı oldu mu?",
29
+ thanks: "Geri bildiriminiz için teşekkürler!",
30
+ yes: "Evet",
31
+ },
32
+ languageSwitcher: { label: "Dil", untranslated: "Çevrilmemiş" },
33
+ page: {
34
+ lastUpdated: "Son güncelleme",
35
+ next: "Sonraki",
36
+ previous: "Önceki",
37
+ skipToContent: "İçeriğe geç",
38
+ },
39
+ search: {
40
+ button: "Ara",
41
+ devOnly: "Arama, üretim derlemesinde kullanılabilir.",
42
+ label: "Belgelerde ara",
43
+ noResults: "Sonuç bulunamadı.",
44
+ placeholder: "Belgelerde ara…",
45
+ },
46
+ toc: { title: "Bu sayfada" },
47
+ };
@@ -0,0 +1,47 @@
1
+ import type { UIStringsOverride } from "../i18n-ui.ts";
2
+
3
+ /** Ukrainian (uk) UI strings. */
4
+ export const uk: 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: "Скопіювати URL сервера",
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: "Пошук доступний у production-збірці.",
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
+ /** Vietnamese (vi) UI strings. */
4
+ export const vi: UIStringsOverride = {
5
+ actions: {
6
+ addToCursor: "Thêm vào Cursor",
7
+ addToVscode: "Thêm vào VS Code",
8
+ askAI: "Hỏi AI về trang này",
9
+ connectMcp: "Kết nối với MCP",
10
+ copied: "Đã sao chép!",
11
+ copyClaudeCode: "Sao chép lệnh Claude Code",
12
+ copyMarkdown: "Sao chép dưới dạng Markdown",
13
+ copyServerUrl: "Sao chép URL máy chủ",
14
+ edit: "Chỉnh sửa trên GitHub",
15
+ openInChat: "Mở trong trò chuyện",
16
+ scrollToTop: "Lên đầu trang",
17
+ },
18
+ ask: {
19
+ empty: "Đặt câu hỏi về tài liệu.",
20
+ error: "Xin lỗi, đã xảy ra sự cố.",
21
+ label: "Đặt câu hỏi",
22
+ placeholder: "Đặt câu hỏi…",
23
+ send: "Gửi",
24
+ title: "Hỏi AI",
25
+ },
26
+ feedback: {
27
+ no: "Không",
28
+ question: "Trang này có hữu ích không?",
29
+ thanks: "Cảm ơn phản hồi của bạn!",
30
+ yes: "Có",
31
+ },
32
+ languageSwitcher: { label: "Ngôn ngữ", untranslated: "Chưa dịch" },
33
+ page: {
34
+ lastUpdated: "Cập nhật lần cuối",
35
+ next: "Tiếp theo",
36
+ previous: "Trước",
37
+ skipToContent: "Chuyển đến nội dung",
38
+ },
39
+ search: {
40
+ button: "Tìm kiếm",
41
+ devOnly: "Tìm kiếm có sẵn trong bản dựng production.",
42
+ label: "Tìm kiếm tài liệu",
43
+ noResults: "Không tìm thấy kết quả.",
44
+ placeholder: "Tìm kiếm tài liệu…",
45
+ },
46
+ toc: { title: "Trên trang này" },
47
+ };