@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 coding agent",
|
|
3
|
+
"app.header.home": "홈",
|
|
4
|
+
"app.header.docs": "문서",
|
|
5
|
+
"app.footer.issueLink": "버그를 찾으셨나요? 이슈를 열어 주세요",
|
|
6
|
+
"app.footer.discordLink": "Discord 커뮤니티에 참여하세요",
|
|
7
|
+
"app.lander.hero.title": "터미널을 위해 만든 AI coding agent.",
|
|
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": "GitHub 로그인으로 Copilot 계정을 사용할 수 있습니다.",
|
|
18
|
+
"app.lander.features.chatgpt_plus_pro.description": "OpenAI 로그인으로 ChatGPT Plus 또는 Pro를 사용할 수 있습니다.",
|
|
19
|
+
"app.lander.features.use_any_model.title": "모든 모델 사용",
|
|
20
|
+
"app.lander.features.use_any_model.prefix": "75개 이상의 LLM provider를 지원하며",
|
|
21
|
+
"app.lander.features.use_any_model.suffix": "로컬 모델도 포함됩니다.",
|
|
22
|
+
"app.lander.images.tui.caption": "tokyonight theme의 opencode TUI",
|
|
23
|
+
"app.lander.images.tui.alt": "tokyonight theme의 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 - terminal을 위한 AI coding agent.",
|
|
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
|
+
}
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
{
|
|
2
|
+
"app.head.titleSuffix": "AI-kodeagent bygget for terminalen",
|
|
3
|
+
"app.header.home": "Hjem",
|
|
4
|
+
"app.header.docs": "Dokumenter",
|
|
5
|
+
"app.footer.issueLink": "Fant du en feil? Åpne en issue",
|
|
6
|
+
"app.footer.discordLink": "Bli med i Discord-fellesskapet vårt",
|
|
7
|
+
"app.lander.hero.title": "AI-kodeagenten bygget for terminalen.",
|
|
8
|
+
"app.lander.cta.getStarted": "Kom i gang",
|
|
9
|
+
"app.lander.features.native_tui.title": "Innebygd TUI",
|
|
10
|
+
"app.lander.features.native_tui.description": "En responsiv, native og tilpassbar TUI.",
|
|
11
|
+
"app.lander.features.lsp_enabled.title": "LSP aktivert",
|
|
12
|
+
"app.lander.features.lsp_enabled.description": "Laster automatisk de riktige LSP-ene for LLM.",
|
|
13
|
+
"app.lander.features.multi_session.title": "Multi-sesjon",
|
|
14
|
+
"app.lander.features.multi_session.description": "Start flere agenter parallelt på samme prosjekt.",
|
|
15
|
+
"app.lander.features.shareable_links.title": "Delbare lenker",
|
|
16
|
+
"app.lander.features.shareable_links.description": "Del en lenke til en valgfri økt for referanse eller feilsøking.",
|
|
17
|
+
"app.lander.features.github_copilot.description": "Logg på med GitHub for å bruke Copilot-kontoen din.",
|
|
18
|
+
"app.lander.features.chatgpt_plus_pro.description": "Logg på med OpenAI for å bruke ChatGPT Plus- eller Pro-kontoen din.",
|
|
19
|
+
"app.lander.features.use_any_model.title": "Bruk hvilken som helst modell",
|
|
20
|
+
"app.lander.features.use_any_model.prefix": "Støtter 75+ LLM-leverandører gjennom",
|
|
21
|
+
"app.lander.features.use_any_model.suffix": "inkludert 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-kodeagenten bygget for terminalen.",
|
|
29
|
+
"share.not_found": "Ikke funnet",
|
|
30
|
+
"share.link_to_message": "Link til denne meldingen",
|
|
31
|
+
"share.copied": "Kopiert!",
|
|
32
|
+
"share.copy": "Kopier",
|
|
33
|
+
"share.show_more": "Vis mer",
|
|
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 innhold",
|
|
42
|
+
"share.hide_contents": "Skjul innholdet",
|
|
43
|
+
"share.show_output": "Vis utdata",
|
|
44
|
+
"share.hide_output": "Skjul utdata",
|
|
45
|
+
"share.error": "Feil",
|
|
46
|
+
"share.waiting_for_messages": "Venter på meldinger...",
|
|
47
|
+
"share.status_connected_waiting": "Tilkoblet, venter på meldinger...",
|
|
48
|
+
"share.status_connecting": "Kobler til...",
|
|
49
|
+
"share.status_disconnected": "Koblet fra",
|
|
50
|
+
"share.status_reconnecting": "Kobler til på nytt...",
|
|
51
|
+
"share.status_error": "Feil",
|
|
52
|
+
"share.status_unknown": "Ukjent",
|
|
53
|
+
"share.error_id_not_found": "id ikke funnet",
|
|
54
|
+
"share.error_api_url_not_found": "API URL ikke funnet",
|
|
55
|
+
"share.error_connection_failed": "Tilkobling mislyktes",
|
|
56
|
+
"share.opencode_version": "opencode versjon",
|
|
57
|
+
"share.opencode_name": "opencode",
|
|
58
|
+
"share.models": "Modeller",
|
|
59
|
+
"share.cost": "Kostnad",
|
|
60
|
+
"share.input_tokens": "Inndata-tokens",
|
|
61
|
+
"share.output_tokens": "Utdata-tokens",
|
|
62
|
+
"share.reasoning_tokens": "Resonneringstokens",
|
|
63
|
+
"share.scroll_to_bottom": "Rull til bunnen",
|
|
64
|
+
"share.attachment": "Vedlegg",
|
|
65
|
+
"share.thinking": "Tenker",
|
|
66
|
+
"share.thinking_pending": "Tenker...",
|
|
67
|
+
"share.creating_plan": "Oppretter plan",
|
|
68
|
+
"share.completing_plan": "Fullfører plan",
|
|
69
|
+
"share.updating_plan": "Oppdaterer plan",
|
|
70
|
+
"share.match_one": "treff",
|
|
71
|
+
"share.match_other": "treff",
|
|
72
|
+
"share.result_one": "resultat",
|
|
73
|
+
"share.result_other": "resultater",
|
|
74
|
+
"share.debug_key": "Nøkkel"
|
|
75
|
+
}
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
{
|
|
2
|
+
"app.head.titleSuffix": "Agent kodujący AI zbudowany dla terminala",
|
|
3
|
+
"app.header.home": "Strona główna",
|
|
4
|
+
"app.header.docs": "Dokumentacja",
|
|
5
|
+
"app.footer.issueLink": "Znalazłeś błąd? Otwórz issue",
|
|
6
|
+
"app.footer.discordLink": "Dołącz do naszej społeczności Discord",
|
|
7
|
+
"app.lander.hero.title": "Agent kodujący AI zbudowany dla terminala.",
|
|
8
|
+
"app.lander.cta.getStarted": "Rozpocznij",
|
|
9
|
+
"app.lander.features.native_tui.title": "Natywny TUI",
|
|
10
|
+
"app.lander.features.native_tui.description": "Responsywny, natywny, tematyczny interfejs terminala.",
|
|
11
|
+
"app.lander.features.lsp_enabled.title": "Włączone LSP",
|
|
12
|
+
"app.lander.features.lsp_enabled.description": "Automatycznie ładuje odpowiednie LSP dla LLM.",
|
|
13
|
+
"app.lander.features.multi_session.title": "Wiele sesji",
|
|
14
|
+
"app.lander.features.multi_session.description": "Uruchom wielu agentów równolegle w jednym projekcie.",
|
|
15
|
+
"app.lander.features.shareable_links.title": "Udostępniane linki",
|
|
16
|
+
"app.lander.features.shareable_links.description": "Udostępnij link do dowolnych sesji w celach informacyjnych lub do debugowania.",
|
|
17
|
+
"app.lander.features.github_copilot.description": "Zaloguj się w GitHub, aby korzystać ze swojego konta Copilot.",
|
|
18
|
+
"app.lander.features.chatgpt_plus_pro.description": "Zaloguj się za pomocą OpenAI, aby korzystać ze swojego konta ChatGPT Plus lub Pro.",
|
|
19
|
+
"app.lander.features.use_any_model.title": "Użyj dowolnego modelu",
|
|
20
|
+
"app.lander.features.use_any_model.prefix": "Obsługuje ponad 75 dostawców LLM przez",
|
|
21
|
+
"app.lander.features.use_any_model.suffix": "w tym modele lokalne.",
|
|
22
|
+
"app.lander.images.tui.caption": "opencode TUI z motywem tokyonight",
|
|
23
|
+
"app.lander.images.tui.alt": "opencode TUI z motywem tokyonight",
|
|
24
|
+
"app.lander.images.vscode.caption": "opencode w VS Code",
|
|
25
|
+
"app.lander.images.vscode.alt": "opencode w VS Code",
|
|
26
|
+
"app.lander.images.github.caption": "opencode w GitHub",
|
|
27
|
+
"app.lander.images.github.alt": "opencode w GitHub",
|
|
28
|
+
"share.meta_description": "opencode - agent kodujący AI dla terminala.",
|
|
29
|
+
"share.not_found": "Nie znaleziono",
|
|
30
|
+
"share.link_to_message": "Link do tej wiadomości",
|
|
31
|
+
"share.copied": "Skopiowano!",
|
|
32
|
+
"share.copy": "Kopiuj",
|
|
33
|
+
"share.show_more": "Pokaż więcej",
|
|
34
|
+
"share.show_less": "Pokaż mniej",
|
|
35
|
+
"share.show_results": "Pokaż wyniki",
|
|
36
|
+
"share.hide_results": "Ukryj wyniki",
|
|
37
|
+
"share.show_details": "Pokaż szczegóły",
|
|
38
|
+
"share.hide_details": "Ukryj szczegóły",
|
|
39
|
+
"share.show_preview": "Pokaż podgląd",
|
|
40
|
+
"share.hide_preview": "Ukryj podgląd",
|
|
41
|
+
"share.show_contents": "Pokaż zawartość",
|
|
42
|
+
"share.hide_contents": "Ukryj zawartość",
|
|
43
|
+
"share.show_output": "Pokaż dane wyjściowe",
|
|
44
|
+
"share.hide_output": "Ukryj dane wyjściowe",
|
|
45
|
+
"share.error": "Błąd",
|
|
46
|
+
"share.waiting_for_messages": "Oczekiwanie na wiadomości...",
|
|
47
|
+
"share.status_connected_waiting": "Połączono, czekam na wiadomości...",
|
|
48
|
+
"share.status_connecting": "Łączenie...",
|
|
49
|
+
"share.status_disconnected": "Rozłączono",
|
|
50
|
+
"share.status_reconnecting": "Ponowne łączenie...",
|
|
51
|
+
"share.status_error": "Błąd",
|
|
52
|
+
"share.status_unknown": "Nieznany",
|
|
53
|
+
"share.error_id_not_found": "Nie znaleziono identyfikatora",
|
|
54
|
+
"share.error_api_url_not_found": "Nie znaleziono API URL",
|
|
55
|
+
"share.error_connection_failed": "Połączenie nie powiodło się",
|
|
56
|
+
"share.opencode_version": "Wersja opencode",
|
|
57
|
+
"share.opencode_name": "opencode",
|
|
58
|
+
"share.models": "Modele",
|
|
59
|
+
"share.cost": "Koszt",
|
|
60
|
+
"share.input_tokens": "Tokeny wejściowe",
|
|
61
|
+
"share.output_tokens": "Tokeny wyjściowe",
|
|
62
|
+
"share.reasoning_tokens": "Tokeny wnioskowania",
|
|
63
|
+
"share.scroll_to_bottom": "Przewiń w dół",
|
|
64
|
+
"share.attachment": "Załącznik",
|
|
65
|
+
"share.thinking": "Myślenie",
|
|
66
|
+
"share.thinking_pending": "Myślenie...",
|
|
67
|
+
"share.creating_plan": "Tworzenie planu",
|
|
68
|
+
"share.completing_plan": "Uzupełnianie planu",
|
|
69
|
+
"share.updating_plan": "Aktualizacja planu",
|
|
70
|
+
"share.match_one": "dopasowanie",
|
|
71
|
+
"share.match_other": "dopasowania",
|
|
72
|
+
"share.result_one": "wynik",
|
|
73
|
+
"share.result_other": "wyniki",
|
|
74
|
+
"share.debug_key": "Klawisz"
|
|
75
|
+
}
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
{
|
|
2
|
+
"app.head.titleSuffix": "Agente de codificação de IA construído para o terminal",
|
|
3
|
+
"app.header.home": "Início",
|
|
4
|
+
"app.header.docs": "Documentação",
|
|
5
|
+
"app.footer.issueLink": "Encontrou um bug? Abra uma issue",
|
|
6
|
+
"app.footer.discordLink": "Participe da nossa comunidade no Discord",
|
|
7
|
+
"app.lander.hero.title": "O agente de codificação de IA construído para o terminal.",
|
|
8
|
+
"app.lander.cta.getStarted": "Começar",
|
|
9
|
+
"app.lander.features.native_tui.title": "TUI nativo",
|
|
10
|
+
"app.lander.features.native_tui.description": "Uma interface de terminal nativa, responsiva e com tema personalizável.",
|
|
11
|
+
"app.lander.features.lsp_enabled.title": "LSP habilitado",
|
|
12
|
+
"app.lander.features.lsp_enabled.description": "Carrega automaticamente os LSPs corretos para o LLM.",
|
|
13
|
+
"app.lander.features.multi_session.title": "Multi-sessão",
|
|
14
|
+
"app.lander.features.multi_session.description": "Inicie vários agentes em paralelo no mesmo projeto.",
|
|
15
|
+
"app.lander.features.shareable_links.title": "Links compartilháveis",
|
|
16
|
+
"app.lander.features.shareable_links.description": "Compartilhe um link para qualquer sessão para referência ou para depuração.",
|
|
17
|
+
"app.lander.features.github_copilot.description": "Faça login com o GitHub para usar sua conta do Copilot.",
|
|
18
|
+
"app.lander.features.chatgpt_plus_pro.description": "Faça login com a OpenAI para usar sua conta do ChatGPT Plus ou Pro.",
|
|
19
|
+
"app.lander.features.use_any_model.title": "Use qualquer modelo",
|
|
20
|
+
"app.lander.features.use_any_model.prefix": "Suporta mais de 75 provedores de LLM através de",
|
|
21
|
+
"app.lander.features.use_any_model.suffix": "incluindo modelos locais.",
|
|
22
|
+
"app.lander.images.tui.caption": "opencode TUI com o tema tokyonight",
|
|
23
|
+
"app.lander.images.tui.alt": "opencode TUI com o tema tokyonight",
|
|
24
|
+
"app.lander.images.vscode.caption": "opencode no VS Code",
|
|
25
|
+
"app.lander.images.vscode.alt": "opencode no VS Code",
|
|
26
|
+
"app.lander.images.github.caption": "opencode no GitHub",
|
|
27
|
+
"app.lander.images.github.alt": "opencode no GitHub",
|
|
28
|
+
"share.meta_description": "opencode - O agente de codificação de IA construído para o terminal.",
|
|
29
|
+
"share.not_found": "Não encontrado",
|
|
30
|
+
"share.link_to_message": "Link para esta mensagem",
|
|
31
|
+
"share.copied": "Copiado!",
|
|
32
|
+
"share.copy": "Copiar",
|
|
33
|
+
"share.show_more": "Mostrar mais",
|
|
34
|
+
"share.show_less": "Mostrar menos",
|
|
35
|
+
"share.show_results": "Mostrar resultados",
|
|
36
|
+
"share.hide_results": "Ocultar resultados",
|
|
37
|
+
"share.show_details": "Mostrar detalhes",
|
|
38
|
+
"share.hide_details": "Ocultar detalhes",
|
|
39
|
+
"share.show_preview": "Mostrar pré-visualização",
|
|
40
|
+
"share.hide_preview": "Ocultar pré-visualização",
|
|
41
|
+
"share.show_contents": "Mostrar conteúdos",
|
|
42
|
+
"share.hide_contents": "Ocultar conteúdos",
|
|
43
|
+
"share.show_output": "Mostrar saída",
|
|
44
|
+
"share.hide_output": "Ocultar saída",
|
|
45
|
+
"share.error": "Erro",
|
|
46
|
+
"share.waiting_for_messages": "Aguardando mensagens...",
|
|
47
|
+
"share.status_connected_waiting": "Conectado, aguardando mensagens...",
|
|
48
|
+
"share.status_connecting": "Conectando...",
|
|
49
|
+
"share.status_disconnected": "Desconectado",
|
|
50
|
+
"share.status_reconnecting": "Reconectando...",
|
|
51
|
+
"share.status_error": "Erro",
|
|
52
|
+
"share.status_unknown": "Desconhecido",
|
|
53
|
+
"share.error_id_not_found": "id não encontrado",
|
|
54
|
+
"share.error_api_url_not_found": "API URL não encontrada",
|
|
55
|
+
"share.error_connection_failed": "Falha na conexão",
|
|
56
|
+
"share.opencode_version": "versão do opencode",
|
|
57
|
+
"share.opencode_name": "opencode",
|
|
58
|
+
"share.models": "Modelos",
|
|
59
|
+
"share.cost": "Custo",
|
|
60
|
+
"share.input_tokens": "Tokens de Entrada",
|
|
61
|
+
"share.output_tokens": "Tokens de Saída",
|
|
62
|
+
"share.reasoning_tokens": "Tokens de Raciocínio",
|
|
63
|
+
"share.scroll_to_bottom": "Rolar para baixo",
|
|
64
|
+
"share.attachment": "Anexo",
|
|
65
|
+
"share.thinking": "Pensando",
|
|
66
|
+
"share.thinking_pending": "Pensando...",
|
|
67
|
+
"share.creating_plan": "Criando plano",
|
|
68
|
+
"share.completing_plan": "Concluindo plano",
|
|
69
|
+
"share.updating_plan": "Atualizando plano",
|
|
70
|
+
"share.match_one": "correspondência",
|
|
71
|
+
"share.match_other": "correspondências",
|
|
72
|
+
"share.result_one": "resultado",
|
|
73
|
+
"share.result_other": "resultados",
|
|
74
|
+
"share.debug_key": "Chave"
|
|
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": "Отзывчивый нативный интерфейс терминала с поддержкой тем.",
|
|
11
|
+
"app.lander.features.lsp_enabled.title": "Поддержка LSP",
|
|
12
|
+
"app.lander.features.lsp_enabled.description": "Автоматически загружает подходящие LSP для LLM.",
|
|
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": "Войдите через GitHub, чтобы использовать аккаунт Copilot.",
|
|
18
|
+
"app.lander.features.chatgpt_plus_pro.description": "Войдите через OpenAI, чтобы использовать аккаунт ChatGPT Plus или Pro.",
|
|
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": "opencode TUI с темой tokyonight",
|
|
23
|
+
"app.lander.images.tui.alt": "opencode TUI с темой tokyonight",
|
|
24
|
+
"app.lander.images.vscode.caption": "opencode в VS Code",
|
|
25
|
+
"app.lander.images.vscode.alt": "opencode в VS Code",
|
|
26
|
+
"app.lander.images.github.caption": "opencode в GitHub",
|
|
27
|
+
"app.lander.images.github.alt": "opencode в GitHub",
|
|
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
|
+
}
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
{
|
|
2
|
+
"app.head.titleSuffix": "เอเจนต์เขียนโค้ด AI ที่สร้างมาเพื่อ terminal",
|
|
3
|
+
"app.header.home": "หน้าหลัก",
|
|
4
|
+
"app.header.docs": "เอกสาร",
|
|
5
|
+
"app.footer.issueLink": "พบข้อผิดพลาดหรือไม่? เปิด issue",
|
|
6
|
+
"app.footer.discordLink": "เข้าร่วมชุมชน Discord ของเรา",
|
|
7
|
+
"app.lander.hero.title": "เอเจนต์เขียนโค้ด AI ที่สร้างมาเพื่อ terminal",
|
|
8
|
+
"app.lander.cta.getStarted": "เริ่มต้นใช้งาน",
|
|
9
|
+
"app.lander.features.native_tui.title": "TUI แบบเนทีฟ",
|
|
10
|
+
"app.lander.features.native_tui.description": "อินเทอร์เฟซ terminal แบบเนทีฟที่ตอบสนองไวและปรับธีมได้",
|
|
11
|
+
"app.lander.features.lsp_enabled.title": "รองรับ LSP",
|
|
12
|
+
"app.lander.features.lsp_enabled.description": "โหลด LSP ที่เหมาะสมสำหรับ LLM โดยอัตโนมัติ",
|
|
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": "เข้าสู่ระบบด้วย GitHub เพื่อใช้บัญชี Copilot ของคุณ",
|
|
18
|
+
"app.lander.features.chatgpt_plus_pro.description": "เข้าสู่ระบบด้วย OpenAI เพื่อใช้บัญชี ChatGPT Plus หรือ Pro ของคุณ",
|
|
19
|
+
"app.lander.features.use_any_model.title": "ใช้ได้ทุกโมเดล",
|
|
20
|
+
"app.lander.features.use_any_model.prefix": "รองรับผู้ให้บริการ LLM มากกว่า 75 รายผ่าน",
|
|
21
|
+
"app.lander.features.use_any_model.suffix": "รวมถึงโมเดลภายในเครื่อง",
|
|
22
|
+
"app.lander.images.tui.caption": "opencode TUI พร้อมธีม tokyonight",
|
|
23
|
+
"app.lander.images.tui.alt": "opencode TUI พร้อมธีม tokyonight",
|
|
24
|
+
"app.lander.images.vscode.caption": "opencode ใน VS Code",
|
|
25
|
+
"app.lander.images.vscode.alt": "opencode ใน VS Code",
|
|
26
|
+
"app.lander.images.github.caption": "opencode ใน GitHub",
|
|
27
|
+
"app.lander.images.github.alt": "opencode ใน GitHub",
|
|
28
|
+
"share.meta_description": "opencode - เอเจนต์เขียนโค้ด AI ที่สร้างมาเพื่อ terminal",
|
|
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
|
+
}
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
{
|
|
2
|
+
"app.head.titleSuffix": "Terminal için AI kodlama asistanı",
|
|
3
|
+
"app.header.home": "Ana sayfa",
|
|
4
|
+
"app.header.docs": "Dokümanlar",
|
|
5
|
+
"app.footer.issueLink": "Bir hata mı buldunuz? Issue açın",
|
|
6
|
+
"app.footer.discordLink": "Discord topluluğumuza katılın",
|
|
7
|
+
"app.lander.hero.title": "Terminal için üretilmiş AI kodlama ajanı.",
|
|
8
|
+
"app.lander.cta.getStarted": "Başlayın",
|
|
9
|
+
"app.lander.features.native_tui.title": "Yerel TUI",
|
|
10
|
+
"app.lander.features.native_tui.description": "Hızlı, yerel ve tema uyumlu terminal arayüzü.",
|
|
11
|
+
"app.lander.features.lsp_enabled.title": "LSP etkin",
|
|
12
|
+
"app.lander.features.lsp_enabled.description": "LLM için doğru LSP'leri otomatik yükler.",
|
|
13
|
+
"app.lander.features.multi_session.title": "Çoklu oturum",
|
|
14
|
+
"app.lander.features.multi_session.description": "Aynı projede birden fazla agent'ı paralel başlatın.",
|
|
15
|
+
"app.lander.features.shareable_links.title": "Paylaşılabilir bağlantılar",
|
|
16
|
+
"app.lander.features.shareable_links.description": "Referans veya hata ayıklama için oturum bağlantısı paylaşın.",
|
|
17
|
+
"app.lander.features.github_copilot.description": "Copilot hesabınızı kullanmak için GitHub ile giriş yapın.",
|
|
18
|
+
"app.lander.features.chatgpt_plus_pro.description": "ChatGPT Plus veya Pro hesabınızı kullanmak için OpenAI ile giriş yapın.",
|
|
19
|
+
"app.lander.features.use_any_model.title": "Herhangi bir modeli kullanın",
|
|
20
|
+
"app.lander.features.use_any_model.prefix": "75+ LLM sağlayıcısını destekler",
|
|
21
|
+
"app.lander.features.use_any_model.suffix": "yerel modeller dahil.",
|
|
22
|
+
"app.lander.images.tui.caption": "tokyonight temasıyla opencode TUI",
|
|
23
|
+
"app.lander.images.tui.alt": "tokyonight temasıyla opencode TUI",
|
|
24
|
+
"app.lander.images.vscode.caption": "VS Code içinde opencode",
|
|
25
|
+
"app.lander.images.vscode.alt": "VS Code içinde opencode",
|
|
26
|
+
"app.lander.images.github.caption": "GitHub'da opencode",
|
|
27
|
+
"app.lander.images.github.alt": "GitHub'da opencode",
|
|
28
|
+
"share.meta_description": "opencode - Terminal için üretilmiş AI kodlama aracı.",
|
|
29
|
+
"share.not_found": "Bulunamadı",
|
|
30
|
+
"share.link_to_message": "Bu mesaja bağlantı",
|
|
31
|
+
"share.copied": "Kopyalandı!",
|
|
32
|
+
"share.copy": "Kopyala",
|
|
33
|
+
"share.show_more": "Daha fazla göster",
|
|
34
|
+
"share.show_less": "Daha az göster",
|
|
35
|
+
"share.show_results": "Sonuçları göster",
|
|
36
|
+
"share.hide_results": "Sonuçları gizle",
|
|
37
|
+
"share.show_details": "Ayrıntıları göster",
|
|
38
|
+
"share.hide_details": "Ayrıntıları gizle",
|
|
39
|
+
"share.show_preview": "Önizlemeyi göster",
|
|
40
|
+
"share.hide_preview": "Önizlemeyi gizle",
|
|
41
|
+
"share.show_contents": "İçeriği göster",
|
|
42
|
+
"share.hide_contents": "İçeriği gizle",
|
|
43
|
+
"share.show_output": "Çıktıyı göster",
|
|
44
|
+
"share.hide_output": "Çıktıyı gizle",
|
|
45
|
+
"share.error": "Hata",
|
|
46
|
+
"share.waiting_for_messages": "Mesajlar bekleniyor...",
|
|
47
|
+
"share.status_connected_waiting": "Bağlandı, mesajlar bekleniyor...",
|
|
48
|
+
"share.status_connecting": "Bağlanıyor...",
|
|
49
|
+
"share.status_disconnected": "Bağlantı kesildi",
|
|
50
|
+
"share.status_reconnecting": "Yeniden bağlanıyor...",
|
|
51
|
+
"share.status_error": "Hata",
|
|
52
|
+
"share.status_unknown": "Bilinmiyor",
|
|
53
|
+
"share.error_id_not_found": "id bulunamadı",
|
|
54
|
+
"share.error_api_url_not_found": "API URL bulunamadı",
|
|
55
|
+
"share.error_connection_failed": "Bağlantı başarısız",
|
|
56
|
+
"share.opencode_version": "opencode sürümü",
|
|
57
|
+
"share.opencode_name": "opencode",
|
|
58
|
+
"share.models": "Modeller",
|
|
59
|
+
"share.cost": "Maliyet",
|
|
60
|
+
"share.input_tokens": "Girdi Token'ları",
|
|
61
|
+
"share.output_tokens": "Çıktı Token'ları",
|
|
62
|
+
"share.reasoning_tokens": "Akıl Yürütme Token'ları",
|
|
63
|
+
"share.scroll_to_bottom": "En alta kaydır",
|
|
64
|
+
"share.attachment": "Ek",
|
|
65
|
+
"share.thinking": "Düşünüyor",
|
|
66
|
+
"share.thinking_pending": "Düşünüyor...",
|
|
67
|
+
"share.creating_plan": "Plan oluşturuluyor",
|
|
68
|
+
"share.completing_plan": "Plan tamamlanıyor",
|
|
69
|
+
"share.updating_plan": "Plan güncelleniyor",
|
|
70
|
+
"share.match_one": "eşleşme",
|
|
71
|
+
"share.match_other": "eşleşme",
|
|
72
|
+
"share.result_one": "sonuç",
|
|
73
|
+
"share.result_other": "sonuç",
|
|
74
|
+
"share.debug_key": "Anahtar"
|
|
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": "响应迅速、原生且可主题化的 terminal 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": "使用 GitHub 登录并使用你的 Copilot 账号。",
|
|
18
|
+
"app.lander.features.chatgpt_plus_pro.description": "使用 OpenAI 登录并使用你的 ChatGPT Plus 或 Pro 账号。",
|
|
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": "opencode TUI(tokyonight 主题)",
|
|
23
|
+
"app.lander.images.tui.alt": "opencode TUI(tokyonight 主题)",
|
|
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": "输入 Tokens",
|
|
61
|
+
"share.output_tokens": "输出 Tokens",
|
|
62
|
+
"share.reasoning_tokens": "推理 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
|
+
}
|