wyxrouter 0.4.71
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/CHANGELOG.md +222 -0
- package/LICENSE +21 -0
- package/README.md +96 -0
- package/README.zh-CN.md +1311 -0
- package/assets/pixel-router-2d.png +0 -0
- package/cli/LICENSE +42 -0
- package/cli/README.md +125 -0
- package/cli/app/package.json +58 -0
- package/cli/cli.js +806 -0
- package/cli/package.json +48 -0
- package/i18n/README.ja-JP.md +1209 -0
- package/i18n/README.ru.md +1311 -0
- package/i18n/README.vi.md +1310 -0
- package/i18n/README.zh-CN.md +1306 -0
- package/images/9router.png +0 -0
- package/jsconfig.json +12 -0
- package/next.config.mjs +71 -0
- package/open-sse/config/appConstants.js +203 -0
- package/open-sse/config/codexInstructions.js +119 -0
- package/open-sse/config/constants.js +4 -0
- package/open-sse/config/defaultThinkingSignature.js +12 -0
- package/open-sse/config/errorConfig.js +85 -0
- package/open-sse/config/googleTtsLanguages.js +62 -0
- package/open-sse/config/kiroConstants.js +322 -0
- package/open-sse/config/models.js +13 -0
- package/open-sse/config/ollamaModels.js +19 -0
- package/open-sse/config/providerModels.js +944 -0
- package/open-sse/config/providers.js +458 -0
- package/open-sse/config/runtimeConfig.js +72 -0
- package/open-sse/config/ttsModels.js +129 -0
- package/open-sse/executors/antigravity.js +504 -0
- package/open-sse/executors/azure.js +57 -0
- package/open-sse/executors/base.js +185 -0
- package/open-sse/executors/codex.js +469 -0
- package/open-sse/executors/commandcode.js +88 -0
- package/open-sse/executors/cursor.js +795 -0
- package/open-sse/executors/default.js +497 -0
- package/open-sse/executors/gemini-cli.js +89 -0
- package/open-sse/executors/github.js +379 -0
- package/open-sse/executors/grok-web.js +345 -0
- package/open-sse/executors/iflow.js +108 -0
- package/open-sse/executors/index.js +75 -0
- package/open-sse/executors/kiro.js +508 -0
- package/open-sse/executors/ollama-local.js +14 -0
- package/open-sse/executors/opencode-go.js +41 -0
- package/open-sse/executors/opencode.js +32 -0
- package/open-sse/executors/perplexity-web.js +507 -0
- package/open-sse/executors/qoder.js +450 -0
- package/open-sse/executors/qwen.js +129 -0
- package/open-sse/executors/vertex.js +131 -0
- package/open-sse/executors/xiaomi-tokenplan.js +19 -0
- package/open-sse/handlers/chatCore/nonStreamingHandler.js +230 -0
- package/open-sse/handlers/chatCore/requestDetail.js +102 -0
- package/open-sse/handlers/chatCore/sseToJsonHandler.js +231 -0
- package/open-sse/handlers/chatCore/streamingHandler.js +103 -0
- package/open-sse/handlers/chatCore.js +287 -0
- package/open-sse/handlers/embeddingProviders/_base.js +4 -0
- package/open-sse/handlers/embeddingProviders/gemini.js +54 -0
- package/open-sse/handlers/embeddingProviders/index.js +23 -0
- package/open-sse/handlers/embeddingProviders/openai.js +39 -0
- package/open-sse/handlers/embeddingProviders/openaiCompatNode.js +13 -0
- package/open-sse/handlers/embeddingsCore.js +126 -0
- package/open-sse/handlers/fetch/index.js +237 -0
- package/open-sse/handlers/imageGenerationCore.js +189 -0
- package/open-sse/handlers/imageProviders/_base.js +31 -0
- package/open-sse/handlers/imageProviders/blackForestLabs.js +43 -0
- package/open-sse/handlers/imageProviders/cloudflareAi.js +178 -0
- package/open-sse/handlers/imageProviders/codex.js +198 -0
- package/open-sse/handlers/imageProviders/comfyui.js +8 -0
- package/open-sse/handlers/imageProviders/falAi.js +41 -0
- package/open-sse/handlers/imageProviders/gemini.js +25 -0
- package/open-sse/handlers/imageProviders/huggingface.js +22 -0
- package/open-sse/handlers/imageProviders/index.js +40 -0
- package/open-sse/handlers/imageProviders/nanobanana.js +58 -0
- package/open-sse/handlers/imageProviders/openai.js +40 -0
- package/open-sse/handlers/imageProviders/runwayml.js +47 -0
- package/open-sse/handlers/imageProviders/sdwebui.js +17 -0
- package/open-sse/handlers/imageProviders/stabilityAi.js +34 -0
- package/open-sse/handlers/responsesHandler.js +103 -0
- package/open-sse/handlers/search/callers.js +371 -0
- package/open-sse/handlers/search/chatSearch.js +409 -0
- package/open-sse/handlers/search/index.js +201 -0
- package/open-sse/handlers/search/normalizers.js +223 -0
- package/open-sse/handlers/sttCore.js +194 -0
- package/open-sse/handlers/ttsCore.js +74 -0
- package/open-sse/handlers/ttsProviders/_base.js +39 -0
- package/open-sse/handlers/ttsProviders/edgeTts.js +89 -0
- package/open-sse/handlers/ttsProviders/elevenlabs.js +48 -0
- package/open-sse/handlers/ttsProviders/gemini.js +117 -0
- package/open-sse/handlers/ttsProviders/genericFormats.js +169 -0
- package/open-sse/handlers/ttsProviders/googleTts.js +54 -0
- package/open-sse/handlers/ttsProviders/index.js +50 -0
- package/open-sse/handlers/ttsProviders/localDevice.js +87 -0
- package/open-sse/handlers/ttsProviders/minimax.js +59 -0
- package/open-sse/handlers/ttsProviders/openai.js +30 -0
- package/open-sse/handlers/ttsProviders/openrouter.js +70 -0
- package/open-sse/index.js +82 -0
- package/open-sse/rtk/applyFilter.js +15 -0
- package/open-sse/rtk/autodetect.js +111 -0
- package/open-sse/rtk/caveman.js +100 -0
- package/open-sse/rtk/cavemanPrompts.js +78 -0
- package/open-sse/rtk/constants.js +55 -0
- package/open-sse/rtk/filters/buildOutput.js +127 -0
- package/open-sse/rtk/filters/dedupLog.js +44 -0
- package/open-sse/rtk/filters/find.js +49 -0
- package/open-sse/rtk/filters/gitDiff.js +92 -0
- package/open-sse/rtk/filters/gitStatus.js +117 -0
- package/open-sse/rtk/filters/grep.js +48 -0
- package/open-sse/rtk/filters/ls.js +79 -0
- package/open-sse/rtk/filters/readNumbered.js +27 -0
- package/open-sse/rtk/filters/searchList.js +52 -0
- package/open-sse/rtk/filters/smartTruncate.js +15 -0
- package/open-sse/rtk/filters/tree.js +32 -0
- package/open-sse/rtk/index.js +155 -0
- package/open-sse/rtk/registry.js +38 -0
- package/open-sse/services/accountFallback.js +238 -0
- package/open-sse/services/combo.js +198 -0
- package/open-sse/services/compact.js +71 -0
- package/open-sse/services/kiroModels.js +332 -0
- package/open-sse/services/model.js +261 -0
- package/open-sse/services/oauthCredentialManager.js +151 -0
- package/open-sse/services/projectId.js +306 -0
- package/open-sse/services/provider.js +356 -0
- package/open-sse/services/qoderModels.js +214 -0
- package/open-sse/services/tokenRefresh.js +939 -0
- package/open-sse/services/usage.js +1496 -0
- package/open-sse/transformer/responsesTransformer.js +439 -0
- package/open-sse/transformer/streamToJsonConverter.js +103 -0
- package/open-sse/translator/formats.js +36 -0
- package/open-sse/translator/helpers/claudeHelper.js +216 -0
- package/open-sse/translator/helpers/geminiHelper.js +372 -0
- package/open-sse/translator/helpers/imageHelper.js +34 -0
- package/open-sse/translator/helpers/maxTokensHelper.js +27 -0
- package/open-sse/translator/helpers/openaiHelper.js +130 -0
- package/open-sse/translator/helpers/responsesApiHelper.js +139 -0
- package/open-sse/translator/helpers/toolCallHelper.js +148 -0
- package/open-sse/translator/index.js +251 -0
- package/open-sse/translator/request/antigravity-to-openai.js +229 -0
- package/open-sse/translator/request/claude-to-openai.js +232 -0
- package/open-sse/translator/request/gemini-to-openai.js +147 -0
- package/open-sse/translator/request/openai-responses.js +318 -0
- package/open-sse/translator/request/openai-to-claude.js +401 -0
- package/open-sse/translator/request/openai-to-commandcode.js +170 -0
- package/open-sse/translator/request/openai-to-cursor.js +183 -0
- package/open-sse/translator/request/openai-to-gemini.js +470 -0
- package/open-sse/translator/request/openai-to-kiro.js +629 -0
- package/open-sse/translator/request/openai-to-kiro.old.js +278 -0
- package/open-sse/translator/request/openai-to-ollama.js +192 -0
- package/open-sse/translator/request/openai-to-vertex.js +42 -0
- package/open-sse/translator/response/claude-to-openai.js +206 -0
- package/open-sse/translator/response/commandcode-to-openai.js +197 -0
- package/open-sse/translator/response/cursor-to-openai.js +30 -0
- package/open-sse/translator/response/gemini-to-openai.js +245 -0
- package/open-sse/translator/response/kiro-to-openai.js +195 -0
- package/open-sse/translator/response/ollama-to-openai.js +152 -0
- package/open-sse/translator/response/openai-responses.js +590 -0
- package/open-sse/translator/response/openai-to-antigravity.js +122 -0
- package/open-sse/translator/response/openai-to-claude.js +266 -0
- package/open-sse/utils/bypassHandler.js +298 -0
- package/open-sse/utils/claudeCloaking.js +155 -0
- package/open-sse/utils/claudeHeaderCache.js +70 -0
- package/open-sse/utils/clientDetector.js +63 -0
- package/open-sse/utils/cursorChecksum.js +149 -0
- package/open-sse/utils/cursorProtobuf.js +904 -0
- package/open-sse/utils/debugLog.js +14 -0
- package/open-sse/utils/error.js +147 -0
- package/open-sse/utils/ollamaTransform.js +85 -0
- package/open-sse/utils/proxyFetch.js +368 -0
- package/open-sse/utils/reasoningContentInjector.js +79 -0
- package/open-sse/utils/requestLogger.js +260 -0
- package/open-sse/utils/responsesStreamHelpers.js +49 -0
- package/open-sse/utils/sessionManager.js +82 -0
- package/open-sse/utils/stream.js +462 -0
- package/open-sse/utils/streamHandler.js +250 -0
- package/open-sse/utils/streamHelpers.js +122 -0
- package/open-sse/utils/toolDeduper.js +49 -0
- package/open-sse/utils/usageTracking.js +347 -0
- package/package.json +100 -0
- package/postcss.config.mjs +12 -0
- package/public/favicon.svg +11 -0
- package/public/file.svg +1 -0
- package/public/globe.svg +1 -0
- package/public/i18n/literals/ar.json +195 -0
- package/public/i18n/literals/bn.json +195 -0
- package/public/i18n/literals/cs.json +195 -0
- package/public/i18n/literals/da.json +195 -0
- package/public/i18n/literals/de.json +195 -0
- package/public/i18n/literals/el.json +195 -0
- package/public/i18n/literals/es.json +195 -0
- package/public/i18n/literals/fi.json +195 -0
- package/public/i18n/literals/fr.json +195 -0
- package/public/i18n/literals/he.json +195 -0
- package/public/i18n/literals/hi.json +195 -0
- package/public/i18n/literals/hu.json +195 -0
- package/public/i18n/literals/id.json +195 -0
- package/public/i18n/literals/it.json +195 -0
- package/public/i18n/literals/ja.json +195 -0
- package/public/i18n/literals/ko.json +195 -0
- package/public/i18n/literals/nl.json +195 -0
- package/public/i18n/literals/no.json +195 -0
- package/public/i18n/literals/pl.json +195 -0
- package/public/i18n/literals/pt-BR.json +195 -0
- package/public/i18n/literals/pt-PT.json +195 -0
- package/public/i18n/literals/ro.json +195 -0
- package/public/i18n/literals/ru.json +195 -0
- package/public/i18n/literals/sv.json +195 -0
- package/public/i18n/literals/th.json +195 -0
- package/public/i18n/literals/tl.json +195 -0
- package/public/i18n/literals/tr.json +195 -0
- package/public/i18n/literals/uk.json +195 -0
- package/public/i18n/literals/ur.json +195 -0
- package/public/i18n/literals/vi.json +195 -0
- package/public/i18n/literals/zh-CN.json +772 -0
- package/public/i18n/literals/zh-TW.json +195 -0
- package/public/icons/discord.svg +4 -0
- package/public/icons/icon-192.svg +4 -0
- package/public/icons/icon-512.svg +4 -0
- package/public/next.svg +1 -0
- package/public/providers/alicode-intl.png +0 -0
- package/public/providers/alicode.png +0 -0
- package/public/providers/amp.png +0 -0
- package/public/providers/anthropic-m.png +0 -0
- package/public/providers/anthropic.png +0 -0
- package/public/providers/antigravity.png +0 -0
- package/public/providers/assemblyai.png +0 -0
- package/public/providers/aws-polly.png +0 -0
- package/public/providers/azure.png +0 -0
- package/public/providers/black-forest-labs.png +0 -0
- package/public/providers/blackbox.png +0 -0
- package/public/providers/brave-search.png +0 -0
- package/public/providers/byteplus.png +0 -0
- package/public/providers/cartesia.png +0 -0
- package/public/providers/cerebras.png +0 -0
- package/public/providers/chutes.png +0 -0
- package/public/providers/claude.png +0 -0
- package/public/providers/cline.png +0 -0
- package/public/providers/cloudflare-ai.png +0 -0
- package/public/providers/codebuddy.svg +37 -0
- package/public/providers/codex.png +0 -0
- package/public/providers/cohere.png +0 -0
- package/public/providers/comfyui.png +0 -0
- package/public/providers/commandcode.png +0 -0
- package/public/providers/continue.png +0 -0
- package/public/providers/copilot.png +0 -0
- package/public/providers/coqui.png +0 -0
- package/public/providers/cursor.png +0 -0
- package/public/providers/deepgram.png +0 -0
- package/public/providers/deepseek-tui.png +0 -0
- package/public/providers/deepseek.png +0 -0
- package/public/providers/droid.png +0 -0
- package/public/providers/edge-tts.png +0 -0
- package/public/providers/elevenlabs.png +0 -0
- package/public/providers/exa.png +0 -0
- package/public/providers/fal-ai.png +0 -0
- package/public/providers/firecrawl.png +0 -0
- package/public/providers/fireworks.png +0 -0
- package/public/providers/gemini-cli.png +0 -0
- package/public/providers/gemini.png +0 -0
- package/public/providers/github.png +0 -0
- package/public/providers/glm-cn.png +0 -0
- package/public/providers/glm.png +0 -0
- package/public/providers/google-pse.png +0 -0
- package/public/providers/google-tts.png +0 -0
- package/public/providers/grok-web.png +0 -0
- package/public/providers/groq.png +0 -0
- package/public/providers/hermes.png +0 -0
- package/public/providers/huggingface.png +0 -0
- package/public/providers/hyperbolic.png +0 -0
- package/public/providers/iflow.png +0 -0
- package/public/providers/inworld.png +0 -0
- package/public/providers/jcode.png +0 -0
- package/public/providers/jina-ai.png +0 -0
- package/public/providers/jina-reader.png +0 -0
- package/public/providers/kilocode.png +0 -0
- package/public/providers/kimi-coding.png +0 -0
- package/public/providers/kimi.png +0 -0
- package/public/providers/kiro.png +0 -0
- package/public/providers/linkup.png +0 -0
- package/public/providers/local-device.png +0 -0
- package/public/providers/minimax-cn.png +0 -0
- package/public/providers/minimax.png +0 -0
- package/public/providers/mistral.png +0 -0
- package/public/providers/nanobanana.png +0 -0
- package/public/providers/nebius.png +0 -0
- package/public/providers/nvidia.png +0 -0
- package/public/providers/oai-cc.png +0 -0
- package/public/providers/oai-r.png +0 -0
- package/public/providers/ollama-local.png +0 -0
- package/public/providers/ollama.png +0 -0
- package/public/providers/openai.png +0 -0
- package/public/providers/openclaw.png +0 -0
- package/public/providers/opencode-go.png +0 -0
- package/public/providers/opencode.png +0 -0
- package/public/providers/openrouter.png +0 -0
- package/public/providers/perplexity-web.png +0 -0
- package/public/providers/perplexity.png +0 -0
- package/public/providers/playht.png +0 -0
- package/public/providers/qoder.png +0 -0
- package/public/providers/qwen.png +0 -0
- package/public/providers/recraft.png +0 -0
- package/public/providers/roo.png +0 -0
- package/public/providers/runwayml.png +0 -0
- package/public/providers/sdwebui.png +0 -0
- package/public/providers/searchapi.png +0 -0
- package/public/providers/searxng.png +0 -0
- package/public/providers/serper.png +0 -0
- package/public/providers/siliconflow.png +0 -0
- package/public/providers/stability-ai.png +0 -0
- package/public/providers/tavily.png +0 -0
- package/public/providers/together.png +0 -0
- package/public/providers/topaz.png +0 -0
- package/public/providers/tortoise.png +0 -0
- package/public/providers/vertex-partner.png +0 -0
- package/public/providers/vertex.png +0 -0
- package/public/providers/volcengine-ark.png +0 -0
- package/public/providers/voyage-ai.png +0 -0
- package/public/providers/xai.png +0 -0
- package/public/providers/xiaomi-mimo.png +0 -0
- package/public/providers/xiaomi-tokenplan.png +0 -0
- package/public/providers/youcom.png +0 -0
- package/public/sw.js +22 -0
- package/public/vercel.svg +1 -0
- package/public/window.svg +1 -0
- package/scripts/compact-request-details.mjs +71 -0
- package/scripts/import-codex-gptjson.mjs +342 -0
- package/scripts/start-standalone.mjs +25 -0
- package/scripts/translate-readme.js +201 -0
- package/src/app/(dashboard)/dashboard/automation/page.js +294 -0
- package/src/app/(dashboard)/dashboard/basic-chat/BasicChatPageClient.js +967 -0
- package/src/app/(dashboard)/dashboard/basic-chat/page.js +5 -0
- package/src/app/(dashboard)/dashboard/cli-tools/CLIToolsPageClient.js +66 -0
- package/src/app/(dashboard)/dashboard/cli-tools/[toolId]/ToolDetailClient.js +173 -0
- package/src/app/(dashboard)/dashboard/cli-tools/[toolId]/page.js +11 -0
- package/src/app/(dashboard)/dashboard/cli-tools/components/AntigravityToolCard.js +481 -0
- package/src/app/(dashboard)/dashboard/cli-tools/components/ApiKeySelect.js +66 -0
- package/src/app/(dashboard)/dashboard/cli-tools/components/BaseUrlSelect.js +174 -0
- package/src/app/(dashboard)/dashboard/cli-tools/components/ClaudeToolCard.js +390 -0
- package/src/app/(dashboard)/dashboard/cli-tools/components/ClineToolCard.js +301 -0
- package/src/app/(dashboard)/dashboard/cli-tools/components/CodexToolCard.js +458 -0
- package/src/app/(dashboard)/dashboard/cli-tools/components/CopilotToolCard.js +323 -0
- package/src/app/(dashboard)/dashboard/cli-tools/components/CoworkToolCard.js +640 -0
- package/src/app/(dashboard)/dashboard/cli-tools/components/DeepSeekTuiToolCard.js +338 -0
- package/src/app/(dashboard)/dashboard/cli-tools/components/DefaultToolCard.js +271 -0
- package/src/app/(dashboard)/dashboard/cli-tools/components/DroidToolCard.js +410 -0
- package/src/app/(dashboard)/dashboard/cli-tools/components/EndpointPresetControl.js +128 -0
- package/src/app/(dashboard)/dashboard/cli-tools/components/HermesToolCard.js +317 -0
- package/src/app/(dashboard)/dashboard/cli-tools/components/JcodeToolCard.js +380 -0
- package/src/app/(dashboard)/dashboard/cli-tools/components/KiloToolCard.js +275 -0
- package/src/app/(dashboard)/dashboard/cli-tools/components/MitmLinkCard.js +40 -0
- package/src/app/(dashboard)/dashboard/cli-tools/components/MitmServerCard.js +329 -0
- package/src/app/(dashboard)/dashboard/cli-tools/components/MitmToolCard.js +318 -0
- package/src/app/(dashboard)/dashboard/cli-tools/components/OpenClawToolCard.js +388 -0
- package/src/app/(dashboard)/dashboard/cli-tools/components/OpenCodeToolCard.js +500 -0
- package/src/app/(dashboard)/dashboard/cli-tools/components/ToolSummaryCard.js +39 -0
- package/src/app/(dashboard)/dashboard/cli-tools/components/cliEndpointMatch.js +13 -0
- package/src/app/(dashboard)/dashboard/cli-tools/components/index.js +19 -0
- package/src/app/(dashboard)/dashboard/cli-tools/page.js +7 -0
- package/src/app/(dashboard)/dashboard/combos/page.js +612 -0
- package/src/app/(dashboard)/dashboard/console-log/ConsoleLogClient.js +91 -0
- package/src/app/(dashboard)/dashboard/console-log/page.js +8 -0
- package/src/app/(dashboard)/dashboard/endpoint/EndpointPageClient.js +1555 -0
- package/src/app/(dashboard)/dashboard/endpoint/page.js +7 -0
- package/src/app/(dashboard)/dashboard/media-providers/[kind]/[id]/page.js +1903 -0
- package/src/app/(dashboard)/dashboard/media-providers/[kind]/page.js +289 -0
- package/src/app/(dashboard)/dashboard/media-providers/combo/[id]/page.js +410 -0
- package/src/app/(dashboard)/dashboard/media-providers/web/page.js +209 -0
- package/src/app/(dashboard)/dashboard/mitm/MitmPageClient.js +117 -0
- package/src/app/(dashboard)/dashboard/mitm/page.js +5 -0
- package/src/app/(dashboard)/dashboard/page.js +7 -0
- package/src/app/(dashboard)/dashboard/profile/page.js +1140 -0
- package/src/app/(dashboard)/dashboard/providers/[id]/AddApiKeyModal.js +389 -0
- package/src/app/(dashboard)/dashboard/providers/[id]/AddCustomModelModal.js +125 -0
- package/src/app/(dashboard)/dashboard/providers/[id]/CompatibleModelsSection.js +250 -0
- package/src/app/(dashboard)/dashboard/providers/[id]/ConnectionRow.js +299 -0
- package/src/app/(dashboard)/dashboard/providers/[id]/CooldownTimer.js +42 -0
- package/src/app/(dashboard)/dashboard/providers/[id]/EditCompatibleNodeModal.js +161 -0
- package/src/app/(dashboard)/dashboard/providers/[id]/ModelRow.js +95 -0
- package/src/app/(dashboard)/dashboard/providers/[id]/PassthroughModelsSection.js +183 -0
- package/src/app/(dashboard)/dashboard/providers/[id]/page.js +2053 -0
- package/src/app/(dashboard)/dashboard/providers/[id]/page.new.js +1724 -0
- package/src/app/(dashboard)/dashboard/providers/components/ConnectionsCard.js +497 -0
- package/src/app/(dashboard)/dashboard/providers/components/ModelAvailabilityBadge.js +185 -0
- package/src/app/(dashboard)/dashboard/providers/components/ModelsCard.js +294 -0
- package/src/app/(dashboard)/dashboard/providers/new/page.js +220 -0
- package/src/app/(dashboard)/dashboard/providers/page.js +1365 -0
- package/src/app/(dashboard)/dashboard/proxy-pools/page.js +1092 -0
- package/src/app/(dashboard)/dashboard/quota/page.js +11 -0
- package/src/app/(dashboard)/dashboard/skills/page.js +112 -0
- package/src/app/(dashboard)/dashboard/translator/page.js +303 -0
- package/src/app/(dashboard)/dashboard/usage/components/OverviewCards.js +35 -0
- package/src/app/(dashboard)/dashboard/usage/components/ProviderLimits/ProviderLimitCard.js +185 -0
- package/src/app/(dashboard)/dashboard/usage/components/ProviderLimits/QuotaProgressBar.js +127 -0
- package/src/app/(dashboard)/dashboard/usage/components/ProviderLimits/QuotaTable.js +259 -0
- package/src/app/(dashboard)/dashboard/usage/components/ProviderLimits/index.js +1394 -0
- package/src/app/(dashboard)/dashboard/usage/components/ProviderLimits/utils.js +244 -0
- package/src/app/(dashboard)/dashboard/usage/components/ProviderTopology.js +327 -0
- package/src/app/(dashboard)/dashboard/usage/components/RequestDetailsTab.js +433 -0
- package/src/app/(dashboard)/dashboard/usage/components/UsageChart.js +141 -0
- package/src/app/(dashboard)/dashboard/usage/components/UsageTable.js +247 -0
- package/src/app/(dashboard)/dashboard/usage/page.js +75 -0
- package/src/app/(dashboard)/layout.js +6 -0
- package/src/app/api/auth/login/route.js +76 -0
- package/src/app/api/auth/logout/route.js +12 -0
- package/src/app/api/auth/oidc/callback/route.js +87 -0
- package/src/app/api/auth/oidc/start/route.js +52 -0
- package/src/app/api/auth/oidc/test/route.js +84 -0
- package/src/app/api/auth/status/route.js +45 -0
- package/src/app/api/cli-tools/all-statuses/route.js +46 -0
- package/src/app/api/cli-tools/antigravity-mitm/alias/route.js +53 -0
- package/src/app/api/cli-tools/antigravity-mitm/route.js +202 -0
- package/src/app/api/cli-tools/claude-settings/route.js +203 -0
- package/src/app/api/cli-tools/cline-settings/route.js +133 -0
- package/src/app/api/cli-tools/codex-gateway/accounts/route.js +16 -0
- package/src/app/api/cli-tools/codex-settings/route.js +239 -0
- package/src/app/api/cli-tools/copilot-settings/route.js +148 -0
- package/src/app/api/cli-tools/cowork-mcp-registry/route.js +77 -0
- package/src/app/api/cli-tools/cowork-mcp-tools/route.js +95 -0
- package/src/app/api/cli-tools/cowork-settings/route.js +412 -0
- package/src/app/api/cli-tools/deepseek-tui-settings/route.js +164 -0
- package/src/app/api/cli-tools/droid-settings/route.js +213 -0
- package/src/app/api/cli-tools/hermes-settings/route.js +175 -0
- package/src/app/api/cli-tools/jcode-settings/route.js +216 -0
- package/src/app/api/cli-tools/kilo-settings/route.js +131 -0
- package/src/app/api/cli-tools/openclaw-settings/route.js +292 -0
- package/src/app/api/cli-tools/opencode-settings/route.js +259 -0
- package/src/app/api/combos/[id]/route.js +81 -0
- package/src/app/api/combos/route.js +48 -0
- package/src/app/api/health/route.js +15 -0
- package/src/app/api/init/route.js +4 -0
- package/src/app/api/keys/[id]/route.js +58 -0
- package/src/app/api/keys/route.js +42 -0
- package/src/app/api/locale/route.js +30 -0
- package/src/app/api/mcp/[plugin]/message/route.js +21 -0
- package/src/app/api/mcp/[plugin]/sse/route.js +37 -0
- package/src/app/api/media-providers/tts/deepgram/voices/route.js +65 -0
- package/src/app/api/media-providers/tts/elevenlabs/voices/route.js +71 -0
- package/src/app/api/media-providers/tts/inworld/voices/route.js +61 -0
- package/src/app/api/media-providers/tts/minimax/voices/route.js +113 -0
- package/src/app/api/media-providers/tts/voices/route.js +99 -0
- package/src/app/api/models/alias/route.js +53 -0
- package/src/app/api/models/availability/route.js +103 -0
- package/src/app/api/models/custom/route.js +48 -0
- package/src/app/api/models/disabled/route.js +50 -0
- package/src/app/api/models/route.js +64 -0
- package/src/app/api/models/test/ping.js +191 -0
- package/src/app/api/models/test/route.js +14 -0
- package/src/app/api/oauth/[provider]/[action]/route.js +343 -0
- package/src/app/api/oauth/codebuddy/bulk-import/[jobId]/cancel/route.js +19 -0
- package/src/app/api/oauth/codebuddy/bulk-import/[jobId]/manual/[workerId]/route.js +30 -0
- package/src/app/api/oauth/codebuddy/bulk-import/[jobId]/route.js +23 -0
- package/src/app/api/oauth/codebuddy/bulk-import/latest/route.js +25 -0
- package/src/app/api/oauth/codebuddy/bulk-import/route.js +49 -0
- package/src/app/api/oauth/codebuddy/quota-cookie/route.js +133 -0
- package/src/app/api/oauth/codex/import-token/route.js +96 -0
- package/src/app/api/oauth/cursor/auto-import/route.js +258 -0
- package/src/app/api/oauth/cursor/import/route.js +100 -0
- package/src/app/api/oauth/gitlab/pat/route.js +62 -0
- package/src/app/api/oauth/iflow/cookie/route.js +137 -0
- package/src/app/api/oauth/kiro/auto-import/route.js +85 -0
- package/src/app/api/oauth/kiro/bulk-import/[jobId]/cancel/route.js +18 -0
- package/src/app/api/oauth/kiro/bulk-import/[jobId]/manual/[workerId]/route.js +29 -0
- package/src/app/api/oauth/kiro/bulk-import/[jobId]/route.js +22 -0
- package/src/app/api/oauth/kiro/bulk-import/latest/route.js +25 -0
- package/src/app/api/oauth/kiro/bulk-import/route.js +49 -0
- package/src/app/api/oauth/kiro/import/route.js +110 -0
- package/src/app/api/oauth/kiro/social-authorize/route.js +27 -0
- package/src/app/api/oauth/kiro/social-exchange/route.js +41 -0
- package/src/app/api/pricing/route.js +134 -0
- package/src/app/api/provider-nodes/[id]/route.js +101 -0
- package/src/app/api/provider-nodes/route.js +104 -0
- package/src/app/api/provider-nodes/validate/route.js +201 -0
- package/src/app/api/providers/[id]/models/route.js +526 -0
- package/src/app/api/providers/[id]/route.js +189 -0
- package/src/app/api/providers/[id]/test/route.js +23 -0
- package/src/app/api/providers/[id]/test/testUtils.js +714 -0
- package/src/app/api/providers/[id]/test-models/route.js +66 -0
- package/src/app/api/providers/client/route.js +126 -0
- package/src/app/api/providers/kilo/free-models/route.js +55 -0
- package/src/app/api/providers/route.js +206 -0
- package/src/app/api/providers/suggested-models/filters.js +20 -0
- package/src/app/api/providers/suggested-models/route.js +32 -0
- package/src/app/api/providers/test-batch/route.js +131 -0
- package/src/app/api/providers/validate/route.js +637 -0
- package/src/app/api/proxy-pools/[id]/route.js +123 -0
- package/src/app/api/proxy-pools/[id]/test/route.js +70 -0
- package/src/app/api/proxy-pools/cloudflare-deploy/route.js +145 -0
- package/src/app/api/proxy-pools/deno-deploy/route.js +175 -0
- package/src/app/api/proxy-pools/route.js +93 -0
- package/src/app/api/proxy-pools/vercel-deploy/route.js +142 -0
- package/src/app/api/settings/database/route.js +36 -0
- package/src/app/api/settings/proxy-test/route.js +23 -0
- package/src/app/api/settings/require-login/route.js +15 -0
- package/src/app/api/settings/route.js +100 -0
- package/src/app/api/shutdown/route.js +24 -0
- package/src/app/api/tags/route.js +18 -0
- package/src/app/api/translator/console-logs/route.js +24 -0
- package/src/app/api/translator/console-logs/stream/route.js +79 -0
- package/src/app/api/translator/load/route.js +45 -0
- package/src/app/api/translator/save/route.js +44 -0
- package/src/app/api/translator/send/route.js +94 -0
- package/src/app/api/translator/translate/route.js +90 -0
- package/src/app/api/tunnel/disable/route.js +12 -0
- package/src/app/api/tunnel/enable/route.js +16 -0
- package/src/app/api/tunnel/status/route.js +13 -0
- package/src/app/api/tunnel/tailscale-check/route.js +50 -0
- package/src/app/api/tunnel/tailscale-disable/route.js +12 -0
- package/src/app/api/tunnel/tailscale-enable/route.js +12 -0
- package/src/app/api/tunnel/tailscale-install/route.js +72 -0
- package/src/app/api/usage/[connectionId]/route.js +188 -0
- package/src/app/api/usage/chart/route.js +21 -0
- package/src/app/api/usage/history/route.js +12 -0
- package/src/app/api/usage/logs/route.js +12 -0
- package/src/app/api/usage/providers/route.js +42 -0
- package/src/app/api/usage/request-details/route.js +57 -0
- package/src/app/api/usage/request-logs/route.js +13 -0
- package/src/app/api/usage/stats/route.js +23 -0
- package/src/app/api/usage/stream/route.js +79 -0
- package/src/app/api/v1/api/chat/route.js +37 -0
- package/src/app/api/v1/audio/speech/route.js +16 -0
- package/src/app/api/v1/audio/transcriptions/route.js +19 -0
- package/src/app/api/v1/audio/voices/route.js +68 -0
- package/src/app/api/v1/chat/completions/route.js +35 -0
- package/src/app/api/v1/embeddings/route.js +21 -0
- package/src/app/api/v1/images/generations/route.js +16 -0
- package/src/app/api/v1/messages/count_tokens/route.js +52 -0
- package/src/app/api/v1/messages/route.js +36 -0
- package/src/app/api/v1/models/[kind]/route.js +55 -0
- package/src/app/api/v1/models/info/route.js +110 -0
- package/src/app/api/v1/models/route.js +451 -0
- package/src/app/api/v1/responses/compact/route.js +37 -0
- package/src/app/api/v1/responses/route.js +30 -0
- package/src/app/api/v1/route.js +1 -0
- package/src/app/api/v1/search/route.js +21 -0
- package/src/app/api/v1/web/fetch/route.js +21 -0
- package/src/app/api/v1beta/models/[...path]/route.js +328 -0
- package/src/app/api/v1beta/models/route.js +44 -0
- package/src/app/api/version/route.js +45 -0
- package/src/app/api/version/shutdown/route.js +15 -0
- package/src/app/api/version/update/route.js +21 -0
- package/src/app/callback/page.js +148 -0
- package/src/app/dashboard/settings/pricing/page.js +173 -0
- package/src/app/favicon.ico +0 -0
- package/src/app/globals.css +496 -0
- package/src/app/landing/components/AnimatedBackground.js +57 -0
- package/src/app/landing/components/Features.js +133 -0
- package/src/app/landing/components/FlowAnimation.js +175 -0
- package/src/app/landing/components/Footer.js +61 -0
- package/src/app/landing/components/GetStarted.js +97 -0
- package/src/app/landing/components/HeroSection.js +47 -0
- package/src/app/landing/components/HowItWorks.js +66 -0
- package/src/app/landing/components/Navigation.js +72 -0
- package/src/app/landing/page.js +106 -0
- package/src/app/layout.js +49 -0
- package/src/app/login/page.js +197 -0
- package/src/app/manifest.js +30 -0
- package/src/app/page.js +5 -0
- package/src/dashboardGuard.js +242 -0
- package/src/i18n/RuntimeI18nProvider.js +27 -0
- package/src/i18n/config.js +146 -0
- package/src/i18n/runtime.js +162 -0
- package/src/lib/appUpdater.js +200 -0
- package/src/lib/auth/dashboardSession.js +68 -0
- package/src/lib/auth/loginLimiter.js +52 -0
- package/src/lib/auth/oidc.js +234 -0
- package/src/lib/consoleLogBuffer.js +79 -0
- package/src/lib/dataDir.js +29 -0
- package/src/lib/db/adapters/betterSqliteAdapter.js +55 -0
- package/src/lib/db/adapters/bunSqliteAdapter.js +63 -0
- package/src/lib/db/adapters/nodeSqliteAdapter.js +84 -0
- package/src/lib/db/adapters/sqljsAdapter.js +115 -0
- package/src/lib/db/backup.js +35 -0
- package/src/lib/db/driver.js +85 -0
- package/src/lib/db/helpers/jsonCol.js +9 -0
- package/src/lib/db/helpers/kvStore.js +39 -0
- package/src/lib/db/helpers/metaStore.js +22 -0
- package/src/lib/db/index.js +171 -0
- package/src/lib/db/migrate.js +286 -0
- package/src/lib/db/migrations/001-initial.js +14 -0
- package/src/lib/db/migrations/index.js +10 -0
- package/src/lib/db/paths.js +18 -0
- package/src/lib/db/repos/aliasRepo.js +62 -0
- package/src/lib/db/repos/apiKeysRepo.js +75 -0
- package/src/lib/db/repos/combosRepo.js +73 -0
- package/src/lib/db/repos/connectionsRepo.js +226 -0
- package/src/lib/db/repos/disabledModelsRepo.js +56 -0
- package/src/lib/db/repos/nodesRepo.js +95 -0
- package/src/lib/db/repos/pricingRepo.js +108 -0
- package/src/lib/db/repos/proxyPoolsRepo.js +103 -0
- package/src/lib/db/repos/requestDetailsRepo.js +259 -0
- package/src/lib/db/repos/settingsRepo.js +104 -0
- package/src/lib/db/repos/usageRepo.js +731 -0
- package/src/lib/db/schema.js +157 -0
- package/src/lib/db/version.js +21 -0
- package/src/lib/disabledModelsDb.js +4 -0
- package/src/lib/localDb.js +21 -0
- package/src/lib/mcp/stdioSseBridge.js +198 -0
- package/src/lib/mitmAliasCache.js +46 -0
- package/src/lib/network/connectionProxy.js +160 -0
- package/src/lib/network/initOutboundProxy.js +25 -0
- package/src/lib/network/outboundProxy.js +68 -0
- package/src/lib/network/proxyTest.js +91 -0
- package/src/lib/oauth/constants/oauth.js +284 -0
- package/src/lib/oauth/constants/xai.js +61 -0
- package/src/lib/oauth/providers.js +1506 -0
- package/src/lib/oauth/services/antigravity.js +321 -0
- package/src/lib/oauth/services/claude.js +136 -0
- package/src/lib/oauth/services/codebuddyBulkImportManager.js +454 -0
- package/src/lib/oauth/services/codex.js +144 -0
- package/src/lib/oauth/services/cursor.js +179 -0
- package/src/lib/oauth/services/gemini.js +240 -0
- package/src/lib/oauth/services/github.js +225 -0
- package/src/lib/oauth/services/iflow.js +202 -0
- package/src/lib/oauth/services/index.js +17 -0
- package/src/lib/oauth/services/kiro.js +334 -0
- package/src/lib/oauth/services/kiroBulkImportManager.js +778 -0
- package/src/lib/oauth/services/kiroConnections.js +93 -0
- package/src/lib/oauth/services/kiroGoogleAutomation.js +1136 -0
- package/src/lib/oauth/services/oauth.js +157 -0
- package/src/lib/oauth/services/openai.js +123 -0
- package/src/lib/oauth/services/qoder.js +216 -0
- package/src/lib/oauth/services/qwen.js +170 -0
- package/src/lib/oauth/services/xai.js +238 -0
- package/src/lib/oauth/utils/banner.js +63 -0
- package/src/lib/oauth/utils/pkce.js +39 -0
- package/src/lib/oauth/utils/server.js +415 -0
- package/src/lib/oauth/utils/ui.js +48 -0
- package/src/lib/providerNormalization.js +45 -0
- package/src/lib/qoder/constants.js +64 -0
- package/src/lib/qoder/cosy.js +175 -0
- package/src/lib/qoder/encoding.js +55 -0
- package/src/lib/requestDetailsDb.js +4 -0
- package/src/lib/tunnel/cloudflare/cloudflared.js +449 -0
- package/src/lib/tunnel/cloudflare/config.js +9 -0
- package/src/lib/tunnel/cloudflare/healthCheck.js +29 -0
- package/src/lib/tunnel/cloudflare/manager.js +151 -0
- package/src/lib/tunnel/cloudflare/pid.js +23 -0
- package/src/lib/tunnel/index.js +48 -0
- package/src/lib/tunnel/shared/dnsResolver.js +17 -0
- package/src/lib/tunnel/shared/internetCheck.js +26 -0
- package/src/lib/tunnel/shared/state.js +41 -0
- package/src/lib/tunnel/shared/watchdogConfig.js +8 -0
- package/src/lib/tunnel/tailscale/config.js +7 -0
- package/src/lib/tunnel/tailscale/healthCheck.js +29 -0
- package/src/lib/tunnel/tailscale/manager.js +129 -0
- package/src/lib/tunnel/tailscale/tailscale.js +790 -0
- package/src/lib/updater/updater.js +235 -0
- package/src/lib/usage/fetcher.js +208 -0
- package/src/lib/usageDb.js +7 -0
- package/src/mitm/antigravityIdeVersion.js +50 -0
- package/src/mitm/cert/generate.js +32 -0
- package/src/mitm/cert/install.js +269 -0
- package/src/mitm/cert/rootCA.js +173 -0
- package/src/mitm/config.js +87 -0
- package/src/mitm/dbReader.js +22 -0
- package/src/mitm/dns/dnsConfig.js +266 -0
- package/src/mitm/handlers/antigravity.js +33 -0
- package/src/mitm/handlers/base.js +226 -0
- package/src/mitm/handlers/copilot.js +35 -0
- package/src/mitm/handlers/cursor.js +15 -0
- package/src/mitm/handlers/kiro.js +526 -0
- package/src/mitm/logger.js +106 -0
- package/src/mitm/manager.js +851 -0
- package/src/mitm/paths.js +32 -0
- package/src/mitm/server.js +435 -0
- package/src/mitm/winElevated.js +81 -0
- package/src/models/index.js +38 -0
- package/src/proxy.js +5 -0
- package/src/shared/components/AddCustomEmbeddingModal.js +183 -0
- package/src/shared/components/Avatar.js +88 -0
- package/src/shared/components/Badge.js +54 -0
- package/src/shared/components/BulkAccountAutomationModal.js +508 -0
- package/src/shared/components/Button.js +56 -0
- package/src/shared/components/Card.js +116 -0
- package/src/shared/components/ChangelogModal.js +97 -0
- package/src/shared/components/CodeBuddyQuotaCookieModal.js +109 -0
- package/src/shared/components/ComboFormModal.js +176 -0
- package/src/shared/components/CursorAuthModal.js +212 -0
- package/src/shared/components/DonateModal.js +136 -0
- package/src/shared/components/Drawer.js +82 -0
- package/src/shared/components/EditConnectionModal.js +286 -0
- package/src/shared/components/Footer.js +132 -0
- package/src/shared/components/GitLabAuthModal.js +194 -0
- package/src/shared/components/Header.js +380 -0
- package/src/shared/components/HeaderLanguage.js +46 -0
- package/src/shared/components/HeaderMenu.js +126 -0
- package/src/shared/components/IFlowCookieModal.js +132 -0
- package/src/shared/components/Input.js +65 -0
- package/src/shared/components/KiroAuthModal.js +1171 -0
- package/src/shared/components/KiroOAuthWrapper.js +149 -0
- package/src/shared/components/KiroSocialOAuthModal.js +205 -0
- package/src/shared/components/LanguageSwitcher.js +190 -0
- package/src/shared/components/Loading.js +75 -0
- package/src/shared/components/ManualConfigModal.js +44 -0
- package/src/shared/components/McpMarketplaceModal.js +255 -0
- package/src/shared/components/Modal.js +146 -0
- package/src/shared/components/ModelSelectModal.js +537 -0
- package/src/shared/components/NineRemoteButton.js +23 -0
- package/src/shared/components/NineRemotePromoModal.js +99 -0
- package/src/shared/components/NoAuthProxyCard.js +86 -0
- package/src/shared/components/OAuthModal.js +682 -0
- package/src/shared/components/Pagination.js +150 -0
- package/src/shared/components/PricingModal.js +208 -0
- package/src/shared/components/ProviderIcon.js +63 -0
- package/src/shared/components/ProviderInfoCard.js +82 -0
- package/src/shared/components/RequestLogger.js +121 -0
- package/src/shared/components/SegmentedControl.js +48 -0
- package/src/shared/components/Select.js +67 -0
- package/src/shared/components/Sidebar.js +441 -0
- package/src/shared/components/ThemeProvider.js +15 -0
- package/src/shared/components/ThemeToggle.js +42 -0
- package/src/shared/components/Toggle.js +69 -0
- package/src/shared/components/Tooltip.js +25 -0
- package/src/shared/components/UsageStats.js +505 -0
- package/src/shared/components/index.js +46 -0
- package/src/shared/components/layouts/AuthLayout.js +29 -0
- package/src/shared/components/layouts/DashboardLayout.js +104 -0
- package/src/shared/components/layouts/index.js +4 -0
- package/src/shared/constants/cliTools.js +397 -0
- package/src/shared/constants/colors.js +77 -0
- package/src/shared/constants/config.js +99 -0
- package/src/shared/constants/coworkPlugins.js +75 -0
- package/src/shared/constants/index.js +4 -0
- package/src/shared/constants/locales.js +36 -0
- package/src/shared/constants/mitmToolHosts.js +12 -0
- package/src/shared/constants/models.js +38 -0
- package/src/shared/constants/pricing.js +303 -0
- package/src/shared/constants/providers.js +289 -0
- package/src/shared/constants/skills.js +78 -0
- package/src/shared/constants/ttsProviders.js +138 -0
- package/src/shared/hooks/index.js +2 -0
- package/src/shared/hooks/useCopyToClipboard.js +43 -0
- package/src/shared/hooks/useTheme.js +60 -0
- package/src/shared/services/bootstrap.js +12 -0
- package/src/shared/services/initializeApp.js +268 -0
- package/src/shared/utils/api.js +93 -0
- package/src/shared/utils/apiKey.js +98 -0
- package/src/shared/utils/clineAuth.js +37 -0
- package/src/shared/utils/cn.js +11 -0
- package/src/shared/utils/connectionStatus.js +162 -0
- package/src/shared/utils/index.js +40 -0
- package/src/shared/utils/machine.js +6 -0
- package/src/shared/utils/machineId.js +66 -0
- package/src/shared/utils/providerModelsFetcher.js +30 -0
- package/src/sse/handlers/chat.js +261 -0
- package/src/sse/handlers/embeddings.js +141 -0
- package/src/sse/handlers/fetch.js +213 -0
- package/src/sse/handlers/imageGeneration.js +142 -0
- package/src/sse/handlers/search.js +206 -0
- package/src/sse/handlers/stt.js +88 -0
- package/src/sse/handlers/tts.js +114 -0
- package/src/sse/services/auth.js +346 -0
- package/src/sse/services/codexGateway.js +215 -0
- package/src/sse/services/model.js +99 -0
- package/src/sse/services/tokenRefresh.js +319 -0
- package/src/sse/utils/logger.js +75 -0
- package/src/store/headerSearchStore.js +19 -0
- package/src/store/index.js +6 -0
- package/src/store/notificationStore.js +45 -0
- package/src/store/providerStore.js +55 -0
- package/src/store/settingsStore.js +51 -0
- package/src/store/themeStore.js +54 -0
- package/src/store/userStore.js +20 -0
- package/start.sh +4 -0
|
@@ -0,0 +1,195 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Cancel": "Cancelar",
|
|
3
|
+
"Delete": "Eliminar",
|
|
4
|
+
"Edit": "Editar",
|
|
5
|
+
"Save": "Guardar",
|
|
6
|
+
"Close": "Cerrar",
|
|
7
|
+
"Add": "Añadir",
|
|
8
|
+
"Remove": "Quitar",
|
|
9
|
+
"Settings": "Configuración",
|
|
10
|
+
"Profile": "Perfil",
|
|
11
|
+
"Dashboard": "Panel de control",
|
|
12
|
+
"Logout": "Cerrar sesión",
|
|
13
|
+
"Login": "Iniciar sesión",
|
|
14
|
+
"Providers": "Proveedores",
|
|
15
|
+
"Usage": "Estadísticas",
|
|
16
|
+
"API Key": "Clave API",
|
|
17
|
+
"Connected": "Conectado",
|
|
18
|
+
"Disconnected": "Desconectado",
|
|
19
|
+
"Active": "Activo",
|
|
20
|
+
"Inactive": "Inactivo",
|
|
21
|
+
"Success": "Éxito",
|
|
22
|
+
"Failed": "Fallido",
|
|
23
|
+
"Error": "Error",
|
|
24
|
+
"Warning": "Advertencia",
|
|
25
|
+
"Info": "Información",
|
|
26
|
+
"Loading": "Cargando",
|
|
27
|
+
"Search": "Buscar",
|
|
28
|
+
"Filter": "Filtrar",
|
|
29
|
+
"Sort": "Ordenar",
|
|
30
|
+
"Export": "Exportar",
|
|
31
|
+
"Import": "Importar",
|
|
32
|
+
"Refresh": "Actualizar",
|
|
33
|
+
"Back": "Atrás",
|
|
34
|
+
"Next": "Siguiente",
|
|
35
|
+
"Previous": "Anterior",
|
|
36
|
+
"Submit": "Enviar",
|
|
37
|
+
"Confirm": "Confirmar",
|
|
38
|
+
"Yes": "Sí",
|
|
39
|
+
"No": "No",
|
|
40
|
+
"OK": "OK",
|
|
41
|
+
"Apply": "Aplicar",
|
|
42
|
+
"Reset": "Restablecer",
|
|
43
|
+
"Clear": "Limpiar",
|
|
44
|
+
"Select": "Seleccionar",
|
|
45
|
+
"Upload": "Cargar",
|
|
46
|
+
"Download": "Descargar",
|
|
47
|
+
"Copy": "Copiar",
|
|
48
|
+
"Paste": "Pegar",
|
|
49
|
+
"Cut": "Cortar",
|
|
50
|
+
"Undo": "Deshacer",
|
|
51
|
+
"Redo": "Rehacer",
|
|
52
|
+
"Name": "Nombre",
|
|
53
|
+
"Description": "Descripción",
|
|
54
|
+
"Status": "Estado",
|
|
55
|
+
"Type": "Tipo",
|
|
56
|
+
"Date": "Fecha",
|
|
57
|
+
"Time": "Hora",
|
|
58
|
+
"Created": "Creado",
|
|
59
|
+
"Updated": "Actualizado",
|
|
60
|
+
"Actions": "Acciones",
|
|
61
|
+
"Details": "Detalles",
|
|
62
|
+
"View": "Ver",
|
|
63
|
+
"New": "Nuevo",
|
|
64
|
+
"Total": "Total",
|
|
65
|
+
"Count": "Cantidad",
|
|
66
|
+
"Price": "Precio",
|
|
67
|
+
"Cost": "Costo",
|
|
68
|
+
"Free": "Gratuito",
|
|
69
|
+
"Paid": "Pagado",
|
|
70
|
+
"Enable": "Habilitar",
|
|
71
|
+
"Disable": "Deshabilitar",
|
|
72
|
+
"Enabled": "Habilitado",
|
|
73
|
+
"Disabled": "Deshabilitado",
|
|
74
|
+
"Online": "En línea",
|
|
75
|
+
"Offline": "Desconectado",
|
|
76
|
+
"Available": "Disponible",
|
|
77
|
+
"Unavailable": "No disponible",
|
|
78
|
+
"Required": "Requerido",
|
|
79
|
+
"Optional": "Opcional",
|
|
80
|
+
"Default": "Predeterminado",
|
|
81
|
+
"Custom": "Personalizado",
|
|
82
|
+
"Advanced": "Avanzado",
|
|
83
|
+
"Basic": "Básico",
|
|
84
|
+
"Help": "Ayuda",
|
|
85
|
+
"Support": "Soporte",
|
|
86
|
+
"Documentation": "Documentación",
|
|
87
|
+
"Version": "Versión",
|
|
88
|
+
"Language": "Idioma",
|
|
89
|
+
"Theme": "Tema",
|
|
90
|
+
"Light": "Claro",
|
|
91
|
+
"Dark": "Oscuro",
|
|
92
|
+
"Auto": "Automático",
|
|
93
|
+
"Endpoint": "Punto final",
|
|
94
|
+
"Combos": "Combinaciones",
|
|
95
|
+
"Quota Tracker": "Rastreador de cuota",
|
|
96
|
+
"MITM": "MITM",
|
|
97
|
+
"CLI Tools": "Herramientas CLI",
|
|
98
|
+
"Console Log": "Registro de consola",
|
|
99
|
+
"System": "Sistema",
|
|
100
|
+
"Debug": "Depuración",
|
|
101
|
+
"Shutdown": "Apagar",
|
|
102
|
+
"Close Proxy": "Cerrar proxy",
|
|
103
|
+
"Are you sure you want to close the proxy server?": "¿Está seguro de que desea cerrar el servidor proxy?",
|
|
104
|
+
"Server Disconnected": "Servidor desconectado",
|
|
105
|
+
"The proxy server has been stopped.": "El servidor proxy se ha detenido.",
|
|
106
|
+
"Reload Page": "Recargar página",
|
|
107
|
+
"Service is running in terminal. You can close this web page. Shutdown will stop the service.": "El servicio se está ejecutando en la terminal. Puede cerrar esta página web. El apagado detendrá el servicio.",
|
|
108
|
+
"Manage your AI provider connections": "Administre sus conexiones de proveedor de IA",
|
|
109
|
+
"Model combos with fallback": "Combinaciones de modelos con respaldo",
|
|
110
|
+
"Monitor your API usage, token consumption, and request logs": "Monitoree su uso de API, consumo de tokens y registros de solicitudes",
|
|
111
|
+
"Intercept CLI tool traffic and route through 9Router": "Interceptar el tráfico de herramientas CLI y enrutar a través de 9Router",
|
|
112
|
+
"Configure CLI tools": "Configurar herramientas CLI",
|
|
113
|
+
"API endpoint configuration": "Configuración del punto final de API",
|
|
114
|
+
"Manage your preferences": "Administrar sus preferencias",
|
|
115
|
+
"Debug translation flow between formats": "Depurar el flujo de traducción entre formatos",
|
|
116
|
+
"Live server console output": "Salida de consola del servidor en vivo",
|
|
117
|
+
"Create model combos with fallback support": "Crear combinaciones de modelos con soporte de respaldo",
|
|
118
|
+
"Local Mode": "Modo local",
|
|
119
|
+
"Running on your machine": "En ejecución en su máquina",
|
|
120
|
+
"Database Location": "Ubicación de la base de datos",
|
|
121
|
+
"Download Backup": "Descargar respaldo",
|
|
122
|
+
"Import Backup": "Importar respaldo",
|
|
123
|
+
"Database backup downloaded": "Respaldo de la base de datos descargado",
|
|
124
|
+
"Database imported successfully": "Base de datos importada correctamente",
|
|
125
|
+
"Security": "Seguridad",
|
|
126
|
+
"Require login": "Requerir inicio de sesión",
|
|
127
|
+
"When ON, dashboard requires password. When OFF, access without login.": "Cuando está ACTIVADO, el panel requiere contraseña. Cuando está DESACTIVADO, acceso sin iniciar sesión.",
|
|
128
|
+
"Current Password": "Contraseña actual",
|
|
129
|
+
"Enter current password": "Ingrese la contraseña actual",
|
|
130
|
+
"New Password": "Nueva contraseña",
|
|
131
|
+
"Enter new password": "Ingrese la nueva contraseña",
|
|
132
|
+
"Confirm New Password": "Confirmar nueva contraseña",
|
|
133
|
+
"Confirm new password": "Confirme la nueva contraseña",
|
|
134
|
+
"Update Password": "Actualizar contraseña",
|
|
135
|
+
"Set Password": "Establecer contraseña",
|
|
136
|
+
"Password updated successfully": "Contraseña actualizada correctamente",
|
|
137
|
+
"Passwords do not match": "Las contraseñas no coinciden",
|
|
138
|
+
"Routing Strategy": "Estrategia de enrutamiento",
|
|
139
|
+
"Round Robin": "Round Robin",
|
|
140
|
+
"Cycle through accounts to distribute load": "Ciclo a través de cuentas para distribuir la carga",
|
|
141
|
+
"Sticky Limit": "Límite pegajoso",
|
|
142
|
+
"Calls per account before switching": "Llamadas por cuenta antes de cambiar",
|
|
143
|
+
"Network": "Red",
|
|
144
|
+
"Outbound Proxy": "Proxy de salida",
|
|
145
|
+
"Enable proxy for OAuth + provider outbound requests.": "Habilite el proxy para OAuth + solicitudes de salida del proveedor.",
|
|
146
|
+
"Proxy URL": "URL del proxy",
|
|
147
|
+
"Leave empty to inherit existing env proxy (if any).": "Deje en blanco para heredar el proxy env existente (si lo hay).",
|
|
148
|
+
"No Proxy": "Sin proxy",
|
|
149
|
+
"Comma-separated hostnames/domains to bypass the proxy.": "Nombres de host/dominios separados por comas para omitir el proxy.",
|
|
150
|
+
"Test proxy URL": "Prueba URL del proxy",
|
|
151
|
+
"Proxy settings applied": "Configuración de proxy aplicada",
|
|
152
|
+
"Proxy enabled": "Proxy habilitado",
|
|
153
|
+
"Proxy disabled": "Proxy deshabilitado",
|
|
154
|
+
"Proxy test OK": "Prueba de proxy OK",
|
|
155
|
+
"Proxy test failed": "Falha en la prueba de proxy",
|
|
156
|
+
"Please enter a Proxy URL to test": "Por favor ingrese una URL de proxy para probar",
|
|
157
|
+
"Observability": "Observabilidad",
|
|
158
|
+
"Enable Observability": "Habilitar observabilidad",
|
|
159
|
+
"Turn request detail recording on/off globally": "Activar/desactivar globalmente el registro de detalles de solicitud",
|
|
160
|
+
"Max Records": "Número máximo de registros",
|
|
161
|
+
"Maximum request detail records to keep (older records are auto-deleted)": "Número máximo de registros de detalle de solicitud a mantener (los registros más antiguos se eliminan automáticamente)",
|
|
162
|
+
"Batch Size": "Tamaño del lote",
|
|
163
|
+
"Number of items to accumulate before writing to database (higher = better performance)": "Número de elementos a acumular antes de escribir en la base de datos (más alto = mejor rendimiento)",
|
|
164
|
+
"Flush Interval (ms)": "Intervalo de vaciado (ms)",
|
|
165
|
+
"Maximum time to wait before flushing buffer (prevents data loss during low traffic)": "Tiempo máximo de espera antes de vaciar el búfer (evita pérdida de datos durante tráfico bajo)",
|
|
166
|
+
"Max JSON Size (KB)": "Tamaño máximo de JSON (KB)",
|
|
167
|
+
"Maximum size for each JSON field (request/response) before truncation": "Tamaño máximo para cada campo JSON (solicitud/respuesta) antes del truncamiento",
|
|
168
|
+
"All data stored on your machine": "Todos los datos almacenados en su máquina",
|
|
169
|
+
"MITM Server": "Servidor MITM",
|
|
170
|
+
"Running": "En ejecución",
|
|
171
|
+
"Stopped": "Detenido",
|
|
172
|
+
"Cert": "Certificado",
|
|
173
|
+
"Server": "Servidor",
|
|
174
|
+
"Purpose:": "Propósito:",
|
|
175
|
+
"Use Antigravity IDE & GitHub Copilot → with ANY provider/model from 9Router": "Use Antigravity IDE y GitHub Copilot → con CUALQUIER proveedor/modelo de 9Router",
|
|
176
|
+
"How it works:": "Cómo funciona:",
|
|
177
|
+
"Antigravity/Copilot IDE request → DNS redirect to localhost:443 → MITM proxy intercepts → 9Router → response to Antigravity/Copilot": "Solicitud de Antigravity/Copilot IDE → Redireccionamiento DNS a localhost:443 → El proxy MITM intercepta → 9Router → respuesta a Antigravity/Copilot",
|
|
178
|
+
"No API keys — create one in Keys page": "Sin claves API — cree una en la página Claves",
|
|
179
|
+
"sk_9router (default)": "sk_9router (predeterminado)",
|
|
180
|
+
"Server started": "Servidor iniciado",
|
|
181
|
+
"Failed to start server": "Error al iniciar el servidor",
|
|
182
|
+
"Server stopped — all DNS cleared": "Servidor detenido — todo DNS borrado",
|
|
183
|
+
"Failed to stop server": "Error al detener el servidor",
|
|
184
|
+
"Sudo password is required": "Se requiere contraseña de sudo",
|
|
185
|
+
"Stop Server": "Detener servidor",
|
|
186
|
+
"Start Server": "Iniciar servidor",
|
|
187
|
+
"Enable DNS per tool below to activate interception": "Habilite DNS para cada herramienta a continuación para activar la intercepción",
|
|
188
|
+
"Sudo Password Required": "Contraseña de Sudo requerida",
|
|
189
|
+
"Enter your sudo password to start/stop MITM server": "Ingrese su contraseña de sudo para iniciar/detener el servidor MITM",
|
|
190
|
+
"Sudo Password": "Contraseña de sudo",
|
|
191
|
+
"Click to add, click again to remove. Changes are saved automatically.": "Haz clic para agregar, haz clic de nuevo para eliminar. Los cambios se guardan automáticamente.",
|
|
192
|
+
"⚠️ Risk Notice: This provider uses a subscription/OAuth session not officially licensed for proxy/router use. Account may be restricted or banned. Use at your own risk.": "⚠️ Aviso de Riesgo: Este proveedor usa una sesión de suscripción/OAuth no licenciada oficialmente para uso de proxy/router. La cuenta puede ser restringida o baneada. Use bajo su propio riesgo.",
|
|
193
|
+
"⚠️ MITM intercepts HTTPS traffic of IDE tools (Antigravity, GitHub Copilot, Kiro) via local CA to redirect requests to your providers. May violate ToS → account ban. Use at your own risk.": "⚠️ MITM intercepta el tráfico HTTPS de herramientas IDE (Antigravity, GitHub Copilot, Kiro) mediante CA local para redirigir solicitudes a sus proveedores. Puede violar los ToS → riesgo de baneo de cuenta. Use bajo su propio riesgo.",
|
|
194
|
+
"Endpoint is exposed without an API key.": "El endpoint está expuesto sin una clave de API."
|
|
195
|
+
}
|
|
@@ -0,0 +1,195 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Cancel": "Peruuta",
|
|
3
|
+
"Delete": "Poista",
|
|
4
|
+
"Edit": "Muokkaa",
|
|
5
|
+
"Save": "Tallenna",
|
|
6
|
+
"Close": "Sulje",
|
|
7
|
+
"Add": "Lisää",
|
|
8
|
+
"Remove": "Poista",
|
|
9
|
+
"Settings": "Asetukset",
|
|
10
|
+
"Profile": "Profiili",
|
|
11
|
+
"Dashboard": "Kojelauta",
|
|
12
|
+
"Logout": "Kirjaudu ulos",
|
|
13
|
+
"Login": "Kirjaudu sisään",
|
|
14
|
+
"Providers": "Palveluntarjoajat",
|
|
15
|
+
"Usage": "Käyttötilastot",
|
|
16
|
+
"API Key": "API-avain",
|
|
17
|
+
"Connected": "Yhdistetty",
|
|
18
|
+
"Disconnected": "Yhteys katkaistu",
|
|
19
|
+
"Active": "Aktiivinen",
|
|
20
|
+
"Inactive": "Passiivinen",
|
|
21
|
+
"Success": "Onnistui",
|
|
22
|
+
"Failed": "Epäonnistui",
|
|
23
|
+
"Error": "Virhe",
|
|
24
|
+
"Warning": "Varoitus",
|
|
25
|
+
"Info": "Tiedot",
|
|
26
|
+
"Loading": "Ladataan",
|
|
27
|
+
"Search": "Hae",
|
|
28
|
+
"Filter": "Suodin",
|
|
29
|
+
"Sort": "Lajittele",
|
|
30
|
+
"Export": "Vie",
|
|
31
|
+
"Import": "Tuo",
|
|
32
|
+
"Refresh": "Päivitä",
|
|
33
|
+
"Back": "Takaisin",
|
|
34
|
+
"Next": "Seuraava",
|
|
35
|
+
"Previous": "Edellinen",
|
|
36
|
+
"Submit": "Lähetä",
|
|
37
|
+
"Confirm": "Vahvista",
|
|
38
|
+
"Yes": "Kyllä",
|
|
39
|
+
"No": "Ei",
|
|
40
|
+
"OK": "OK",
|
|
41
|
+
"Apply": "Käytä",
|
|
42
|
+
"Reset": "Nollaa",
|
|
43
|
+
"Clear": "Tyhjennä",
|
|
44
|
+
"Select": "Valitse",
|
|
45
|
+
"Upload": "Lataa",
|
|
46
|
+
"Download": "Lataa",
|
|
47
|
+
"Copy": "Kopioi",
|
|
48
|
+
"Paste": "Liitä",
|
|
49
|
+
"Cut": "Leikkaa",
|
|
50
|
+
"Undo": "Kumoa",
|
|
51
|
+
"Redo": "Tee uudelleen",
|
|
52
|
+
"Name": "Nimi",
|
|
53
|
+
"Description": "Kuvaus",
|
|
54
|
+
"Status": "Tila",
|
|
55
|
+
"Type": "Tyyppi",
|
|
56
|
+
"Date": "Päivämäärä",
|
|
57
|
+
"Time": "Aika",
|
|
58
|
+
"Created": "Luotu",
|
|
59
|
+
"Updated": "Päivitetty",
|
|
60
|
+
"Actions": "Toiminnot",
|
|
61
|
+
"Details": "Tiedot",
|
|
62
|
+
"View": "Näytä",
|
|
63
|
+
"New": "Uusi",
|
|
64
|
+
"Total": "Yhteensä",
|
|
65
|
+
"Count": "Määrä",
|
|
66
|
+
"Price": "Hinta",
|
|
67
|
+
"Cost": "Kustannus",
|
|
68
|
+
"Free": "Ilmainen",
|
|
69
|
+
"Paid": "Maksettu",
|
|
70
|
+
"Enable": "Ota käyttöön",
|
|
71
|
+
"Disable": "Poista käytöstä",
|
|
72
|
+
"Enabled": "Käytössä",
|
|
73
|
+
"Disabled": "Pois käytöstä",
|
|
74
|
+
"Online": "Online",
|
|
75
|
+
"Offline": "Offline",
|
|
76
|
+
"Available": "Saatavilla",
|
|
77
|
+
"Unavailable": "Ei saatavilla",
|
|
78
|
+
"Required": "Pakollinen",
|
|
79
|
+
"Optional": "Valinnainen",
|
|
80
|
+
"Default": "Oletus",
|
|
81
|
+
"Custom": "Mukautettu",
|
|
82
|
+
"Advanced": "Lisäasetukset",
|
|
83
|
+
"Basic": "Perus",
|
|
84
|
+
"Help": "Apua",
|
|
85
|
+
"Support": "Tuki",
|
|
86
|
+
"Documentation": "Dokumentaatio",
|
|
87
|
+
"Version": "Versio",
|
|
88
|
+
"Language": "Kieli",
|
|
89
|
+
"Theme": "Teema",
|
|
90
|
+
"Light": "Vaalea",
|
|
91
|
+
"Dark": "Tumma",
|
|
92
|
+
"Auto": "Automaattinen",
|
|
93
|
+
"Endpoint": "Pääteeksi",
|
|
94
|
+
"Combos": "Yhdistelmät",
|
|
95
|
+
"Quota Tracker": "Kiintiyden seuranta",
|
|
96
|
+
"MITM": "MITM",
|
|
97
|
+
"CLI Tools": "Työkalut",
|
|
98
|
+
"Console Log": "Konsolilokit",
|
|
99
|
+
"System": "Järjestelmä",
|
|
100
|
+
"Debug": "Virheenkorjaus",
|
|
101
|
+
"Shutdown": "Sammuta",
|
|
102
|
+
"Close Proxy": "Sulje välityspalvelin",
|
|
103
|
+
"Are you sure you want to close the proxy server?": "Oletko varma, että haluat sulkea välityspalvelimen?",
|
|
104
|
+
"Server Disconnected": "Palvelin katkaistiin",
|
|
105
|
+
"The proxy server has been stopped.": "Välityspalvelin on pysäytetty.",
|
|
106
|
+
"Reload Page": "Päivitä sivu",
|
|
107
|
+
"Service is running in terminal. You can close this web page. Shutdown will stop the service.": "Palvelu on käynnissä terminaalissa. Voit sulkea tämän verkkosivun. Sammutus pysäyttää palvelun.",
|
|
108
|
+
"Manage your AI provider connections": "Hallitse AI-palveluntarjoajayhteyksääsi",
|
|
109
|
+
"Model combos with fallback": "Mallien yhdistelmät palautuksella",
|
|
110
|
+
"Monitor your API usage, token consumption, and request logs": "Valvo API-käyttöä, tunnusmerkkien kulutusta ja pyyntölokeja",
|
|
111
|
+
"Intercept CLI tool traffic and route through 9Router": "Sieppaa CLI-työkaluliikenteen ja reitit 9Routerin kautta",
|
|
112
|
+
"Configure CLI tools": "Konfiguroi CLI-työkalut",
|
|
113
|
+
"API endpoint configuration": "API-päätepisteen konfiguraatio",
|
|
114
|
+
"Manage your preferences": "Hallitse asetuksiasi",
|
|
115
|
+
"Debug translation flow between formats": "Virheenkorjaus kääntämisvirta formaattien välillä",
|
|
116
|
+
"Live server console output": "Palvelimen konsolin tulostus reaaliajassa",
|
|
117
|
+
"Create model combos with fallback support": "Luo malliyhdistelmiä palautustuen kanssa",
|
|
118
|
+
"Local Mode": "Paikallinen tila",
|
|
119
|
+
"Running on your machine": "Käynnissä koneellasi",
|
|
120
|
+
"Database Location": "Tietokannan sijainti",
|
|
121
|
+
"Download Backup": "Lataa varmuuskopio",
|
|
122
|
+
"Import Backup": "Tuo varmuuskopio",
|
|
123
|
+
"Database backup downloaded": "Tietokannan varmuuskopio ladattiin",
|
|
124
|
+
"Database imported successfully": "Tietokanta tuotiin onnistuneesti",
|
|
125
|
+
"Security": "Turvallisuus",
|
|
126
|
+
"Require login": "Vaadi kirjautumista",
|
|
127
|
+
"When ON, dashboard requires password. When OFF, access without login.": "Kun ON, kojelauta vaatii salasanaa. Kun OFF, pääsy ilman kirjautumista.",
|
|
128
|
+
"Current Password": "Nykyinen salasana",
|
|
129
|
+
"Enter current password": "Kirjoita nykyinen salasana",
|
|
130
|
+
"New Password": "Uusi salasana",
|
|
131
|
+
"Enter new password": "Kirjoita uusi salasana",
|
|
132
|
+
"Confirm New Password": "Vahvista uusi salasana",
|
|
133
|
+
"Confirm new password": "Vahvista uusi salasana",
|
|
134
|
+
"Update Password": "Päivitä salasana",
|
|
135
|
+
"Set Password": "Aseta salasana",
|
|
136
|
+
"Password updated successfully": "Salasana päivitettiin onnistuneesti",
|
|
137
|
+
"Passwords do not match": "Salasanat eivät täsmää",
|
|
138
|
+
"Routing Strategy": "Reititysstrategia",
|
|
139
|
+
"Round Robin": "Kiertelevä robotti",
|
|
140
|
+
"Cycle through accounts to distribute load": "Kierrä tileillä kuormituksen jakamiseksi",
|
|
141
|
+
"Sticky Limit": "Kiinteä raja",
|
|
142
|
+
"Calls per account before switching": "Puhelut tiliä kohti ennen vaihtamista",
|
|
143
|
+
"Network": "Verkko",
|
|
144
|
+
"Outbound Proxy": "Lähtevä välityspalvelin",
|
|
145
|
+
"Enable proxy for OAuth + provider outbound requests.": "Ota käyttöön välityspalvelin OAuth + palveluntarjoajan lähteviin pyyntöihin.",
|
|
146
|
+
"Proxy URL": "Välityspalvelimen URL",
|
|
147
|
+
"Leave empty to inherit existing env proxy (if any).": "Jätä tyhjäksi periä olemassa olevaa env-välityspalvelinta (jos sellainen on).",
|
|
148
|
+
"No Proxy": "Ei välityspalvelinta",
|
|
149
|
+
"Comma-separated hostnames/domains to bypass the proxy.": "Pilkulla erotetut isäntänimet/etäisyydet välityspalvelimen ohittamiseksi.",
|
|
150
|
+
"Test proxy URL": "Testaa välityspalvelimen URL",
|
|
151
|
+
"Proxy settings applied": "Välityspalvelimen asetukset käytössä",
|
|
152
|
+
"Proxy enabled": "Välityspalvelin otettu käyttöön",
|
|
153
|
+
"Proxy disabled": "Välityspalvelin poistettu käytöstä",
|
|
154
|
+
"Proxy test OK": "Välityspalvelimen testi OK",
|
|
155
|
+
"Proxy test failed": "Välityspalvelimen testi epäonnistui",
|
|
156
|
+
"Please enter a Proxy URL to test": "Kirjoita testattava välityspalvelimen URL",
|
|
157
|
+
"Observability": "Havainnointitarkkuus",
|
|
158
|
+
"Enable Observability": "Ota havainnointitarkkuus käyttöön",
|
|
159
|
+
"Turn request detail recording on/off globally": "Poista pyynnön yksityiskohtien tallentaminen käyttöön/pois käytöstä maailmanlaajuisesti",
|
|
160
|
+
"Max Records": "Max-tietueet",
|
|
161
|
+
"Maximum request detail records to keep (older records are auto-deleted)": "Maksimaalinen pyynnön yksityiskohtitietueet säilytettäväksi (vanhemmat tietueet poistetaan automaattisesti)",
|
|
162
|
+
"Batch Size": "Erän koko",
|
|
163
|
+
"Number of items to accumulate before writing to database (higher = better performance)": "Tietokantaan kirjoittamista edeltävien kerättävien kohteiden lukumäärä (korkeampi = parempi suorituskyky)",
|
|
164
|
+
"Flush Interval (ms)": "Tyhjennysväli (ms)",
|
|
165
|
+
"Maximum time to wait before flushing buffer (prevents data loss during low traffic)": "Enimmäisaika odottaa ennen puskurin tyhjentämistä (estää tietojen menetyksen matalan liikenteen aikana)",
|
|
166
|
+
"Max JSON Size (KB)": "Maksimaalinen JSON-koko (KB)",
|
|
167
|
+
"Maximum size for each JSON field (request/response) before truncation": "Kunkin JSON-kentän (pyynnön/vastauksen) enimmäiskoko ennen katkaisua",
|
|
168
|
+
"All data stored on your machine": "Kaikki tiedot tallennettu koneellasi",
|
|
169
|
+
"MITM Server": "MITM-palvelin",
|
|
170
|
+
"Running": "Käynnissä",
|
|
171
|
+
"Stopped": "Pysäytetty",
|
|
172
|
+
"Cert": "Sertifikaatti",
|
|
173
|
+
"Server": "Palvelin",
|
|
174
|
+
"Purpose:": "Tarkoitus:",
|
|
175
|
+
"Use Antigravity IDE & GitHub Copilot → with ANY provider/model from 9Router": "Käytä Antigravity IDE:tä ja GitHub Copilot:ia → minkä tahansa palveluntarjoajan/mallin kanssa 9Routerista",
|
|
176
|
+
"How it works:": "Kuinka se toimii:",
|
|
177
|
+
"Antigravity/Copilot IDE request → DNS redirect to localhost:443 → MITM proxy intercepts → 9Router → response to Antigravity/Copilot": "Antigravity/Copilot IDE-pyyntö → DNS-uudelleenohjaus localhost:443:iin → MITM-välityspalvelin sieppaa → 9Router → vastaus Antigravity/Copilot:ille",
|
|
178
|
+
"No API keys — create one in Keys page": "Ei API-avaimia — luo yksi Keys-sivulla",
|
|
179
|
+
"sk_9router (default)": "sk_9router (oletus)",
|
|
180
|
+
"Server started": "Palvelin käynnistetty",
|
|
181
|
+
"Failed to start server": "Palvelimen käynnistäminen epäonnistui",
|
|
182
|
+
"Server stopped — all DNS cleared": "Palvelin pysäytetty — kaikki DNS poistettu",
|
|
183
|
+
"Failed to stop server": "Palvelimen pysäyttäminen epäonnistui",
|
|
184
|
+
"Sudo password is required": "Sudo-salasana vaaditaan",
|
|
185
|
+
"Stop Server": "Pysäytä palvelin",
|
|
186
|
+
"Start Server": "Käynnistä palvelin",
|
|
187
|
+
"Enable DNS per tool below to activate interception": "Ota DNS käyttöön kunkin alla olevan työkalun osalta aktivoidaksesi sieppauksen",
|
|
188
|
+
"Sudo Password Required": "Sudo-salasana vaaditaan",
|
|
189
|
+
"Enter your sudo password to start/stop MITM server": "Kirjoita sudo-salasanasi MITM-palvelimen käynnistämiseksi/pysäyttämiseksi",
|
|
190
|
+
"Sudo Password": "Sudo-salasana",
|
|
191
|
+
"Click to add, click again to remove. Changes are saved automatically.": "Napsauta lisätäksesi, napsauta uudelleen poistaaksesi. Muutokset tallennetaan automaattisesti.",
|
|
192
|
+
"⚠️ Risk Notice: This provider uses a subscription/OAuth session not officially licensed for proxy/router use. Account may be restricted or banned. Use at your own risk.": "⚠️ Riski-ilmoitus: Tämä palveluntarjoaja käyttää tilaus-/OAuth-istuntoa, jota ei ole virallisesti lisensoitu välityspalvelin-/reititinkäyttöön. Tili voidaan rajoittaa tai estää. Käyttö omalla vastuulla.",
|
|
193
|
+
"⚠️ MITM intercepts HTTPS traffic of IDE tools (Antigravity, GitHub Copilot, Kiro) via local CA to redirect requests to your providers. May violate ToS → account ban. Use at your own risk.": "⚠️ MITM sieppaa IDE-työkalujen (Antigravity, GitHub Copilot, Kiro) HTTPS-liikennettä paikallisen CA:n kautta uudelleenohjatakseen pyyntöjä palveluntarjoajillesi. Voi rikkoa ToS:ää → tilin estoriski. Käyttö omalla vastuulla.",
|
|
194
|
+
"Endpoint is exposed without an API key.": "Päätepiste on alttiina ilman API-avainta."
|
|
195
|
+
}
|
|
@@ -0,0 +1,195 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Cancel": "Annuler",
|
|
3
|
+
"Delete": "Supprimer",
|
|
4
|
+
"Edit": "Modifier",
|
|
5
|
+
"Save": "Enregistrer",
|
|
6
|
+
"Close": "Fermer",
|
|
7
|
+
"Add": "Ajouter",
|
|
8
|
+
"Remove": "Retirer",
|
|
9
|
+
"Settings": "Paramètres",
|
|
10
|
+
"Profile": "Profil",
|
|
11
|
+
"Dashboard": "Tableau de bord",
|
|
12
|
+
"Logout": "Déconnexion",
|
|
13
|
+
"Login": "Connexion",
|
|
14
|
+
"Providers": "Fournisseurs",
|
|
15
|
+
"Usage": "Statistiques",
|
|
16
|
+
"API Key": "Clé API",
|
|
17
|
+
"Connected": "Connecté",
|
|
18
|
+
"Disconnected": "Déconnecté",
|
|
19
|
+
"Active": "Actif",
|
|
20
|
+
"Inactive": "Inactif",
|
|
21
|
+
"Success": "Succès",
|
|
22
|
+
"Failed": "Échoué",
|
|
23
|
+
"Error": "Erreur",
|
|
24
|
+
"Warning": "Avertissement",
|
|
25
|
+
"Info": "Informations",
|
|
26
|
+
"Loading": "Chargement",
|
|
27
|
+
"Search": "Rechercher",
|
|
28
|
+
"Filter": "Filtrer",
|
|
29
|
+
"Sort": "Trier",
|
|
30
|
+
"Export": "Exporter",
|
|
31
|
+
"Import": "Importer",
|
|
32
|
+
"Refresh": "Actualiser",
|
|
33
|
+
"Back": "Retour",
|
|
34
|
+
"Next": "Suivant",
|
|
35
|
+
"Previous": "Précédent",
|
|
36
|
+
"Submit": "Soumettre",
|
|
37
|
+
"Confirm": "Confirmer",
|
|
38
|
+
"Yes": "Oui",
|
|
39
|
+
"No": "Non",
|
|
40
|
+
"OK": "OK",
|
|
41
|
+
"Apply": "Appliquer",
|
|
42
|
+
"Reset": "Réinitialiser",
|
|
43
|
+
"Clear": "Effacer",
|
|
44
|
+
"Select": "Sélectionner",
|
|
45
|
+
"Upload": "Télécharger",
|
|
46
|
+
"Download": "Télécharger",
|
|
47
|
+
"Copy": "Copier",
|
|
48
|
+
"Paste": "Coller",
|
|
49
|
+
"Cut": "Couper",
|
|
50
|
+
"Undo": "Annuler",
|
|
51
|
+
"Redo": "Refaire",
|
|
52
|
+
"Name": "Nom",
|
|
53
|
+
"Description": "Description",
|
|
54
|
+
"Status": "Statut",
|
|
55
|
+
"Type": "Type",
|
|
56
|
+
"Date": "Date",
|
|
57
|
+
"Time": "Heure",
|
|
58
|
+
"Created": "Créé",
|
|
59
|
+
"Updated": "Modifié",
|
|
60
|
+
"Actions": "Actions",
|
|
61
|
+
"Details": "Détails",
|
|
62
|
+
"View": "Afficher",
|
|
63
|
+
"New": "Nouveau",
|
|
64
|
+
"Total": "Total",
|
|
65
|
+
"Count": "Nombre",
|
|
66
|
+
"Price": "Prix",
|
|
67
|
+
"Cost": "Coût",
|
|
68
|
+
"Free": "Gratuit",
|
|
69
|
+
"Paid": "Payant",
|
|
70
|
+
"Enable": "Activer",
|
|
71
|
+
"Disable": "Désactiver",
|
|
72
|
+
"Enabled": "Activé",
|
|
73
|
+
"Disabled": "Désactivé",
|
|
74
|
+
"Online": "En ligne",
|
|
75
|
+
"Offline": "Hors ligne",
|
|
76
|
+
"Available": "Disponible",
|
|
77
|
+
"Unavailable": "Indisponible",
|
|
78
|
+
"Required": "Requis",
|
|
79
|
+
"Optional": "Facultatif",
|
|
80
|
+
"Default": "Par défaut",
|
|
81
|
+
"Custom": "Personnalisé",
|
|
82
|
+
"Advanced": "Avancé",
|
|
83
|
+
"Basic": "Basique",
|
|
84
|
+
"Help": "Aide",
|
|
85
|
+
"Support": "Support",
|
|
86
|
+
"Documentation": "Documentation",
|
|
87
|
+
"Version": "Version",
|
|
88
|
+
"Language": "Langue",
|
|
89
|
+
"Theme": "Thème",
|
|
90
|
+
"Light": "Clair",
|
|
91
|
+
"Dark": "Sombre",
|
|
92
|
+
"Auto": "Automatique",
|
|
93
|
+
"Endpoint": "Point final",
|
|
94
|
+
"Combos": "Combinaisons",
|
|
95
|
+
"Quota Tracker": "Suivi des quotas",
|
|
96
|
+
"MITM": "MITM",
|
|
97
|
+
"CLI Tools": "Outils CLI",
|
|
98
|
+
"Console Log": "Journaux de console",
|
|
99
|
+
"System": "Système",
|
|
100
|
+
"Debug": "Débogage",
|
|
101
|
+
"Shutdown": "Arrêt",
|
|
102
|
+
"Close Proxy": "Fermer le proxy",
|
|
103
|
+
"Are you sure you want to close the proxy server?": "Êtes-vous sûr de vouloir fermer le serveur proxy ?",
|
|
104
|
+
"Server Disconnected": "Serveur déconnecté",
|
|
105
|
+
"The proxy server has been stopped.": "Le serveur proxy a été arrêté.",
|
|
106
|
+
"Reload Page": "Recharger la page",
|
|
107
|
+
"Service is running in terminal. You can close this web page. Shutdown will stop the service.": "Le service s'exécute dans le terminal. Vous pouvez fermer cette page web. L'arrêt arrêtera le service.",
|
|
108
|
+
"Manage your AI provider connections": "Gérez vos connexions de fournisseur IA",
|
|
109
|
+
"Model combos with fallback": "Combinaisons de modèles avec secours",
|
|
110
|
+
"Monitor your API usage, token consumption, and request logs": "Surveillez votre utilisation d'API, la consommation de jetons et les journaux de requête",
|
|
111
|
+
"Intercept CLI tool traffic and route through 9Router": "Interceptez le trafic des outils CLI et acheminez via 9Router",
|
|
112
|
+
"Configure CLI tools": "Configurer les outils CLI",
|
|
113
|
+
"API endpoint configuration": "Configuration du point final API",
|
|
114
|
+
"Manage your preferences": "Gérez vos préférences",
|
|
115
|
+
"Debug translation flow between formats": "Déboguer le flux de traduction entre les formats",
|
|
116
|
+
"Live server console output": "Sortie de la console du serveur en direct",
|
|
117
|
+
"Create model combos with fallback support": "Créer des combinaisons de modèles avec support de secours",
|
|
118
|
+
"Local Mode": "Mode local",
|
|
119
|
+
"Running on your machine": "S'exécute sur votre machine",
|
|
120
|
+
"Database Location": "Emplacement de la base de données",
|
|
121
|
+
"Download Backup": "Télécharger la sauvegarde",
|
|
122
|
+
"Import Backup": "Importer la sauvegarde",
|
|
123
|
+
"Database backup downloaded": "Sauvegarde de la base de données téléchargée",
|
|
124
|
+
"Database imported successfully": "Base de données importée avec succès",
|
|
125
|
+
"Security": "Sécurité",
|
|
126
|
+
"Require login": "Exiger une connexion",
|
|
127
|
+
"When ON, dashboard requires password. When OFF, access without login.": "Lorsqu'il est ACTIVÉ, le tableau de bord nécessite un mot de passe. Lorsqu'il est DÉSACTIVÉ, accès sans connexion.",
|
|
128
|
+
"Current Password": "Mot de passe actuel",
|
|
129
|
+
"Enter current password": "Entrez le mot de passe actuel",
|
|
130
|
+
"New Password": "Nouveau mot de passe",
|
|
131
|
+
"Enter new password": "Entrez le nouveau mot de passe",
|
|
132
|
+
"Confirm New Password": "Confirmer le nouveau mot de passe",
|
|
133
|
+
"Confirm new password": "Confirmez le nouveau mot de passe",
|
|
134
|
+
"Update Password": "Mettre à jour le mot de passe",
|
|
135
|
+
"Set Password": "Définir le mot de passe",
|
|
136
|
+
"Password updated successfully": "Mot de passe mis à jour avec succès",
|
|
137
|
+
"Passwords do not match": "Les mots de passe ne correspondent pas",
|
|
138
|
+
"Routing Strategy": "Stratégie d'acheminement",
|
|
139
|
+
"Round Robin": "Round Robin",
|
|
140
|
+
"Cycle through accounts to distribute load": "Parcourir les comptes pour distribuer la charge",
|
|
141
|
+
"Sticky Limit": "Limite collante",
|
|
142
|
+
"Calls per account before switching": "Appels par compte avant de changer",
|
|
143
|
+
"Network": "Réseau",
|
|
144
|
+
"Outbound Proxy": "Proxy sortant",
|
|
145
|
+
"Enable proxy for OAuth + provider outbound requests.": "Activez le proxy pour OAuth + les demandes sortantes du fournisseur.",
|
|
146
|
+
"Proxy URL": "URL du proxy",
|
|
147
|
+
"Leave empty to inherit existing env proxy (if any).": "Laissez vide pour hériter du proxy env existant (le cas échéant).",
|
|
148
|
+
"No Proxy": "Pas de proxy",
|
|
149
|
+
"Comma-separated hostnames/domains to bypass the proxy.": "Noms d'hôtes/domaines séparés par des virgules pour contourner le proxy.",
|
|
150
|
+
"Test proxy URL": "Tester l'URL du proxy",
|
|
151
|
+
"Proxy settings applied": "Paramètres de proxy appliqués",
|
|
152
|
+
"Proxy enabled": "Proxy activé",
|
|
153
|
+
"Proxy disabled": "Proxy désactivé",
|
|
154
|
+
"Proxy test OK": "Test de proxy OK",
|
|
155
|
+
"Proxy test failed": "Échec du test de proxy",
|
|
156
|
+
"Please enter a Proxy URL to test": "Veuillez entrer une URL de proxy à tester",
|
|
157
|
+
"Observability": "Observabilité",
|
|
158
|
+
"Enable Observability": "Activer l'observabilité",
|
|
159
|
+
"Turn request detail recording on/off globally": "Activer/désactiver l'enregistrement des détails de la requête globalement",
|
|
160
|
+
"Max Records": "Nombre maximum d'enregistrements",
|
|
161
|
+
"Maximum request detail records to keep (older records are auto-deleted)": "Nombre maximum d'enregistrements de détails de requête à conserver (les anciens enregistrements sont supprimés automatiquement)",
|
|
162
|
+
"Batch Size": "Taille du lot",
|
|
163
|
+
"Number of items to accumulate before writing to database (higher = better performance)": "Nombre d'éléments à accumuler avant d'écrire dans la base de données (plus élevé = meilleures performances)",
|
|
164
|
+
"Flush Interval (ms)": "Intervalle de vidage (ms)",
|
|
165
|
+
"Maximum time to wait before flushing buffer (prevents data loss during low traffic)": "Temps maximum d'attente avant de vider le tampon (évite la perte de données en cas de faible trafic)",
|
|
166
|
+
"Max JSON Size (KB)": "Taille JSON maximale (KB)",
|
|
167
|
+
"Maximum size for each JSON field (request/response) before truncation": "Taille maximale pour chaque champ JSON (demande/réponse) avant la troncature",
|
|
168
|
+
"All data stored on your machine": "Toutes les données stockées sur votre machine",
|
|
169
|
+
"MITM Server": "Serveur MITM",
|
|
170
|
+
"Running": "En cours d'exécution",
|
|
171
|
+
"Stopped": "Arrêté",
|
|
172
|
+
"Cert": "Certificat",
|
|
173
|
+
"Server": "Serveur",
|
|
174
|
+
"Purpose:": "Objectif :",
|
|
175
|
+
"Use Antigravity IDE & GitHub Copilot → with ANY provider/model from 9Router": "Utilisez Antigravity IDE et GitHub Copilot → avec N'IMPORTE QUEL fournisseur/modèle de 9Router",
|
|
176
|
+
"How it works:": "Comment ça marche :",
|
|
177
|
+
"Antigravity/Copilot IDE request → DNS redirect to localhost:443 → MITM proxy intercepts → 9Router → response to Antigravity/Copilot": "Demande Antigravity/Copilot IDE → Redirection DNS vers localhost:443 → Le proxy MITM intercepte → 9Router → réponse à Antigravity/Copilot",
|
|
178
|
+
"No API keys — create one in Keys page": "Aucune clé API — créez-en une dans la page Clés",
|
|
179
|
+
"sk_9router (default)": "sk_9router (par défaut)",
|
|
180
|
+
"Server started": "Serveur démarré",
|
|
181
|
+
"Failed to start server": "Impossible de démarrer le serveur",
|
|
182
|
+
"Server stopped — all DNS cleared": "Serveur arrêté — tout DNS effacé",
|
|
183
|
+
"Failed to stop server": "Impossible d'arrêter le serveur",
|
|
184
|
+
"Sudo password is required": "Le mot de passe sudo est requis",
|
|
185
|
+
"Stop Server": "Arrêter le serveur",
|
|
186
|
+
"Start Server": "Démarrer le serveur",
|
|
187
|
+
"Enable DNS per tool below to activate interception": "Activez le DNS pour chaque outil ci-dessous pour activer l'interception",
|
|
188
|
+
"Sudo Password Required": "Mot de passe Sudo requis",
|
|
189
|
+
"Enter your sudo password to start/stop MITM server": "Entrez votre mot de passe sudo pour démarrer/arrêter le serveur MITM",
|
|
190
|
+
"Sudo Password": "Mot de passe sudo",
|
|
191
|
+
"Click to add, click again to remove. Changes are saved automatically.": "Cliquez pour ajouter, cliquez à nouveau pour supprimer. Les modifications sont enregistrées automatiquement.",
|
|
192
|
+
"⚠️ Risk Notice: This provider uses a subscription/OAuth session not officially licensed for proxy/router use. Account may be restricted or banned. Use at your own risk.": "⚠️ Avis de risque : Ce fournisseur utilise une session d'abonnement/OAuth non officiellement autorisée pour une utilisation proxy/routeur. Le compte peut être restreint ou banni. Utilisez à vos propres risques.",
|
|
193
|
+
"⚠️ MITM intercepts HTTPS traffic of IDE tools (Antigravity, GitHub Copilot, Kiro) via local CA to redirect requests to your providers. May violate ToS → account ban. Use at your own risk.": "⚠️ MITM intercepte le trafic HTTPS des outils IDE (Antigravity, GitHub Copilot, Kiro) via une CA locale pour rediriger les requêtes vers vos fournisseurs. Peut violer les CGU → risque de bannissement de compte. Utilisez à vos propres risques.",
|
|
194
|
+
"Endpoint is exposed without an API key.": "Le point de terminaison est exposé sans clé API."
|
|
195
|
+
}
|