@agent-native/core 0.101.7 → 0.101.11
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/corpus/README.md +1 -1
- package/corpus/core/CHANGELOG.md +28 -0
- package/corpus/core/docs/content/deployment.mdx +9 -7
- package/corpus/core/docs/content/locales/ar-SA/deployment.mdx +9 -7
- package/corpus/core/docs/content/locales/de-DE/deployment.mdx +9 -7
- package/corpus/core/docs/content/locales/es-ES/deployment.mdx +9 -7
- package/corpus/core/docs/content/locales/fr-FR/deployment.mdx +9 -7
- package/corpus/core/docs/content/locales/hi-IN/deployment.mdx +9 -7
- package/corpus/core/docs/content/locales/ja-JP/deployment.mdx +9 -7
- package/corpus/core/docs/content/locales/ko-KR/deployment.mdx +9 -7
- package/corpus/core/docs/content/locales/pt-BR/deployment.mdx +9 -7
- package/corpus/core/docs/content/locales/zh-CN/deployment.mdx +9 -7
- package/corpus/core/docs/content/locales/zh-TW/deployment.mdx +9 -7
- package/corpus/core/package.json +1 -1
- package/corpus/core/src/a2a/client.ts +23 -1
- package/corpus/core/src/a2a/handlers.ts +65 -1
- package/corpus/core/src/a2a/server.ts +124 -0
- package/corpus/core/src/a2a/task-store.ts +253 -0
- package/corpus/core/src/a2a/types.ts +26 -0
- package/corpus/core/src/agent/production-agent.ts +5 -2
- package/corpus/core/src/client/review/ReviewCommentComposer.tsx +9 -1
- package/corpus/core/src/client/review/ReviewThreadPanel.tsx +17 -2
- package/corpus/core/src/client/settings/SettingsPanel.tsx +41 -21
- package/corpus/core/src/client/settings/useBuilderStatus.ts +28 -9
- package/corpus/core/src/client/setup-connections/BuilderConnectCard.tsx +2 -7
- package/corpus/core/src/mcp/builtin-tools.ts +25 -1
- package/corpus/core/src/scripts/call-agent.ts +22 -3
- package/corpus/core/src/server/agent-chat-plugin.ts +86 -1
- package/corpus/core/src/server/auth.ts +25 -1
- package/corpus/core/src/server/builder-browser.ts +353 -1
- package/corpus/core/src/server/core-routes-plugin.ts +601 -223
- package/corpus/core/src/templates/workspace-core/.agents/skills/a2a-protocol/SKILL.md +25 -0
- package/corpus/templates/calendar/app/components/calendar/DayView.tsx +80 -1
- package/corpus/templates/calendar/app/components/calendar/EventCard.tsx +28 -3
- package/corpus/templates/calendar/app/components/calendar/EventDetailPanel.tsx +5 -1
- package/corpus/templates/calendar/app/components/calendar/EventDetailPopover.tsx +30 -3
- package/corpus/templates/calendar/app/components/calendar/OutOfOfficeEvent.tsx +196 -0
- package/corpus/templates/calendar/app/components/calendar/WeekView.tsx +115 -1
- package/corpus/templates/calendar/app/lib/out-of-office.ts +45 -0
- package/corpus/templates/calendar/changelog/2026-07-14-out-of-office-blocks-now-sit-behind-meetings-and-event-stack.md +6 -0
- package/corpus/templates/content/.agents/skills/document-editing/SKILL.md +23 -0
- package/corpus/templates/content/AGENTS.md +3 -2
- package/corpus/templates/content/actions/_builder-cms-intent-lookup.ts +87 -0
- package/corpus/templates/content/actions/_builder-cms-read-client.ts +173 -25
- package/corpus/templates/content/actions/_builder-cms-source-adapter.ts +1 -0
- package/corpus/templates/content/actions/_builder-cms-write-adapter.ts +427 -18
- package/corpus/templates/content/actions/_builder-cms-write-client.ts +17 -73
- package/corpus/templates/content/actions/_builder-cms-write-settings.ts +27 -7
- package/corpus/templates/content/actions/_builder-source-execution-claim.ts +124 -0
- package/corpus/templates/content/actions/_builder-source-execution-preservation.ts +21 -0
- package/corpus/templates/content/actions/_builder-source-timings.ts +57 -0
- package/corpus/templates/content/actions/_database-source-utils.ts +1041 -154
- package/corpus/templates/content/actions/_database-utils.ts +89 -12
- package/corpus/templates/content/actions/_preview-document-draft.ts +31 -0
- package/corpus/templates/content/actions/cancel-prepared-builder-source-update.ts +309 -0
- package/corpus/templates/content/actions/execute-builder-source-batch.ts +120 -49
- package/corpus/templates/content/actions/execute-builder-source-execution.ts +608 -264
- package/corpus/templates/content/actions/get-preview-document-draft.ts +26 -0
- package/corpus/templates/content/actions/materialize-builder-required-fields.ts +550 -0
- package/corpus/templates/content/actions/prepare-builder-source-execution.ts +112 -65
- package/corpus/templates/content/actions/prepare-builder-source-review.ts +463 -170
- package/corpus/templates/content/actions/preview-builder-source-review.ts +99 -0
- package/corpus/templates/content/actions/set-content-database-source-write-mode.ts +2 -2
- package/corpus/templates/content/actions/update-preview-document-draft.ts +153 -0
- package/corpus/templates/content/app/components/editor/DocumentProperties.tsx +27 -15
- package/corpus/templates/content/app/components/editor/MathRenderer.tsx +43 -0
- package/corpus/templates/content/app/components/editor/SlashCommandMenu.tsx +260 -4
- package/corpus/templates/content/app/components/editor/VisualEditor.tsx +57 -5
- package/corpus/templates/content/app/components/editor/body-hydration.ts +27 -0
- package/corpus/templates/content/app/components/editor/database/DatabaseView.tsx +2353 -576
- package/corpus/templates/content/app/components/editor/database/settings.tsx +13 -10
- package/corpus/templates/content/app/components/editor/database-sources/BuilderSourceReviewDialog.tsx +358 -75
- package/corpus/templates/content/app/components/editor/extensions/NotionExtensions.tsx +78 -0
- package/corpus/templates/content/app/components/editor/previewDocumentSaveController.ts +124 -29
- package/corpus/templates/content/app/components/editor/previewDocumentSaveRegistry.ts +2 -0
- package/corpus/templates/content/app/global.css +71 -1
- package/corpus/templates/content/app/hooks/use-content-database.ts +68 -0
- package/corpus/templates/content/app/hooks/use-documents.ts +53 -4
- package/corpus/templates/content/app/i18n/zh-TW.ts +38 -0
- package/corpus/templates/content/app/i18n-data.ts +450 -0
- package/corpus/templates/content/app/root.tsx +2 -0
- package/corpus/templates/content/changelog/2026-07-10-builder-backed-preview-edits-are-preserved-when-article-bodi.md +6 -0
- package/corpus/templates/content/changelog/2026-07-10-builder-cms-sources-can-now-be-enabled-for-guarded-staged-or.md +6 -0
- package/corpus/templates/content/changelog/2026-07-13-builder-connection-setup-is-now-available-directly-from-conn.md +6 -0
- package/corpus/templates/content/changelog/2026-07-13-builder-reviews-now-hide-already-applied-writes-detect-nativ.md +6 -0
- package/corpus/templates/content/changelog/2026-07-13-required-builder-publishing-fields-can-now-be-added-directly.md +6 -0
- package/corpus/templates/content/changelog/2026-07-13-you-can-now-cancel-a-prepared-builder-update-safely-before-i.md +6 -0
- package/corpus/templates/content/changelog/2026-07-14-builder-account-connection-now-remains-available-when-branch.md +6 -0
- package/corpus/templates/content/changelog/2026-07-14-builder-backed-articles-now-preserve-fifth-and-sixth-level-h.md +6 -0
- package/corpus/templates/content/changelog/2026-07-14-builder-sources-now-review-and-publish-rich-article-updates-.md +6 -0
- package/corpus/templates/content/changelog/2026-07-14-builder-writes-now-stop-retries-when-reconciliation-is-needed.md +6 -0
- package/corpus/templates/content/changelog/2026-07-14-file-and-media-links-now-validate-before-saving.md +6 -0
- package/corpus/templates/content/changelog/2026-07-14-latex-equations-render-in-documents-public-pages-and-exports.md +6 -0
- package/corpus/templates/content/package.json +1 -0
- package/corpus/templates/content/parity/matrix.md +27 -25
- package/corpus/templates/content/parity/matrix.ts +50 -2
- package/corpus/templates/content/server/db/schema.ts +47 -0
- package/corpus/templates/content/server/plugins/auth.ts +1 -0
- package/corpus/templates/content/server/plugins/db.ts +53 -0
- package/corpus/templates/content/shared/api.ts +70 -1
- package/corpus/templates/content/shared/builder-mdx.ts +705 -15
- package/corpus/templates/content/shared/document-export.ts +296 -25
- package/corpus/templates/content/shared/inline-math.ts +128 -0
- package/corpus/templates/content/shared/math-rendering.ts +50 -0
- package/corpus/templates/content/shared/nfm.ts +20 -17
- package/corpus/templates/content/vite.config.ts +0 -1
- package/corpus/templates/design/app/components/design/ReadOnlyDesignBanner.tsx +52 -7
- package/corpus/templates/design/app/components/design/ReviewCommentsPanel.tsx +36 -4
- package/corpus/templates/design/app/components/visual-editor/ReviewCanvasPins.tsx +4 -1
- package/corpus/templates/design/app/i18n/ar-SA.ts +1 -0
- package/corpus/templates/design/app/i18n/de-DE.ts +1 -0
- package/corpus/templates/design/app/i18n/en-US.ts +1 -0
- package/corpus/templates/design/app/i18n/es-ES.ts +1 -0
- package/corpus/templates/design/app/i18n/fr-FR.ts +1 -0
- package/corpus/templates/design/app/i18n/hi-IN.ts +1 -0
- package/corpus/templates/design/app/i18n/ja-JP.ts +1 -0
- package/corpus/templates/design/app/i18n/ko-KR.ts +1 -0
- package/corpus/templates/design/app/i18n/pt-BR.ts +1 -0
- package/corpus/templates/design/app/i18n/zh-CN.ts +1 -0
- package/corpus/templates/design/app/i18n/zh-TW.ts +1 -0
- package/corpus/templates/design/app/pages/design-editor/selection-state.ts +8 -0
- package/corpus/templates/design/app/pages/design-editor/tool-state.ts +11 -0
- package/corpus/templates/design/changelog/2026-07-14-reviewers-can-now-pin-comments-from-the-canvas-toolbar-targe.md +6 -0
- package/corpus/templates/design/changelog/2026-07-15-viewer-comment-controls-now-sit-inside-the-read-only-notice-.md +6 -0
- package/corpus/templates/design/shared/review-anchor.ts +48 -0
- package/corpus/templates/mail/.agents/skills/email-drafts/SKILL.md +17 -0
- package/corpus/templates/mail/AGENTS.md +21 -19
- package/corpus/templates/mail/actions/create-attachment-upload.ts +49 -0
- package/corpus/templates/mail/changelog/2026-07-14-connected-agents-can-now-securely-upload-local-files-for-mai.md +6 -0
- package/corpus/templates/mail/server/handlers/media.ts +84 -61
- package/corpus/templates/mail/server/lib/attachment-upload-ticket.ts +234 -0
- package/corpus/templates/mail/server/lib/mail-connector-catalog.ts +8 -4
- package/corpus/templates/mail/server/lib/media-upload.ts +114 -0
- package/corpus/templates/mail/server/plugins/auth.ts +9 -1
- package/corpus/templates/mail/server/routes/api/media/attachment-upload/[uploadId].put.ts +1 -0
- package/corpus/templates/plan/server/plan-mdx.ts +53 -7
- package/dist/a2a/client.d.ts +5 -1
- package/dist/a2a/client.d.ts.map +1 -1
- package/dist/a2a/client.js +18 -1
- package/dist/a2a/client.js.map +1 -1
- package/dist/a2a/handlers.d.ts.map +1 -1
- package/dist/a2a/handlers.js +57 -8
- package/dist/a2a/handlers.js.map +1 -1
- package/dist/a2a/server.d.ts.map +1 -1
- package/dist/a2a/server.js +87 -1
- package/dist/a2a/server.js.map +1 -1
- package/dist/a2a/task-store.d.ts +27 -0
- package/dist/a2a/task-store.d.ts.map +1 -1
- package/dist/a2a/task-store.js +216 -0
- package/dist/a2a/task-store.js.map +1 -1
- package/dist/a2a/types.d.ts +24 -0
- package/dist/a2a/types.d.ts.map +1 -1
- package/dist/a2a/types.js.map +1 -1
- package/dist/agent/production-agent.d.ts +1 -0
- package/dist/agent/production-agent.d.ts.map +1 -1
- package/dist/agent/production-agent.js +5 -2
- package/dist/agent/production-agent.js.map +1 -1
- package/dist/client/review/ReviewCommentComposer.d.ts +2 -1
- package/dist/client/review/ReviewCommentComposer.d.ts.map +1 -1
- package/dist/client/review/ReviewCommentComposer.js +3 -3
- package/dist/client/review/ReviewCommentComposer.js.map +1 -1
- package/dist/client/review/ReviewThreadPanel.d.ts +9 -1
- package/dist/client/review/ReviewThreadPanel.d.ts.map +1 -1
- package/dist/client/review/ReviewThreadPanel.js +6 -4
- package/dist/client/review/ReviewThreadPanel.js.map +1 -1
- package/dist/client/settings/SettingsPanel.d.ts +3 -0
- package/dist/client/settings/SettingsPanel.d.ts.map +1 -1
- package/dist/client/settings/SettingsPanel.js +11 -4
- package/dist/client/settings/SettingsPanel.js.map +1 -1
- package/dist/client/settings/useBuilderStatus.d.ts +8 -4
- package/dist/client/settings/useBuilderStatus.d.ts.map +1 -1
- package/dist/client/settings/useBuilderStatus.js +19 -6
- package/dist/client/settings/useBuilderStatus.js.map +1 -1
- package/dist/client/setup-connections/BuilderConnectCard.d.ts.map +1 -1
- package/dist/client/setup-connections/BuilderConnectCard.js +2 -5
- package/dist/client/setup-connections/BuilderConnectCard.js.map +1 -1
- package/dist/collab/awareness.d.ts +2 -2
- package/dist/collab/awareness.d.ts.map +1 -1
- package/dist/collab/struct-routes.d.ts +1 -1
- package/dist/file-upload/actions/upload-image.d.ts +1 -1
- package/dist/mcp/builtin-tools.d.ts.map +1 -1
- package/dist/mcp/builtin-tools.js +22 -3
- package/dist/mcp/builtin-tools.js.map +1 -1
- package/dist/notifications/routes.d.ts +3 -3
- package/dist/resources/handlers.d.ts +2 -2
- package/dist/scripts/call-agent.d.ts +1 -1
- package/dist/scripts/call-agent.d.ts.map +1 -1
- package/dist/scripts/call-agent.js +19 -1
- package/dist/scripts/call-agent.js.map +1 -1
- package/dist/server/agent-chat-plugin.d.ts.map +1 -1
- package/dist/server/agent-chat-plugin.js +71 -2
- package/dist/server/agent-chat-plugin.js.map +1 -1
- package/dist/server/agent-engine-api-key-route.d.ts +1 -1
- package/dist/server/auth.d.ts +1 -0
- package/dist/server/auth.d.ts.map +1 -1
- package/dist/server/auth.js +19 -2
- package/dist/server/auth.js.map +1 -1
- package/dist/server/builder-browser.d.ts +78 -0
- package/dist/server/builder-browser.d.ts.map +1 -1
- package/dist/server/builder-browser.js +246 -1
- package/dist/server/builder-browser.js.map +1 -1
- package/dist/server/core-routes-plugin.d.ts +41 -0
- package/dist/server/core-routes-plugin.d.ts.map +1 -1
- package/dist/server/core-routes-plugin.js +260 -14
- package/dist/server/core-routes-plugin.js.map +1 -1
- package/dist/templates/workspace-core/.agents/skills/a2a-protocol/SKILL.md +25 -0
- package/docs/content/deployment.mdx +9 -7
- package/docs/content/locales/ar-SA/deployment.mdx +9 -7
- package/docs/content/locales/de-DE/deployment.mdx +9 -7
- package/docs/content/locales/es-ES/deployment.mdx +9 -7
- package/docs/content/locales/fr-FR/deployment.mdx +9 -7
- package/docs/content/locales/hi-IN/deployment.mdx +9 -7
- package/docs/content/locales/ja-JP/deployment.mdx +9 -7
- package/docs/content/locales/ko-KR/deployment.mdx +9 -7
- package/docs/content/locales/pt-BR/deployment.mdx +9 -7
- package/docs/content/locales/zh-CN/deployment.mdx +9 -7
- package/docs/content/locales/zh-TW/deployment.mdx +9 -7
- package/package.json +2 -2
- package/src/templates/workspace-core/.agents/skills/a2a-protocol/SKILL.md +25 -0
|
@@ -393,6 +393,8 @@ const messages = {
|
|
|
393
393
|
audio: "音訊",
|
|
394
394
|
audioDescription: "上傳或嵌入音訊",
|
|
395
395
|
basicBlocks: "基本塊",
|
|
396
|
+
blockEquation: "區塊公式",
|
|
397
|
+
blockEquationDescription: "在獨立一行顯示 LaTeX 公式",
|
|
396
398
|
blocks: "積木",
|
|
397
399
|
bulletedList: "專案符號清單",
|
|
398
400
|
bulletedListDescription: "無序清單",
|
|
@@ -403,6 +405,7 @@ const messages = {
|
|
|
403
405
|
collapsibleBlockDescription: "可折疊塊",
|
|
404
406
|
database: "資料庫",
|
|
405
407
|
databaseDescription: "此頁面中的內嵌資料庫",
|
|
408
|
+
cancelEquation: "取消",
|
|
406
409
|
divider: "分頻器",
|
|
407
410
|
dividerDescription: "水平尺",
|
|
408
411
|
generate: "生成",
|
|
@@ -413,6 +416,9 @@ const messages = {
|
|
|
413
416
|
heading4Description: "副標題",
|
|
414
417
|
image: "圖片",
|
|
415
418
|
imageDescription: "上傳或嵌入圖片",
|
|
419
|
+
inlineEquation: "行內公式",
|
|
420
|
+
inlineEquationDescription: "在文字中加入 LaTeX 公式",
|
|
421
|
+
insertEquation: "插入",
|
|
416
422
|
localComponents: "本機元件",
|
|
417
423
|
media: "媒體",
|
|
418
424
|
numberedList: "編號清單",
|
|
@@ -420,6 +426,13 @@ const messages = {
|
|
|
420
426
|
page: "頁面",
|
|
421
427
|
pageDescription: "建立子頁面",
|
|
422
428
|
pages: "頁面數",
|
|
429
|
+
equationInputLabel: "LaTeX 公式",
|
|
430
|
+
equationInsertFailed: "無法插入公式。",
|
|
431
|
+
equationNeedsRepair: "請修正 LaTeX 以查看預覽。",
|
|
432
|
+
equationPlaceholder: String.raw`輸入 LaTeX,例如 \frac{a}{b}`,
|
|
433
|
+
equationPreview: "預覽",
|
|
434
|
+
equationPreviewEmpty: "公式將顯示於此。",
|
|
435
|
+
equationSubmitHint: "輸入時會即時更新預覽。按 Cmd/Ctrl+Enter 插入。",
|
|
423
436
|
quote: "報價",
|
|
424
437
|
quoteDescription: "塊報價",
|
|
425
438
|
table: "表",
|
|
@@ -578,6 +591,13 @@ const messages = {
|
|
|
578
591
|
addDetailsToExistingItems: "為現有項目新增詳細資料",
|
|
579
592
|
addedFieldsFromSource: "已從此來源新增 {{count}} 個欄位。",
|
|
580
593
|
addedOneFieldFromSource: "已從此來源新增 1 個欄位。",
|
|
594
|
+
addRequiredFields: "新增必填欄位",
|
|
595
|
+
publishingFieldsAdded: "已新增發布欄位",
|
|
596
|
+
requiredBuilderFieldsReady:
|
|
597
|
+
"{{count}} 個 Builder 必填欄位已可在 Content 中編輯。",
|
|
598
|
+
requiredPublishingFields: "必填發布欄位",
|
|
599
|
+
requiredPublishingFieldsDescription:
|
|
600
|
+
"新增此集合發布前 Builder 所需的中繼資料:{{fields}}。",
|
|
581
601
|
addingDetails: "正在新增詳細資料",
|
|
582
602
|
addingDetailsMatchedOn: "正在新增以 {{field}} 比對的詳細資料。",
|
|
583
603
|
addingItems: "正在新增項目",
|
|
@@ -628,6 +648,7 @@ const messages = {
|
|
|
628
648
|
noPendingLocalBuilderChanges: "尚無待處理的本機 Builder 變更。",
|
|
629
649
|
needsAttention: "需要處理",
|
|
630
650
|
failedYouCanRetry: "失敗 — 您可以重試",
|
|
651
|
+
reconciliationRequired: "需要核對 — 請勿重試",
|
|
631
652
|
needsAFreshReview: "需要重新審查",
|
|
632
653
|
working: "處理中…",
|
|
633
654
|
ready: "就緒",
|
|
@@ -653,6 +674,11 @@ const messages = {
|
|
|
653
674
|
builderBodySyncing: "內容仍在從 Builder 同步",
|
|
654
675
|
builderBodySyncingDescription:
|
|
655
676
|
"同步 Builder 正文完成前會暫停編輯,避免覆寫既有文章內容。",
|
|
677
|
+
builderDraftConflictTitle: "你編輯期間收到了新的 Builder 內容",
|
|
678
|
+
builderDraftConflictDescription:
|
|
679
|
+
"你的本機草稿已保留。你可以保留草稿以在本機取代新同步的正文,或重新載入 Builder 正文。",
|
|
680
|
+
keepLocalDraft: "保留本機草稿",
|
|
681
|
+
reloadBuilderBody: "重新載入 Builder 正文",
|
|
656
682
|
builderBodiesHydrated: "已同步 {{hydrated}} / {{total}} 個正文",
|
|
657
683
|
builderReviewShowingRows:
|
|
658
684
|
"此次審查顯示 {{total}} 個 Builder 列中的 {{shown}} 個。",
|
|
@@ -870,6 +896,8 @@ const messages = {
|
|
|
870
896
|
retry: "Retry",
|
|
871
897
|
reviewBeforeTheyReachBuilder: "在傳送到 Builder 前審核。",
|
|
872
898
|
reviewDiff: "審核差異",
|
|
899
|
+
reviewDiffDescription: "在任何內容傳送到 Builder 前載入完整的內容差異。",
|
|
900
|
+
loadingCompleteBuilderDiff: "正在載入完整的 Builder 差異…",
|
|
873
901
|
sampleMatches: "範例匹配",
|
|
874
902
|
showAll: "顯示全部",
|
|
875
903
|
sortAscending: "升序排序",
|
|
@@ -917,6 +945,7 @@ const messages = {
|
|
|
917
945
|
builderModel: "Builder 模型",
|
|
918
946
|
builderPreparingGate: "正在準備 Builder gate,並透過受保護路徑送出。",
|
|
919
947
|
builderPushFinished: "Builder 推送已完成。",
|
|
948
|
+
builderPushAlreadyRunning: "Builder 推送已在執行中。未送出第二次寫入。",
|
|
920
949
|
builderPushedReconciled: "已送出至 Builder 並完成本機對帳。",
|
|
921
950
|
builderPushWillSend: "送出會透過受保護的 Builder 路徑寫入 autosave。",
|
|
922
951
|
builderWritesDisabledCheckOnly: "Builder 寫入已停用。送出只會檢查更新。",
|
|
@@ -926,6 +955,15 @@ const messages = {
|
|
|
926
955
|
checksOnly: "僅檢查",
|
|
927
956
|
close: "關閉",
|
|
928
957
|
closeBuilderUpdateReview: "關閉 Builder 更新審查",
|
|
958
|
+
cancelPreparedUpdate: "取消已準備的更新",
|
|
959
|
+
cancelPreparedUpdateQuestion: "要取消這個已準備的更新嗎?",
|
|
960
|
+
cancelPreparedUpdateDescription:
|
|
961
|
+
"這會在送出前停止本機執行並保留稽核記錄。不會向 Builder 傳送任何內容。",
|
|
962
|
+
keepPreparedUpdate: "保留已準備的更新",
|
|
963
|
+
cancellingPreparedUpdate: "正在取消…",
|
|
964
|
+
preparedUpdateCancelled: "已取消準備好的 Builder 更新",
|
|
965
|
+
preparedUpdateAlreadyCancelled: "準備好的 Builder 更新已被取消",
|
|
966
|
+
cancelPreparedUpdateFailed: "未能取消準備好的 Builder 更新",
|
|
929
967
|
disabled: "已停用",
|
|
930
968
|
draft: "草稿",
|
|
931
969
|
enabled: "已啟用",
|