nolo-cli 0.1.39 → 0.1.41
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 +4 -4
- package/agent-runtime/dialogWritePlan.ts +39 -0
- package/agent-runtime/hostAdapter.ts +4 -0
- package/agent-runtime/hybridRecordStore.ts +5 -3
- package/agent-runtime/index.ts +15 -0
- package/agent-runtime/localLoop.ts +87 -7
- package/agent-runtime/localToolPolicy.ts +2 -13
- package/agent-runtime/localWorkspaceTools.ts +42 -110
- package/agent-runtime/runtimeToolPolicy.ts +2 -11
- package/agent-runtime/runtimeToolSurface.ts +198 -0
- package/agent-runtime/types.ts +1 -0
- package/agentAliases.ts +2 -1
- package/agentRunCommand.ts +10 -32
- package/agentRuntimeLocal.ts +1 -0
- package/ai/agent/_executeModel.ts +146 -0
- package/ai/agent/agentSlice.ts +556 -1
- package/ai/agent/appWorkingMemory.ts +126 -0
- package/ai/agent/buildEditingContext.ts +378 -0
- package/ai/agent/buildSystemPrompt.ts +585 -0
- package/ai/agent/canvasEditingContext.ts +49 -0
- package/ai/agent/cleanAgentMessages.ts +140 -0
- package/ai/agent/cliChatClient.ts +153 -0
- package/ai/agent/cliExecutor.ts +314 -40
- package/ai/agent/contextCompiler.ts +107 -0
- package/ai/agent/contextLayerContract.ts +44 -0
- package/ai/agent/createAgentSchema.ts +272 -0
- package/ai/agent/currentTimeContext.ts +65 -0
- package/ai/agent/executeToolCall.ts +58 -0
- package/ai/agent/fetchAgentContexts.ts +42 -0
- package/ai/agent/generatePrompt.ts +3 -0
- package/ai/agent/getFullChatContextKeys.ts +168 -0
- package/ai/agent/guidedCreation/capabilities.ts +84 -0
- package/ai/agent/guidedCreation/types.ts +38 -0
- package/ai/agent/isLiveAudioOnlyAgent.ts +26 -0
- package/ai/agent/liveAudioModel.ts +2 -0
- package/ai/agent/pageBuilderHandoffRules.ts +75 -0
- package/ai/agent/persistMessageWithFixedId.ts +37 -0
- package/ai/agent/planSlice.ts +259 -0
- package/ai/agent/referenceUtils.ts +229 -0
- package/ai/agent/runAgentBackground.ts +310 -0
- package/ai/agent/runAgentClientLoop.ts +164 -0
- package/ai/agent/runtimeGuidance.ts +116 -0
- package/ai/agent/serverOrigin.ts +7 -0
- package/ai/agent/startParallelAgentStreams.ts +424 -0
- package/ai/agent/startupProtocol.ts +53 -0
- package/ai/agent/streamAgentChatTurn.ts +2001 -0
- package/ai/agent/streamAgentChatTurnUtils.ts +860 -0
- package/ai/agent/toolFailureGuard.ts +99 -0
- package/ai/agent/types.ts +73 -0
- package/ai/agent/utils/imageOutput.ts +37 -0
- package/ai/agent/utils/publicImageAgentMode.ts +26 -0
- package/ai/ai.locale.ts +1095 -0
- package/ai/chat/accumulateToolCallChunks.ts +126 -0
- package/ai/chat/fetchUtils.ts +143 -0
- package/ai/chat/inlineImageUrlsForCustomProvider.ts +117 -0
- package/ai/chat/parseApiError.ts +67 -0
- package/ai/chat/parseMultilineSSE.ts +95 -0
- package/ai/chat/sendOpenAICompletionsRequest.ts +897 -0
- package/ai/chat/sendOpenAIResponseRequest.ts +720 -0
- package/ai/chat/serverProxyRetry.ts +102 -0
- package/ai/chat/shouldUseServerProxy.ts +18 -0
- package/ai/chat/streamRetry.ts +46 -0
- package/ai/chat/updateTotalUsage.ts +89 -0
- package/ai/context/buildReferenceContext.ts +437 -0
- package/ai/context/retention.ts +165 -0
- package/ai/context/tokenUtils.ts +78 -0
- package/ai/llm/agentCapabilities.ts +74 -0
- package/ai/llm/deepinfra.ts +79 -0
- package/ai/llm/fireworks.ts +68 -0
- package/ai/llm/generateRequestBody.ts +165 -0
- package/ai/llm/getModelContextWindow.ts +93 -0
- package/ai/llm/getPricing.ts +252 -0
- package/ai/llm/imagePricing.ts +66 -0
- package/ai/llm/isResponseAPIModel.ts +13 -0
- package/ai/llm/kimi.ts +23 -0
- package/ai/llm/mimo.ts +99 -0
- package/ai/llm/mistral.ts +21 -0
- package/ai/llm/models.ts +45 -0
- package/ai/llm/openrouterModels.ts +6 -0
- package/ai/llm/providers.ts +313 -0
- package/ai/llm/reasoningModels.ts +27 -0
- package/ai/llm/types.ts +82 -0
- package/ai/llm/usageRequestOptions.ts +59 -0
- package/ai/memory/queryShared.ts +161 -0
- package/ai/memory/recentRelationshipRecap.ts +247 -0
- package/ai/memory/remember.ts +167 -0
- package/ai/memory/store.ts +20 -0
- package/ai/memory/storeShared.ts +76 -0
- package/ai/memory/types.ts +46 -0
- package/ai/memory/understanding.ts +349 -0
- package/ai/memory/understandingGreeting.ts +264 -0
- package/ai/policy/personalizationDialog.ts +333 -0
- package/ai/policy/runtimePolicy.ts +454 -0
- package/ai/policy/selfUpdateFields.ts +48 -0
- package/ai/policy/types.ts +64 -0
- package/ai/skills/referenceRuntime.ts +274 -0
- package/ai/skills/skillDiagnostics.ts +251 -0
- package/ai/skills/skillDocBuilder.ts +139 -0
- package/ai/skills/skillSummaryMarker.ts +26 -0
- package/ai/token/calculatePrice.ts +576 -0
- package/ai/token/missingUsageEstimate.ts +42 -0
- package/ai/token/normalizeUsage.ts +124 -0
- package/ai/token/openaiImageGenerationUsage.ts +56 -0
- package/ai/token/prepareTokenUsageData.ts +93 -0
- package/ai/token/resolveBillingTarget.ts +52 -0
- package/ai/token/saveTokenRecord.ts +53 -0
- package/ai/token/types.ts +103 -0
- package/ai/tools/agent/agentTools.ts +235 -0
- package/ai/tools/agent/agentUpdateShared.ts +311 -0
- package/ai/tools/agent/callAgentTool.ts +139 -0
- package/ai/tools/agent/createAgentTool.ts +512 -0
- package/ai/tools/agent/createDialogTool.ts +69 -0
- package/ai/tools/agent/createSkillAgentTool.ts +62 -0
- package/ai/tools/agent/parallelBudget.ts +221 -0
- package/ai/tools/agent/prepareAgentDraftTool.ts +159 -0
- package/ai/tools/agent/presets/appBuilderPreset.ts +154 -0
- package/ai/tools/agent/runLlmTool.ts +96 -0
- package/ai/tools/agent/runStreamingAgentTool.ts +73 -0
- package/ai/tools/agent/skillAgentArgs.ts +106 -0
- package/ai/tools/agent/startAgentDialogTool.ts +53 -0
- package/ai/tools/agent/streamParallelAgentsTool.ts +123 -0
- package/ai/tools/agent/updateAgentTool.ts +96 -0
- package/ai/tools/agent/updateSelfTool.ts +113 -0
- package/ai/tools/amazonProductScraperTool.ts +86 -0
- package/ai/tools/apifyActorClient.ts +45 -0
- package/ai/tools/appEditGuard.ts +372 -0
- package/ai/tools/appReadSnapshot.ts +153 -0
- package/ai/tools/appTools.ts +1549 -0
- package/ai/tools/applyEditTool.ts +259 -0
- package/ai/tools/applyLineEditsTool.ts +315 -0
- package/ai/tools/browserTools/click.ts +33 -0
- package/ai/tools/browserTools/closeSession.ts +29 -0
- package/ai/tools/browserTools/common.ts +27 -0
- package/ai/tools/browserTools/openSession.ts +48 -0
- package/ai/tools/browserTools/readContent.ts +38 -0
- package/ai/tools/browserTools/selectOption.ts +46 -0
- package/ai/tools/browserTools/typeText.ts +42 -0
- package/ai/tools/category/createCategoryTool.ts +66 -0
- package/ai/tools/category/queryContentsByCategoryTool.ts +69 -0
- package/ai/tools/category/updateContentCategoryTool.ts +75 -0
- package/ai/tools/cfBrowserTools.ts +319 -0
- package/ai/tools/cfSpeechToTextTool.ts +49 -0
- package/ai/tools/checkEnvTool.ts +102 -0
- package/ai/tools/cloudflareCrawlTool.ts +289 -0
- package/ai/tools/codeSearchTool.ts +123 -0
- package/ai/tools/codeTools.ts +101 -0
- package/ai/tools/convertMarxistsBookTool.ts +103 -0
- package/ai/tools/createDocTool.ts +132 -0
- package/ai/tools/createSkillDocTool.ts +155 -0
- package/ai/tools/createWorkflowTool.ts +154 -0
- package/ai/tools/delayTool.ts +31 -0
- package/ai/tools/deleteSpacesTool.ts +325 -0
- package/ai/tools/deleteSpacesToolModel.ts +159 -0
- package/ai/tools/devReloadUtils.ts +29 -0
- package/ai/tools/dialogMessageSearch.ts +137 -0
- package/ai/tools/doctorSkillTool.ts +72 -0
- package/ai/tools/ecommerceScraperTool.ts +86 -0
- package/ai/tools/emailTools.ts +549 -0
- package/ai/tools/evalSkillTool.ts +92 -0
- package/ai/tools/exaSearchTool.ts +63 -0
- package/ai/tools/execShellTool.ts +266 -0
- package/ai/tools/executeSqlTool.ts +192 -0
- package/ai/tools/fetchWebpageSupport.ts +333 -0
- package/ai/tools/fetchWebpageTool.ts +97 -0
- package/ai/tools/geminiImagePreviewTool.ts +386 -0
- package/ai/tools/generateDocxTool.ts +215 -0
- package/ai/tools/googleSearchScraperTool.ts +106 -0
- package/ai/tools/importDataTool.ts +133 -0
- package/ai/tools/importSkillTool.ts +162 -0
- package/ai/tools/index.ts +2308 -0
- package/ai/tools/jdProductScraperTool.ts +821 -0
- package/ai/tools/listUserSpacesTool.ts +113 -0
- package/ai/tools/localFilesTool.ts +276 -0
- package/ai/tools/marxistsOfflineBook.ts +253 -0
- package/ai/tools/modelUsageTools.ts +206 -0
- package/ai/tools/noloWorkspaceReadTools.ts +467 -0
- package/ai/tools/olmOcrTool.ts +33 -0
- package/ai/tools/openaiImageTool.ts +267 -0
- package/ai/tools/prepareTools.ts +23 -0
- package/ai/tools/readDocTool.ts +88 -0
- package/ai/tools/readFileTool.ts +214 -0
- package/ai/tools/readTool.ts +194 -0
- package/ai/tools/readXPostTool.ts +229 -0
- package/ai/tools/readXhsProfileTool.ts +627 -0
- package/ai/tools/rememberMemoryTool.ts +84 -0
- package/ai/tools/remotionVideoTool.ts +151 -0
- package/ai/tools/searchDialogMessagesTool.ts +222 -0
- package/ai/tools/searchWorkspaceTool.ts +259 -0
- package/ai/tools/skillFollowup.ts +86 -0
- package/ai/tools/surfWeatherTool.ts +169 -0
- package/ai/tools/table/addTableRowTool.ts +217 -0
- package/ai/tools/table/createTableTool.ts +315 -0
- package/ai/tools/table/rowTools.ts +386 -0
- package/ai/tools/table/schemaTools.ts +244 -0
- package/ai/tools/table/shareTableTool.ts +148 -0
- package/ai/tools/table/toolShared.ts +129 -0
- package/ai/tools/taobaoTmallProductScraperTool.ts +49 -0
- package/ai/tools/toolApiClient.ts +279 -0
- package/ai/tools/toolResultError.ts +42 -0
- package/ai/tools/toolRunSlice.ts +303 -0
- package/ai/tools/toolSchemaCompatibility.ts +53 -0
- package/ai/tools/uiAskChoiceTool.ts +104 -0
- package/ai/tools/updateContentTitleTool.ts +84 -0
- package/ai/tools/updateDocTool.ts +105 -0
- package/ai/tools/updateUserPreferenceProfileTool.ts +153 -0
- package/ai/tools/wereadGatewayTool.ts +152 -0
- package/ai/tools/whisperTool.ts +76 -0
- package/ai/tools/writeFileTool.ts +213 -0
- package/ai/tools/youtubeScraperTool.ts +116 -0
- package/ai/tools/ziweiChartTool.ts +678 -0
- package/ai/types.ts +55 -0
- package/ai/workflow/workflowExecutor.ts +323 -0
- package/ai/workflow/workflowSlice.ts +73 -0
- package/ai/workflow/workflowTypes.ts +106 -0
- package/app/actions/syncAppRecord.ts +73 -0
- package/app/constants/animationSets.ts +21 -0
- package/app/constants/appEditor.ts +99 -0
- package/app/favorite/favoriteSlice.ts +690 -0
- package/app/favorite/type.ts +43 -0
- package/app/hooks/deleteDbKey.ts +233 -0
- package/app/i18n/client.ts +13 -0
- package/app/i18n/i18n.base.ts +14 -0
- package/app/i18n/i18n.config.ts +77 -0
- package/app/i18n/index.ts +15 -0
- package/app/i18n/mapLanguage.ts +11 -0
- package/app/i18n/translations/appBuilder.locale.ts +453 -0
- package/app/i18n/translations/error.locale.ts +246 -0
- package/app/i18n/translations/interface.locale.ts +2174 -0
- package/app/i18n/translations/pricing.locale.ts +397 -0
- package/app/i18n/translations/privacy.locale.ts +168 -0
- package/app/i18n/translations/seo.locale.ts +129 -0
- package/app/i18n/translations/terms.locale.ts +124 -0
- package/app/i18n/types.ts +6 -0
- package/app/notifications/model.ts +77 -0
- package/app/notifications/notificationSlice.ts +141 -0
- package/app/reducer.ts +36 -0
- package/app/settings/dbActionThunks.ts +34 -0
- package/app/settings/defaultSpacePreference.ts +87 -0
- package/app/settings/settingSlice.tsx +1212 -0
- package/app/settings/settingsRecord.ts +8 -0
- package/app/stateViews/runtime.ts +90 -0
- package/app/store.ts +55 -0
- package/app/theme/colors.ts +280 -0
- package/app/theme/fontPreference.ts +77 -0
- package/app/theme/theme.config.ts +120 -0
- package/app/theme/themeModeBootstrap.ts +123 -0
- package/app/types/appSummary.ts +114 -0
- package/app/types.ts +358 -0
- package/app/utils/appKeys.ts +55 -0
- package/app/utils/async.ts +28 -0
- package/app/utils/desktopAgentRuntimeTurnClient.ts +73 -0
- package/app/utils/env.ts +17 -0
- package/app/utils/fileUtils.ts +229 -0
- package/app/utils/imageUtils.ts +274 -0
- package/app/utils/myContentItems.ts +289 -0
- package/app/utils/retryAfter.ts +36 -0
- package/app/utils/retryFetch.ts +61 -0
- package/app/utils/toast.ts +3 -0
- package/auth/action/signUpAction.ts +227 -0
- package/auth/adminPermissions.ts +18 -0
- package/auth/authSlice.ts +531 -0
- package/auth/client/loginRequest.ts +14 -0
- package/auth/resetAuthScopedClientState.ts +27 -0
- package/auth/routes.ts +178 -0
- package/auth/token.ts +63 -0
- package/auth/types.ts +40 -0
- package/chat/chat.locale.ts +813 -0
- package/chat/dialog/actions/addCybotAction.ts +52 -0
- package/chat/dialog/actions/addReferenceKeysAction.ts +62 -0
- package/chat/dialog/actions/builtinDialogLlm.ts +35 -0
- package/chat/dialog/actions/cleanupCliSession.ts +40 -0
- package/chat/dialog/actions/createDialogAction.ts +379 -0
- package/chat/dialog/actions/createScheduledTaskAction.ts +78 -0
- package/chat/dialog/actions/handleSendMessageAction.ts +197 -0
- package/chat/dialog/actions/handleSendMessageResolver.ts +27 -0
- package/chat/dialog/actions/removeCybotAction.ts +6 -0
- package/chat/dialog/actions/removeDialogAgentAction.ts +44 -0
- package/chat/dialog/actions/replacePrimaryCybotAction.ts +6 -0
- package/chat/dialog/actions/setPrimaryDialogAgentAction.ts +52 -0
- package/chat/dialog/actions/updateDialogSummaryAction.ts +430 -0
- package/chat/dialog/actions/updateDialogTitleAction.ts +151 -0
- package/chat/dialog/actions/updateDialogTitlePolicy.ts +30 -0
- package/chat/dialog/actions/updateTokensAction.ts +233 -0
- package/chat/dialog/dialogAgents.ts +72 -0
- package/chat/dialog/dialogSlice.ts +872 -0
- package/chat/dialog/dialogTitle.ts +81 -0
- package/chat/dialog/dialogTokenStats.ts +12 -0
- package/chat/dialog/dialogUrl.ts +6 -0
- package/chat/dialog/goal.ts +108 -0
- package/chat/dialog/objectAssistantRegistry.ts +286 -0
- package/chat/dialog/schedule.ts +17 -0
- package/chat/messages/fetchAndCacheMessages.ts +119 -0
- package/chat/messages/fetchConvMsgs.ts +51 -0
- package/chat/messages/fileUrl.ts +13 -0
- package/chat/messages/messageAgent.ts +8 -0
- package/chat/messages/messageContent.ts +199 -0
- package/chat/messages/messageContract.ts +88 -0
- package/chat/messages/messageSlice.ts +1367 -0
- package/chat/messages/toolThunks.ts +625 -0
- package/cli/agentAliases.ts +2 -1
- package/cli/agentRunCommand.ts +10 -32
- package/cli/agentRuntimeLocal.ts +1 -0
- package/cli/client/agentRun.ts +67 -95
- package/cli/client/localRuntimeAdapter.ts +323 -54
- package/cli/commandRegistry.ts +2 -2
- package/cli/machineWsRunDispatch.ts +51 -6
- package/cli/offlineMarxistsAgentCommand.ts +6 -4
- package/client/agentConfigResolver.test.ts +2 -2
- package/client/agentRun.test.ts +175 -57
- package/client/agentRun.ts +67 -95
- package/client/localRuntimeAdapter.test.ts +682 -37
- package/client/localRuntimeAdapter.ts +323 -54
- package/client/localRuntimeDryRun.test.ts +23 -9
- package/client/localToolPolicy.test.ts +4 -4
- package/commandRegistry.ts +2 -2
- package/core/builtinAgents.ts +209 -0
- package/core/config.ts +15 -0
- package/core/crypto.ts +51 -0
- package/core/generateKeyPairFromSeedV1.ts +15 -0
- package/core/generateMainKey.ts +22 -0
- package/core/init.ts +41 -0
- package/core/localOrigins.ts +8 -0
- package/core/password.ts +13 -0
- package/core/prefix.ts +23 -0
- package/create/editor/transforms/fromMarkdown/index.ts +260 -0
- package/create/editor/transforms/fromMarkdown/inline.ts +285 -0
- package/create/editor/transforms/fromMarkdown/table.ts +130 -0
- package/create/editor/transforms/markdownToSlate.ts +24 -0
- package/create/editor/transforms/slateToRenderMarkdown.ts +218 -0
- package/create/editor/transforms/slateToSimplifiedMarkdown.ts +224 -0
- package/create/editor/transforms/slateToText.ts +33 -0
- package/create/editor/utils/slateUtils.ts +233 -0
- package/create/space/addSpaceAction.ts +193 -0
- package/create/space/category/categoryActions.ts +427 -0
- package/create/space/changeSpaceAction.ts +36 -0
- package/create/space/constants.ts +8 -0
- package/create/space/content/addContentAction.ts +116 -0
- package/create/space/content/contentThunks.ts +90 -0
- package/create/space/content/deleteContentFromSpaceAction.ts +187 -0
- package/create/space/content/deleteMultipleContentAction.ts +112 -0
- package/create/space/content/moveContentAction.ts +285 -0
- package/create/space/content/updateContentCategoryAction.ts +154 -0
- package/create/space/content/updateContentTitleAction.ts +151 -0
- package/create/space/content/uploadAndAddFileToSpaceAction.ts +98 -0
- package/create/space/contentKeyUtils.ts +117 -0
- package/create/space/deleteSpaceAction.ts +276 -0
- package/create/space/fetchSpaceAction.ts +70 -0
- package/create/space/fetchSpaceSidebarStateAction.ts +26 -0
- package/create/space/loadDefaultSpaceAction.ts +57 -0
- package/create/space/member/addMemberAction.ts +79 -0
- package/create/space/member/fetchUserSpaceMembershipsAction.ts +386 -0
- package/create/space/member/memberThunks.ts +47 -0
- package/create/space/member/removeMemberAction.ts +67 -0
- package/create/space/resolvePreferredSpaceId.ts +113 -0
- package/create/space/sidebarVisibleTypes.ts +241 -0
- package/create/space/space.locale.ts +1087 -0
- package/create/space/spaceAccess.ts +182 -0
- package/create/space/spaceCollapsedState.ts +54 -0
- package/create/space/spaceKeys.ts +65 -0
- package/create/space/spaceSlice.ts +328 -0
- package/create/space/spaceThunks.ts +410 -0
- package/create/space/types.ts +27 -0
- package/create/space/updateSpaceAction.ts +107 -0
- package/create/space/utils/permissions.ts +47 -0
- package/create/types.ts +21 -0
- package/database/actions/agentReadResolution.ts +33 -0
- package/database/actions/common.ts +243 -0
- package/database/actions/deleteFile.ts +40 -0
- package/database/actions/fileContent.ts +125 -0
- package/database/actions/patch.ts +155 -0
- package/database/actions/read.ts +358 -0
- package/database/actions/readAndWait.ts +260 -0
- package/database/actions/readRequestManager.ts +120 -0
- package/database/actions/readResolution.ts +125 -0
- package/database/actions/remove.ts +94 -0
- package/database/actions/replication.ts +477 -0
- package/database/actions/upload.ts +186 -0
- package/database/actions/upsert.ts +56 -0
- package/database/actions/write.ts +146 -0
- package/database/authority/ownerKey.ts +80 -0
- package/database/authority/recordAuthority.ts +67 -0
- package/database/authority/userAuthorityRegistry.ts +54 -0
- package/database/client/fetchUserData.ts +61 -0
- package/database/dbActionThunks.ts +1 -0
- package/database/dbSlice.ts +149 -0
- package/database/fileRing.ts +51 -0
- package/database/fileStorage.ts +232 -0
- package/database/fileUrl.ts +34 -0
- package/database/keys.ts +767 -0
- package/database/queryPrefixes.ts +14 -0
- package/database/requests.ts +443 -0
- package/database/runtimeServerContext.ts +54 -0
- package/database/server/levelAuthorityStore.ts +20 -1
- package/database/tenantPlacement.ts +57 -0
- package/database/userPreferenceRegister.ts +131 -0
- package/database/utils/ulid.ts +1 -0
- package/integrations/anthropic/anthropicModels.ts +47 -0
- package/integrations/deepseek/models.ts +37 -0
- package/integrations/google/models.ts +341 -0
- package/integrations/openai/chatCompletionStreamMode.ts +10 -0
- package/integrations/openai/filterAndCleanMessages.ts +284 -0
- package/integrations/openai/flexTier.ts +102 -0
- package/integrations/openai/generateOpenAIRequestBody.ts +274 -0
- package/integrations/openai/generateResponseRequestBody.ts +77 -0
- package/integrations/openai/models.ts +271 -0
- package/integrations/openai/providerBodyCompatibility.ts +23 -0
- package/integrations/openai/responsesHelpers.ts +297 -0
- package/integrations/x-reader/types.ts +109 -0
- package/integrations/xai/models.ts +13 -0
- package/integrations/xhs-reader/analyze/profileAnalyzer.ts +205 -0
- package/integrations/xhs-reader/backends/playwrightProfileCollector.ts +624 -0
- package/integrations/xhs-reader/bridge/readXhsProfileWithBridge.ts +227 -0
- package/integrations/xhs-reader/client/xhsWebApiClient.ts +229 -0
- package/integrations/xhs-reader/normalize.ts +390 -0
- package/integrations/xhs-reader/orchestrator.ts +178 -0
- package/integrations/xhs-reader/redaction.ts +68 -0
- package/integrations/xhs-reader/types.ts +244 -0
- package/integrations/xhs-reader/url.ts +57 -0
- package/machineWsRunDispatch.ts +51 -6
- package/offlineMarxistsAgentCommand.ts +6 -4
- package/package.json +430 -3
- package/render/page/createPageAction.ts +183 -0
- package/render/page/docSlice.ts +468 -0
- package/render/page/types.ts +17 -0
- package/render/table/createTableAction.ts +270 -0
- package/render/table/deleteTableAction.ts +193 -0
- package/render/table/fetchAndCacheTableRows.ts +174 -0
- package/render/table/tableSlice.ts +1106 -0
- package/render/table/toolValueUtils.ts +363 -0
- package/render/table/types.ts +252 -0
- package/render/table/utils/tableSerialization.ts +50 -0
- package/server/handlers/agentRun/types.ts +104 -0
- package/share/action.ts +225 -0
- package/share/helpers.ts +302 -0
- package/share/keys.ts +243 -0
- package/share/publicSharePolicy.ts +27 -0
- package/share/shareSlice.ts +53 -0
- package/share/types.ts +100 -0
|
@@ -0,0 +1,453 @@
|
|
|
1
|
+
import { Language } from "../../i18n/types";
|
|
2
|
+
|
|
3
|
+
export default {
|
|
4
|
+
[Language.EN]: {
|
|
5
|
+
translation: {
|
|
6
|
+
myApps_title: "My Apps",
|
|
7
|
+
myApps_create: "New App",
|
|
8
|
+
myApps_loading: "Loading…",
|
|
9
|
+
myApps_empty_icon: "🚀",
|
|
10
|
+
myApps_empty_text: "No apps yet",
|
|
11
|
+
myApps_empty_hint: "Describe the site or tool you want — AI will build and publish it for you",
|
|
12
|
+
myApps_start_build: "Start Building",
|
|
13
|
+
myApps_login_required: "Please log in to view your apps",
|
|
14
|
+
myApps_retry: "Retry",
|
|
15
|
+
myApps_update: "Update",
|
|
16
|
+
myApps_edit: "Modify",
|
|
17
|
+
myApps_open: "Open",
|
|
18
|
+
appDetail_back: "Back to Apps",
|
|
19
|
+
appDetail_badge: "App Details",
|
|
20
|
+
appDetail_subtitle:
|
|
21
|
+
"Preview the app, check metadata, and jump into editing only when needed.",
|
|
22
|
+
appDetail_open: "Open App",
|
|
23
|
+
appDetail_edit: "Choose Editing Mode",
|
|
24
|
+
appDetail_refresh: "Refresh",
|
|
25
|
+
appDetail_preview: "Live Preview",
|
|
26
|
+
appDetail_preview_hint:
|
|
27
|
+
"This page is read-only. Use Edit when you want to change code or prompt the app builder.",
|
|
28
|
+
appDetail_preview_unavailable: "No preview URL available for this app yet.",
|
|
29
|
+
appDetail_infoTitle: "App Information",
|
|
30
|
+
appDetail_filesTitle: "Source Files",
|
|
31
|
+
appDetail_externalImportsTitle: "External Imports",
|
|
32
|
+
appDetail_sourceFilesEmpty: "No source files returned.",
|
|
33
|
+
appDetail_missingId: "Missing app identifier",
|
|
34
|
+
appDetail_appId: "App ID",
|
|
35
|
+
appDetail_framework: "Framework",
|
|
36
|
+
appDetail_visibility: "Visibility",
|
|
37
|
+
appDetail_space: "Space",
|
|
38
|
+
appDetail_updatedAt: "Updated",
|
|
39
|
+
appDetail_createdAt: "Created",
|
|
40
|
+
appDetail_accessUrl: "Access URL",
|
|
41
|
+
appDetail_customUrl: "Custom URL",
|
|
42
|
+
appEditor_snapshot: "Snapshots",
|
|
43
|
+
appEditor_openApp: "Open App",
|
|
44
|
+
appEditor_chooseMode: "Choose Editing Mode",
|
|
45
|
+
appEditor_workspace: "App Editing Workspace",
|
|
46
|
+
appEditor_subtitle:
|
|
47
|
+
"Separate conversational editing from direct code editing so people know which mode they are using.",
|
|
48
|
+
appEditor_mode_recommended: "Recommended",
|
|
49
|
+
appEditor_mode_advanced: "Advanced",
|
|
50
|
+
appEditor_chatMode_title: "Chat Editing",
|
|
51
|
+
appEditor_chatMode_heading: "Continue editing with natural language",
|
|
52
|
+
appEditor_chatMode_description:
|
|
53
|
+
"Tell AI what to change. Best for copy, typography, color, layout, and iterative feature updates.",
|
|
54
|
+
appEditor_chatMode_hint:
|
|
55
|
+
"If you only want to tweak copy, spacing, colors, or a specific feature, start here.",
|
|
56
|
+
appEditor_chatMode_openAssistant: "Open Assistant",
|
|
57
|
+
appEditor_switchToCode: "Switch to Code Editing",
|
|
58
|
+
appEditor_backToChat: "Back to Chat Editing",
|
|
59
|
+
appEditor_codeMode_title: "Code Editing",
|
|
60
|
+
appEditor_codeMode_heading: "Edit source directly and save",
|
|
61
|
+
appEditor_codeMode_description:
|
|
62
|
+
"Modify source files directly and save. Best for users who can read React, TypeScript, and CSS.",
|
|
63
|
+
appEditor_codeMode_warning:
|
|
64
|
+
"Non-technical users should avoid editing here. Incorrect changes may break the app.",
|
|
65
|
+
appEditor_codeMode_saving: "Saving code…",
|
|
66
|
+
appEditor_codeMode_saved: "Code saved and redeployed.",
|
|
67
|
+
appEditor_codeMode_failed: "Code save failed. Please review your changes and try again.",
|
|
68
|
+
appEditor_codeMode_missingAppId: "This app has no appId yet, so direct code save is unavailable.",
|
|
69
|
+
appEditor_codeMode_missingToken: "Your login session expired. Please sign in again.",
|
|
70
|
+
appEditor_codeMode_missingServer: "Unable to determine the target server for saving.",
|
|
71
|
+
appEditor_codeMode_startFailed: "Failed to start code save.",
|
|
72
|
+
appEditor_codeMode_statusFailed: "Failed to query save status.",
|
|
73
|
+
appEditor_codeMode_timeout: "Saving timed out. Refresh and check whether deploy finished.",
|
|
74
|
+
appEditor_resetDrafts: "Discard Unsaved Changes",
|
|
75
|
+
appEditor_saveCode: "Save Code",
|
|
76
|
+
app_delete: "Delete App",
|
|
77
|
+
app_delete_confirm: "Confirm Delete?",
|
|
78
|
+
appEditor_closeSourcePreview: "Close source preview",
|
|
79
|
+
appCard_visibility_private_label: "Private",
|
|
80
|
+
appCard_visibility_private_tip: "Only you can access",
|
|
81
|
+
appCard_visibility_unlisted_label: "Link only",
|
|
82
|
+
appCard_visibility_unlisted_tip: "Anyone with the link can access",
|
|
83
|
+
appCard_visibility_public_label: "Public",
|
|
84
|
+
appCard_visibility_public_tip: "Click to set private",
|
|
85
|
+
appCard_deploy_platform: "Platform",
|
|
86
|
+
appCard_btn_delete: "Delete",
|
|
87
|
+
appCard_btn_deleting: "Deleting…",
|
|
88
|
+
appCard_btn_confirm_delete: "Confirm Delete",
|
|
89
|
+
appCard_btn_domains: "Domains",
|
|
90
|
+
appCard_btn_publish: "Publish",
|
|
91
|
+
appCard_btn_publishing: "Publishing…",
|
|
92
|
+
appCard_btn_publish_tip: "Publish a snapshot to community",
|
|
93
|
+
appCard_publish_success: "Published to community!",
|
|
94
|
+
appCard_publish_failed: "Publish failed, please try again",
|
|
95
|
+
appCard_updated_at: "Updated {{date}}",
|
|
96
|
+
domain_panel_title: "Custom Domains",
|
|
97
|
+
domain_input_placeholder: "yourdomain.com",
|
|
98
|
+
domain_bind_btn: "Bind",
|
|
99
|
+
domain_binding: "Binding…",
|
|
100
|
+
domain_unbind_tip: "Remove custom domain",
|
|
101
|
+
domain_err_empty: "Please enter a domain",
|
|
102
|
+
domain_err_already_bound: "This domain is already bound to another app",
|
|
103
|
+
domain_status_active: "Active",
|
|
104
|
+
domain_status_pending: "DNS pending",
|
|
105
|
+
domain_success_active_a: "{{hostname}} is live on the platform.",
|
|
106
|
+
domain_success_pending_a: "{{hostname}} is registered. Please add the A records below.",
|
|
107
|
+
domain_hint_platform_a: "Point your domain to the platform with A records. After DNS propagation, the status will become active.",
|
|
108
|
+
domain_a_title: "Add these A records in your DNS provider",
|
|
109
|
+
domain_a_step1: "Open your DNS provider console for this domain.",
|
|
110
|
+
domain_a_step2: "Create the following A records and wait for DNS propagation.",
|
|
111
|
+
domain_a_type: "Type",
|
|
112
|
+
domain_a_host: "Host / Name",
|
|
113
|
+
domain_a_target: "Target / Value",
|
|
114
|
+
domain_a_note: "Some DNS providers use @ for the apex/root domain. If you are binding a subdomain, use its full host name or the provider's matching host-field format.",
|
|
115
|
+
},
|
|
116
|
+
},
|
|
117
|
+
[Language.ZH_CN]: {
|
|
118
|
+
translation: {
|
|
119
|
+
myApps_title: "我的应用",
|
|
120
|
+
myApps_create: "创建新应用",
|
|
121
|
+
myApps_loading: "加载中…",
|
|
122
|
+
myApps_empty_icon: "🚀",
|
|
123
|
+
myApps_empty_text: "还没有应用",
|
|
124
|
+
myApps_empty_hint: "描述你想要的网站或小工具,AI 会帮你构建并发布",
|
|
125
|
+
myApps_start_build: "开始构建",
|
|
126
|
+
myApps_login_required: "请先登录后查看你的应用",
|
|
127
|
+
myApps_retry: "重试",
|
|
128
|
+
myApps_update: "更新",
|
|
129
|
+
myApps_edit: "修改",
|
|
130
|
+
myApps_open: "打开",
|
|
131
|
+
appDetail_back: "返回应用列表",
|
|
132
|
+
appDetail_badge: "应用详情",
|
|
133
|
+
appDetail_subtitle: "在这里查看预览和关键信息,需要改代码时再进入编辑。",
|
|
134
|
+
appDetail_open: "打开应用",
|
|
135
|
+
appDetail_edit: "选择修改方式",
|
|
136
|
+
appDetail_refresh: "刷新",
|
|
137
|
+
appDetail_preview: "实时预览",
|
|
138
|
+
appDetail_preview_hint:
|
|
139
|
+
"这个页面只负责查看。需要改代码、继续对话或重新生成时,再进入编辑页。",
|
|
140
|
+
appDetail_preview_unavailable: "这个应用暂时还没有可用的预览地址。",
|
|
141
|
+
appDetail_infoTitle: "应用信息",
|
|
142
|
+
appDetail_filesTitle: "源码文件",
|
|
143
|
+
appDetail_externalImportsTitle: "外部依赖",
|
|
144
|
+
appDetail_sourceFilesEmpty: "暂未返回源码文件。",
|
|
145
|
+
appDetail_missingId: "缺少应用标识",
|
|
146
|
+
appDetail_appId: "应用 ID",
|
|
147
|
+
appDetail_framework: "框架",
|
|
148
|
+
appDetail_visibility: "可见性",
|
|
149
|
+
appDetail_space: "Space",
|
|
150
|
+
appDetail_updatedAt: "最近更新",
|
|
151
|
+
appDetail_createdAt: "创建时间",
|
|
152
|
+
appDetail_accessUrl: "访问地址",
|
|
153
|
+
appDetail_customUrl: "自定义域名",
|
|
154
|
+
appEditor_snapshot: "历史快照",
|
|
155
|
+
appEditor_openApp: "打开应用",
|
|
156
|
+
appEditor_chooseMode: "选择修改方式",
|
|
157
|
+
appEditor_workspace: "应用编辑工作台",
|
|
158
|
+
appEditor_subtitle: "把“对话修改”和“直接改代码”分开,用户一眼就知道自己在用哪种方式。",
|
|
159
|
+
appEditor_mode_recommended: "推荐方式",
|
|
160
|
+
appEditor_mode_advanced: "高级模式",
|
|
161
|
+
appEditor_chatMode_title: "对话编辑",
|
|
162
|
+
appEditor_chatMode_heading: "用自然语言继续修改应用",
|
|
163
|
+
appEditor_chatMode_description:
|
|
164
|
+
"直接告诉 AI 你想改什么。适合改文案、字体、颜色、布局和功能迭代。",
|
|
165
|
+
appEditor_chatMode_hint:
|
|
166
|
+
"如果你只是想改字体、颜色、间距、文案或某个功能,优先用这个模式。",
|
|
167
|
+
appEditor_chatMode_openAssistant: "打开右侧助手",
|
|
168
|
+
appEditor_switchToCode: "切换到代码编辑",
|
|
169
|
+
appEditor_backToChat: "返回对话编辑",
|
|
170
|
+
appEditor_codeMode_title: "代码编辑",
|
|
171
|
+
appEditor_codeMode_heading: "直接修改源码并保存",
|
|
172
|
+
appEditor_codeMode_description:
|
|
173
|
+
"直接修改源码并保存。适合看得懂 React / TypeScript / CSS 的用户。",
|
|
174
|
+
appEditor_codeMode_warning:
|
|
175
|
+
"非技术用户请勿随意修改,错误改动可能导致应用无法运行。",
|
|
176
|
+
appEditor_codeMode_saving: "正在预检并保存源码…",
|
|
177
|
+
appEditor_codeMode_saved: "源码已保存并重新部署。",
|
|
178
|
+
appEditor_codeMode_failed: "源码保存失败,请检查代码后重试。",
|
|
179
|
+
appEditor_codeMode_missingAppId: "当前应用缺少 appId,暂时无法直接保存源码。",
|
|
180
|
+
appEditor_codeMode_missingToken: "当前登录态失效,请重新登录后再试。",
|
|
181
|
+
appEditor_codeMode_missingServer: "当前无法确定部署服务器地址。",
|
|
182
|
+
appEditor_codeMode_startFailed: "代码保存请求失败,请稍后重试。",
|
|
183
|
+
appEditor_codeMode_statusFailed: "保存状态查询失败,请稍后重试。",
|
|
184
|
+
appEditor_codeMode_timeout: "源码保存超时了,请稍后刷新确认是否已完成。",
|
|
185
|
+
appEditor_resetDrafts: "撤销未保存修改",
|
|
186
|
+
appEditor_saveCode: "保存代码",
|
|
187
|
+
app_delete: "删除应用",
|
|
188
|
+
app_delete_confirm: "确认删除?",
|
|
189
|
+
appEditor_closeSourcePreview: "关闭源码预览",
|
|
190
|
+
appCard_visibility_private_label: "私有",
|
|
191
|
+
appCard_visibility_private_tip: "仅你可访问",
|
|
192
|
+
appCard_visibility_unlisted_label: "链接可访问",
|
|
193
|
+
appCard_visibility_unlisted_tip: "有链接的人均可访问",
|
|
194
|
+
appCard_visibility_public_label: "公开",
|
|
195
|
+
appCard_visibility_public_tip: "点击设为私有",
|
|
196
|
+
appCard_deploy_platform: "平台托管",
|
|
197
|
+
appCard_btn_delete: "删除",
|
|
198
|
+
appCard_btn_deleting: "删除中…",
|
|
199
|
+
appCard_btn_confirm_delete: "确认删除",
|
|
200
|
+
appCard_btn_domains: "域名",
|
|
201
|
+
appCard_btn_publish: "发布到社区",
|
|
202
|
+
appCard_btn_publishing: "发布中…",
|
|
203
|
+
appCard_btn_publish_tip: "将当前版本快照发布到社区广场",
|
|
204
|
+
appCard_publish_success: "已发布到社区!",
|
|
205
|
+
appCard_publish_failed: "发布失败,请稍后重试",
|
|
206
|
+
appCard_updated_at: "更新于 {{date}}",
|
|
207
|
+
domain_panel_title: "自定义域名",
|
|
208
|
+
domain_input_placeholder: "yourdomain.com",
|
|
209
|
+
domain_bind_btn: "绑定",
|
|
210
|
+
domain_binding: "绑定中…",
|
|
211
|
+
domain_unbind_tip: "解绑域名",
|
|
212
|
+
domain_err_empty: "请输入域名",
|
|
213
|
+
domain_err_already_bound: "该域名已被其他应用绑定",
|
|
214
|
+
domain_status_active: "已生效",
|
|
215
|
+
domain_status_pending: "等待 DNS 生效",
|
|
216
|
+
domain_success_active_a: "{{hostname}} 已在平台上线。",
|
|
217
|
+
domain_success_pending_a: "{{hostname}} 已登记,请按下方添加 A 记录。",
|
|
218
|
+
domain_hint_platform_a: "请把域名通过 A 记录指向平台服务器。DNS 生效后,状态会自动变成已生效。",
|
|
219
|
+
domain_a_title: "请在你的 DNS 服务商添加以下 A 记录",
|
|
220
|
+
domain_a_step1: "打开该域名的 DNS 管理后台。",
|
|
221
|
+
domain_a_step2: "新增下列 A 记录,然后等待 DNS 生效。",
|
|
222
|
+
domain_a_type: "类型",
|
|
223
|
+
domain_a_host: "主机记录 / Host",
|
|
224
|
+
domain_a_target: "记录值 / Value",
|
|
225
|
+
domain_a_note: "部分 DNS 服务商会用 @ 表示根域名。如果你绑定的是子域名,请按服务商要求填写完整主机名或对应 host 字段。",
|
|
226
|
+
},
|
|
227
|
+
},
|
|
228
|
+
[Language.ZH_HANT]: {
|
|
229
|
+
translation: {
|
|
230
|
+
myApps_title: "我的應用",
|
|
231
|
+
myApps_create: "建立新應用",
|
|
232
|
+
myApps_loading: "載入中…",
|
|
233
|
+
myApps_empty_icon: "🚀",
|
|
234
|
+
myApps_empty_text: "還沒有應用",
|
|
235
|
+
myApps_empty_hint: "描述您想要的網站或小工具,AI 會協助建構並發布",
|
|
236
|
+
myApps_start_build: "開始建構",
|
|
237
|
+
myApps_login_required: "請先登入以查看您的應用",
|
|
238
|
+
myApps_retry: "重試",
|
|
239
|
+
myApps_update: "更新",
|
|
240
|
+
myApps_edit: "修改",
|
|
241
|
+
myApps_open: "開啟",
|
|
242
|
+
appDetail_back: "返回應用列表",
|
|
243
|
+
appDetail_badge: "應用詳情",
|
|
244
|
+
appDetail_subtitle: "在這裡查看預覽與關鍵資訊,需要改程式碼時再進入編輯。",
|
|
245
|
+
appDetail_open: "開啟應用",
|
|
246
|
+
appDetail_edit: "選擇修改方式",
|
|
247
|
+
appDetail_refresh: "重新整理",
|
|
248
|
+
appDetail_preview: "即時預覽",
|
|
249
|
+
appDetail_preview_hint:
|
|
250
|
+
"此頁僅供查看。若要修改程式碼、繼續對話或重新生成,再進入編輯頁。",
|
|
251
|
+
appDetail_preview_unavailable: "這個應用目前還沒有可用的預覽網址。",
|
|
252
|
+
appDetail_infoTitle: "應用資訊",
|
|
253
|
+
appDetail_filesTitle: "原始碼檔案",
|
|
254
|
+
appDetail_externalImportsTitle: "外部依賴",
|
|
255
|
+
appDetail_sourceFilesEmpty: "目前沒有回傳原始碼檔案。",
|
|
256
|
+
appDetail_missingId: "缺少應用識別",
|
|
257
|
+
appDetail_appId: "應用 ID",
|
|
258
|
+
appDetail_framework: "框架",
|
|
259
|
+
appDetail_visibility: "可見性",
|
|
260
|
+
appDetail_space: "Space",
|
|
261
|
+
appDetail_updatedAt: "最近更新",
|
|
262
|
+
appDetail_createdAt: "建立時間",
|
|
263
|
+
appDetail_accessUrl: "存取網址",
|
|
264
|
+
appDetail_customUrl: "自訂網域",
|
|
265
|
+
appEditor_snapshot: "歷史快照",
|
|
266
|
+
appEditor_openApp: "開啟應用",
|
|
267
|
+
appEditor_chooseMode: "選擇修改方式",
|
|
268
|
+
appEditor_workspace: "應用編輯工作台",
|
|
269
|
+
appEditor_subtitle: "把「對話修改」和「直接改程式碼」分開,讓使用者一眼知道自己正在用哪種方式。",
|
|
270
|
+
appEditor_mode_recommended: "推薦方式",
|
|
271
|
+
appEditor_mode_advanced: "進階模式",
|
|
272
|
+
appEditor_chatMode_title: "對話編輯",
|
|
273
|
+
appEditor_chatMode_heading: "用自然語言繼續修改應用",
|
|
274
|
+
appEditor_chatMode_description:
|
|
275
|
+
"直接告訴 AI 你想改什麼。適合修改文案、字體、顏色、版面和功能迭代。",
|
|
276
|
+
appEditor_chatMode_hint:
|
|
277
|
+
"如果你只是想調整字體、顏色、間距、文案或某個功能,優先用這個模式。",
|
|
278
|
+
appEditor_chatMode_openAssistant: "打開右側助手",
|
|
279
|
+
appEditor_switchToCode: "切換到程式碼編輯",
|
|
280
|
+
appEditor_backToChat: "返回對話編輯",
|
|
281
|
+
appEditor_codeMode_title: "程式碼編輯",
|
|
282
|
+
appEditor_codeMode_heading: "直接修改原始碼並儲存",
|
|
283
|
+
appEditor_codeMode_description:
|
|
284
|
+
"直接修改原始碼並儲存。適合看得懂 React / TypeScript / CSS 的使用者。",
|
|
285
|
+
appEditor_codeMode_warning:
|
|
286
|
+
"非技術使用者請勿隨意修改,錯誤改動可能導致應用無法運行。",
|
|
287
|
+
appEditor_codeMode_saving: "正在預檢並儲存原始碼…",
|
|
288
|
+
appEditor_codeMode_saved: "原始碼已儲存並重新部署。",
|
|
289
|
+
appEditor_codeMode_failed: "原始碼儲存失敗,請檢查後重試。",
|
|
290
|
+
appEditor_codeMode_missingAppId: "目前應用缺少 appId,暫時無法直接儲存原始碼。",
|
|
291
|
+
appEditor_codeMode_missingToken: "目前登入狀態失效,請重新登入後再試。",
|
|
292
|
+
appEditor_codeMode_missingServer: "目前無法判定部署伺服器位址。",
|
|
293
|
+
appEditor_codeMode_startFailed: "程式碼儲存請求失敗,請稍後再試。",
|
|
294
|
+
appEditor_codeMode_statusFailed: "儲存狀態查詢失敗,請稍後再試。",
|
|
295
|
+
appEditor_codeMode_timeout: "原始碼儲存逾時,請稍後重新整理確認。",
|
|
296
|
+
appEditor_resetDrafts: "還原未儲存修改",
|
|
297
|
+
appEditor_saveCode: "儲存程式碼",
|
|
298
|
+
app_delete: "刪除應用",
|
|
299
|
+
app_delete_confirm: "確認刪除?",
|
|
300
|
+
appEditor_closeSourcePreview: "關閉原始碼預覽",
|
|
301
|
+
appCard_visibility_private_label: "私有",
|
|
302
|
+
appCard_visibility_private_tip: "僅您可存取",
|
|
303
|
+
appCard_visibility_unlisted_label: "連結可存取",
|
|
304
|
+
appCard_visibility_unlisted_tip: "有連結的人均可存取",
|
|
305
|
+
appCard_visibility_public_label: "公開",
|
|
306
|
+
appCard_visibility_public_tip: "點擊設為私有",
|
|
307
|
+
appCard_deploy_platform: "平台託管",
|
|
308
|
+
appCard_btn_delete: "刪除",
|
|
309
|
+
appCard_btn_deleting: "刪除中…",
|
|
310
|
+
appCard_btn_confirm_delete: "確認刪除",
|
|
311
|
+
appCard_btn_domains: "網域",
|
|
312
|
+
appCard_btn_publish: "發布到社群",
|
|
313
|
+
appCard_btn_publishing: "發布中…",
|
|
314
|
+
appCard_btn_publish_tip: "將目前版本快照發布到社群廣場",
|
|
315
|
+
appCard_publish_success: "已發布到社群!",
|
|
316
|
+
appCard_publish_failed: "發布失敗,請稍後重試",
|
|
317
|
+
appCard_updated_at: "更新於 {{date}}",
|
|
318
|
+
domain_panel_title: "自訂網域",
|
|
319
|
+
domain_input_placeholder: "yourdomain.com",
|
|
320
|
+
domain_bind_btn: "綁定",
|
|
321
|
+
domain_binding: "綁定中…",
|
|
322
|
+
domain_unbind_tip: "解除綁定",
|
|
323
|
+
domain_err_empty: "請輸入網域",
|
|
324
|
+
domain_err_already_bound: "此網域已被其他應用綁定",
|
|
325
|
+
domain_status_active: "已生效",
|
|
326
|
+
domain_status_pending: "等待 DNS 生效",
|
|
327
|
+
domain_success_active_a: "{{hostname}} 已在平台上線。",
|
|
328
|
+
domain_success_pending_a: "{{hostname}} 已登記,請依下方新增 A 記錄。",
|
|
329
|
+
domain_hint_platform_a: "請使用 A 記錄將網域指向平台伺服器。DNS 生效後狀態會自動更新。",
|
|
330
|
+
domain_a_title: "請在 DNS 服務商新增以下 A 記錄",
|
|
331
|
+
domain_a_step1: "開啟該網域的 DNS 管理後台。",
|
|
332
|
+
domain_a_step2: "新增下列 A 記錄,並等待 DNS 生效。",
|
|
333
|
+
domain_a_type: "類型",
|
|
334
|
+
domain_a_host: "主機記錄 / Host",
|
|
335
|
+
domain_a_target: "記錄值 / Value",
|
|
336
|
+
domain_a_note: "部分 DNS 服務商會用 @ 表示根網域。若綁定的是子網域,請依服務商規則填寫完整主機名或對應 host 欄位。",
|
|
337
|
+
},
|
|
338
|
+
},
|
|
339
|
+
[Language.JA]: {
|
|
340
|
+
translation: {
|
|
341
|
+
myApps_title: "マイアプリ",
|
|
342
|
+
myApps_create: "新規アプリ",
|
|
343
|
+
myApps_loading: "読み込み中…",
|
|
344
|
+
myApps_empty_icon: "🚀",
|
|
345
|
+
myApps_empty_text: "まだアプリがありません",
|
|
346
|
+
myApps_empty_hint: "欲しいサイトや小さなツールを説明すると、AI が構築して公開します",
|
|
347
|
+
myApps_start_build: "構築を始める",
|
|
348
|
+
myApps_login_required: "アプリを表示するにはログインしてください",
|
|
349
|
+
myApps_retry: "再試行",
|
|
350
|
+
myApps_update: "更新",
|
|
351
|
+
myApps_edit: "修正",
|
|
352
|
+
myApps_open: "開く",
|
|
353
|
+
appDetail_back: "アプリ一覧に戻る",
|
|
354
|
+
appDetail_badge: "アプリ詳細",
|
|
355
|
+
appDetail_subtitle:
|
|
356
|
+
"ここではプレビューと主要情報だけを見て、変更が必要なときだけ編集に進みます。",
|
|
357
|
+
appDetail_open: "アプリを開く",
|
|
358
|
+
appDetail_edit: "編集方法を選ぶ",
|
|
359
|
+
appDetail_refresh: "再読み込み",
|
|
360
|
+
appDetail_preview: "ライブプレビュー",
|
|
361
|
+
appDetail_preview_hint:
|
|
362
|
+
"このページは閲覧専用です。コード変更や再生成が必要なときだけ編集に進んでください。",
|
|
363
|
+
appDetail_preview_unavailable:
|
|
364
|
+
"このアプリにはまだ利用可能なプレビュー URL がありません。",
|
|
365
|
+
appDetail_infoTitle: "アプリ情報",
|
|
366
|
+
appDetail_filesTitle: "ソースファイル",
|
|
367
|
+
appDetail_externalImportsTitle: "外部依存",
|
|
368
|
+
appDetail_sourceFilesEmpty: "ソースファイルはまだ返されていません。",
|
|
369
|
+
appDetail_missingId: "アプリ識別子がありません",
|
|
370
|
+
appDetail_appId: "App ID",
|
|
371
|
+
appDetail_framework: "フレームワーク",
|
|
372
|
+
appDetail_visibility: "公開範囲",
|
|
373
|
+
appDetail_space: "Space",
|
|
374
|
+
appDetail_updatedAt: "更新日時",
|
|
375
|
+
appDetail_createdAt: "作成日時",
|
|
376
|
+
appDetail_accessUrl: "アクセス URL",
|
|
377
|
+
appDetail_customUrl: "カスタムドメイン",
|
|
378
|
+
appEditor_snapshot: "スナップショット",
|
|
379
|
+
appEditor_openApp: "アプリを開く",
|
|
380
|
+
appEditor_chooseMode: "編集方法を選ぶ",
|
|
381
|
+
appEditor_workspace: "アプリ編集ワークスペース",
|
|
382
|
+
appEditor_subtitle:
|
|
383
|
+
"会話編集とコード編集を分けて、今どちらのモードを使っているかを明確にします。",
|
|
384
|
+
appEditor_mode_recommended: "おすすめ",
|
|
385
|
+
appEditor_mode_advanced: "上級者向け",
|
|
386
|
+
appEditor_chatMode_title: "会話編集",
|
|
387
|
+
appEditor_chatMode_heading: "自然言語で編集を続ける",
|
|
388
|
+
appEditor_chatMode_description:
|
|
389
|
+
"AI に何を変えたいか伝えてください。文案、文字サイズ、色、レイアウト、機能改善に向いています。",
|
|
390
|
+
appEditor_chatMode_hint:
|
|
391
|
+
"文案、余白、色、特定の機能だけを変えたいなら、まずこちらを使ってください。",
|
|
392
|
+
appEditor_chatMode_openAssistant: "アシスタントを開く",
|
|
393
|
+
appEditor_switchToCode: "コード編集に切り替える",
|
|
394
|
+
appEditor_backToChat: "会話編集に戻る",
|
|
395
|
+
appEditor_codeMode_title: "コード編集",
|
|
396
|
+
appEditor_codeMode_heading: "ソースを直接編集して保存する",
|
|
397
|
+
appEditor_codeMode_description:
|
|
398
|
+
"ソースファイルを直接編集して保存します。React / TypeScript / CSS を読める人向けです。",
|
|
399
|
+
appEditor_codeMode_warning:
|
|
400
|
+
"技術に詳しくないユーザーは、ここでの編集を避けてください。誤った変更でアプリが壊れる可能性があります。",
|
|
401
|
+
appEditor_codeMode_saving: "コードを保存中…",
|
|
402
|
+
appEditor_codeMode_saved: "コードを保存して再デプロイしました。",
|
|
403
|
+
appEditor_codeMode_failed: "コード保存に失敗しました。変更内容を確認して再試行してください。",
|
|
404
|
+
appEditor_codeMode_missingAppId: "このアプリには appId がないため、直接コード保存はまだ使えません。",
|
|
405
|
+
appEditor_codeMode_missingToken: "ログイン状態が切れました。もう一度ログインしてください。",
|
|
406
|
+
appEditor_codeMode_missingServer: "保存先サーバーを特定できません。",
|
|
407
|
+
appEditor_codeMode_startFailed: "コード保存を開始できませんでした。",
|
|
408
|
+
appEditor_codeMode_statusFailed: "保存ステータスの確認に失敗しました。",
|
|
409
|
+
appEditor_codeMode_timeout: "保存がタイムアウトしました。後で更新して結果を確認してください。",
|
|
410
|
+
appEditor_resetDrafts: "未保存の変更を破棄",
|
|
411
|
+
appEditor_saveCode: "コードを保存",
|
|
412
|
+
app_delete: "アプリを削除",
|
|
413
|
+
app_delete_confirm: "削除を確認?",
|
|
414
|
+
appEditor_closeSourcePreview: "ソースプレビューを閉じる",
|
|
415
|
+
appCard_visibility_private_label: "非公開",
|
|
416
|
+
appCard_visibility_private_tip: "あなただけがアクセス可能",
|
|
417
|
+
appCard_visibility_unlisted_label: "リンクのみ",
|
|
418
|
+
appCard_visibility_unlisted_tip: "リンクを知っている人がアクセス可能",
|
|
419
|
+
appCard_visibility_public_label: "公開",
|
|
420
|
+
appCard_visibility_public_tip: "クリックして非公開にする",
|
|
421
|
+
appCard_deploy_platform: "プラットフォーム",
|
|
422
|
+
appCard_btn_delete: "削除",
|
|
423
|
+
appCard_btn_deleting: "削除中…",
|
|
424
|
+
appCard_btn_confirm_delete: "削除を確認",
|
|
425
|
+
appCard_btn_domains: "ドメイン",
|
|
426
|
+
appCard_btn_publish: "コミュニティに公開",
|
|
427
|
+
appCard_btn_publishing: "公開中…",
|
|
428
|
+
appCard_btn_publish_tip: "現在のスナップショットをコミュニティに公開",
|
|
429
|
+
appCard_publish_success: "コミュニティに公開しました!",
|
|
430
|
+
appCard_publish_failed: "公開に失敗しました。後でもう一度お試しください",
|
|
431
|
+
appCard_updated_at: "{{date}} に更新",
|
|
432
|
+
domain_panel_title: "カスタムドメイン",
|
|
433
|
+
domain_input_placeholder: "yourdomain.com",
|
|
434
|
+
domain_bind_btn: "追加",
|
|
435
|
+
domain_binding: "追加中…",
|
|
436
|
+
domain_unbind_tip: "ドメインの紐付けを解除",
|
|
437
|
+
domain_err_empty: "ドメインを入力してください",
|
|
438
|
+
domain_err_already_bound: "このドメインは別のアプリに紐付いています",
|
|
439
|
+
domain_status_active: "有効",
|
|
440
|
+
domain_status_pending: "DNS 反映待ち",
|
|
441
|
+
domain_success_active_a: "{{hostname}} はプラットフォームで有効になりました。",
|
|
442
|
+
domain_success_pending_a: "{{hostname}} を登録しました。以下の A レコードを追加してください。",
|
|
443
|
+
domain_hint_platform_a: "A レコードでドメインをプラットフォームのサーバーへ向けてください。DNS 反映後に状態が有効へ変わります。",
|
|
444
|
+
domain_a_title: "DNS プロバイダーで次の A レコードを追加してください",
|
|
445
|
+
domain_a_step1: "このドメインの DNS 管理画面を開いてください。",
|
|
446
|
+
domain_a_step2: "以下の A レコードを追加し、DNS の反映を待ってください。",
|
|
447
|
+
domain_a_type: "タイプ",
|
|
448
|
+
domain_a_host: "ホスト / 名前",
|
|
449
|
+
domain_a_target: "値 / Value",
|
|
450
|
+
domain_a_note: "DNS プロバイダーによってはルートドメインを @ と表記します。サブドメインの場合は、そのプロバイダーの入力形式に合わせてください。",
|
|
451
|
+
},
|
|
452
|
+
},
|
|
453
|
+
};
|