@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
|
@@ -14,6 +14,13 @@ const databaseMessages = {
|
|
|
14
14
|
addDetailsToExistingItems: "Add details to the existing items",
|
|
15
15
|
addedFieldsFromSource: "Added {{count}} fields from this source.",
|
|
16
16
|
addedOneFieldFromSource: "Added 1 field from this source.",
|
|
17
|
+
addRequiredFields: "Add required fields",
|
|
18
|
+
publishingFieldsAdded: "Publishing fields added",
|
|
19
|
+
requiredBuilderFieldsReady:
|
|
20
|
+
"{{count}} required Builder fields are ready to edit in Content.",
|
|
21
|
+
requiredPublishingFields: "Required publishing fields",
|
|
22
|
+
requiredPublishingFieldsDescription:
|
|
23
|
+
"Add the metadata Builder requires before this collection can publish: {{fields}}.",
|
|
17
24
|
addingDetails: "Adding details",
|
|
18
25
|
addingDetailsMatchedOn: "Adding details matched on {{field}}.",
|
|
19
26
|
addingItems: "Adding items",
|
|
@@ -43,6 +50,11 @@ const databaseMessages = {
|
|
|
43
50
|
builderBodySyncing: "Content is still syncing from Builder",
|
|
44
51
|
builderBodySyncingDescription:
|
|
45
52
|
"Editing is paused until the Builder body finishes syncing, so the existing article content is not overwritten.",
|
|
53
|
+
builderDraftConflictTitle: "Builder content arrived while you were editing",
|
|
54
|
+
builderDraftConflictDescription:
|
|
55
|
+
"Your local draft is preserved. Keep it to replace the newly synced body locally, or reload the Builder body.",
|
|
56
|
+
keepLocalDraft: "Keep local draft",
|
|
57
|
+
reloadBuilderBody: "Reload Builder body",
|
|
46
58
|
builderBodiesHydrated: "{{hydrated}} of {{total}} bodies hydrated",
|
|
47
59
|
builderReviewShowingRows:
|
|
48
60
|
"Showing {{shown}} of {{total}} Builder rows for this review.",
|
|
@@ -298,6 +310,9 @@ const databaseMessages = {
|
|
|
298
310
|
retry: "Retry",
|
|
299
311
|
reviewBeforeTheyReachBuilder: "Review before they reach Builder.",
|
|
300
312
|
reviewDiff: "Review diff",
|
|
313
|
+
reviewDiffDescription:
|
|
314
|
+
"Loads the complete content diff before anything reaches Builder.",
|
|
315
|
+
loadingCompleteBuilderDiff: "Loading the complete Builder diff…",
|
|
301
316
|
sampleMatches: "Sample matches",
|
|
302
317
|
showAll: "Show all",
|
|
303
318
|
sortAscending: "Sort ascending",
|
|
@@ -358,6 +373,16 @@ const databaseMessages = {
|
|
|
358
373
|
checksOnly: "checks only",
|
|
359
374
|
close: "Close",
|
|
360
375
|
closeBuilderUpdateReview: "Close Builder update review",
|
|
376
|
+
cancelPreparedUpdate: "Cancel prepared update",
|
|
377
|
+
cancelPreparedUpdateQuestion: "Cancel this prepared update?",
|
|
378
|
+
cancelPreparedUpdateDescription:
|
|
379
|
+
"This stops the local execution before dispatch and keeps the audit history. Nothing is sent to Builder.",
|
|
380
|
+
keepPreparedUpdate: "Keep prepared update",
|
|
381
|
+
cancellingPreparedUpdate: "Cancelling…",
|
|
382
|
+
preparedUpdateCancelled: "Prepared Builder update cancelled",
|
|
383
|
+
preparedUpdateAlreadyCancelled:
|
|
384
|
+
"Prepared Builder update was already cancelled",
|
|
385
|
+
cancelPreparedUpdateFailed: "Prepared Builder update was not cancelled",
|
|
361
386
|
disabled: "disabled",
|
|
362
387
|
draft: "Draft",
|
|
363
388
|
enabled: "enabled",
|
|
@@ -427,6 +452,9 @@ const databaseMessages = {
|
|
|
427
452
|
noPendingLocalBuilderChanges: "No pending local Builder changes yet.",
|
|
428
453
|
needsAttention: "Needs attention",
|
|
429
454
|
failedYouCanRetry: "Failed — you can retry",
|
|
455
|
+
reconciliationRequired: "Reconciliation required — don't retry",
|
|
456
|
+
builderPushAlreadyRunning:
|
|
457
|
+
"Builder push is already running. No second write was sent.",
|
|
430
458
|
needsAFreshReview: "Needs a fresh review",
|
|
431
459
|
working: "Working…",
|
|
432
460
|
ready: "Ready",
|
|
@@ -466,6 +494,13 @@ const databaseMessagesByLocale = {
|
|
|
466
494
|
addDetailsToExistingItems: "为现有项目添加详情",
|
|
467
495
|
addedFieldsFromSource: "已从此来源添加 {{count}} 个字段。",
|
|
468
496
|
addedOneFieldFromSource: "已从此来源添加 1 个字段。",
|
|
497
|
+
addRequiredFields: "添加必填字段",
|
|
498
|
+
publishingFieldsAdded: "发布字段已添加",
|
|
499
|
+
requiredBuilderFieldsReady:
|
|
500
|
+
"{{count}} 个 Builder 必填字段已可在 Content 中编辑。",
|
|
501
|
+
requiredPublishingFields: "必填发布字段",
|
|
502
|
+
requiredPublishingFieldsDescription:
|
|
503
|
+
"添加此集合发布前 Builder 所需的元数据:{{fields}}。",
|
|
469
504
|
addingDetails: "正在添加详情",
|
|
470
505
|
addingDetailsMatchedOn: "正在添加按 {{field}} 匹配的详情。",
|
|
471
506
|
addingItems: "正在添加项目",
|
|
@@ -510,6 +545,15 @@ const databaseMessagesByLocale = {
|
|
|
510
545
|
bindAFieldFromASource: "从来源绑定字段",
|
|
511
546
|
reviewBuilderUpdate: "审查 Builder 更新",
|
|
512
547
|
closeBuilderUpdateReview: "关闭 Builder 更新审查",
|
|
548
|
+
cancelPreparedUpdate: "取消已准备的更新",
|
|
549
|
+
cancelPreparedUpdateQuestion: "取消此已准备的更新?",
|
|
550
|
+
cancelPreparedUpdateDescription:
|
|
551
|
+
"这会在发送前停止本地执行并保留审计历史。不会向 Builder 发送任何内容。",
|
|
552
|
+
keepPreparedUpdate: "保留已准备的更新",
|
|
553
|
+
cancellingPreparedUpdate: "正在取消…",
|
|
554
|
+
preparedUpdateCancelled: "已取消准备好的 Builder 更新",
|
|
555
|
+
preparedUpdateAlreadyCancelled: "准备好的 Builder 更新已被取消",
|
|
556
|
+
cancelPreparedUpdateFailed: "未能取消准备好的 Builder 更新",
|
|
513
557
|
whatChanged: "更改内容",
|
|
514
558
|
confirmUnpublish: "确认取消发布",
|
|
515
559
|
builderBodyEditsNeedSaferPath:
|
|
@@ -521,6 +565,8 @@ const databaseMessagesByLocale = {
|
|
|
521
565
|
noPendingLocalBuilderChanges: "尚无待处理的本地 Builder 更改。",
|
|
522
566
|
needsAttention: "需要处理",
|
|
523
567
|
failedYouCanRetry: "失败 — 您可以重试",
|
|
568
|
+
reconciliationRequired: "需要核对 — 请勿重试",
|
|
569
|
+
builderPushAlreadyRunning: "Builder 推送已在运行。未发送第二次写入。",
|
|
524
570
|
needsAFreshReview: "需要重新审查",
|
|
525
571
|
working: "处理中…",
|
|
526
572
|
checksOnly: "仅检查",
|
|
@@ -652,6 +698,13 @@ const databaseMessagesByLocale = {
|
|
|
652
698
|
addDetailsToExistingItems: "Añadir detalles a los elementos existentes",
|
|
653
699
|
addedFieldsFromSource: "Se añadieron {{count}} campos de esta fuente.",
|
|
654
700
|
addedOneFieldFromSource: "Se añadió 1 campo de esta fuente.",
|
|
701
|
+
addRequiredFields: "Añadir campos obligatorios",
|
|
702
|
+
publishingFieldsAdded: "Campos de publicación añadidos",
|
|
703
|
+
requiredBuilderFieldsReady:
|
|
704
|
+
"{{count}} campos obligatorios de Builder ya se pueden editar en Content.",
|
|
705
|
+
requiredPublishingFields: "Campos de publicación obligatorios",
|
|
706
|
+
requiredPublishingFieldsDescription:
|
|
707
|
+
"Añade los metadatos que Builder requiere para publicar esta colección: {{fields}}.",
|
|
655
708
|
addingDetails: "Añadiendo detalles",
|
|
656
709
|
addingDetailsMatchedOn: "Añadiendo detalles coincidentes por {{field}}.",
|
|
657
710
|
addingItems: "Añadiendo elementos",
|
|
@@ -704,6 +757,17 @@ const databaseMessagesByLocale = {
|
|
|
704
757
|
bindAFieldFromASource: "Vincular un campo de una fuente",
|
|
705
758
|
reviewBuilderUpdate: "Revisar actualización de Builder",
|
|
706
759
|
closeBuilderUpdateReview: "Cerrar revisión de actualización de Builder",
|
|
760
|
+
cancelPreparedUpdate: "Cancelar actualización preparada",
|
|
761
|
+
cancelPreparedUpdateQuestion: "¿Cancelar esta actualización preparada?",
|
|
762
|
+
cancelPreparedUpdateDescription:
|
|
763
|
+
"Esto detiene la ejecución local antes del envío y conserva el historial de auditoría. No se envía nada a Builder.",
|
|
764
|
+
keepPreparedUpdate: "Conservar actualización preparada",
|
|
765
|
+
cancellingPreparedUpdate: "Cancelando…",
|
|
766
|
+
preparedUpdateCancelled: "Actualización preparada de Builder cancelada",
|
|
767
|
+
preparedUpdateAlreadyCancelled:
|
|
768
|
+
"La actualización preparada de Builder ya estaba cancelada",
|
|
769
|
+
cancelPreparedUpdateFailed:
|
|
770
|
+
"No se canceló la actualización preparada de Builder",
|
|
707
771
|
whatChanged: "Qué cambió",
|
|
708
772
|
confirmUnpublish: "Confirmar retirada de publicación",
|
|
709
773
|
builderBodyEditsNeedSaferPath:
|
|
@@ -717,6 +781,9 @@ const databaseMessagesByLocale = {
|
|
|
717
781
|
"Aún no hay cambios locales de Builder pendientes.",
|
|
718
782
|
needsAttention: "Necesita atención",
|
|
719
783
|
failedYouCanRetry: "Falló — puedes reintentar",
|
|
784
|
+
reconciliationRequired: "Se requiere conciliación — no reintentes",
|
|
785
|
+
builderPushAlreadyRunning:
|
|
786
|
+
"El envío a Builder ya está en curso. No se envió una segunda escritura.",
|
|
720
787
|
needsAFreshReview: "Necesita una nueva revisión",
|
|
721
788
|
working: "Procesando…",
|
|
722
789
|
checksOnly: "Solo comprobaciones",
|
|
@@ -854,6 +921,13 @@ const databaseMessagesByLocale = {
|
|
|
854
921
|
addDetailsToExistingItems: "Ajouter des détails aux éléments existants",
|
|
855
922
|
addedFieldsFromSource: "{{count}} champs ajoutés depuis cette source.",
|
|
856
923
|
addedOneFieldFromSource: "1 champ ajouté depuis cette source.",
|
|
924
|
+
addRequiredFields: "Ajouter les champs obligatoires",
|
|
925
|
+
publishingFieldsAdded: "Champs de publication ajoutés",
|
|
926
|
+
requiredBuilderFieldsReady:
|
|
927
|
+
"{{count}} champs Builder obligatoires peuvent maintenant être modifiés dans Content.",
|
|
928
|
+
requiredPublishingFields: "Champs de publication obligatoires",
|
|
929
|
+
requiredPublishingFieldsDescription:
|
|
930
|
+
"Ajoutez les métadonnées requises par Builder avant de publier cette collection : {{fields}}.",
|
|
857
931
|
addingDetails: "Ajout de détails",
|
|
858
932
|
addingDetailsMatchedOn: "Ajout de détails correspondant à {{field}}.",
|
|
859
933
|
addingItems: "Ajout d’éléments",
|
|
@@ -907,6 +981,17 @@ const databaseMessagesByLocale = {
|
|
|
907
981
|
bindAFieldFromASource: "Lier un champ depuis une source",
|
|
908
982
|
reviewBuilderUpdate: "Vérifier la mise à jour Builder",
|
|
909
983
|
closeBuilderUpdateReview: "Fermer la révision de mise à jour Builder",
|
|
984
|
+
cancelPreparedUpdate: "Annuler la mise à jour préparée",
|
|
985
|
+
cancelPreparedUpdateQuestion: "Annuler cette mise à jour préparée ?",
|
|
986
|
+
cancelPreparedUpdateDescription:
|
|
987
|
+
"Cette action arrête l’exécution locale avant l’envoi et conserve l’historique d’audit. Rien n’est envoyé à Builder.",
|
|
988
|
+
keepPreparedUpdate: "Conserver la mise à jour préparée",
|
|
989
|
+
cancellingPreparedUpdate: "Annulation…",
|
|
990
|
+
preparedUpdateCancelled: "Mise à jour Builder préparée annulée",
|
|
991
|
+
preparedUpdateAlreadyCancelled:
|
|
992
|
+
"La mise à jour Builder préparée était déjà annulée",
|
|
993
|
+
cancelPreparedUpdateFailed:
|
|
994
|
+
"La mise à jour Builder préparée n’a pas été annulée",
|
|
910
995
|
whatChanged: "Ce qui a changé",
|
|
911
996
|
confirmUnpublish: "Confirmer la dépublication",
|
|
912
997
|
builderBodyEditsNeedSaferPath:
|
|
@@ -921,6 +1006,9 @@ const databaseMessagesByLocale = {
|
|
|
921
1006
|
"Aucune modification Builder locale en attente pour l'instant.",
|
|
922
1007
|
needsAttention: "Nécessite une attention",
|
|
923
1008
|
failedYouCanRetry: "Échec — vous pouvez réessayer",
|
|
1009
|
+
reconciliationRequired: "Rapprochement requis — ne réessayez pas",
|
|
1010
|
+
builderPushAlreadyRunning:
|
|
1011
|
+
"L’envoi vers Builder est déjà en cours. Aucune deuxième écriture n’a été envoyée.",
|
|
924
1012
|
needsAFreshReview: "Nécessite une nouvelle révision",
|
|
925
1013
|
working: "En cours…",
|
|
926
1014
|
checksOnly: "Vérifications uniquement",
|
|
@@ -1056,6 +1144,13 @@ const databaseMessagesByLocale = {
|
|
|
1056
1144
|
addDetailsToExistingItems: "Details zu vorhandenen Elementen hinzufügen",
|
|
1057
1145
|
addedFieldsFromSource: "{{count}} Felder aus dieser Quelle hinzugefügt.",
|
|
1058
1146
|
addedOneFieldFromSource: "1 Feld aus dieser Quelle hinzugefügt.",
|
|
1147
|
+
addRequiredFields: "Pflichtfelder hinzufügen",
|
|
1148
|
+
publishingFieldsAdded: "Veröffentlichungsfelder hinzugefügt",
|
|
1149
|
+
requiredBuilderFieldsReady:
|
|
1150
|
+
"{{count}} Builder-Pflichtfelder können jetzt in Content bearbeitet werden.",
|
|
1151
|
+
requiredPublishingFields: "Erforderliche Veröffentlichungsfelder",
|
|
1152
|
+
requiredPublishingFieldsDescription:
|
|
1153
|
+
"Fügen Sie die Metadaten hinzu, die Builder vor der Veröffentlichung dieser Sammlung benötigt: {{fields}}.",
|
|
1059
1154
|
addingDetails: "Details werden hinzugefügt",
|
|
1060
1155
|
addingDetailsMatchedOn: "Details werden anhand von {{field}} hinzugefügt.",
|
|
1061
1156
|
addingItems: "Elemente werden hinzugefügt",
|
|
@@ -1109,6 +1204,17 @@ const databaseMessagesByLocale = {
|
|
|
1109
1204
|
bindAFieldFromASource: "Ein Feld aus einer Quelle verknüpfen",
|
|
1110
1205
|
reviewBuilderUpdate: "Builder-Update prüfen",
|
|
1111
1206
|
closeBuilderUpdateReview: "Builder-Update-Prüfung schließen",
|
|
1207
|
+
cancelPreparedUpdate: "Vorbereitetes Update abbrechen",
|
|
1208
|
+
cancelPreparedUpdateQuestion: "Dieses vorbereitete Update abbrechen?",
|
|
1209
|
+
cancelPreparedUpdateDescription:
|
|
1210
|
+
"Dadurch wird die lokale Ausführung vor dem Senden gestoppt und der Prüfverlauf bleibt erhalten. Es wird nichts an Builder gesendet.",
|
|
1211
|
+
keepPreparedUpdate: "Vorbereitetes Update behalten",
|
|
1212
|
+
cancellingPreparedUpdate: "Wird abgebrochen…",
|
|
1213
|
+
preparedUpdateCancelled: "Vorbereitetes Builder-Update abgebrochen",
|
|
1214
|
+
preparedUpdateAlreadyCancelled:
|
|
1215
|
+
"Das vorbereitete Builder-Update wurde bereits abgebrochen",
|
|
1216
|
+
cancelPreparedUpdateFailed:
|
|
1217
|
+
"Das vorbereitete Builder-Update wurde nicht abgebrochen",
|
|
1112
1218
|
whatChanged: "Was sich geändert hat",
|
|
1113
1219
|
confirmUnpublish: "Zurückziehen bestätigen",
|
|
1114
1220
|
builderBodyEditsNeedSaferPath:
|
|
@@ -1123,6 +1229,9 @@ const databaseMessagesByLocale = {
|
|
|
1123
1229
|
"Noch keine ausstehenden lokalen Builder-Änderungen.",
|
|
1124
1230
|
needsAttention: "Erfordert Aufmerksamkeit",
|
|
1125
1231
|
failedYouCanRetry: "Fehlgeschlagen — du kannst es erneut versuchen",
|
|
1232
|
+
reconciliationRequired: "Abgleich erforderlich — nicht erneut versuchen",
|
|
1233
|
+
builderPushAlreadyRunning:
|
|
1234
|
+
"Der Builder-Push läuft bereits. Es wurde kein zweiter Schreibvorgang gesendet.",
|
|
1126
1235
|
needsAFreshReview: "Erfordert eine erneute Prüfung",
|
|
1127
1236
|
working: "Wird ausgeführt…",
|
|
1128
1237
|
checksOnly: "Nur Prüfungen",
|
|
@@ -1259,6 +1368,13 @@ const databaseMessagesByLocale = {
|
|
|
1259
1368
|
addedFieldsFromSource:
|
|
1260
1369
|
"このソースから {{count}} 個のフィールドを追加しました。",
|
|
1261
1370
|
addedOneFieldFromSource: "このソースから 1 個のフィールドを追加しました。",
|
|
1371
|
+
addRequiredFields: "必須フィールドを追加",
|
|
1372
|
+
publishingFieldsAdded: "公開フィールドを追加しました",
|
|
1373
|
+
requiredBuilderFieldsReady:
|
|
1374
|
+
"{{count}} 個の Builder 必須フィールドを Content で編集できるようになりました。",
|
|
1375
|
+
requiredPublishingFields: "公開に必要なフィールド",
|
|
1376
|
+
requiredPublishingFieldsDescription:
|
|
1377
|
+
"このコレクションを公開する前に Builder が必要とするメタデータを追加します: {{fields}}。",
|
|
1262
1378
|
addingDetails: "詳細を追加中",
|
|
1263
1379
|
addingDetailsMatchedOn: "{{field}} で一致した詳細を追加中。",
|
|
1264
1380
|
addingItems: "アイテムを追加中",
|
|
@@ -1309,6 +1425,17 @@ const databaseMessagesByLocale = {
|
|
|
1309
1425
|
bindAFieldFromASource: "ソースからフィールドをバインド",
|
|
1310
1426
|
reviewBuilderUpdate: "Builder の更新を確認",
|
|
1311
1427
|
closeBuilderUpdateReview: "Builder 更新の確認を閉じる",
|
|
1428
|
+
cancelPreparedUpdate: "準備済み更新をキャンセル",
|
|
1429
|
+
cancelPreparedUpdateQuestion: "この準備済み更新をキャンセルしますか?",
|
|
1430
|
+
cancelPreparedUpdateDescription:
|
|
1431
|
+
"送信前にローカル実行を停止し、監査履歴は保持されます。Builder には何も送信されません。",
|
|
1432
|
+
keepPreparedUpdate: "準備済み更新を保持",
|
|
1433
|
+
cancellingPreparedUpdate: "キャンセル中…",
|
|
1434
|
+
preparedUpdateCancelled: "準備済み Builder 更新をキャンセルしました",
|
|
1435
|
+
preparedUpdateAlreadyCancelled:
|
|
1436
|
+
"準備済み Builder 更新はすでにキャンセルされています",
|
|
1437
|
+
cancelPreparedUpdateFailed:
|
|
1438
|
+
"準備済み Builder 更新をキャンセルできませんでした",
|
|
1312
1439
|
whatChanged: "変更内容",
|
|
1313
1440
|
confirmUnpublish: "非公開を確認",
|
|
1314
1441
|
builderBodyEditsNeedSaferPath:
|
|
@@ -1322,6 +1449,9 @@ const databaseMessagesByLocale = {
|
|
|
1322
1449
|
"保留中のローカル Builder 変更はまだありません。",
|
|
1323
1450
|
needsAttention: "対応が必要",
|
|
1324
1451
|
failedYouCanRetry: "失敗しました — 再試行できます",
|
|
1452
|
+
reconciliationRequired: "照合が必要です — 再試行しないでください",
|
|
1453
|
+
builderPushAlreadyRunning:
|
|
1454
|
+
"Builder へのプッシュはすでに実行中です。2 回目の書き込みは送信されませんでした。",
|
|
1325
1455
|
needsAFreshReview: "再確認が必要",
|
|
1326
1456
|
working: "処理中…",
|
|
1327
1457
|
checksOnly: "チェックのみ",
|
|
@@ -1455,6 +1585,13 @@ const databaseMessagesByLocale = {
|
|
|
1455
1585
|
addDetailsToExistingItems: "기존 항목에 세부 정보 추가",
|
|
1456
1586
|
addedFieldsFromSource: "이 소스에서 필드 {{count}}개를 추가했습니다.",
|
|
1457
1587
|
addedOneFieldFromSource: "이 소스에서 필드 1개를 추가했습니다.",
|
|
1588
|
+
addRequiredFields: "필수 필드 추가",
|
|
1589
|
+
publishingFieldsAdded: "게시 필드가 추가됨",
|
|
1590
|
+
requiredBuilderFieldsReady:
|
|
1591
|
+
"필수 Builder 필드 {{count}}개를 이제 Content에서 편집할 수 있습니다.",
|
|
1592
|
+
requiredPublishingFields: "필수 게시 필드",
|
|
1593
|
+
requiredPublishingFieldsDescription:
|
|
1594
|
+
"이 컬렉션을 게시하기 전에 Builder에 필요한 메타데이터를 추가하세요: {{fields}}.",
|
|
1458
1595
|
addingDetails: "세부 정보 추가 중",
|
|
1459
1596
|
addingDetailsMatchedOn:
|
|
1460
1597
|
"{{field}} 기준으로 일치한 세부 정보를 추가 중입니다.",
|
|
@@ -1506,6 +1643,16 @@ const databaseMessagesByLocale = {
|
|
|
1506
1643
|
bindAFieldFromASource: "소스에서 필드 바인딩",
|
|
1507
1644
|
reviewBuilderUpdate: "Builder 업데이트 검토",
|
|
1508
1645
|
closeBuilderUpdateReview: "Builder 업데이트 검토 닫기",
|
|
1646
|
+
cancelPreparedUpdate: "준비된 업데이트 취소",
|
|
1647
|
+
cancelPreparedUpdateQuestion: "이 준비된 업데이트를 취소할까요?",
|
|
1648
|
+
cancelPreparedUpdateDescription:
|
|
1649
|
+
"전송 전에 로컬 실행을 중지하고 감사 기록은 유지합니다. Builder에는 아무것도 전송되지 않습니다.",
|
|
1650
|
+
keepPreparedUpdate: "준비된 업데이트 유지",
|
|
1651
|
+
cancellingPreparedUpdate: "취소 중…",
|
|
1652
|
+
preparedUpdateCancelled: "준비된 Builder 업데이트가 취소되었습니다",
|
|
1653
|
+
preparedUpdateAlreadyCancelled:
|
|
1654
|
+
"준비된 Builder 업데이트가 이미 취소되었습니다",
|
|
1655
|
+
cancelPreparedUpdateFailed: "준비된 Builder 업데이트를 취소하지 못했습니다",
|
|
1509
1656
|
whatChanged: "변경 내용",
|
|
1510
1657
|
confirmUnpublish: "게시 취소 확인",
|
|
1511
1658
|
builderBodyEditsNeedSaferPath:
|
|
@@ -1519,6 +1666,9 @@ const databaseMessagesByLocale = {
|
|
|
1519
1666
|
"아직 대기 중인 로컬 Builder 변경 사항이 없습니다.",
|
|
1520
1667
|
needsAttention: "주의 필요",
|
|
1521
1668
|
failedYouCanRetry: "실패함 — 다시 시도할 수 있습니다",
|
|
1669
|
+
reconciliationRequired: "조정 필요 — 다시 시도하지 마세요",
|
|
1670
|
+
builderPushAlreadyRunning:
|
|
1671
|
+
"Builder 푸시가 이미 실행 중입니다. 두 번째 쓰기는 전송되지 않았습니다.",
|
|
1522
1672
|
needsAFreshReview: "새로운 검토 필요",
|
|
1523
1673
|
working: "처리 중…",
|
|
1524
1674
|
checksOnly: "검사만",
|
|
@@ -1652,6 +1802,13 @@ const databaseMessagesByLocale = {
|
|
|
1652
1802
|
addDetailsToExistingItems: "Adicionar detalhes aos itens existentes",
|
|
1653
1803
|
addedFieldsFromSource: "{{count}} campos adicionados desta fonte.",
|
|
1654
1804
|
addedOneFieldFromSource: "1 campo adicionado desta fonte.",
|
|
1805
|
+
addRequiredFields: "Adicionar campos obrigatórios",
|
|
1806
|
+
publishingFieldsAdded: "Campos de publicação adicionados",
|
|
1807
|
+
requiredBuilderFieldsReady:
|
|
1808
|
+
"{{count}} campos obrigatórios do Builder já podem ser editados no Content.",
|
|
1809
|
+
requiredPublishingFields: "Campos de publicação obrigatórios",
|
|
1810
|
+
requiredPublishingFieldsDescription:
|
|
1811
|
+
"Adicione os metadados exigidos pelo Builder antes de publicar esta coleção: {{fields}}.",
|
|
1655
1812
|
addingDetails: "Adicionando detalhes",
|
|
1656
1813
|
addingDetailsMatchedOn:
|
|
1657
1814
|
"Adicionando detalhes correspondentes em {{field}}.",
|
|
@@ -1705,6 +1862,17 @@ const databaseMessagesByLocale = {
|
|
|
1705
1862
|
bindAFieldFromASource: "Vincular um campo de uma fonte",
|
|
1706
1863
|
reviewBuilderUpdate: "Revisar atualização do Builder",
|
|
1707
1864
|
closeBuilderUpdateReview: "Fechar revisão de atualização do Builder",
|
|
1865
|
+
cancelPreparedUpdate: "Cancelar atualização preparada",
|
|
1866
|
+
cancelPreparedUpdateQuestion: "Cancelar esta atualização preparada?",
|
|
1867
|
+
cancelPreparedUpdateDescription:
|
|
1868
|
+
"Isso interrompe a execução local antes do envio e mantém o histórico de auditoria. Nada é enviado ao Builder.",
|
|
1869
|
+
keepPreparedUpdate: "Manter atualização preparada",
|
|
1870
|
+
cancellingPreparedUpdate: "Cancelando…",
|
|
1871
|
+
preparedUpdateCancelled: "Atualização preparada do Builder cancelada",
|
|
1872
|
+
preparedUpdateAlreadyCancelled:
|
|
1873
|
+
"A atualização preparada do Builder já estava cancelada",
|
|
1874
|
+
cancelPreparedUpdateFailed:
|
|
1875
|
+
"A atualização preparada do Builder não foi cancelada",
|
|
1708
1876
|
whatChanged: "O que mudou",
|
|
1709
1877
|
confirmUnpublish: "Confirmar cancelamento de publicação",
|
|
1710
1878
|
builderBodyEditsNeedSaferPath:
|
|
@@ -1718,6 +1886,9 @@ const databaseMessagesByLocale = {
|
|
|
1718
1886
|
"Ainda não há alterações locais do Builder pendentes.",
|
|
1719
1887
|
needsAttention: "Precisa de atenção",
|
|
1720
1888
|
failedYouCanRetry: "Falhou — você pode tentar novamente",
|
|
1889
|
+
reconciliationRequired: "Reconciliação necessária — não tente novamente",
|
|
1890
|
+
builderPushAlreadyRunning:
|
|
1891
|
+
"O envio para o Builder já está em andamento. Nenhuma segunda gravação foi enviada.",
|
|
1721
1892
|
needsAFreshReview: "Precisa de uma nova revisão",
|
|
1722
1893
|
working: "Processando…",
|
|
1723
1894
|
checksOnly: "Apenas verificações",
|
|
@@ -1851,6 +2022,13 @@ const databaseMessagesByLocale = {
|
|
|
1851
2022
|
addDetailsToExistingItems: "मौजूदा आइटम में विवरण जोड़ें",
|
|
1852
2023
|
addedFieldsFromSource: "इस स्रोत से {{count}} फ़ील्ड जोड़े गए।",
|
|
1853
2024
|
addedOneFieldFromSource: "इस स्रोत से 1 फ़ील्ड जोड़ा गया।",
|
|
2025
|
+
addRequiredFields: "ज़रूरी फ़ील्ड जोड़ें",
|
|
2026
|
+
publishingFieldsAdded: "प्रकाशन फ़ील्ड जोड़े गए",
|
|
2027
|
+
requiredBuilderFieldsReady:
|
|
2028
|
+
"{{count}} ज़रूरी Builder फ़ील्ड अब Content में संपादन के लिए तैयार हैं।",
|
|
2029
|
+
requiredPublishingFields: "ज़रूरी प्रकाशन फ़ील्ड",
|
|
2030
|
+
requiredPublishingFieldsDescription:
|
|
2031
|
+
"इस संग्रह को प्रकाशित करने से पहले Builder के लिए ज़रूरी मेटाडेटा जोड़ें: {{fields}}।",
|
|
1854
2032
|
addingDetails: "विवरण जोड़े जा रहे हैं",
|
|
1855
2033
|
addingDetailsMatchedOn: "{{field}} पर मिले विवरण जोड़े जा रहे हैं।",
|
|
1856
2034
|
addingItems: "आइटम जोड़े जा रहे हैं",
|
|
@@ -1900,6 +2078,16 @@ const databaseMessagesByLocale = {
|
|
|
1900
2078
|
bindAFieldFromASource: "किसी स्रोत से एक फ़ील्ड बाँधें",
|
|
1901
2079
|
reviewBuilderUpdate: "Builder अपडेट की समीक्षा करें",
|
|
1902
2080
|
closeBuilderUpdateReview: "Builder अपडेट समीक्षा बंद करें",
|
|
2081
|
+
cancelPreparedUpdate: "तैयार अपडेट रद्द करें",
|
|
2082
|
+
cancelPreparedUpdateQuestion: "इस तैयार अपडेट को रद्द करें?",
|
|
2083
|
+
cancelPreparedUpdateDescription:
|
|
2084
|
+
"यह भेजने से पहले स्थानीय निष्पादन रोकता है और ऑडिट इतिहास सुरक्षित रखता है। Builder को कुछ नहीं भेजा जाता।",
|
|
2085
|
+
keepPreparedUpdate: "तैयार अपडेट रखें",
|
|
2086
|
+
cancellingPreparedUpdate: "रद्द किया जा रहा है…",
|
|
2087
|
+
preparedUpdateCancelled: "तैयार Builder अपडेट रद्द किया गया",
|
|
2088
|
+
preparedUpdateAlreadyCancelled:
|
|
2089
|
+
"तैयार Builder अपडेट पहले ही रद्द किया जा चुका था",
|
|
2090
|
+
cancelPreparedUpdateFailed: "तैयार Builder अपडेट रद्द नहीं हुआ",
|
|
1903
2091
|
whatChanged: "क्या बदला",
|
|
1904
2092
|
confirmUnpublish: "अप्रकाशित करने की पुष्टि करें",
|
|
1905
2093
|
builderBodyEditsNeedSaferPath:
|
|
@@ -1912,6 +2100,9 @@ const databaseMessagesByLocale = {
|
|
|
1912
2100
|
noPendingLocalBuilderChanges: "अभी तक कोई लंबित स्थानीय Builder परिवर्तन नहीं।",
|
|
1913
2101
|
needsAttention: "ध्यान देने की आवश्यकता है",
|
|
1914
2102
|
failedYouCanRetry: "विफल — आप पुनः प्रयास कर सकते हैं",
|
|
2103
|
+
reconciliationRequired: "मिलान आवश्यक है — पुनः प्रयास न करें",
|
|
2104
|
+
builderPushAlreadyRunning:
|
|
2105
|
+
"Builder पुश पहले से चल रहा है। दूसरा लेखन नहीं भेजा गया।",
|
|
1915
2106
|
needsAFreshReview: "एक नई समीक्षा की आवश्यकता है",
|
|
1916
2107
|
working: "कार्य हो रहा है…",
|
|
1917
2108
|
checksOnly: "केवल जाँच",
|
|
@@ -2041,6 +2232,13 @@ const databaseMessagesByLocale = {
|
|
|
2041
2232
|
addDetailsToExistingItems: "إضافة تفاصيل إلى العناصر الحالية",
|
|
2042
2233
|
addedFieldsFromSource: "تمت إضافة {{count}} حقول من هذا المصدر.",
|
|
2043
2234
|
addedOneFieldFromSource: "تمت إضافة حقل واحد من هذا المصدر.",
|
|
2235
|
+
addRequiredFields: "إضافة الحقول المطلوبة",
|
|
2236
|
+
publishingFieldsAdded: "تمت إضافة حقول النشر",
|
|
2237
|
+
requiredBuilderFieldsReady:
|
|
2238
|
+
"أصبحت {{count}} من حقول Builder المطلوبة جاهزة للتحرير في Content.",
|
|
2239
|
+
requiredPublishingFields: "حقول النشر المطلوبة",
|
|
2240
|
+
requiredPublishingFieldsDescription:
|
|
2241
|
+
"أضف البيانات الوصفية التي يتطلبها Builder قبل نشر هذه المجموعة: {{fields}}.",
|
|
2044
2242
|
addingDetails: "إضافة تفاصيل",
|
|
2045
2243
|
addingDetailsMatchedOn: "إضافة تفاصيل متطابقة على {{field}}.",
|
|
2046
2244
|
addingItems: "إضافة عناصر",
|
|
@@ -2090,6 +2288,15 @@ const databaseMessagesByLocale = {
|
|
|
2090
2288
|
bindAFieldFromASource: "ربط حقل من مصدر",
|
|
2091
2289
|
reviewBuilderUpdate: "مراجعة تحديث Builder",
|
|
2092
2290
|
closeBuilderUpdateReview: "إغلاق مراجعة تحديث Builder",
|
|
2291
|
+
cancelPreparedUpdate: "إلغاء التحديث المُعَد",
|
|
2292
|
+
cancelPreparedUpdateQuestion: "هل تريد إلغاء هذا التحديث المُعَد؟",
|
|
2293
|
+
cancelPreparedUpdateDescription:
|
|
2294
|
+
"يؤدي هذا إلى إيقاف التنفيذ المحلي قبل الإرسال مع الاحتفاظ بسجل التدقيق. لن يُرسل شيء إلى Builder.",
|
|
2295
|
+
keepPreparedUpdate: "الاحتفاظ بالتحديث المُعَد",
|
|
2296
|
+
cancellingPreparedUpdate: "جارٍ الإلغاء…",
|
|
2297
|
+
preparedUpdateCancelled: "تم إلغاء تحديث Builder المُعَد",
|
|
2298
|
+
preparedUpdateAlreadyCancelled: "كان تحديث Builder المُعَد ملغى بالفعل",
|
|
2299
|
+
cancelPreparedUpdateFailed: "لم يتم إلغاء تحديث Builder المُعَد",
|
|
2093
2300
|
whatChanged: "ما الذي تغيّر",
|
|
2094
2301
|
confirmUnpublish: "تأكيد إلغاء النشر",
|
|
2095
2302
|
builderBodyEditsNeedSaferPath:
|
|
@@ -2101,6 +2308,9 @@ const databaseMessagesByLocale = {
|
|
|
2101
2308
|
noPendingLocalBuilderChanges: "لا توجد تغييرات Builder محلية معلّقة بعد.",
|
|
2102
2309
|
needsAttention: "يتطلب الانتباه",
|
|
2103
2310
|
failedYouCanRetry: "فشل — يمكنك إعادة المحاولة",
|
|
2311
|
+
reconciliationRequired: "المطابقة مطلوبة — لا تعد المحاولة",
|
|
2312
|
+
builderPushAlreadyRunning:
|
|
2313
|
+
"دفع Builder قيد التشغيل بالفعل. لم يتم إرسال كتابة ثانية.",
|
|
2104
2314
|
needsAFreshReview: "يتطلب مراجعة جديدة",
|
|
2105
2315
|
working: "جارٍ العمل…",
|
|
2106
2316
|
checksOnly: "عمليات التحقق فقط",
|
|
@@ -2519,6 +2729,8 @@ const editorSlashMessages = {
|
|
|
2519
2729
|
audio: "Audio",
|
|
2520
2730
|
audioDescription: "Upload or embed audio",
|
|
2521
2731
|
basicBlocks: "Basic blocks",
|
|
2732
|
+
blockEquation: "Block equation",
|
|
2733
|
+
blockEquationDescription: "Display a LaTeX equation on its own line",
|
|
2522
2734
|
blocks: "Blocks",
|
|
2523
2735
|
bulletedList: "Bulleted list",
|
|
2524
2736
|
bulletedListDescription: "Unordered list",
|
|
@@ -2529,6 +2741,7 @@ const editorSlashMessages = {
|
|
|
2529
2741
|
collapsibleBlockDescription: "Collapsible block",
|
|
2530
2742
|
database: "Database",
|
|
2531
2743
|
databaseDescription: "Inline database in this page",
|
|
2744
|
+
cancelEquation: "Cancel",
|
|
2532
2745
|
divider: "Divider",
|
|
2533
2746
|
dividerDescription: "Horizontal rule",
|
|
2534
2747
|
generate: "Generate",
|
|
@@ -2539,6 +2752,9 @@ const editorSlashMessages = {
|
|
|
2539
2752
|
heading4Description: "Subheading",
|
|
2540
2753
|
image: "Image",
|
|
2541
2754
|
imageDescription: "Upload or embed image",
|
|
2755
|
+
inlineEquation: "Inline equation",
|
|
2756
|
+
inlineEquationDescription: "Add a LaTeX equation within text",
|
|
2757
|
+
insertEquation: "Insert",
|
|
2542
2758
|
localComponents: "Local components",
|
|
2543
2759
|
media: "Media",
|
|
2544
2760
|
numberedList: "Numbered list",
|
|
@@ -2546,6 +2762,14 @@ const editorSlashMessages = {
|
|
|
2546
2762
|
page: "Page",
|
|
2547
2763
|
pageDescription: "Create a child page",
|
|
2548
2764
|
pages: "Pages",
|
|
2765
|
+
equationInputLabel: "LaTeX equation",
|
|
2766
|
+
equationInsertFailed: "Could not insert the equation.",
|
|
2767
|
+
equationNeedsRepair: "Fix the LaTeX to see a preview.",
|
|
2768
|
+
equationPlaceholder: String.raw`Type LaTeX, for example \frac{a}{b}`,
|
|
2769
|
+
equationPreview: "Preview",
|
|
2770
|
+
equationPreviewEmpty: "Your equation will appear here.",
|
|
2771
|
+
equationSubmitHint:
|
|
2772
|
+
"Preview updates as you type. Press Cmd/Ctrl+Enter to insert.",
|
|
2549
2773
|
quote: "Quote",
|
|
2550
2774
|
quoteDescription: "Block quote",
|
|
2551
2775
|
table: "Table",
|
|
@@ -4206,6 +4430,8 @@ const databaseExactEnglishMessagesByLocale = {
|
|
|
4206
4430
|
renameView: "重命名视图",
|
|
4207
4431
|
reviewBeforeTheyReachBuilder: "在发送到 Builder 前审核。",
|
|
4208
4432
|
reviewDiff: "审核差异",
|
|
4433
|
+
reviewDiffDescription: "在任何内容发送到 Builder 之前加载完整的内容差异。",
|
|
4434
|
+
loadingCompleteBuilderDiff: "正在加载完整的 Builder 差异…",
|
|
4209
4435
|
sampleMatches: "示例匹配",
|
|
4210
4436
|
showAll: "显示全部",
|
|
4211
4437
|
saveForEveryone: "为所有人保存",
|
|
@@ -4320,6 +4546,9 @@ const databaseExactEnglishMessagesByLocale = {
|
|
|
4320
4546
|
renameView: "Renombrar vista",
|
|
4321
4547
|
reviewBeforeTheyReachBuilder: "Revisar antes de que lleguen a Builder.",
|
|
4322
4548
|
reviewDiff: "Revisar diferencia",
|
|
4549
|
+
reviewDiffDescription:
|
|
4550
|
+
"Carga la diferencia completa del contenido antes de enviar nada a Builder.",
|
|
4551
|
+
loadingCompleteBuilderDiff: "Cargando la diferencia completa de Builder…",
|
|
4323
4552
|
sampleMatches: "Coincidencias de muestra",
|
|
4324
4553
|
showAll: "Mostrar todo",
|
|
4325
4554
|
sortAscending: "Orden ascendente",
|
|
@@ -4433,6 +4662,10 @@ const databaseExactEnglishMessagesByLocale = {
|
|
|
4433
4662
|
renameView: "Renombrar vista",
|
|
4434
4663
|
reviewBeforeTheyReachBuilder: "Revisar antes de que lleguen a Builder.",
|
|
4435
4664
|
reviewDiff: "Revisar diferencia",
|
|
4665
|
+
reviewDiffDescription:
|
|
4666
|
+
"Charge la comparaison complète du contenu avant tout envoi à Builder.",
|
|
4667
|
+
loadingCompleteBuilderDiff:
|
|
4668
|
+
"Chargement de la comparaison complète de Builder…",
|
|
4436
4669
|
sampleMatches: "Coincidencias de muestra",
|
|
4437
4670
|
showAll: "Mostrar todo",
|
|
4438
4671
|
sortAscending: "Orden ascendente",
|
|
@@ -4546,6 +4779,9 @@ const databaseExactEnglishMessagesByLocale = {
|
|
|
4546
4779
|
renameView: "Renombrar vista",
|
|
4547
4780
|
reviewBeforeTheyReachBuilder: "Revisar antes de que lleguen a Builder.",
|
|
4548
4781
|
reviewDiff: "Revisar diferencia",
|
|
4782
|
+
reviewDiffDescription:
|
|
4783
|
+
"Lädt den vollständigen Inhaltsvergleich, bevor etwas an Builder gesendet wird.",
|
|
4784
|
+
loadingCompleteBuilderDiff: "Vollständiger Builder-Vergleich wird geladen…",
|
|
4549
4785
|
sampleMatches: "Coincidencias de muestra",
|
|
4550
4786
|
showAll: "Mostrar todo",
|
|
4551
4787
|
sortAscending: "Orden ascendente",
|
|
@@ -4659,6 +4895,9 @@ const databaseExactEnglishMessagesByLocale = {
|
|
|
4659
4895
|
renameView: "Renombrar vista",
|
|
4660
4896
|
reviewBeforeTheyReachBuilder: "Revisar antes de que lleguen a Builder.",
|
|
4661
4897
|
reviewDiff: "Revisar diferencia",
|
|
4898
|
+
reviewDiffDescription:
|
|
4899
|
+
"Carrega a comparação completa do conteúdo antes de enviar algo ao Builder.",
|
|
4900
|
+
loadingCompleteBuilderDiff: "Carregando a comparação completa do Builder…",
|
|
4662
4901
|
sampleMatches: "Coincidencias de muestra",
|
|
4663
4902
|
showAll: "Mostrar todo",
|
|
4664
4903
|
sortAscending: "Orden ascendente",
|
|
@@ -4772,6 +5011,9 @@ const databaseExactEnglishMessagesByLocale = {
|
|
|
4772
5011
|
renameView: "Renombrar vista",
|
|
4773
5012
|
reviewBeforeTheyReachBuilder: "Revisar antes de que lleguen a Builder.",
|
|
4774
5013
|
reviewDiff: "Revisar diferencia",
|
|
5014
|
+
reviewDiffDescription:
|
|
5015
|
+
"يحمّل الفرق الكامل للمحتوى قبل إرسال أي شيء إلى Builder.",
|
|
5016
|
+
loadingCompleteBuilderDiff: "جارٍ تحميل فرق Builder الكامل…",
|
|
4775
5017
|
sampleMatches: "Coincidencias de muestra",
|
|
4776
5018
|
showAll: "Mostrar todo",
|
|
4777
5019
|
sortAscending: "Orden ascendente",
|
|
@@ -4880,6 +5122,9 @@ const databaseExactEnglishMessagesByLocale = {
|
|
|
4880
5122
|
renameView: "重命名视图",
|
|
4881
5123
|
reviewBeforeTheyReachBuilder: "在发送到 Builder 前审核。",
|
|
4882
5124
|
reviewDiff: "审核差异",
|
|
5125
|
+
reviewDiffDescription:
|
|
5126
|
+
"Builder に送信する前に、コンテンツの完全な差分を読み込みます。",
|
|
5127
|
+
loadingCompleteBuilderDiff: "Builder の完全な差分を読み込んでいます…",
|
|
4883
5128
|
sampleMatches: "示例匹配",
|
|
4884
5129
|
showAll: "显示全部",
|
|
4885
5130
|
sortAscending: "升序排序",
|
|
@@ -4988,6 +5233,9 @@ const databaseExactEnglishMessagesByLocale = {
|
|
|
4988
5233
|
renameView: "重命名视图",
|
|
4989
5234
|
reviewBeforeTheyReachBuilder: "在发送到 Builder 前审核。",
|
|
4990
5235
|
reviewDiff: "审核差异",
|
|
5236
|
+
reviewDiffDescription:
|
|
5237
|
+
"Builder로 전송하기 전에 전체 콘텐츠 차이를 불러옵니다.",
|
|
5238
|
+
loadingCompleteBuilderDiff: "전체 Builder 차이를 불러오는 중…",
|
|
4991
5239
|
sampleMatches: "示例匹配",
|
|
4992
5240
|
showAll: "显示全部",
|
|
4993
5241
|
sortAscending: "升序排序",
|
|
@@ -5100,6 +5348,9 @@ const databaseExactEnglishMessagesByLocale = {
|
|
|
5100
5348
|
renameView: "दृश्य का नाम बदलें",
|
|
5101
5349
|
reviewBeforeTheyReachBuilder: "Builder तक पहुंचने से पहले समीक्षा करें।",
|
|
5102
5350
|
reviewDiff: "अंतर की समीक्षा करें",
|
|
5351
|
+
reviewDiffDescription:
|
|
5352
|
+
"Builder तक कुछ भी भेजने से पहले सामग्री का पूरा अंतर लोड करता है।",
|
|
5353
|
+
loadingCompleteBuilderDiff: "Builder का पूरा अंतर लोड हो रहा है…",
|
|
5103
5354
|
sampleMatches: "नमूना मिलान",
|
|
5104
5355
|
showAll: "सभी दिखाएं",
|
|
5105
5356
|
sortAscending: "आरोही क्रम में सॉर्ट करें",
|
|
@@ -8451,6 +8702,11 @@ export const messagesByLocale = {
|
|
|
8451
8702
|
builderBodySyncing: "内容仍在从 Builder 同步",
|
|
8452
8703
|
builderBodySyncingDescription:
|
|
8453
8704
|
"同步 Builder 正文完成前会暂停编辑,避免覆盖现有文章内容。",
|
|
8705
|
+
builderDraftConflictTitle: "编辑期间收到了新的 Builder 内容",
|
|
8706
|
+
builderDraftConflictDescription:
|
|
8707
|
+
"你的本地草稿已保留。保留草稿可在本地替换新同步的正文,或重新加载 Builder 正文。",
|
|
8708
|
+
keepLocalDraft: "保留本地草稿",
|
|
8709
|
+
reloadBuilderBody: "重新加载 Builder 正文",
|
|
8454
8710
|
builderReviewShowingRows:
|
|
8455
8711
|
"此次审查显示 {{total}} 个 Builder 行中的 {{shown}} 个。",
|
|
8456
8712
|
builderReviewShowMore: "显示更多",
|
|
@@ -8618,6 +8874,12 @@ export const messagesByLocale = {
|
|
|
8618
8874
|
"El contenido aún se está sincronizando desde Builder",
|
|
8619
8875
|
builderBodySyncingDescription:
|
|
8620
8876
|
"La edición está en pausa hasta que el cuerpo de Builder termine de sincronizarse, para no sobrescribir el contenido existente del artículo.",
|
|
8877
|
+
builderDraftConflictTitle:
|
|
8878
|
+
"El contenido de Builder llegó mientras editabas",
|
|
8879
|
+
builderDraftConflictDescription:
|
|
8880
|
+
"Tu borrador local se conserva. Consérvalo para reemplazar localmente el contenido recién sincronizado o vuelve a cargar el contenido de Builder.",
|
|
8881
|
+
keepLocalDraft: "Conservar borrador local",
|
|
8882
|
+
reloadBuilderBody: "Volver a cargar contenido de Builder",
|
|
8621
8883
|
builderReviewShowingRows:
|
|
8622
8884
|
"Mostrando {{shown}} de {{total}} filas de Builder para esta revisión.",
|
|
8623
8885
|
builderReviewShowMore: "Mostrar más",
|
|
@@ -8798,6 +9060,12 @@ export const messagesByLocale = {
|
|
|
8798
9060
|
"Le contenu est encore en cours de synchronisation depuis Builder",
|
|
8799
9061
|
builderBodySyncingDescription:
|
|
8800
9062
|
"La modification est suspendue jusqu'à la fin de la synchronisation du corps Builder, afin de ne pas écraser le contenu existant de l'article.",
|
|
9063
|
+
builderDraftConflictTitle:
|
|
9064
|
+
"Le contenu Builder est arrivé pendant votre modification",
|
|
9065
|
+
builderDraftConflictDescription:
|
|
9066
|
+
"Votre brouillon local est conservé. Gardez-le pour remplacer localement le contenu récemment synchronisé, ou rechargez le contenu Builder.",
|
|
9067
|
+
keepLocalDraft: "Garder le brouillon local",
|
|
9068
|
+
reloadBuilderBody: "Recharger le contenu Builder",
|
|
8801
9069
|
builderReviewShowingRows:
|
|
8802
9070
|
"Affichage de {{shown}} lignes Builder sur {{total}} pour cette revue.",
|
|
8803
9071
|
builderReviewShowMore: "Afficher plus",
|
|
@@ -8976,6 +9244,12 @@ export const messagesByLocale = {
|
|
|
8976
9244
|
builderBodySyncing: "Inhalte werden noch von Builder synchronisiert",
|
|
8977
9245
|
builderBodySyncingDescription:
|
|
8978
9246
|
"Die Bearbeitung ist pausiert, bis der Builder-Textkörper fertig synchronisiert ist, damit der bestehende Artikelinhalt nicht überschrieben wird.",
|
|
9247
|
+
builderDraftConflictTitle:
|
|
9248
|
+
"Während der Bearbeitung ist neuer Builder-Inhalt eingetroffen",
|
|
9249
|
+
builderDraftConflictDescription:
|
|
9250
|
+
"Ihr lokaler Entwurf bleibt erhalten. Behalten Sie ihn, um den neu synchronisierten Inhalt lokal zu ersetzen, oder laden Sie den Builder-Inhalt neu.",
|
|
9251
|
+
keepLocalDraft: "Lokalen Entwurf behalten",
|
|
9252
|
+
reloadBuilderBody: "Builder-Inhalt neu laden",
|
|
8979
9253
|
builderReviewShowingRows:
|
|
8980
9254
|
"Zeige {{shown}} von {{total}} Builder-Zeilen für diese Überprüfung.",
|
|
8981
9255
|
builderReviewShowMore: "Mehr anzeigen",
|
|
@@ -9155,6 +9429,12 @@ export const messagesByLocale = {
|
|
|
9155
9429
|
builderBodySyncing: "コンテンツはまだ Builder から同期中です",
|
|
9156
9430
|
builderBodySyncingDescription:
|
|
9157
9431
|
"既存の記事内容を上書きしないよう、Builder 本文の同期が完了するまで編集は一時停止されます。",
|
|
9432
|
+
builderDraftConflictTitle:
|
|
9433
|
+
"編集中に新しい Builder コンテンツが届きました",
|
|
9434
|
+
builderDraftConflictDescription:
|
|
9435
|
+
"ローカル下書きは保持されています。新しく同期された本文をローカルで置き換えるか、Builder 本文を再読み込みしてください。",
|
|
9436
|
+
keepLocalDraft: "ローカル下書きを保持",
|
|
9437
|
+
reloadBuilderBody: "Builder 本文を再読み込み",
|
|
9158
9438
|
builderReviewShowingRows:
|
|
9159
9439
|
"このレビューでは {{total}} 件中 {{shown}} 件の Builder 行を表示しています。",
|
|
9160
9440
|
builderReviewShowMore: "さらに表示",
|
|
@@ -9331,6 +9611,11 @@ export const messagesByLocale = {
|
|
|
9331
9611
|
builderBodySyncing: "콘텐츠가 아직 Builder에서 동기화되는 중입니다",
|
|
9332
9612
|
builderBodySyncingDescription:
|
|
9333
9613
|
"기존 문서 내용을 덮어쓰지 않도록 Builder 본문 동기화가 완료될 때까지 편집이 일시 중지됩니다.",
|
|
9614
|
+
builderDraftConflictTitle: "편집 중 새 Builder 콘텐츠가 도착했습니다",
|
|
9615
|
+
builderDraftConflictDescription:
|
|
9616
|
+
"로컬 초안이 보존되었습니다. 새로 동기화된 본문을 로컬에서 대체하려면 초안을 유지하고, 아니면 Builder 본문을 다시 불러오세요.",
|
|
9617
|
+
keepLocalDraft: "로컬 초안 유지",
|
|
9618
|
+
reloadBuilderBody: "Builder 본문 다시 불러오기",
|
|
9334
9619
|
builderReviewShowingRows:
|
|
9335
9620
|
"이 검토에서 Builder 행 {{total}}개 중 {{shown}}개를 표시하고 있습니다.",
|
|
9336
9621
|
builderReviewShowMore: "더 보기",
|
|
@@ -9500,6 +9785,12 @@ export const messagesByLocale = {
|
|
|
9500
9785
|
builderBodySyncing: "O conteúdo ainda está sincronizando do Builder",
|
|
9501
9786
|
builderBodySyncingDescription:
|
|
9502
9787
|
"A edição fica pausada até o corpo do Builder terminar de sincronizar, para não sobrescrever o conteúdo existente do artigo.",
|
|
9788
|
+
builderDraftConflictTitle:
|
|
9789
|
+
"O conteúdo do Builder chegou enquanto você editava",
|
|
9790
|
+
builderDraftConflictDescription:
|
|
9791
|
+
"Seu rascunho local foi preservado. Mantenha-o para substituir localmente o conteúdo recém-sincronizado ou recarregue o conteúdo do Builder.",
|
|
9792
|
+
keepLocalDraft: "Manter rascunho local",
|
|
9793
|
+
reloadBuilderBody: "Recarregar conteúdo do Builder",
|
|
9503
9794
|
builderReviewShowingRows:
|
|
9504
9795
|
"Mostrando {{shown}} de {{total}} linhas do Builder para esta revisão.",
|
|
9505
9796
|
builderReviewShowMore: "Mostrar mais",
|
|
@@ -9677,6 +9968,11 @@ export const messagesByLocale = {
|
|
|
9677
9968
|
builderBodySyncing: "सामग्री अभी भी Builder से सिंक हो रही है",
|
|
9678
9969
|
builderBodySyncingDescription:
|
|
9679
9970
|
"Builder का मुख्य भाग सिंक पूरा होने तक संपादन रोका गया है, ताकि मौजूदा लेख सामग्री अधिलेखित न हो।",
|
|
9971
|
+
builderDraftConflictTitle: "आपके संपादन के दौरान नया Builder कंटेंट आया",
|
|
9972
|
+
builderDraftConflictDescription:
|
|
9973
|
+
"आपका स्थानीय ड्राफ्ट सुरक्षित है। नए सिंक किए गए मुख्य भाग को स्थानीय रूप से बदलने के लिए इसे रखें, या Builder का मुख्य भाग फिर से लोड करें।",
|
|
9974
|
+
keepLocalDraft: "स्थानीय ड्राफ्ट रखें",
|
|
9975
|
+
reloadBuilderBody: "Builder का मुख्य भाग फिर से लोड करें",
|
|
9680
9976
|
builderReviewShowingRows:
|
|
9681
9977
|
"इस समीक्षा के लिए {{total}} में से {{shown}} Builder पंक्तियाँ दिखाई जा रही हैं।",
|
|
9682
9978
|
builderReviewShowMore: "और दिखाएँ",
|
|
@@ -9843,6 +10139,11 @@ export const messagesByLocale = {
|
|
|
9843
10139
|
builderBodySyncing: "لا يزال المحتوى قيد المزامنة من Builder",
|
|
9844
10140
|
builderBodySyncingDescription:
|
|
9845
10141
|
"يتم إيقاف التحرير مؤقتًا حتى تكتمل مزامنة نص Builder، حتى لا يتم استبدال محتوى المقالة الحالي.",
|
|
10142
|
+
builderDraftConflictTitle: "وصل محتوى Builder جديد أثناء التحرير",
|
|
10143
|
+
builderDraftConflictDescription:
|
|
10144
|
+
"تم الاحتفاظ بالمسودة المحلية. احتفظ بها لاستبدال النص المتزامن حديثًا محليًا، أو أعد تحميل نص Builder.",
|
|
10145
|
+
keepLocalDraft: "الاحتفاظ بالمسودة المحلية",
|
|
10146
|
+
reloadBuilderBody: "إعادة تحميل نص Builder",
|
|
9846
10147
|
builderReviewShowingRows:
|
|
9847
10148
|
"يتم عرض {{shown}} من {{total}} صفوف Builder لهذه المراجعة.",
|
|
9848
10149
|
builderReviewShowMore: "عرض المزيد",
|
|
@@ -10006,6 +10307,21 @@ const contentExactEnglishTranslations = {
|
|
|
10006
10307
|
"zh-CN": {
|
|
10007
10308
|
editor: {
|
|
10008
10309
|
failedToCreatePage: "创建页面失败",
|
|
10310
|
+
slash: {
|
|
10311
|
+
blockEquation: "块级公式",
|
|
10312
|
+
blockEquationDescription: "在单独一行显示 LaTeX 公式",
|
|
10313
|
+
cancelEquation: "取消",
|
|
10314
|
+
inlineEquation: "行内公式",
|
|
10315
|
+
inlineEquationDescription: "在文本中添加 LaTeX 公式",
|
|
10316
|
+
insertEquation: "插入",
|
|
10317
|
+
equationInputLabel: "LaTeX 公式",
|
|
10318
|
+
equationInsertFailed: "无法插入公式。",
|
|
10319
|
+
equationNeedsRepair: "请修正 LaTeX 以查看预览。",
|
|
10320
|
+
equationPlaceholder: String.raw`输入 LaTeX,例如 \frac{a}{b}`,
|
|
10321
|
+
equationPreview: "预览",
|
|
10322
|
+
equationPreviewEmpty: "公式将在此处显示。",
|
|
10323
|
+
equationSubmitHint: "输入时会实时更新预览。按 Cmd/Ctrl+Enter 插入。",
|
|
10324
|
+
},
|
|
10009
10325
|
toolbar: {
|
|
10010
10326
|
copiedPageLink: "已复制页面链接",
|
|
10011
10327
|
copyPageLink: "复制页面链接",
|
|
@@ -10019,6 +10335,23 @@ const contentExactEnglishTranslations = {
|
|
|
10019
10335
|
"es-ES": {
|
|
10020
10336
|
editor: {
|
|
10021
10337
|
failedToCreatePage: "No se pudo crear la página",
|
|
10338
|
+
slash: {
|
|
10339
|
+
blockEquation: "Ecuación en bloque",
|
|
10340
|
+
blockEquationDescription:
|
|
10341
|
+
"Muestra una ecuación LaTeX en su propia línea",
|
|
10342
|
+
cancelEquation: "Cancelar",
|
|
10343
|
+
inlineEquation: "Ecuación en línea",
|
|
10344
|
+
inlineEquationDescription: "Añade una ecuación LaTeX dentro del texto",
|
|
10345
|
+
insertEquation: "Insertar",
|
|
10346
|
+
equationInputLabel: "Ecuación LaTeX",
|
|
10347
|
+
equationInsertFailed: "No se pudo insertar la ecuación.",
|
|
10348
|
+
equationNeedsRepair: "Corrige el LaTeX para ver la vista previa.",
|
|
10349
|
+
equationPlaceholder: String.raw`Escribe LaTeX, por ejemplo \frac{a}{b}`,
|
|
10350
|
+
equationPreview: "Vista previa",
|
|
10351
|
+
equationPreviewEmpty: "Tu ecuación aparecerá aquí.",
|
|
10352
|
+
equationSubmitHint:
|
|
10353
|
+
"La vista previa se actualiza mientras escribes. Pulsa Cmd/Ctrl+Enter para insertar.",
|
|
10354
|
+
},
|
|
10022
10355
|
toolbar: {
|
|
10023
10356
|
copiedPageLink: "Enlace de página copiado",
|
|
10024
10357
|
copyPageLink: "Copiar enlace de página",
|
|
@@ -10033,6 +10366,23 @@ const contentExactEnglishTranslations = {
|
|
|
10033
10366
|
"fr-FR": {
|
|
10034
10367
|
editor: {
|
|
10035
10368
|
failedToCreatePage: "Impossible de créer la page",
|
|
10369
|
+
slash: {
|
|
10370
|
+
blockEquation: "Équation en bloc",
|
|
10371
|
+
blockEquationDescription:
|
|
10372
|
+
"Afficher une équation LaTeX sur sa propre ligne",
|
|
10373
|
+
cancelEquation: "Annuler",
|
|
10374
|
+
inlineEquation: "Équation en ligne",
|
|
10375
|
+
inlineEquationDescription: "Ajouter une équation LaTeX dans le texte",
|
|
10376
|
+
insertEquation: "Insérer",
|
|
10377
|
+
equationInputLabel: "Équation LaTeX",
|
|
10378
|
+
equationInsertFailed: "Impossible d’insérer l’équation.",
|
|
10379
|
+
equationNeedsRepair: "Corrigez le LaTeX pour afficher un aperçu.",
|
|
10380
|
+
equationPlaceholder: String.raw`Saisissez du LaTeX, par exemple \frac{a}{b}`,
|
|
10381
|
+
equationPreview: "Aperçu",
|
|
10382
|
+
equationPreviewEmpty: "Votre équation apparaîtra ici.",
|
|
10383
|
+
equationSubmitHint:
|
|
10384
|
+
"L’aperçu se met à jour pendant la saisie. Appuyez sur Cmd/Ctrl+Entrée pour insérer.",
|
|
10385
|
+
},
|
|
10036
10386
|
toolbar: {
|
|
10037
10387
|
copiedPageLink: "Lien de la page copié",
|
|
10038
10388
|
copyPageLink: "Copier le lien de la page",
|
|
@@ -10047,6 +10397,24 @@ const contentExactEnglishTranslations = {
|
|
|
10047
10397
|
"de-DE": {
|
|
10048
10398
|
editor: {
|
|
10049
10399
|
failedToCreatePage: "Seite konnte nicht erstellt werden",
|
|
10400
|
+
slash: {
|
|
10401
|
+
blockEquation: "Blockgleichung",
|
|
10402
|
+
blockEquationDescription:
|
|
10403
|
+
"Eine LaTeX-Gleichung in einer eigenen Zeile anzeigen",
|
|
10404
|
+
cancelEquation: "Abbrechen",
|
|
10405
|
+
inlineEquation: "Inline-Gleichung",
|
|
10406
|
+
inlineEquationDescription: "Eine LaTeX-Gleichung in Text einfügen",
|
|
10407
|
+
insertEquation: "Einfügen",
|
|
10408
|
+
equationInputLabel: "LaTeX-Gleichung",
|
|
10409
|
+
equationInsertFailed: "Die Gleichung konnte nicht eingefügt werden.",
|
|
10410
|
+
equationNeedsRepair:
|
|
10411
|
+
"Korrigieren Sie das LaTeX, um eine Vorschau zu sehen.",
|
|
10412
|
+
equationPlaceholder: String.raw`LaTeX eingeben, zum Beispiel \frac{a}{b}`,
|
|
10413
|
+
equationPreview: "Vorschau",
|
|
10414
|
+
equationPreviewEmpty: "Ihre Gleichung wird hier angezeigt.",
|
|
10415
|
+
equationSubmitHint:
|
|
10416
|
+
"Die Vorschau wird während der Eingabe aktualisiert. Mit Cmd/Ctrl+Enter einfügen.",
|
|
10417
|
+
},
|
|
10050
10418
|
toolbar: {
|
|
10051
10419
|
copiedPageLink: "Seitenlink kopiert",
|
|
10052
10420
|
copyPageLink: "Seitenlink kopieren",
|
|
@@ -10061,6 +10429,23 @@ const contentExactEnglishTranslations = {
|
|
|
10061
10429
|
"ja-JP": {
|
|
10062
10430
|
editor: {
|
|
10063
10431
|
failedToCreatePage: "ページを作成できませんでした",
|
|
10432
|
+
slash: {
|
|
10433
|
+
blockEquation: "ブロック数式",
|
|
10434
|
+
blockEquationDescription: "LaTeX 数式を独立した行に表示します",
|
|
10435
|
+
cancelEquation: "キャンセル",
|
|
10436
|
+
inlineEquation: "インライン数式",
|
|
10437
|
+
inlineEquationDescription: "テキスト内に LaTeX 数式を追加します",
|
|
10438
|
+
insertEquation: "挿入",
|
|
10439
|
+
equationInputLabel: "LaTeX 数式",
|
|
10440
|
+
equationInsertFailed: "数式を挿入できませんでした。",
|
|
10441
|
+
equationNeedsRepair:
|
|
10442
|
+
"プレビューを表示するには LaTeX を修正してください。",
|
|
10443
|
+
equationPlaceholder: String.raw`LaTeX を入力(例:\frac{a}{b})`,
|
|
10444
|
+
equationPreview: "プレビュー",
|
|
10445
|
+
equationPreviewEmpty: "ここに数式が表示されます。",
|
|
10446
|
+
equationSubmitHint:
|
|
10447
|
+
"入力中にプレビューが更新されます。Cmd/Ctrl+Enter で挿入します。",
|
|
10448
|
+
},
|
|
10064
10449
|
toolbar: {
|
|
10065
10450
|
copiedPageLink: "ページリンクをコピーしました",
|
|
10066
10451
|
copyPageLink: "ページリンクをコピー",
|
|
@@ -10075,6 +10460,22 @@ const contentExactEnglishTranslations = {
|
|
|
10075
10460
|
"ko-KR": {
|
|
10076
10461
|
editor: {
|
|
10077
10462
|
failedToCreatePage: "페이지를 만들지 못했습니다",
|
|
10463
|
+
slash: {
|
|
10464
|
+
blockEquation: "블록 수식",
|
|
10465
|
+
blockEquationDescription: "LaTeX 수식을 별도 줄에 표시합니다",
|
|
10466
|
+
cancelEquation: "취소",
|
|
10467
|
+
inlineEquation: "인라인 수식",
|
|
10468
|
+
inlineEquationDescription: "텍스트 안에 LaTeX 수식을 추가합니다",
|
|
10469
|
+
insertEquation: "삽입",
|
|
10470
|
+
equationInputLabel: "LaTeX 수식",
|
|
10471
|
+
equationInsertFailed: "수식을 삽입하지 못했습니다.",
|
|
10472
|
+
equationNeedsRepair: "미리 보려면 LaTeX를 수정하세요.",
|
|
10473
|
+
equationPlaceholder: String.raw`LaTeX를 입력하세요. 예: \frac{a}{b}`,
|
|
10474
|
+
equationPreview: "미리보기",
|
|
10475
|
+
equationPreviewEmpty: "여기에 수식이 표시됩니다.",
|
|
10476
|
+
equationSubmitHint:
|
|
10477
|
+
"입력하는 동안 미리보기가 업데이트됩니다. Cmd/Ctrl+Enter로 삽입하세요.",
|
|
10478
|
+
},
|
|
10078
10479
|
toolbar: {
|
|
10079
10480
|
copiedPageLink: "페이지 링크를 복사했습니다",
|
|
10080
10481
|
copyPageLink: "페이지 링크 복사",
|
|
@@ -10089,6 +10490,23 @@ const contentExactEnglishTranslations = {
|
|
|
10089
10490
|
"pt-BR": {
|
|
10090
10491
|
editor: {
|
|
10091
10492
|
failedToCreatePage: "Não foi possível criar a página",
|
|
10493
|
+
slash: {
|
|
10494
|
+
blockEquation: "Equação em bloco",
|
|
10495
|
+
blockEquationDescription:
|
|
10496
|
+
"Exiba uma equação LaTeX em uma linha própria",
|
|
10497
|
+
cancelEquation: "Cancelar",
|
|
10498
|
+
inlineEquation: "Equação em linha",
|
|
10499
|
+
inlineEquationDescription: "Adicione uma equação LaTeX dentro do texto",
|
|
10500
|
+
insertEquation: "Inserir",
|
|
10501
|
+
equationInputLabel: "Equação LaTeX",
|
|
10502
|
+
equationInsertFailed: "Não foi possível inserir a equação.",
|
|
10503
|
+
equationNeedsRepair: "Corrija o LaTeX para ver uma prévia.",
|
|
10504
|
+
equationPlaceholder: String.raw`Digite LaTeX, por exemplo \frac{a}{b}`,
|
|
10505
|
+
equationPreview: "Prévia",
|
|
10506
|
+
equationPreviewEmpty: "Sua equação aparecerá aqui.",
|
|
10507
|
+
equationSubmitHint:
|
|
10508
|
+
"A prévia é atualizada enquanto você digita. Pressione Cmd/Ctrl+Enter para inserir.",
|
|
10509
|
+
},
|
|
10092
10510
|
toolbar: {
|
|
10093
10511
|
copiedPageLink: "Link da página copiado",
|
|
10094
10512
|
copyPageLink: "Copiar link da página",
|
|
@@ -10103,6 +10521,22 @@ const contentExactEnglishTranslations = {
|
|
|
10103
10521
|
"hi-IN": {
|
|
10104
10522
|
editor: {
|
|
10105
10523
|
failedToCreatePage: "पेज नहीं बनाया जा सका",
|
|
10524
|
+
slash: {
|
|
10525
|
+
blockEquation: "ब्लॉक समीकरण",
|
|
10526
|
+
blockEquationDescription: "LaTeX समीकरण को अलग पंक्ति में दिखाएँ",
|
|
10527
|
+
cancelEquation: "रद्द करें",
|
|
10528
|
+
inlineEquation: "इनलाइन समीकरण",
|
|
10529
|
+
inlineEquationDescription: "टेक्स्ट के भीतर LaTeX समीकरण जोड़ें",
|
|
10530
|
+
insertEquation: "सम्मिलित करें",
|
|
10531
|
+
equationInputLabel: "LaTeX समीकरण",
|
|
10532
|
+
equationInsertFailed: "समीकरण सम्मिलित नहीं किया जा सका।",
|
|
10533
|
+
equationNeedsRepair: "पूर्वावलोकन देखने के लिए LaTeX ठीक करें।",
|
|
10534
|
+
equationPlaceholder: String.raw`LaTeX लिखें, जैसे \frac{a}{b}`,
|
|
10535
|
+
equationPreview: "पूर्वावलोकन",
|
|
10536
|
+
equationPreviewEmpty: "आपका समीकरण यहाँ दिखाई देगा।",
|
|
10537
|
+
equationSubmitHint:
|
|
10538
|
+
"लिखते समय पूर्वावलोकन अपडेट होता है। सम्मिलित करने के लिए Cmd/Ctrl+Enter दबाएँ।",
|
|
10539
|
+
},
|
|
10106
10540
|
toolbar: {
|
|
10107
10541
|
copiedPageLink: "पेज लिंक कॉपी किया गया",
|
|
10108
10542
|
copyPageLink: "पेज लिंक कॉपी करें",
|
|
@@ -10116,6 +10550,22 @@ const contentExactEnglishTranslations = {
|
|
|
10116
10550
|
"ar-SA": {
|
|
10117
10551
|
editor: {
|
|
10118
10552
|
failedToCreatePage: "تعذر إنشاء الصفحة",
|
|
10553
|
+
slash: {
|
|
10554
|
+
blockEquation: "معادلة مستقلة",
|
|
10555
|
+
blockEquationDescription: "اعرض معادلة LaTeX في سطر مستقل",
|
|
10556
|
+
cancelEquation: "إلغاء",
|
|
10557
|
+
inlineEquation: "معادلة ضمن السطر",
|
|
10558
|
+
inlineEquationDescription: "أضف معادلة LaTeX داخل النص",
|
|
10559
|
+
insertEquation: "إدراج",
|
|
10560
|
+
equationInputLabel: "معادلة LaTeX",
|
|
10561
|
+
equationInsertFailed: "تعذر إدراج المعادلة.",
|
|
10562
|
+
equationNeedsRepair: "صحح LaTeX لعرض المعاينة.",
|
|
10563
|
+
equationPlaceholder: String.raw`اكتب LaTeX، مثل \frac{a}{b}`,
|
|
10564
|
+
equationPreview: "معاينة",
|
|
10565
|
+
equationPreviewEmpty: "ستظهر معادلتك هنا.",
|
|
10566
|
+
equationSubmitHint:
|
|
10567
|
+
"تتحدث المعاينة أثناء الكتابة. اضغط Cmd/Ctrl+Enter للإدراج.",
|
|
10568
|
+
},
|
|
10119
10569
|
toolbar: {
|
|
10120
10570
|
copiedPageLink: "تم نسخ رابط الصفحة",
|
|
10121
10571
|
copyPageLink: "نسخ رابط الصفحة",
|