@neurocode-ai/web 1.18.8
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/README.md +54 -0
- package/astro.config.mjs +324 -0
- package/config.mjs +14 -0
- package/package.json +44 -0
- package/public/apple-touch-icon-v3.png +1 -0
- package/public/apple-touch-icon.png +1 -0
- package/public/favicon-96x96-v3.png +1 -0
- package/public/favicon-96x96.png +1 -0
- package/public/favicon-v3.ico +1 -0
- package/public/favicon-v3.svg +1 -0
- package/public/favicon.ico +1 -0
- package/public/favicon.svg +1 -0
- package/public/robots.txt +6 -0
- package/public/site.webmanifest +1 -0
- package/public/social-share-zen.png +1 -0
- package/public/social-share.png +1 -0
- package/public/theme.json +183 -0
- package/public/web-app-manifest-192x192.png +1 -0
- package/public/web-app-manifest-512x512.png +1 -0
- package/src/assets/lander/check.svg +2 -0
- package/src/assets/lander/copy.svg +2 -0
- package/src/assets/lander/screenshot-github.png +0 -0
- package/src/assets/lander/screenshot-splash.png +0 -0
- package/src/assets/lander/screenshot-vscode.png +0 -0
- package/src/assets/lander/screenshot.png +0 -0
- package/src/assets/logo-dark.svg +18 -0
- package/src/assets/logo-light.svg +18 -0
- package/src/assets/logo-ornate-dark.svg +18 -0
- package/src/assets/logo-ornate-light.svg +18 -0
- package/src/assets/web/web-homepage-active-session.png +0 -0
- package/src/assets/web/web-homepage-new-session.png +0 -0
- package/src/assets/web/web-homepage-see-servers.png +0 -0
- package/src/components/Footer.astro +125 -0
- package/src/components/Head.astro +54 -0
- package/src/components/Header.astro +136 -0
- package/src/components/Hero.astro +11 -0
- package/src/components/Lander.astro +721 -0
- package/src/components/LanguageSelect.astro +29 -0
- package/src/components/Share.tsx +644 -0
- package/src/components/SiteTitle.astro +59 -0
- package/src/components/icons/custom.tsx +87 -0
- package/src/components/icons/index.tsx +4454 -0
- package/src/components/share/common.tsx +128 -0
- package/src/components/share/content-bash.module.css +85 -0
- package/src/components/share/content-bash.tsx +67 -0
- package/src/components/share/content-code.module.css +26 -0
- package/src/components/share/content-code.tsx +30 -0
- package/src/components/share/content-diff.module.css +153 -0
- package/src/components/share/content-diff.tsx +240 -0
- package/src/components/share/content-error.module.css +64 -0
- package/src/components/share/content-error.tsx +25 -0
- package/src/components/share/content-markdown.module.css +154 -0
- package/src/components/share/content-markdown.tsx +74 -0
- package/src/components/share/content-text.module.css +63 -0
- package/src/components/share/content-text.tsx +38 -0
- package/src/components/share/copy-button.module.css +30 -0
- package/src/components/share/copy-button.tsx +36 -0
- package/src/components/share/part.module.css +428 -0
- package/src/components/share/part.tsx +816 -0
- package/src/components/share.module.css +832 -0
- package/src/content/docs/acp.mdx +156 -0
- package/src/content/docs/agents.mdx +781 -0
- package/src/content/docs/ar/acp.mdx +156 -0
- package/src/content/docs/ar/agents.mdx +754 -0
- package/src/content/docs/ar/cli.mdx +616 -0
- package/src/content/docs/ar/commands.mdx +322 -0
- package/src/content/docs/ar/config.mdx +685 -0
- package/src/content/docs/ar/custom-tools.mdx +196 -0
- package/src/content/docs/ar/ecosystem.mdx +78 -0
- package/src/content/docs/ar/enterprise.mdx +165 -0
- package/src/content/docs/ar/formatters.mdx +131 -0
- package/src/content/docs/ar/github.mdx +321 -0
- package/src/content/docs/ar/gitlab.mdx +195 -0
- package/src/content/docs/ar/go.mdx +224 -0
- package/src/content/docs/ar/ide.mdx +48 -0
- package/src/content/docs/ar/index.mdx +344 -0
- package/src/content/docs/ar/keybinds.mdx +194 -0
- package/src/content/docs/ar/lsp.mdx +207 -0
- package/src/content/docs/ar/mcp-servers.mdx +511 -0
- package/src/content/docs/ar/models.mdx +222 -0
- package/src/content/docs/ar/network.mdx +57 -0
- package/src/content/docs/ar/permissions.mdx +235 -0
- package/src/content/docs/ar/plugins.mdx +385 -0
- package/src/content/docs/ar/providers.mdx +1983 -0
- package/src/content/docs/ar/rules.mdx +180 -0
- package/src/content/docs/ar/sdk.mdx +463 -0
- package/src/content/docs/ar/server.mdx +287 -0
- package/src/content/docs/ar/share.mdx +127 -0
- package/src/content/docs/ar/skills.mdx +222 -0
- package/src/content/docs/ar/themes.mdx +369 -0
- package/src/content/docs/ar/tools.mdx +341 -0
- package/src/content/docs/ar/troubleshooting.mdx +299 -0
- package/src/content/docs/ar/tui.mdx +426 -0
- package/src/content/docs/ar/web.mdx +142 -0
- package/src/content/docs/ar/windows-wsl.mdx +113 -0
- package/src/content/docs/ar/zen.mdx +332 -0
- package/src/content/docs/bs/acp.mdx +156 -0
- package/src/content/docs/bs/agents.mdx +754 -0
- package/src/content/docs/bs/cli.mdx +614 -0
- package/src/content/docs/bs/commands.mdx +316 -0
- package/src/content/docs/bs/config.mdx +685 -0
- package/src/content/docs/bs/custom-tools.mdx +195 -0
- package/src/content/docs/bs/ecosystem.mdx +78 -0
- package/src/content/docs/bs/enterprise.mdx +165 -0
- package/src/content/docs/bs/formatters.mdx +124 -0
- package/src/content/docs/bs/github.mdx +311 -0
- package/src/content/docs/bs/gitlab.mdx +188 -0
- package/src/content/docs/bs/go.mdx +238 -0
- package/src/content/docs/bs/ide.mdx +47 -0
- package/src/content/docs/bs/index.mdx +323 -0
- package/src/content/docs/bs/keybinds.mdx +194 -0
- package/src/content/docs/bs/lsp.mdx +204 -0
- package/src/content/docs/bs/mcp-servers.mdx +482 -0
- package/src/content/docs/bs/models.mdx +201 -0
- package/src/content/docs/bs/network.mdx +51 -0
- package/src/content/docs/bs/permissions.mdx +228 -0
- package/src/content/docs/bs/plugins.mdx +371 -0
- package/src/content/docs/bs/providers.mdx +1993 -0
- package/src/content/docs/bs/rules.mdx +180 -0
- package/src/content/docs/bs/sdk.mdx +463 -0
- package/src/content/docs/bs/server.mdx +284 -0
- package/src/content/docs/bs/share.mdx +127 -0
- package/src/content/docs/bs/skills.mdx +222 -0
- package/src/content/docs/bs/themes.mdx +369 -0
- package/src/content/docs/bs/tools.mdx +341 -0
- package/src/content/docs/bs/troubleshooting.mdx +300 -0
- package/src/content/docs/bs/tui.mdx +432 -0
- package/src/content/docs/bs/web.mdx +142 -0
- package/src/content/docs/bs/windows-wsl.mdx +113 -0
- package/src/content/docs/bs/zen.mdx +350 -0
- package/src/content/docs/cli.mdx +733 -0
- package/src/content/docs/commands.mdx +323 -0
- package/src/content/docs/config.mdx +941 -0
- package/src/content/docs/custom-tools.mdx +196 -0
- package/src/content/docs/da/acp.mdx +156 -0
- package/src/content/docs/da/agents.mdx +755 -0
- package/src/content/docs/da/cli.mdx +617 -0
- package/src/content/docs/da/commands.mdx +323 -0
- package/src/content/docs/da/config.mdx +688 -0
- package/src/content/docs/da/custom-tools.mdx +196 -0
- package/src/content/docs/da/ecosystem.mdx +78 -0
- package/src/content/docs/da/enterprise.mdx +170 -0
- package/src/content/docs/da/formatters.mdx +131 -0
- package/src/content/docs/da/github.mdx +321 -0
- package/src/content/docs/da/gitlab.mdx +195 -0
- package/src/content/docs/da/go.mdx +238 -0
- package/src/content/docs/da/ide.mdx +48 -0
- package/src/content/docs/da/index.mdx +360 -0
- package/src/content/docs/da/keybinds.mdx +194 -0
- package/src/content/docs/da/lsp.mdx +208 -0
- package/src/content/docs/da/mcp-servers.mdx +511 -0
- package/src/content/docs/da/models.mdx +223 -0
- package/src/content/docs/da/network.mdx +57 -0
- package/src/content/docs/da/permissions.mdx +235 -0
- package/src/content/docs/da/plugins.mdx +389 -0
- package/src/content/docs/da/providers.mdx +1981 -0
- package/src/content/docs/da/rules.mdx +180 -0
- package/src/content/docs/da/sdk.mdx +463 -0
- package/src/content/docs/da/server.mdx +287 -0
- package/src/content/docs/da/share.mdx +128 -0
- package/src/content/docs/da/skills.mdx +222 -0
- package/src/content/docs/da/themes.mdx +369 -0
- package/src/content/docs/da/tools.mdx +341 -0
- package/src/content/docs/da/troubleshooting.mdx +300 -0
- package/src/content/docs/da/tui.mdx +426 -0
- package/src/content/docs/da/web.mdx +142 -0
- package/src/content/docs/da/windows-wsl.mdx +113 -0
- package/src/content/docs/da/zen.mdx +345 -0
- package/src/content/docs/de/acp.mdx +156 -0
- package/src/content/docs/de/agents.mdx +741 -0
- package/src/content/docs/de/cli.mdx +616 -0
- package/src/content/docs/de/commands.mdx +323 -0
- package/src/content/docs/de/config.mdx +684 -0
- package/src/content/docs/de/custom-tools.mdx +170 -0
- package/src/content/docs/de/ecosystem.mdx +78 -0
- package/src/content/docs/de/enterprise.mdx +170 -0
- package/src/content/docs/de/formatters.mdx +131 -0
- package/src/content/docs/de/github.mdx +321 -0
- package/src/content/docs/de/gitlab.mdx +195 -0
- package/src/content/docs/de/go.mdx +226 -0
- package/src/content/docs/de/ide.mdx +48 -0
- package/src/content/docs/de/index.mdx +356 -0
- package/src/content/docs/de/keybinds.mdx +194 -0
- package/src/content/docs/de/lsp.mdx +207 -0
- package/src/content/docs/de/mcp-servers.mdx +511 -0
- package/src/content/docs/de/models.mdx +223 -0
- package/src/content/docs/de/network.mdx +57 -0
- package/src/content/docs/de/permissions.mdx +235 -0
- package/src/content/docs/de/plugins.mdx +384 -0
- package/src/content/docs/de/providers.mdx +1987 -0
- package/src/content/docs/de/rules.mdx +190 -0
- package/src/content/docs/de/sdk.mdx +465 -0
- package/src/content/docs/de/server.mdx +291 -0
- package/src/content/docs/de/share.mdx +130 -0
- package/src/content/docs/de/skills.mdx +222 -0
- package/src/content/docs/de/themes.mdx +372 -0
- package/src/content/docs/de/tools.mdx +352 -0
- package/src/content/docs/de/troubleshooting.mdx +300 -0
- package/src/content/docs/de/tui.mdx +429 -0
- package/src/content/docs/de/web.mdx +142 -0
- package/src/content/docs/de/windows-wsl.mdx +115 -0
- package/src/content/docs/de/zen.mdx +327 -0
- package/src/content/docs/ecosystem.mdx +83 -0
- package/src/content/docs/enterprise.mdx +169 -0
- package/src/content/docs/es/acp.mdx +156 -0
- package/src/content/docs/es/agents.mdx +755 -0
- package/src/content/docs/es/cli.mdx +616 -0
- package/src/content/docs/es/commands.mdx +323 -0
- package/src/content/docs/es/config.mdx +685 -0
- package/src/content/docs/es/custom-tools.mdx +196 -0
- package/src/content/docs/es/ecosystem.mdx +78 -0
- package/src/content/docs/es/enterprise.mdx +170 -0
- package/src/content/docs/es/formatters.mdx +131 -0
- package/src/content/docs/es/github.mdx +321 -0
- package/src/content/docs/es/gitlab.mdx +195 -0
- package/src/content/docs/es/go.mdx +238 -0
- package/src/content/docs/es/ide.mdx +48 -0
- package/src/content/docs/es/index.mdx +345 -0
- package/src/content/docs/es/keybinds.mdx +194 -0
- package/src/content/docs/es/lsp.mdx +208 -0
- package/src/content/docs/es/mcp-servers.mdx +511 -0
- package/src/content/docs/es/models.mdx +223 -0
- package/src/content/docs/es/network.mdx +57 -0
- package/src/content/docs/es/permissions.mdx +235 -0
- package/src/content/docs/es/plugins.mdx +389 -0
- package/src/content/docs/es/providers.mdx +1989 -0
- package/src/content/docs/es/rules.mdx +180 -0
- package/src/content/docs/es/sdk.mdx +463 -0
- package/src/content/docs/es/server.mdx +287 -0
- package/src/content/docs/es/share.mdx +128 -0
- package/src/content/docs/es/skills.mdx +222 -0
- package/src/content/docs/es/themes.mdx +369 -0
- package/src/content/docs/es/tools.mdx +341 -0
- package/src/content/docs/es/troubleshooting.mdx +300 -0
- package/src/content/docs/es/tui.mdx +429 -0
- package/src/content/docs/es/web.mdx +142 -0
- package/src/content/docs/es/windows-wsl.mdx +113 -0
- package/src/content/docs/es/zen.mdx +345 -0
- package/src/content/docs/formatters.mdx +143 -0
- package/src/content/docs/fr/acp.mdx +156 -0
- package/src/content/docs/fr/agents.mdx +755 -0
- package/src/content/docs/fr/cli.mdx +617 -0
- package/src/content/docs/fr/commands.mdx +322 -0
- package/src/content/docs/fr/config.mdx +686 -0
- package/src/content/docs/fr/custom-tools.mdx +170 -0
- package/src/content/docs/fr/ecosystem.mdx +78 -0
- package/src/content/docs/fr/enterprise.mdx +165 -0
- package/src/content/docs/fr/formatters.mdx +131 -0
- package/src/content/docs/fr/github.mdx +322 -0
- package/src/content/docs/fr/gitlab.mdx +195 -0
- package/src/content/docs/fr/go.mdx +224 -0
- package/src/content/docs/fr/ide.mdx +48 -0
- package/src/content/docs/fr/index.mdx +344 -0
- package/src/content/docs/fr/keybinds.mdx +194 -0
- package/src/content/docs/fr/lsp.mdx +208 -0
- package/src/content/docs/fr/mcp-servers.mdx +511 -0
- package/src/content/docs/fr/models.mdx +222 -0
- package/src/content/docs/fr/network.mdx +57 -0
- package/src/content/docs/fr/permissions.mdx +235 -0
- package/src/content/docs/fr/plugins.mdx +384 -0
- package/src/content/docs/fr/providers.mdx +1996 -0
- package/src/content/docs/fr/rules.mdx +180 -0
- package/src/content/docs/fr/sdk.mdx +463 -0
- package/src/content/docs/fr/server.mdx +287 -0
- package/src/content/docs/fr/share.mdx +128 -0
- package/src/content/docs/fr/skills.mdx +222 -0
- package/src/content/docs/fr/themes.mdx +369 -0
- package/src/content/docs/fr/tools.mdx +341 -0
- package/src/content/docs/fr/troubleshooting.mdx +300 -0
- package/src/content/docs/fr/tui.mdx +429 -0
- package/src/content/docs/fr/web.mdx +142 -0
- package/src/content/docs/fr/windows-wsl.mdx +113 -0
- package/src/content/docs/fr/zen.mdx +327 -0
- package/src/content/docs/github.mdx +321 -0
- package/src/content/docs/gitlab.mdx +195 -0
- package/src/content/docs/go.mdx +238 -0
- package/src/content/docs/ide.mdx +48 -0
- package/src/content/docs/index.mdx +360 -0
- package/src/content/docs/it/acp.mdx +155 -0
- package/src/content/docs/it/agents.mdx +753 -0
- package/src/content/docs/it/cli.mdx +617 -0
- package/src/content/docs/it/commands.mdx +322 -0
- package/src/content/docs/it/config.mdx +685 -0
- package/src/content/docs/it/custom-tools.mdx +196 -0
- package/src/content/docs/it/ecosystem.mdx +78 -0
- package/src/content/docs/it/enterprise.mdx +165 -0
- package/src/content/docs/it/formatters.mdx +132 -0
- package/src/content/docs/it/github.mdx +321 -0
- package/src/content/docs/it/gitlab.mdx +195 -0
- package/src/content/docs/it/go.mdx +236 -0
- package/src/content/docs/it/ide.mdx +48 -0
- package/src/content/docs/it/index.mdx +344 -0
- package/src/content/docs/it/keybinds.mdx +194 -0
- package/src/content/docs/it/lsp.mdx +208 -0
- package/src/content/docs/it/mcp-servers.mdx +511 -0
- package/src/content/docs/it/models.mdx +222 -0
- package/src/content/docs/it/network.mdx +57 -0
- package/src/content/docs/it/permissions.mdx +235 -0
- package/src/content/docs/it/plugins.mdx +388 -0
- package/src/content/docs/it/providers.mdx +1964 -0
- package/src/content/docs/it/rules.mdx +180 -0
- package/src/content/docs/it/sdk.mdx +463 -0
- package/src/content/docs/it/server.mdx +284 -0
- package/src/content/docs/it/share.mdx +127 -0
- package/src/content/docs/it/skills.mdx +222 -0
- package/src/content/docs/it/themes.mdx +369 -0
- package/src/content/docs/it/tools.mdx +341 -0
- package/src/content/docs/it/troubleshooting.mdx +299 -0
- package/src/content/docs/it/tui.mdx +426 -0
- package/src/content/docs/it/web.mdx +142 -0
- package/src/content/docs/it/windows-wsl.mdx +113 -0
- package/src/content/docs/it/zen.mdx +345 -0
- package/src/content/docs/ja/acp.mdx +155 -0
- package/src/content/docs/ja/agents.mdx +751 -0
- package/src/content/docs/ja/cli.mdx +616 -0
- package/src/content/docs/ja/commands.mdx +322 -0
- package/src/content/docs/ja/config.mdx +684 -0
- package/src/content/docs/ja/custom-tools.mdx +196 -0
- package/src/content/docs/ja/ecosystem.mdx +78 -0
- package/src/content/docs/ja/enterprise.mdx +166 -0
- package/src/content/docs/ja/formatters.mdx +132 -0
- package/src/content/docs/ja/github.mdx +322 -0
- package/src/content/docs/ja/gitlab.mdx +195 -0
- package/src/content/docs/ja/go.mdx +224 -0
- package/src/content/docs/ja/ide.mdx +48 -0
- package/src/content/docs/ja/index.mdx +350 -0
- package/src/content/docs/ja/keybinds.mdx +194 -0
- package/src/content/docs/ja/lsp.mdx +208 -0
- package/src/content/docs/ja/mcp-servers.mdx +511 -0
- package/src/content/docs/ja/models.mdx +221 -0
- package/src/content/docs/ja/network.mdx +55 -0
- package/src/content/docs/ja/permissions.mdx +282 -0
- package/src/content/docs/ja/plugins.mdx +461 -0
- package/src/content/docs/ja/providers.mdx +1998 -0
- package/src/content/docs/ja/rules.mdx +179 -0
- package/src/content/docs/ja/sdk.mdx +463 -0
- package/src/content/docs/ja/server.mdx +282 -0
- package/src/content/docs/ja/share.mdx +128 -0
- package/src/content/docs/ja/skills.mdx +222 -0
- package/src/content/docs/ja/themes.mdx +667 -0
- package/src/content/docs/ja/tools.mdx +341 -0
- package/src/content/docs/ja/troubleshooting.mdx +300 -0
- package/src/content/docs/ja/tui.mdx +423 -0
- package/src/content/docs/ja/web.mdx +143 -0
- package/src/content/docs/ja/windows-wsl.mdx +116 -0
- package/src/content/docs/ja/zen.mdx +327 -0
- package/src/content/docs/keybinds.mdx +299 -0
- package/src/content/docs/ko/acp.mdx +156 -0
- package/src/content/docs/ko/agents.mdx +754 -0
- package/src/content/docs/ko/cli.mdx +616 -0
- package/src/content/docs/ko/commands.mdx +323 -0
- package/src/content/docs/ko/config.mdx +685 -0
- package/src/content/docs/ko/custom-tools.mdx +196 -0
- package/src/content/docs/ko/ecosystem.mdx +78 -0
- package/src/content/docs/ko/enterprise.mdx +165 -0
- package/src/content/docs/ko/formatters.mdx +132 -0
- package/src/content/docs/ko/github.mdx +321 -0
- package/src/content/docs/ko/gitlab.mdx +195 -0
- package/src/content/docs/ko/go.mdx +224 -0
- package/src/content/docs/ko/ide.mdx +48 -0
- package/src/content/docs/ko/index.mdx +344 -0
- package/src/content/docs/ko/keybinds.mdx +194 -0
- package/src/content/docs/ko/lsp.mdx +208 -0
- package/src/content/docs/ko/mcp-servers.mdx +511 -0
- package/src/content/docs/ko/models.mdx +223 -0
- package/src/content/docs/ko/network.mdx +57 -0
- package/src/content/docs/ko/permissions.mdx +235 -0
- package/src/content/docs/ko/plugins.mdx +388 -0
- package/src/content/docs/ko/providers.mdx +1984 -0
- package/src/content/docs/ko/rules.mdx +179 -0
- package/src/content/docs/ko/sdk.mdx +463 -0
- package/src/content/docs/ko/server.mdx +287 -0
- package/src/content/docs/ko/share.mdx +128 -0
- package/src/content/docs/ko/skills.mdx +222 -0
- package/src/content/docs/ko/themes.mdx +369 -0
- package/src/content/docs/ko/tools.mdx +341 -0
- package/src/content/docs/ko/troubleshooting.mdx +303 -0
- package/src/content/docs/ko/tui.mdx +425 -0
- package/src/content/docs/ko/web.mdx +142 -0
- package/src/content/docs/ko/windows-wsl.mdx +119 -0
- package/src/content/docs/ko/zen.mdx +327 -0
- package/src/content/docs/lsp.mdx +214 -0
- package/src/content/docs/mcp-servers.mdx +512 -0
- package/src/content/docs/models.mdx +223 -0
- package/src/content/docs/nb/acp.mdx +156 -0
- package/src/content/docs/nb/agents.mdx +754 -0
- package/src/content/docs/nb/cli.mdx +617 -0
- package/src/content/docs/nb/commands.mdx +323 -0
- package/src/content/docs/nb/config.mdx +688 -0
- package/src/content/docs/nb/custom-tools.mdx +196 -0
- package/src/content/docs/nb/ecosystem.mdx +78 -0
- package/src/content/docs/nb/enterprise.mdx +170 -0
- package/src/content/docs/nb/formatters.mdx +131 -0
- package/src/content/docs/nb/github.mdx +325 -0
- package/src/content/docs/nb/gitlab.mdx +195 -0
- package/src/content/docs/nb/go.mdx +238 -0
- package/src/content/docs/nb/ide.mdx +48 -0
- package/src/content/docs/nb/index.mdx +359 -0
- package/src/content/docs/nb/keybinds.mdx +194 -0
- package/src/content/docs/nb/lsp.mdx +208 -0
- package/src/content/docs/nb/mcp-servers.mdx +624 -0
- package/src/content/docs/nb/models.mdx +223 -0
- package/src/content/docs/nb/network.mdx +57 -0
- package/src/content/docs/nb/permissions.mdx +235 -0
- package/src/content/docs/nb/plugins.mdx +389 -0
- package/src/content/docs/nb/providers.mdx +1956 -0
- package/src/content/docs/nb/rules.mdx +180 -0
- package/src/content/docs/nb/sdk.mdx +463 -0
- package/src/content/docs/nb/server.mdx +287 -0
- package/src/content/docs/nb/share.mdx +128 -0
- package/src/content/docs/nb/skills.mdx +222 -0
- package/src/content/docs/nb/themes.mdx +369 -0
- package/src/content/docs/nb/tools.mdx +341 -0
- package/src/content/docs/nb/troubleshooting.mdx +225 -0
- package/src/content/docs/nb/tui.mdx +429 -0
- package/src/content/docs/nb/web.mdx +105 -0
- package/src/content/docs/nb/windows-wsl.mdx +113 -0
- package/src/content/docs/nb/zen.mdx +345 -0
- package/src/content/docs/network.mdx +57 -0
- package/src/content/docs/permissions.mdx +256 -0
- package/src/content/docs/pl/acp.mdx +158 -0
- package/src/content/docs/pl/agents.mdx +754 -0
- package/src/content/docs/pl/cli.mdx +617 -0
- package/src/content/docs/pl/commands.mdx +323 -0
- package/src/content/docs/pl/config.mdx +680 -0
- package/src/content/docs/pl/custom-tools.mdx +196 -0
- package/src/content/docs/pl/ecosystem.mdx +78 -0
- package/src/content/docs/pl/enterprise.mdx +170 -0
- package/src/content/docs/pl/formatters.mdx +131 -0
- package/src/content/docs/pl/github.mdx +321 -0
- package/src/content/docs/pl/gitlab.mdx +195 -0
- package/src/content/docs/pl/go.mdx +230 -0
- package/src/content/docs/pl/ide.mdx +48 -0
- package/src/content/docs/pl/index.mdx +347 -0
- package/src/content/docs/pl/keybinds.mdx +194 -0
- package/src/content/docs/pl/lsp.mdx +208 -0
- package/src/content/docs/pl/mcp-servers.mdx +511 -0
- package/src/content/docs/pl/models.mdx +223 -0
- package/src/content/docs/pl/network.mdx +57 -0
- package/src/content/docs/pl/permissions.mdx +235 -0
- package/src/content/docs/pl/plugins.mdx +385 -0
- package/src/content/docs/pl/providers.mdx +1986 -0
- package/src/content/docs/pl/rules.mdx +180 -0
- package/src/content/docs/pl/sdk.mdx +463 -0
- package/src/content/docs/pl/server.mdx +287 -0
- package/src/content/docs/pl/share.mdx +128 -0
- package/src/content/docs/pl/skills.mdx +222 -0
- package/src/content/docs/pl/themes.mdx +369 -0
- package/src/content/docs/pl/tools.mdx +341 -0
- package/src/content/docs/pl/troubleshooting.mdx +300 -0
- package/src/content/docs/pl/tui.mdx +429 -0
- package/src/content/docs/pl/web.mdx +142 -0
- package/src/content/docs/pl/windows-wsl.mdx +113 -0
- package/src/content/docs/pl/zen.mdx +344 -0
- package/src/content/docs/plugins.mdx +389 -0
- package/src/content/docs/policies.mdx +137 -0
- package/src/content/docs/providers.mdx +2501 -0
- package/src/content/docs/pt-br/acp.mdx +156 -0
- package/src/content/docs/pt-br/agents.mdx +755 -0
- package/src/content/docs/pt-br/cli.mdx +616 -0
- package/src/content/docs/pt-br/commands.mdx +322 -0
- package/src/content/docs/pt-br/config.mdx +687 -0
- package/src/content/docs/pt-br/custom-tools.mdx +196 -0
- package/src/content/docs/pt-br/ecosystem.mdx +78 -0
- package/src/content/docs/pt-br/enterprise.mdx +166 -0
- package/src/content/docs/pt-br/formatters.mdx +131 -0
- package/src/content/docs/pt-br/github.mdx +321 -0
- package/src/content/docs/pt-br/gitlab.mdx +195 -0
- package/src/content/docs/pt-br/go.mdx +238 -0
- package/src/content/docs/pt-br/ide.mdx +48 -0
- package/src/content/docs/pt-br/index.mdx +344 -0
- package/src/content/docs/pt-br/keybinds.mdx +194 -0
- package/src/content/docs/pt-br/lsp.mdx +208 -0
- package/src/content/docs/pt-br/mcp-servers.mdx +511 -0
- package/src/content/docs/pt-br/models.mdx +222 -0
- package/src/content/docs/pt-br/network.mdx +57 -0
- package/src/content/docs/pt-br/permissions.mdx +235 -0
- package/src/content/docs/pt-br/plugins.mdx +388 -0
- package/src/content/docs/pt-br/providers.mdx +1989 -0
- package/src/content/docs/pt-br/rules.mdx +180 -0
- package/src/content/docs/pt-br/sdk.mdx +463 -0
- package/src/content/docs/pt-br/server.mdx +284 -0
- package/src/content/docs/pt-br/share.mdx +127 -0
- package/src/content/docs/pt-br/skills.mdx +222 -0
- package/src/content/docs/pt-br/themes.mdx +369 -0
- package/src/content/docs/pt-br/tools.mdx +341 -0
- package/src/content/docs/pt-br/troubleshooting.mdx +299 -0
- package/src/content/docs/pt-br/tui.mdx +426 -0
- package/src/content/docs/pt-br/web.mdx +142 -0
- package/src/content/docs/pt-br/windows-wsl.mdx +113 -0
- package/src/content/docs/pt-br/zen.mdx +327 -0
- package/src/content/docs/references.mdx +157 -0
- package/src/content/docs/ru/acp.mdx +156 -0
- package/src/content/docs/ru/agents.mdx +754 -0
- package/src/content/docs/ru/cli.mdx +617 -0
- package/src/content/docs/ru/commands.mdx +323 -0
- package/src/content/docs/ru/config.mdx +685 -0
- package/src/content/docs/ru/custom-tools.mdx +170 -0
- package/src/content/docs/ru/ecosystem.mdx +78 -0
- package/src/content/docs/ru/enterprise.mdx +168 -0
- package/src/content/docs/ru/formatters.mdx +119 -0
- package/src/content/docs/ru/github.mdx +321 -0
- package/src/content/docs/ru/gitlab.mdx +195 -0
- package/src/content/docs/ru/go.mdx +238 -0
- package/src/content/docs/ru/ide.mdx +48 -0
- package/src/content/docs/ru/index.mdx +356 -0
- package/src/content/docs/ru/keybinds.mdx +194 -0
- package/src/content/docs/ru/lsp.mdx +207 -0
- package/src/content/docs/ru/mcp-servers.mdx +511 -0
- package/src/content/docs/ru/models.mdx +223 -0
- package/src/content/docs/ru/network.mdx +57 -0
- package/src/content/docs/ru/permissions.mdx +235 -0
- package/src/content/docs/ru/plugins.mdx +385 -0
- package/src/content/docs/ru/providers.mdx +1987 -0
- package/src/content/docs/ru/rules.mdx +180 -0
- package/src/content/docs/ru/sdk.mdx +463 -0
- package/src/content/docs/ru/server.mdx +287 -0
- package/src/content/docs/ru/share.mdx +128 -0
- package/src/content/docs/ru/skills.mdx +222 -0
- package/src/content/docs/ru/themes.mdx +369 -0
- package/src/content/docs/ru/tools.mdx +341 -0
- package/src/content/docs/ru/troubleshooting.mdx +300 -0
- package/src/content/docs/ru/tui.mdx +429 -0
- package/src/content/docs/ru/web.mdx +142 -0
- package/src/content/docs/ru/windows-wsl.mdx +113 -0
- package/src/content/docs/ru/zen.mdx +345 -0
- package/src/content/docs/rules.mdx +188 -0
- package/src/content/docs/sdk.mdx +463 -0
- package/src/content/docs/server.mdx +287 -0
- package/src/content/docs/share.mdx +128 -0
- package/src/content/docs/skills.mdx +222 -0
- package/src/content/docs/th/acp.mdx +156 -0
- package/src/content/docs/th/agents.mdx +744 -0
- package/src/content/docs/th/cli.mdx +618 -0
- package/src/content/docs/th/commands.mdx +320 -0
- package/src/content/docs/th/config.mdx +690 -0
- package/src/content/docs/th/custom-tools.mdx +196 -0
- package/src/content/docs/th/ecosystem.mdx +78 -0
- package/src/content/docs/th/enterprise.mdx +170 -0
- package/src/content/docs/th/formatters.mdx +131 -0
- package/src/content/docs/th/github.mdx +321 -0
- package/src/content/docs/th/gitlab.mdx +195 -0
- package/src/content/docs/th/go.mdx +224 -0
- package/src/content/docs/th/ide.mdx +48 -0
- package/src/content/docs/th/index.mdx +360 -0
- package/src/content/docs/th/keybinds.mdx +194 -0
- package/src/content/docs/th/lsp.mdx +208 -0
- package/src/content/docs/th/mcp-servers.mdx +511 -0
- package/src/content/docs/th/models.mdx +223 -0
- package/src/content/docs/th/network.mdx +57 -0
- package/src/content/docs/th/permissions.mdx +235 -0
- package/src/content/docs/th/plugins.mdx +389 -0
- package/src/content/docs/th/providers.mdx +2532 -0
- package/src/content/docs/th/rules.mdx +180 -0
- package/src/content/docs/th/sdk.mdx +463 -0
- package/src/content/docs/th/server.mdx +287 -0
- package/src/content/docs/th/share.mdx +128 -0
- package/src/content/docs/th/skills.mdx +222 -0
- package/src/content/docs/th/themes.mdx +369 -0
- package/src/content/docs/th/tools.mdx +341 -0
- package/src/content/docs/th/troubleshooting.mdx +300 -0
- package/src/content/docs/th/tui.mdx +429 -0
- package/src/content/docs/th/web.mdx +142 -0
- package/src/content/docs/th/windows-wsl.mdx +113 -0
- package/src/content/docs/th/zen.mdx +329 -0
- package/src/content/docs/themes.mdx +369 -0
- package/src/content/docs/tools.mdx +345 -0
- package/src/content/docs/tr/acp.mdx +156 -0
- package/src/content/docs/tr/agents.mdx +754 -0
- package/src/content/docs/tr/cli.mdx +617 -0
- package/src/content/docs/tr/commands.mdx +323 -0
- package/src/content/docs/tr/config.mdx +687 -0
- package/src/content/docs/tr/custom-tools.mdx +196 -0
- package/src/content/docs/tr/ecosystem.mdx +78 -0
- package/src/content/docs/tr/enterprise.mdx +170 -0
- package/src/content/docs/tr/formatters.mdx +131 -0
- package/src/content/docs/tr/github.mdx +321 -0
- package/src/content/docs/tr/gitlab.mdx +195 -0
- package/src/content/docs/tr/go.mdx +224 -0
- package/src/content/docs/tr/ide.mdx +48 -0
- package/src/content/docs/tr/index.mdx +347 -0
- package/src/content/docs/tr/keybinds.mdx +194 -0
- package/src/content/docs/tr/lsp.mdx +208 -0
- package/src/content/docs/tr/mcp-servers.mdx +511 -0
- package/src/content/docs/tr/models.mdx +223 -0
- package/src/content/docs/tr/network.mdx +57 -0
- package/src/content/docs/tr/permissions.mdx +235 -0
- package/src/content/docs/tr/plugins.mdx +388 -0
- package/src/content/docs/tr/providers.mdx +1988 -0
- package/src/content/docs/tr/rules.mdx +180 -0
- package/src/content/docs/tr/sdk.mdx +463 -0
- package/src/content/docs/tr/server.mdx +285 -0
- package/src/content/docs/tr/share.mdx +127 -0
- package/src/content/docs/tr/skills.mdx +222 -0
- package/src/content/docs/tr/themes.mdx +369 -0
- package/src/content/docs/tr/tools.mdx +341 -0
- package/src/content/docs/tr/troubleshooting.mdx +299 -0
- package/src/content/docs/tr/tui.mdx +427 -0
- package/src/content/docs/tr/web.mdx +142 -0
- package/src/content/docs/tr/windows-wsl.mdx +113 -0
- package/src/content/docs/tr/zen.mdx +327 -0
- package/src/content/docs/troubleshooting.mdx +314 -0
- package/src/content/docs/tui.mdx +427 -0
- package/src/content/docs/web.mdx +142 -0
- package/src/content/docs/windows-wsl.mdx +112 -0
- package/src/content/docs/zen.mdx +345 -0
- package/src/content/docs/zh-cn/acp.mdx +156 -0
- package/src/content/docs/zh-cn/agents.mdx +754 -0
- package/src/content/docs/zh-cn/cli.mdx +617 -0
- package/src/content/docs/zh-cn/commands.mdx +322 -0
- package/src/content/docs/zh-cn/config.mdx +683 -0
- package/src/content/docs/zh-cn/custom-tools.mdx +196 -0
- package/src/content/docs/zh-cn/ecosystem.mdx +78 -0
- package/src/content/docs/zh-cn/enterprise.mdx +165 -0
- package/src/content/docs/zh-cn/formatters.mdx +132 -0
- package/src/content/docs/zh-cn/github.mdx +321 -0
- package/src/content/docs/zh-cn/gitlab.mdx +194 -0
- package/src/content/docs/zh-cn/go.mdx +224 -0
- package/src/content/docs/zh-cn/ide.mdx +48 -0
- package/src/content/docs/zh-cn/index.mdx +343 -0
- package/src/content/docs/zh-cn/keybinds.mdx +194 -0
- package/src/content/docs/zh-cn/lsp.mdx +208 -0
- package/src/content/docs/zh-cn/mcp-servers.mdx +511 -0
- package/src/content/docs/zh-cn/models.mdx +222 -0
- package/src/content/docs/zh-cn/network.mdx +57 -0
- package/src/content/docs/zh-cn/permissions.mdx +235 -0
- package/src/content/docs/zh-cn/plugins.mdx +388 -0
- package/src/content/docs/zh-cn/providers.mdx +1949 -0
- package/src/content/docs/zh-cn/rules.mdx +180 -0
- package/src/content/docs/zh-cn/sdk.mdx +463 -0
- package/src/content/docs/zh-cn/server.mdx +284 -0
- package/src/content/docs/zh-cn/share.mdx +127 -0
- package/src/content/docs/zh-cn/skills.mdx +222 -0
- package/src/content/docs/zh-cn/themes.mdx +369 -0
- package/src/content/docs/zh-cn/tools.mdx +341 -0
- package/src/content/docs/zh-cn/troubleshooting.mdx +299 -0
- package/src/content/docs/zh-cn/tui.mdx +426 -0
- package/src/content/docs/zh-cn/web.mdx +142 -0
- package/src/content/docs/zh-cn/windows-wsl.mdx +112 -0
- package/src/content/docs/zh-cn/zen.mdx +327 -0
- package/src/content/docs/zh-tw/acp.mdx +156 -0
- package/src/content/docs/zh-tw/agents.mdx +754 -0
- package/src/content/docs/zh-tw/cli.mdx +617 -0
- package/src/content/docs/zh-tw/commands.mdx +322 -0
- package/src/content/docs/zh-tw/config.mdx +687 -0
- package/src/content/docs/zh-tw/custom-tools.mdx +196 -0
- package/src/content/docs/zh-tw/ecosystem.mdx +78 -0
- package/src/content/docs/zh-tw/enterprise.mdx +165 -0
- package/src/content/docs/zh-tw/formatters.mdx +132 -0
- package/src/content/docs/zh-tw/github.mdx +321 -0
- package/src/content/docs/zh-tw/gitlab.mdx +194 -0
- package/src/content/docs/zh-tw/go.mdx +224 -0
- package/src/content/docs/zh-tw/ide.mdx +48 -0
- package/src/content/docs/zh-tw/index.mdx +343 -0
- package/src/content/docs/zh-tw/keybinds.mdx +194 -0
- package/src/content/docs/zh-tw/lsp.mdx +208 -0
- package/src/content/docs/zh-tw/mcp-servers.mdx +511 -0
- package/src/content/docs/zh-tw/models.mdx +222 -0
- package/src/content/docs/zh-tw/network.mdx +57 -0
- package/src/content/docs/zh-tw/permissions.mdx +235 -0
- package/src/content/docs/zh-tw/plugins.mdx +388 -0
- package/src/content/docs/zh-tw/providers.mdx +1970 -0
- package/src/content/docs/zh-tw/rules.mdx +180 -0
- package/src/content/docs/zh-tw/sdk.mdx +463 -0
- package/src/content/docs/zh-tw/server.mdx +284 -0
- package/src/content/docs/zh-tw/share.mdx +127 -0
- package/src/content/docs/zh-tw/skills.mdx +222 -0
- package/src/content/docs/zh-tw/themes.mdx +369 -0
- package/src/content/docs/zh-tw/tools.mdx +341 -0
- package/src/content/docs/zh-tw/troubleshooting.mdx +299 -0
- package/src/content/docs/zh-tw/tui.mdx +426 -0
- package/src/content/docs/zh-tw/web.mdx +142 -0
- package/src/content/docs/zh-tw/windows-wsl.mdx +112 -0
- package/src/content/docs/zh-tw/zen.mdx +333 -0
- package/src/content/i18n/ar.json +75 -0
- package/src/content/i18n/bs.json +75 -0
- package/src/content/i18n/da.json +75 -0
- package/src/content/i18n/de.json +75 -0
- package/src/content/i18n/en.json +75 -0
- package/src/content/i18n/es.json +75 -0
- package/src/content/i18n/fr.json +75 -0
- package/src/content/i18n/it.json +75 -0
- package/src/content/i18n/ja.json +75 -0
- package/src/content/i18n/ko.json +75 -0
- package/src/content/i18n/nb.json +75 -0
- package/src/content/i18n/pl.json +75 -0
- package/src/content/i18n/pt-BR.json +75 -0
- package/src/content/i18n/ru.json +75 -0
- package/src/content/i18n/th.json +75 -0
- package/src/content/i18n/tr.json +75 -0
- package/src/content/i18n/zh-CN.json +75 -0
- package/src/content/i18n/zh-TW.json +75 -0
- package/src/content.config.ts +16 -0
- package/src/i18n/locales.ts +117 -0
- package/src/middleware.ts +94 -0
- package/src/pages/[...slug].md.ts +34 -0
- package/src/pages/s/[id].astro +164 -0
- package/src/styles/custom.css +405 -0
- package/src/types/lang-map.d.ts +27 -0
- package/src/types/starlight-virtual.d.ts +14 -0
- package/sst-env.d.ts +10 -0
- package/tsconfig.json +9 -0
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
{
|
|
2
|
+
"app.head.titleSuffix": "AI agent za kodiranje, napravljen za terminal",
|
|
3
|
+
"app.header.home": "Početna",
|
|
4
|
+
"app.header.docs": "Dokumentacija",
|
|
5
|
+
"app.footer.issueLink": "Pronašli ste grešku? Prijavite problem",
|
|
6
|
+
"app.footer.discordLink": "Pridružite se našoj Discord zajednici",
|
|
7
|
+
"app.lander.hero.title": "AI agent za kodiranje, napravljen za terminal.",
|
|
8
|
+
"app.lander.cta.getStarted": "Započnite",
|
|
9
|
+
"app.lander.features.native_tui.title": "Izvorni TUI",
|
|
10
|
+
"app.lander.features.native_tui.description": "Prilagodljiv, izvorni, tematski interfejs terminala.",
|
|
11
|
+
"app.lander.features.lsp_enabled.title": "LSP omogućen",
|
|
12
|
+
"app.lander.features.lsp_enabled.description": "Automatski učitava ispravne LSP-ove za LLM.",
|
|
13
|
+
"app.lander.features.multi_session.title": "Više sesija",
|
|
14
|
+
"app.lander.features.multi_session.description": "Pokrenite više agenata paralelno na istom projektu.",
|
|
15
|
+
"app.lander.features.shareable_links.title": "Linkovi za dijeljenje",
|
|
16
|
+
"app.lander.features.shareable_links.description": "Podijelite link do bilo koje sesije za referencu ili otklanjanje grešaka.",
|
|
17
|
+
"app.lander.features.github_copilot.description": "Prijavite se na GitHub da koristite svoj Copilot nalog.",
|
|
18
|
+
"app.lander.features.chatgpt_plus_pro.description": "Prijavite se na OpenAI da koristite svoj ChatGPT Plus ili Pro nalog.",
|
|
19
|
+
"app.lander.features.use_any_model.title": "Koristite bilo koji model",
|
|
20
|
+
"app.lander.features.use_any_model.prefix": "Podržava 75+ LLM provajdera kroz",
|
|
21
|
+
"app.lander.features.use_any_model.suffix": "uključujući lokalne modele.",
|
|
22
|
+
"app.lander.images.tui.caption": "OpenCode TUI u tokyonight temi",
|
|
23
|
+
"app.lander.images.tui.alt": "OpenCode TUI u tokyonight temi",
|
|
24
|
+
"app.lander.images.vscode.caption": "OpenCode u VS Code",
|
|
25
|
+
"app.lander.images.vscode.alt": "OpenCode u VS Code",
|
|
26
|
+
"app.lander.images.github.caption": "OpenCode u GitHub",
|
|
27
|
+
"app.lander.images.github.alt": "OpenCode u GitHub",
|
|
28
|
+
"share.meta_description": "OpenCode - AI agent za kodiranje napravljen za terminal.",
|
|
29
|
+
"share.not_found": "Nije pronađeno",
|
|
30
|
+
"share.link_to_message": "Link do ove poruke",
|
|
31
|
+
"share.copied": "Kopirano!",
|
|
32
|
+
"share.copy": "Kopiraj",
|
|
33
|
+
"share.show_more": "Prikaži više",
|
|
34
|
+
"share.show_less": "Prikaži manje",
|
|
35
|
+
"share.show_results": "Prikaži rezultate",
|
|
36
|
+
"share.hide_results": "Sakrij rezultate",
|
|
37
|
+
"share.show_details": "Prikaži detalje",
|
|
38
|
+
"share.hide_details": "Sakrij detalje",
|
|
39
|
+
"share.show_preview": "Prikaži pregled",
|
|
40
|
+
"share.hide_preview": "Sakrij pregled",
|
|
41
|
+
"share.show_contents": "Prikaži sadržaj",
|
|
42
|
+
"share.hide_contents": "Sakrij sadržaj",
|
|
43
|
+
"share.show_output": "Prikaži izlaz",
|
|
44
|
+
"share.hide_output": "Sakrij izlaz",
|
|
45
|
+
"share.error": "Greška",
|
|
46
|
+
"share.waiting_for_messages": "Čekanje poruka...",
|
|
47
|
+
"share.status_connected_waiting": "Povezano, čekanje poruka...",
|
|
48
|
+
"share.status_connecting": "Povezivanje...",
|
|
49
|
+
"share.status_disconnected": "Prekinuto",
|
|
50
|
+
"share.status_reconnecting": "Ponovno povezivanje...",
|
|
51
|
+
"share.status_error": "Greška",
|
|
52
|
+
"share.status_unknown": "Nepoznato",
|
|
53
|
+
"share.error_id_not_found": "ID nije pronađen",
|
|
54
|
+
"share.error_api_url_not_found": "API URL nije pronađen",
|
|
55
|
+
"share.error_connection_failed": "Povezivanje nije uspjelo",
|
|
56
|
+
"share.opencode_version": "OpenCode verzija",
|
|
57
|
+
"share.opencode_name": "OpenCode",
|
|
58
|
+
"share.models": "Modeli",
|
|
59
|
+
"share.cost": "Cijena",
|
|
60
|
+
"share.input_tokens": "Ulazni tokeni",
|
|
61
|
+
"share.output_tokens": "Izlazni tokeni",
|
|
62
|
+
"share.reasoning_tokens": "Tokeni rezonovanja",
|
|
63
|
+
"share.scroll_to_bottom": "Pomjerite na dno",
|
|
64
|
+
"share.attachment": "Prilog",
|
|
65
|
+
"share.thinking": "Razmišljanje",
|
|
66
|
+
"share.thinking_pending": "razmišlja...",
|
|
67
|
+
"share.creating_plan": "Kreiranje plana",
|
|
68
|
+
"share.completing_plan": "Završavanje plana",
|
|
69
|
+
"share.updating_plan": "Ažuriranje plana",
|
|
70
|
+
"share.match_one": "podudaranje",
|
|
71
|
+
"share.match_other": "podudaranja",
|
|
72
|
+
"share.result_one": "rezultat",
|
|
73
|
+
"share.result_other": "rezultati",
|
|
74
|
+
"share.debug_key": "Ključ"
|
|
75
|
+
}
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
{
|
|
2
|
+
"app.head.titleSuffix": "AI-kodningsagent bygget til terminalen",
|
|
3
|
+
"app.header.home": "Hjem",
|
|
4
|
+
"app.header.docs": "Dokumentation",
|
|
5
|
+
"app.footer.issueLink": "Har du fundet en fejl? Opret en issue",
|
|
6
|
+
"app.footer.discordLink": "Bliv en del af vores Discord-fællesskab",
|
|
7
|
+
"app.lander.hero.title": "AI-kodningsagenten bygget til terminalen.",
|
|
8
|
+
"app.lander.cta.getStarted": "Kom i gang",
|
|
9
|
+
"app.lander.features.native_tui.title": "Indbygget TUI",
|
|
10
|
+
"app.lander.features.native_tui.description": "En responsiv, indbygget, temavenlig terminal-brugergrænseflade.",
|
|
11
|
+
"app.lander.features.lsp_enabled.title": "LSP aktiveret",
|
|
12
|
+
"app.lander.features.lsp_enabled.description": "Indlæser automatisk de rigtige LSPs for LLM.",
|
|
13
|
+
"app.lander.features.multi_session.title": "Flere sessioner",
|
|
14
|
+
"app.lander.features.multi_session.description": "Start flere agenter parallelt på det samme projekt.",
|
|
15
|
+
"app.lander.features.shareable_links.title": "Delbare links",
|
|
16
|
+
"app.lander.features.shareable_links.description": "Del et link til enhver session til reference eller til fejlretning.",
|
|
17
|
+
"app.lander.features.github_copilot.description": "Log ind med GitHub for at bruge din Copilot konto.",
|
|
18
|
+
"app.lander.features.chatgpt_plus_pro.description": "Log ind med OpenAI for at bruge din ChatGPT Plus eller Pro-konto.",
|
|
19
|
+
"app.lander.features.use_any_model.title": "Brug enhver model",
|
|
20
|
+
"app.lander.features.use_any_model.prefix": "Understøtter 75+ LLM udbydere igennem",
|
|
21
|
+
"app.lander.features.use_any_model.suffix": "herunder lokale modeller.",
|
|
22
|
+
"app.lander.images.tui.caption": "opencode TUI med tokyonight-temaet",
|
|
23
|
+
"app.lander.images.tui.alt": "opencode TUI med tokyonight-temaet",
|
|
24
|
+
"app.lander.images.vscode.caption": "opencode i VS Code",
|
|
25
|
+
"app.lander.images.vscode.alt": "opencode i VS Code",
|
|
26
|
+
"app.lander.images.github.caption": "opencode i GitHub",
|
|
27
|
+
"app.lander.images.github.alt": "opencode i GitHub",
|
|
28
|
+
"share.meta_description": "opencode - AI-kodningsagenten bygget til terminalen.",
|
|
29
|
+
"share.not_found": "Ikke fundet",
|
|
30
|
+
"share.link_to_message": "Link til denne besked",
|
|
31
|
+
"share.copied": "Kopieret!",
|
|
32
|
+
"share.copy": "Kopiér",
|
|
33
|
+
"share.show_more": "Vis mere",
|
|
34
|
+
"share.show_less": "Vis mindre",
|
|
35
|
+
"share.show_results": "Vis resultater",
|
|
36
|
+
"share.hide_results": "Skjul resultater",
|
|
37
|
+
"share.show_details": "Vis detaljer",
|
|
38
|
+
"share.hide_details": "Skjul detaljer",
|
|
39
|
+
"share.show_preview": "Vis forhåndsvisning",
|
|
40
|
+
"share.hide_preview": "Skjul forhåndsvisning",
|
|
41
|
+
"share.show_contents": "Vis indhold",
|
|
42
|
+
"share.hide_contents": "Skjul indhold",
|
|
43
|
+
"share.show_output": "Vis output",
|
|
44
|
+
"share.hide_output": "Skjul output",
|
|
45
|
+
"share.error": "Fejl",
|
|
46
|
+
"share.waiting_for_messages": "Venter på beskeder...",
|
|
47
|
+
"share.status_connected_waiting": "Forbundet, venter på beskeder...",
|
|
48
|
+
"share.status_connecting": "Opretter forbindelse...",
|
|
49
|
+
"share.status_disconnected": "Afbrudt",
|
|
50
|
+
"share.status_reconnecting": "Genopretter forbindelse...",
|
|
51
|
+
"share.status_error": "Fejl",
|
|
52
|
+
"share.status_unknown": "Ukendt",
|
|
53
|
+
"share.error_id_not_found": "id ikke fundet",
|
|
54
|
+
"share.error_api_url_not_found": "API URL ikke fundet",
|
|
55
|
+
"share.error_connection_failed": "Forbindelsen mislykkedes",
|
|
56
|
+
"share.opencode_version": "opencode-version",
|
|
57
|
+
"share.opencode_name": "opencode",
|
|
58
|
+
"share.models": "Modeller",
|
|
59
|
+
"share.cost": "Omkostning",
|
|
60
|
+
"share.input_tokens": "Input-tokens",
|
|
61
|
+
"share.output_tokens": "Output-tokens",
|
|
62
|
+
"share.reasoning_tokens": "Ræsonneringstokens",
|
|
63
|
+
"share.scroll_to_bottom": "Rul til bunden",
|
|
64
|
+
"share.attachment": "Vedhæftet fil",
|
|
65
|
+
"share.thinking": "Tænker",
|
|
66
|
+
"share.thinking_pending": "Tænker...",
|
|
67
|
+
"share.creating_plan": "Oprettelse af plan",
|
|
68
|
+
"share.completing_plan": "Færdiggør plan",
|
|
69
|
+
"share.updating_plan": "Opdatering af plan",
|
|
70
|
+
"share.match_one": "træf",
|
|
71
|
+
"share.match_other": "træf",
|
|
72
|
+
"share.result_one": "resultat",
|
|
73
|
+
"share.result_other": "resultater",
|
|
74
|
+
"share.debug_key": "Nøgle"
|
|
75
|
+
}
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
{
|
|
2
|
+
"app.head.titleSuffix": "AI-Coding-Agent für das Terminal",
|
|
3
|
+
"app.header.home": "Startseite",
|
|
4
|
+
"app.header.docs": "Dokumentation",
|
|
5
|
+
"app.footer.issueLink": "Einen Fehler gefunden? Eröffne ein Issue",
|
|
6
|
+
"app.footer.discordLink": "Tritt unserer Discord-Community bei",
|
|
7
|
+
"app.lander.hero.title": "Der AI-Coding-Agent für das Terminal.",
|
|
8
|
+
"app.lander.cta.getStarted": "Loslegen",
|
|
9
|
+
"app.lander.features.native_tui.title": "Natives TUI",
|
|
10
|
+
"app.lander.features.native_tui.description": "Eine reaktionsschnelle, native, anpassbare Terminal-UI.",
|
|
11
|
+
"app.lander.features.lsp_enabled.title": "LSP aktiviert",
|
|
12
|
+
"app.lander.features.lsp_enabled.description": "Lädt automatisch die passenden LSPs für das LLM.",
|
|
13
|
+
"app.lander.features.multi_session.title": "Mehrere Sitzungen",
|
|
14
|
+
"app.lander.features.multi_session.description": "Starten Sie mehrere Agenten parallel für dasselbe Projekt.",
|
|
15
|
+
"app.lander.features.shareable_links.title": "Gemeinsam nutzbare Links",
|
|
16
|
+
"app.lander.features.shareable_links.description": "Teilen Sie einen Link zu beliebigen Sitzungen als Referenz oder zum Debuggen.",
|
|
17
|
+
"app.lander.features.github_copilot.description": "Melden Sie sich bei GitHub an, um Ihr Copilot-Konto zu verwenden.",
|
|
18
|
+
"app.lander.features.chatgpt_plus_pro.description": "Melden Sie sich mit OpenAI an, um Ihr ChatGPT Plus- oder Pro-Konto zu verwenden.",
|
|
19
|
+
"app.lander.features.use_any_model.title": "Beliebiges Modell nutzen",
|
|
20
|
+
"app.lander.features.use_any_model.prefix": "Unterstützt 75+ LLM-Provider über",
|
|
21
|
+
"app.lander.features.use_any_model.suffix": "einschließlich lokaler Modelle.",
|
|
22
|
+
"app.lander.images.tui.caption": "opencode TUI mit dem tokyonight Theme",
|
|
23
|
+
"app.lander.images.tui.alt": "opencode TUI mit dem tokyonight Theme",
|
|
24
|
+
"app.lander.images.vscode.caption": "opencode im VS-Code-Editor",
|
|
25
|
+
"app.lander.images.vscode.alt": "opencode im VS-Code-Editor",
|
|
26
|
+
"app.lander.images.github.caption": "opencode auf GitHub",
|
|
27
|
+
"app.lander.images.github.alt": "opencode auf GitHub",
|
|
28
|
+
"share.meta_description": "opencode - Der AI-Coding-Agent für das Terminal.",
|
|
29
|
+
"share.not_found": "Nicht gefunden",
|
|
30
|
+
"share.link_to_message": "Link zu dieser Nachricht",
|
|
31
|
+
"share.copied": "Kopiert!",
|
|
32
|
+
"share.copy": "Kopieren",
|
|
33
|
+
"share.show_more": "Mehr anzeigen",
|
|
34
|
+
"share.show_less": "Weniger anzeigen",
|
|
35
|
+
"share.show_results": "Ergebnisse anzeigen",
|
|
36
|
+
"share.hide_results": "Ergebnisse ausblenden",
|
|
37
|
+
"share.show_details": "Details anzeigen",
|
|
38
|
+
"share.hide_details": "Details ausblenden",
|
|
39
|
+
"share.show_preview": "Vorschau anzeigen",
|
|
40
|
+
"share.hide_preview": "Vorschau ausblenden",
|
|
41
|
+
"share.show_contents": "Inhalte anzeigen",
|
|
42
|
+
"share.hide_contents": "Inhalte ausblenden",
|
|
43
|
+
"share.show_output": "Ausgabe anzeigen",
|
|
44
|
+
"share.hide_output": "Ausgabe ausblenden",
|
|
45
|
+
"share.error": "Fehler",
|
|
46
|
+
"share.waiting_for_messages": "Warten auf Nachrichten...",
|
|
47
|
+
"share.status_connected_waiting": "Verbunden, warte auf Nachrichten...",
|
|
48
|
+
"share.status_connecting": "Verbinden...",
|
|
49
|
+
"share.status_disconnected": "Getrennt",
|
|
50
|
+
"share.status_reconnecting": "Verbindet erneut...",
|
|
51
|
+
"share.status_error": "Fehler",
|
|
52
|
+
"share.status_unknown": "Unbekannt",
|
|
53
|
+
"share.error_id_not_found": "ID nicht gefunden",
|
|
54
|
+
"share.error_api_url_not_found": "API URL nicht gefunden",
|
|
55
|
+
"share.error_connection_failed": "Verbindung fehlgeschlagen",
|
|
56
|
+
"share.opencode_version": "opencode Version",
|
|
57
|
+
"share.opencode_name": "opencode",
|
|
58
|
+
"share.models": "Modelle",
|
|
59
|
+
"share.cost": "Kosten",
|
|
60
|
+
"share.input_tokens": "Eingabe-Token",
|
|
61
|
+
"share.output_tokens": "Ausgabe-Token",
|
|
62
|
+
"share.reasoning_tokens": "Reasoning-Token",
|
|
63
|
+
"share.scroll_to_bottom": "Nach unten scrollen",
|
|
64
|
+
"share.attachment": "Anhang",
|
|
65
|
+
"share.thinking": "Denken",
|
|
66
|
+
"share.thinking_pending": "Denken...",
|
|
67
|
+
"share.creating_plan": "Plan wird erstellt",
|
|
68
|
+
"share.completing_plan": "Plan wird abgeschlossen",
|
|
69
|
+
"share.updating_plan": "Plan wird aktualisiert",
|
|
70
|
+
"share.match_one": "Treffer",
|
|
71
|
+
"share.match_other": "Treffer",
|
|
72
|
+
"share.result_one": "Ergebnis",
|
|
73
|
+
"share.result_other": "Ergebnisse",
|
|
74
|
+
"share.debug_key": "Schlüssel"
|
|
75
|
+
}
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
{
|
|
2
|
+
"app.head.titleSuffix": "AI coding agent built for the terminal",
|
|
3
|
+
"app.header.home": "Home",
|
|
4
|
+
"app.header.docs": "Docs",
|
|
5
|
+
"app.footer.issueLink": "Found a bug? Open an issue",
|
|
6
|
+
"app.footer.discordLink": "Join our Discord community",
|
|
7
|
+
"app.lander.hero.title": "The AI coding agent built for the terminal.",
|
|
8
|
+
"app.lander.cta.getStarted": "Get Started",
|
|
9
|
+
"app.lander.features.native_tui.title": "Native TUI",
|
|
10
|
+
"app.lander.features.native_tui.description": "A responsive, native, themeable terminal UI.",
|
|
11
|
+
"app.lander.features.lsp_enabled.title": "LSP enabled",
|
|
12
|
+
"app.lander.features.lsp_enabled.description": "Automatically loads the right LSPs for the LLM.",
|
|
13
|
+
"app.lander.features.multi_session.title": "Multi-session",
|
|
14
|
+
"app.lander.features.multi_session.description": "Start multiple agents in parallel on the same project.",
|
|
15
|
+
"app.lander.features.shareable_links.title": "Shareable links",
|
|
16
|
+
"app.lander.features.shareable_links.description": "Share a link to any sessions for reference or to debug.",
|
|
17
|
+
"app.lander.features.github_copilot.description": "Log in with GitHub to use your Copilot account.",
|
|
18
|
+
"app.lander.features.chatgpt_plus_pro.description": "Log in with OpenAI to use your ChatGPT Plus or Pro account.",
|
|
19
|
+
"app.lander.features.use_any_model.title": "Use any model",
|
|
20
|
+
"app.lander.features.use_any_model.prefix": "Supports 75+ LLM providers through",
|
|
21
|
+
"app.lander.features.use_any_model.suffix": "including local models.",
|
|
22
|
+
"app.lander.images.tui.caption": "opencode TUI with the tokyonight theme",
|
|
23
|
+
"app.lander.images.tui.alt": "opencode TUI with the tokyonight theme",
|
|
24
|
+
"app.lander.images.vscode.caption": "opencode in VS Code",
|
|
25
|
+
"app.lander.images.vscode.alt": "opencode in VS Code",
|
|
26
|
+
"app.lander.images.github.caption": "opencode in GitHub",
|
|
27
|
+
"app.lander.images.github.alt": "opencode in GitHub",
|
|
28
|
+
"share.meta_description": "opencode - The AI coding agent built for the terminal.",
|
|
29
|
+
"share.not_found": "Not found",
|
|
30
|
+
"share.link_to_message": "Link to this message",
|
|
31
|
+
"share.copied": "Copied!",
|
|
32
|
+
"share.copy": "Copy",
|
|
33
|
+
"share.show_more": "Show more",
|
|
34
|
+
"share.show_less": "Show less",
|
|
35
|
+
"share.show_results": "Show results",
|
|
36
|
+
"share.hide_results": "Hide results",
|
|
37
|
+
"share.show_details": "Show details",
|
|
38
|
+
"share.hide_details": "Hide details",
|
|
39
|
+
"share.show_preview": "Show preview",
|
|
40
|
+
"share.hide_preview": "Hide preview",
|
|
41
|
+
"share.show_contents": "Show contents",
|
|
42
|
+
"share.hide_contents": "Hide contents",
|
|
43
|
+
"share.show_output": "Show output",
|
|
44
|
+
"share.hide_output": "Hide output",
|
|
45
|
+
"share.error": "Error",
|
|
46
|
+
"share.waiting_for_messages": "Waiting for messages...",
|
|
47
|
+
"share.status_connected_waiting": "Connected, waiting for messages...",
|
|
48
|
+
"share.status_connecting": "Connecting...",
|
|
49
|
+
"share.status_disconnected": "Disconnected",
|
|
50
|
+
"share.status_reconnecting": "Reconnecting...",
|
|
51
|
+
"share.status_error": "Error",
|
|
52
|
+
"share.status_unknown": "Unknown",
|
|
53
|
+
"share.error_id_not_found": "id not found",
|
|
54
|
+
"share.error_api_url_not_found": "API URL not found",
|
|
55
|
+
"share.error_connection_failed": "Connection failed",
|
|
56
|
+
"share.opencode_version": "opencode version",
|
|
57
|
+
"share.opencode_name": "opencode",
|
|
58
|
+
"share.models": "Models",
|
|
59
|
+
"share.cost": "Cost",
|
|
60
|
+
"share.input_tokens": "Input Tokens",
|
|
61
|
+
"share.output_tokens": "Output Tokens",
|
|
62
|
+
"share.reasoning_tokens": "Reasoning Tokens",
|
|
63
|
+
"share.scroll_to_bottom": "Scroll to bottom",
|
|
64
|
+
"share.attachment": "Attachment",
|
|
65
|
+
"share.thinking": "Thinking",
|
|
66
|
+
"share.thinking_pending": "Thinking...",
|
|
67
|
+
"share.creating_plan": "Creating plan",
|
|
68
|
+
"share.completing_plan": "Completing plan",
|
|
69
|
+
"share.updating_plan": "Updating plan",
|
|
70
|
+
"share.match_one": "match",
|
|
71
|
+
"share.match_other": "matches",
|
|
72
|
+
"share.result_one": "result",
|
|
73
|
+
"share.result_other": "results",
|
|
74
|
+
"share.debug_key": "Key"
|
|
75
|
+
}
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
{
|
|
2
|
+
"app.head.titleSuffix": "Agente de codificación con IA para terminal",
|
|
3
|
+
"app.header.home": "Inicio",
|
|
4
|
+
"app.header.docs": "Documentación",
|
|
5
|
+
"app.footer.issueLink": "¿Encontraste un error? Abre una incidencia",
|
|
6
|
+
"app.footer.discordLink": "Únete a nuestra comunidad de Discord",
|
|
7
|
+
"app.lander.hero.title": "El agente de codificación con IA hecho para terminal.",
|
|
8
|
+
"app.lander.cta.getStarted": "Comenzar",
|
|
9
|
+
"app.lander.features.native_tui.title": "Nativo TUI",
|
|
10
|
+
"app.lander.features.native_tui.description": "Una UI de terminal responsiva, nativa y personalizable.",
|
|
11
|
+
"app.lander.features.lsp_enabled.title": "LSP habilitado",
|
|
12
|
+
"app.lander.features.lsp_enabled.description": "Carga automáticamente los LSP correctos para LLM.",
|
|
13
|
+
"app.lander.features.multi_session.title": "Multisesión",
|
|
14
|
+
"app.lander.features.multi_session.description": "Inicia varios agentes en paralelo en el mismo proyecto.",
|
|
15
|
+
"app.lander.features.shareable_links.title": "Enlaces para compartir",
|
|
16
|
+
"app.lander.features.shareable_links.description": "Comparte un enlace a cualquier sesion para referencia o depuracion.",
|
|
17
|
+
"app.lander.features.github_copilot.description": "Inicia sesion con GitHub para usar tu cuenta Copilot.",
|
|
18
|
+
"app.lander.features.chatgpt_plus_pro.description": "Inicia sesion con OpenAI para usar tu cuenta ChatGPT Plus or Pro.",
|
|
19
|
+
"app.lander.features.use_any_model.title": "Usa cualquier modelo",
|
|
20
|
+
"app.lander.features.use_any_model.prefix": "Admite más de 75 proveedores LLM a través de",
|
|
21
|
+
"app.lander.features.use_any_model.suffix": "incluyendo modelos locales.",
|
|
22
|
+
"app.lander.images.tui.caption": "opencode TUI con el tema tokyonight",
|
|
23
|
+
"app.lander.images.tui.alt": "opencode TUI con el tema tokyonight",
|
|
24
|
+
"app.lander.images.vscode.caption": "opencode en VS Code",
|
|
25
|
+
"app.lander.images.vscode.alt": "opencode en VS Code",
|
|
26
|
+
"app.lander.images.github.caption": "opencode en GitHub",
|
|
27
|
+
"app.lander.images.github.alt": "opencode en GitHub",
|
|
28
|
+
"share.meta_description": "opencode - Agente de codificacion con IA para terminal.",
|
|
29
|
+
"share.not_found": "No encontrado",
|
|
30
|
+
"share.link_to_message": "Enlace a este mensaje",
|
|
31
|
+
"share.copied": "¡Copiado!",
|
|
32
|
+
"share.copy": "Copiar",
|
|
33
|
+
"share.show_more": "Mostrar más",
|
|
34
|
+
"share.show_less": "Mostrar menos",
|
|
35
|
+
"share.show_results": "Mostrar resultados",
|
|
36
|
+
"share.hide_results": "Ocultar resultados",
|
|
37
|
+
"share.show_details": "Mostrar detalles",
|
|
38
|
+
"share.hide_details": "Ocultar detalles",
|
|
39
|
+
"share.show_preview": "Mostrar vista previa",
|
|
40
|
+
"share.hide_preview": "Ocultar vista previa",
|
|
41
|
+
"share.show_contents": "Mostrar contenidos",
|
|
42
|
+
"share.hide_contents": "Ocultar contenidos",
|
|
43
|
+
"share.show_output": "Mostrar salida",
|
|
44
|
+
"share.hide_output": "Ocultar salida",
|
|
45
|
+
"share.error": "Error",
|
|
46
|
+
"share.waiting_for_messages": "Esperando mensajes...",
|
|
47
|
+
"share.status_connected_waiting": "Conectado, esperando mensajes...",
|
|
48
|
+
"share.status_connecting": "Conectando...",
|
|
49
|
+
"share.status_disconnected": "Desconectado",
|
|
50
|
+
"share.status_reconnecting": "Reconectando...",
|
|
51
|
+
"share.status_error": "Error",
|
|
52
|
+
"share.status_unknown": "Desconocido",
|
|
53
|
+
"share.error_id_not_found": "no encontrado",
|
|
54
|
+
"share.error_api_url_not_found": "URL de la API no encontrada",
|
|
55
|
+
"share.error_connection_failed": "Error de conexión",
|
|
56
|
+
"share.opencode_version": "Versión opencode",
|
|
57
|
+
"share.opencode_name": "opencode",
|
|
58
|
+
"share.models": "Modelos",
|
|
59
|
+
"share.cost": "Costo",
|
|
60
|
+
"share.input_tokens": "Tokens de entrada",
|
|
61
|
+
"share.output_tokens": "Tokens de salida",
|
|
62
|
+
"share.reasoning_tokens": "Tokens de razonamiento",
|
|
63
|
+
"share.scroll_to_bottom": "Desplazarse hacia abajo",
|
|
64
|
+
"share.attachment": "Adjunto",
|
|
65
|
+
"share.thinking": "Pensamiento",
|
|
66
|
+
"share.thinking_pending": "Pensando...",
|
|
67
|
+
"share.creating_plan": "Creando plan",
|
|
68
|
+
"share.completing_plan": "Completando el plan",
|
|
69
|
+
"share.updating_plan": "Actualizando el plan",
|
|
70
|
+
"share.match_one": "coincidencia",
|
|
71
|
+
"share.match_other": "coincidencias",
|
|
72
|
+
"share.result_one": "resultado",
|
|
73
|
+
"share.result_other": "resultados",
|
|
74
|
+
"share.debug_key": "Clave"
|
|
75
|
+
}
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
{
|
|
2
|
+
"app.head.titleSuffix": "Agent IA de code conçu pour le terminal",
|
|
3
|
+
"app.header.home": "Accueil",
|
|
4
|
+
"app.header.docs": "Documentation",
|
|
5
|
+
"app.footer.issueLink": "Vous avez trouvé un bug ? Ouvrez une issue",
|
|
6
|
+
"app.footer.discordLink": "Rejoignez notre communauté Discord",
|
|
7
|
+
"app.lander.hero.title": "L'agent de codage AI conçu pour le terminal.",
|
|
8
|
+
"app.lander.cta.getStarted": "Commencer",
|
|
9
|
+
"app.lander.features.native_tui.title": "TUI natif",
|
|
10
|
+
"app.lander.features.native_tui.description": "Une interface terminal native, réactive et personnalisable.",
|
|
11
|
+
"app.lander.features.lsp_enabled.title": "LSP activé",
|
|
12
|
+
"app.lander.features.lsp_enabled.description": "Charge automatiquement les bons LSP pour le LLM.",
|
|
13
|
+
"app.lander.features.multi_session.title": "Sessions multiples",
|
|
14
|
+
"app.lander.features.multi_session.description": "Démarrez plusieurs agents en parallèle sur le même projet.",
|
|
15
|
+
"app.lander.features.shareable_links.title": "Liens partageables",
|
|
16
|
+
"app.lander.features.shareable_links.description": "Partagez un lien vers n’importe quelle session pour référence ou pour déboguer.",
|
|
17
|
+
"app.lander.features.github_copilot.description": "Connectez-vous avec GitHub pour utiliser votre compte Copilot.",
|
|
18
|
+
"app.lander.features.chatgpt_plus_pro.description": "Connectez-vous avec OpenAI pour utiliser votre compte ChatGPT Plus ou Pro.",
|
|
19
|
+
"app.lander.features.use_any_model.title": "Utiliser n'importe quel modèle",
|
|
20
|
+
"app.lander.features.use_any_model.prefix": "Prend en charge plus de 75 fournisseurs LLM via",
|
|
21
|
+
"app.lander.features.use_any_model.suffix": "y compris des modèles locaux.",
|
|
22
|
+
"app.lander.images.tui.caption": "opencode TUI avec le thème tokyonight",
|
|
23
|
+
"app.lander.images.tui.alt": "opencode TUI avec le thème tokyonight",
|
|
24
|
+
"app.lander.images.vscode.caption": "opencode dans VS Code",
|
|
25
|
+
"app.lander.images.vscode.alt": "opencode dans VS Code",
|
|
26
|
+
"app.lander.images.github.caption": "opencode dans GitHub",
|
|
27
|
+
"app.lander.images.github.alt": "opencode dans GitHub",
|
|
28
|
+
"share.meta_description": "opencode - Agent IA de code conçu pour le terminal.",
|
|
29
|
+
"share.not_found": "Pas trouvé",
|
|
30
|
+
"share.link_to_message": "Lien vers ce message",
|
|
31
|
+
"share.copied": "Copié!",
|
|
32
|
+
"share.copy": "Copier",
|
|
33
|
+
"share.show_more": "Afficher plus",
|
|
34
|
+
"share.show_less": "Afficher moins",
|
|
35
|
+
"share.show_results": "Afficher les résultats",
|
|
36
|
+
"share.hide_results": "Masquer les résultats",
|
|
37
|
+
"share.show_details": "Afficher les détails",
|
|
38
|
+
"share.hide_details": "Masquer les détails",
|
|
39
|
+
"share.show_preview": "Afficher l'aperçu",
|
|
40
|
+
"share.hide_preview": "Masquer l'aperçu",
|
|
41
|
+
"share.show_contents": "Afficher le contenu",
|
|
42
|
+
"share.hide_contents": "Masquer le contenu",
|
|
43
|
+
"share.show_output": "Afficher la sortie",
|
|
44
|
+
"share.hide_output": "Masquer la sortie",
|
|
45
|
+
"share.error": "Erreur",
|
|
46
|
+
"share.waiting_for_messages": "En attente de messages...",
|
|
47
|
+
"share.status_connected_waiting": "Connecté, en attente de messages...",
|
|
48
|
+
"share.status_connecting": "Connexion...",
|
|
49
|
+
"share.status_disconnected": "Déconnecté",
|
|
50
|
+
"share.status_reconnecting": "Reconnexion...",
|
|
51
|
+
"share.status_error": "Erreur",
|
|
52
|
+
"share.status_unknown": "Inconnu",
|
|
53
|
+
"share.error_id_not_found": "id introuvable",
|
|
54
|
+
"share.error_api_url_not_found": "API URL introuvable",
|
|
55
|
+
"share.error_connection_failed": "La connexion a échoué",
|
|
56
|
+
"share.opencode_version": "version d'opencode",
|
|
57
|
+
"share.opencode_name": "opencode",
|
|
58
|
+
"share.models": "Modèles",
|
|
59
|
+
"share.cost": "Coût",
|
|
60
|
+
"share.input_tokens": "Tokens d'entrée",
|
|
61
|
+
"share.output_tokens": "Tokens de sortie",
|
|
62
|
+
"share.reasoning_tokens": "Tokens de raisonnement",
|
|
63
|
+
"share.scroll_to_bottom": "Faire défiler vers le bas",
|
|
64
|
+
"share.attachment": "Pièce jointe",
|
|
65
|
+
"share.thinking": "Réflexion",
|
|
66
|
+
"share.thinking_pending": "Réflexion...",
|
|
67
|
+
"share.creating_plan": "Création du plan",
|
|
68
|
+
"share.completing_plan": "Finalisation du plan",
|
|
69
|
+
"share.updating_plan": "Mise à jour du plan",
|
|
70
|
+
"share.match_one": "correspondance",
|
|
71
|
+
"share.match_other": "correspondances",
|
|
72
|
+
"share.result_one": "résultat",
|
|
73
|
+
"share.result_other": "résultats",
|
|
74
|
+
"share.debug_key": "Clé"
|
|
75
|
+
}
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
{
|
|
2
|
+
"app.head.titleSuffix": "Agente AI di coding creato per il terminale",
|
|
3
|
+
"app.header.home": "Inizio",
|
|
4
|
+
"app.header.docs": "Documentazione",
|
|
5
|
+
"app.footer.issueLink": "Hai trovato un bug? Apri una issue",
|
|
6
|
+
"app.footer.discordLink": "Unisciti alla nostra community Discord",
|
|
7
|
+
"app.lander.hero.title": "L'agente AI di coding creato per il terminale.",
|
|
8
|
+
"app.lander.cta.getStarted": "Inizia",
|
|
9
|
+
"app.lander.features.native_tui.title": "TUI nativa",
|
|
10
|
+
"app.lander.features.native_tui.description": "Un'interfaccia per terminale reattiva, nativa e personalizzabile.",
|
|
11
|
+
"app.lander.features.lsp_enabled.title": "LSP abilitato",
|
|
12
|
+
"app.lander.features.lsp_enabled.description": "Carica automaticamente gli LSP corretti per l'LLM.",
|
|
13
|
+
"app.lander.features.multi_session.title": "Multi-sessione",
|
|
14
|
+
"app.lander.features.multi_session.description": "Avvia più agenti in parallelo sullo stesso progetto.",
|
|
15
|
+
"app.lander.features.shareable_links.title": "Link condivisibili",
|
|
16
|
+
"app.lander.features.shareable_links.description": "Condividi un link a qualsiasi sessione per riferimento o debug.",
|
|
17
|
+
"app.lander.features.github_copilot.description": "Accedi con GitHub per usare il tuo account Copilot.",
|
|
18
|
+
"app.lander.features.chatgpt_plus_pro.description": "Accedi con OpenAI per usare il tuo account ChatGPT Plus o Pro.",
|
|
19
|
+
"app.lander.features.use_any_model.title": "Usa qualsiasi modello",
|
|
20
|
+
"app.lander.features.use_any_model.prefix": "Supporta oltre 75 provider LLM tramite",
|
|
21
|
+
"app.lander.features.use_any_model.suffix": "inclusi i modelli locali.",
|
|
22
|
+
"app.lander.images.tui.caption": "TUI di opencode con il tema tokyonight",
|
|
23
|
+
"app.lander.images.tui.alt": "TUI di opencode con il tema tokyonight",
|
|
24
|
+
"app.lander.images.vscode.caption": "opencode su VS Code",
|
|
25
|
+
"app.lander.images.vscode.alt": "opencode su VS Code",
|
|
26
|
+
"app.lander.images.github.caption": "opencode su GitHub",
|
|
27
|
+
"app.lander.images.github.alt": "opencode su GitHub",
|
|
28
|
+
"share.meta_description": "opencode - L'agente AI di coding creato per il terminale.",
|
|
29
|
+
"share.not_found": "Non trovato",
|
|
30
|
+
"share.link_to_message": "Link a questo messaggio",
|
|
31
|
+
"share.copied": "Copiato!",
|
|
32
|
+
"share.copy": "Copia",
|
|
33
|
+
"share.show_more": "Mostra altro",
|
|
34
|
+
"share.show_less": "Mostra meno",
|
|
35
|
+
"share.show_results": "Mostra risultati",
|
|
36
|
+
"share.hide_results": "Nascondi risultati",
|
|
37
|
+
"share.show_details": "Mostra dettagli",
|
|
38
|
+
"share.hide_details": "Nascondi dettagli",
|
|
39
|
+
"share.show_preview": "Mostra anteprima",
|
|
40
|
+
"share.hide_preview": "Nascondi anteprima",
|
|
41
|
+
"share.show_contents": "Mostra contenuto",
|
|
42
|
+
"share.hide_contents": "Nascondi contenuto",
|
|
43
|
+
"share.show_output": "Mostra output",
|
|
44
|
+
"share.hide_output": "Nascondi output",
|
|
45
|
+
"share.error": "Errore",
|
|
46
|
+
"share.waiting_for_messages": "In attesa di messaggi...",
|
|
47
|
+
"share.status_connected_waiting": "Connesso, in attesa di messaggi...",
|
|
48
|
+
"share.status_connecting": "Connessione in corso...",
|
|
49
|
+
"share.status_disconnected": "Disconnesso",
|
|
50
|
+
"share.status_reconnecting": "Riconnessione in corso...",
|
|
51
|
+
"share.status_error": "Errore",
|
|
52
|
+
"share.status_unknown": "Sconosciuto",
|
|
53
|
+
"share.error_id_not_found": "ID non trovato",
|
|
54
|
+
"share.error_api_url_not_found": "URL API non trovato",
|
|
55
|
+
"share.error_connection_failed": "Connessione non riuscita",
|
|
56
|
+
"share.opencode_version": "Versione OpenCode",
|
|
57
|
+
"share.opencode_name": "opencode",
|
|
58
|
+
"share.models": "Modelli",
|
|
59
|
+
"share.cost": "Costo",
|
|
60
|
+
"share.input_tokens": "Token di input",
|
|
61
|
+
"share.output_tokens": "Token di output",
|
|
62
|
+
"share.reasoning_tokens": "Token di ragionamento",
|
|
63
|
+
"share.scroll_to_bottom": "Scorri in basso",
|
|
64
|
+
"share.attachment": "Allegato",
|
|
65
|
+
"share.thinking": "Elaborazione",
|
|
66
|
+
"share.thinking_pending": "Elaborazione...",
|
|
67
|
+
"share.creating_plan": "Creazione piano",
|
|
68
|
+
"share.completing_plan": "Completamento piano",
|
|
69
|
+
"share.updating_plan": "Aggiornamento piano",
|
|
70
|
+
"share.match_one": "corrispondenza",
|
|
71
|
+
"share.match_other": "corrispondenze",
|
|
72
|
+
"share.result_one": "risultato",
|
|
73
|
+
"share.result_other": "risultati",
|
|
74
|
+
"share.debug_key": "Chiave"
|
|
75
|
+
}
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
{
|
|
2
|
+
"app.head.titleSuffix": "ターミナル向けのAIコーディングエージェント",
|
|
3
|
+
"app.header.home": "ホーム",
|
|
4
|
+
"app.header.docs": "ドキュメント",
|
|
5
|
+
"app.footer.issueLink": "バグを見つけたらIssueを作成",
|
|
6
|
+
"app.footer.discordLink": "Discordコミュニティに参加",
|
|
7
|
+
"app.lander.hero.title": "ターミナル向けのAIコーディングエージェント",
|
|
8
|
+
"app.lander.cta.getStarted": "始める",
|
|
9
|
+
"app.lander.features.native_tui.title": "ネイティブ TUI",
|
|
10
|
+
"app.lander.features.native_tui.description": "レスポンシブでネイティブ、テーマ対応のターミナル UI。",
|
|
11
|
+
"app.lander.features.lsp_enabled.title": "LSP対応",
|
|
12
|
+
"app.lander.features.lsp_enabled.description": "LLMに最適なLSPを自動で読み込みます。",
|
|
13
|
+
"app.lander.features.multi_session.title": "マルチセッション",
|
|
14
|
+
"app.lander.features.multi_session.description": "同じプロジェクトで複数のエージェントを並列で起動します。",
|
|
15
|
+
"app.lander.features.shareable_links.title": "共有リンク",
|
|
16
|
+
"app.lander.features.shareable_links.description": "参照やデバッグのためにセッションリンクを共有します。",
|
|
17
|
+
"app.lander.features.github_copilot.description": "Copilotアカウントを使うにはGitHubでログインします。",
|
|
18
|
+
"app.lander.features.chatgpt_plus_pro.description": "ChatGPT PlusまたはProアカウントを使うにはOpenAIでログインします。",
|
|
19
|
+
"app.lander.features.use_any_model.title": "任意のモデルを使う",
|
|
20
|
+
"app.lander.features.use_any_model.prefix": "75以上のLLMプロバイダーをサポート",
|
|
21
|
+
"app.lander.features.use_any_model.suffix": "ローカルモデルを含みます。",
|
|
22
|
+
"app.lander.images.tui.caption": "tokyonightテーマのopencode TUI",
|
|
23
|
+
"app.lander.images.tui.alt": "tokyonightテーマのopencode TUI",
|
|
24
|
+
"app.lander.images.vscode.caption": "VS Codeでのopencode",
|
|
25
|
+
"app.lander.images.vscode.alt": "VS Codeでのopencode",
|
|
26
|
+
"app.lander.images.github.caption": "GitHubでのopencode",
|
|
27
|
+
"app.lander.images.github.alt": "GitHubでのopencode",
|
|
28
|
+
"share.meta_description": "opencode - ターミナル向けのAIコーディングエージェント。",
|
|
29
|
+
"share.not_found": "見つかりません",
|
|
30
|
+
"share.link_to_message": "このメッセージへのリンク",
|
|
31
|
+
"share.copied": "コピーしました!",
|
|
32
|
+
"share.copy": "コピー",
|
|
33
|
+
"share.show_more": "もっと見る",
|
|
34
|
+
"share.show_less": "表示を減らす",
|
|
35
|
+
"share.show_results": "結果を表示",
|
|
36
|
+
"share.hide_results": "結果を非表示",
|
|
37
|
+
"share.show_details": "詳細を表示",
|
|
38
|
+
"share.hide_details": "詳細を非表示",
|
|
39
|
+
"share.show_preview": "プレビューを表示",
|
|
40
|
+
"share.hide_preview": "プレビューを非表示",
|
|
41
|
+
"share.show_contents": "内容を表示",
|
|
42
|
+
"share.hide_contents": "内容を非表示",
|
|
43
|
+
"share.show_output": "出力を表示",
|
|
44
|
+
"share.hide_output": "出力を非表示",
|
|
45
|
+
"share.error": "エラー",
|
|
46
|
+
"share.waiting_for_messages": "メッセージを待機中...",
|
|
47
|
+
"share.status_connected_waiting": "接続済み、メッセージを待機中...",
|
|
48
|
+
"share.status_connecting": "接続中...",
|
|
49
|
+
"share.status_disconnected": "切断されました",
|
|
50
|
+
"share.status_reconnecting": "再接続中...",
|
|
51
|
+
"share.status_error": "エラー",
|
|
52
|
+
"share.status_unknown": "不明",
|
|
53
|
+
"share.error_id_not_found": "idが見つかりません",
|
|
54
|
+
"share.error_api_url_not_found": "API URLが見つかりません",
|
|
55
|
+
"share.error_connection_failed": "接続に失敗しました",
|
|
56
|
+
"share.opencode_version": "opencode バージョン",
|
|
57
|
+
"share.opencode_name": "opencode",
|
|
58
|
+
"share.models": "モデル",
|
|
59
|
+
"share.cost": "コスト",
|
|
60
|
+
"share.input_tokens": "入力トークン",
|
|
61
|
+
"share.output_tokens": "出力トークン",
|
|
62
|
+
"share.reasoning_tokens": "推論トークン",
|
|
63
|
+
"share.scroll_to_bottom": "一番下までスクロール",
|
|
64
|
+
"share.attachment": "添付ファイル",
|
|
65
|
+
"share.thinking": "思考",
|
|
66
|
+
"share.thinking_pending": "思考中...",
|
|
67
|
+
"share.creating_plan": "計画を作成",
|
|
68
|
+
"share.completing_plan": "計画を完了",
|
|
69
|
+
"share.updating_plan": "計画を更新",
|
|
70
|
+
"share.match_one": "一致",
|
|
71
|
+
"share.match_other": "一致",
|
|
72
|
+
"share.result_one": "結果",
|
|
73
|
+
"share.result_other": "結果",
|
|
74
|
+
"share.debug_key": "キー"
|
|
75
|
+
}
|