@anchrd/intel 0.59.0
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 +496 -0
- package/bin/intel.mjs +134 -0
- package/dist/adapters/cloudflare/cloudflare-flow-workflow.d.ts +42 -0
- package/dist/adapters/cloudflare/cloudflare-flow-workflow.js +89 -0
- package/dist/adapters/cloudflare/cloudflare.d.ts +29 -0
- package/dist/adapters/cloudflare/cloudflare.js +416 -0
- package/dist/adapters/cloudflare/cloudflare.types.d.ts +31 -0
- package/dist/adapters/cloudflare/cloudflare.types.js +1 -0
- package/dist/adapters/content/content.d.ts +3 -0
- package/dist/adapters/content/content.js +128 -0
- package/dist/adapters/content/content.types.d.ts +38 -0
- package/dist/adapters/content/content.types.js +1 -0
- package/dist/adapters/db/db-audit.d.ts +62 -0
- package/dist/adapters/db/db-audit.js +150 -0
- package/dist/adapters/db/db-boards.d.ts +6 -0
- package/dist/adapters/db/db-boards.js +324 -0
- package/dist/adapters/db/db-feed.d.ts +30 -0
- package/dist/adapters/db/db-feed.js +276 -0
- package/dist/adapters/db/db-flows.d.ts +42 -0
- package/dist/adapters/db/db-flows.js +1311 -0
- package/dist/adapters/db/db-grants.d.ts +133 -0
- package/dist/adapters/db/db-grants.js +269 -0
- package/dist/adapters/db/db-indexing.d.ts +3 -0
- package/dist/adapters/db/db-indexing.js +200 -0
- package/dist/adapters/db/db-oauth.d.ts +3 -0
- package/dist/adapters/db/db-oauth.js +26 -0
- package/dist/adapters/db/db-prompts.d.ts +46 -0
- package/dist/adapters/db/db-prompts.js +144 -0
- package/dist/adapters/db/db.d.ts +6 -0
- package/dist/adapters/db/db.js +1687 -0
- package/dist/adapters/db/db.types.d.ts +16 -0
- package/dist/adapters/db/db.types.js +1 -0
- package/dist/adapters/document-converter/document-converter.d.ts +2 -0
- package/dist/adapters/document-converter/document-converter.js +26 -0
- package/dist/adapters/document-converter/document-converter.types.d.ts +17 -0
- package/dist/adapters/document-converter/document-converter.types.js +1 -0
- package/dist/adapters/flow-runtime/flow-runtime.d.ts +3 -0
- package/dist/adapters/flow-runtime/flow-runtime.js +22 -0
- package/dist/adapters/flow-runtime/flow-runtime.types.d.ts +19 -0
- package/dist/adapters/flow-runtime/flow-runtime.types.js +1 -0
- package/dist/adapters/index-queue/index-queue.d.ts +10 -0
- package/dist/adapters/index-queue/index-queue.js +12 -0
- package/dist/adapters/index-queue/index-queue.types.d.ts +11 -0
- package/dist/adapters/index-queue/index-queue.types.js +1 -0
- package/dist/adapters/json-schema/json-schema.d.ts +2 -0
- package/dist/adapters/json-schema/json-schema.js +77 -0
- package/dist/adapters/openid/openid.d.ts +5 -0
- package/dist/adapters/openid/openid.js +301 -0
- package/dist/adapters/portal-tokens/portal-tokens.d.ts +8 -0
- package/dist/adapters/portal-tokens/portal-tokens.js +79 -0
- package/dist/adapters/remote-tools/remote-tools.d.ts +5 -0
- package/dist/adapters/remote-tools/remote-tools.js +129 -0
- package/dist/adapters/semantic-index/semantic-index.d.ts +2 -0
- package/dist/adapters/semantic-index/semantic-index.js +139 -0
- package/dist/adapters/semantic-index/semantic-index.types.d.ts +56 -0
- package/dist/adapters/semantic-index/semantic-index.types.js +1 -0
- package/dist/adapters/session-cookie/session-cookie.d.ts +5 -0
- package/dist/adapters/session-cookie/session-cookie.js +87 -0
- package/dist/adapters/tool-source-policy/tool-source-policy.d.ts +1 -0
- package/dist/adapters/tool-source-policy/tool-source-policy.js +22 -0
- package/dist/audit/audit.d.ts +2 -0
- package/dist/audit/audit.js +87 -0
- package/dist/audit/audit.types.d.ts +23 -0
- package/dist/audit/audit.types.js +1 -0
- package/dist/auth/auth.d.ts +2 -0
- package/dist/auth/auth.js +284 -0
- package/dist/auth/auth.types.d.ts +108 -0
- package/dist/auth/auth.types.js +1 -0
- package/dist/boards/boards.d.ts +44 -0
- package/dist/boards/boards.js +447 -0
- package/dist/boards/boards.types.d.ts +117 -0
- package/dist/boards/boards.types.js +1 -0
- package/dist/build/build.d.ts +2 -0
- package/dist/build/build.js +192 -0
- package/dist/build/build.types.d.ts +17 -0
- package/dist/build/build.types.js +1 -0
- package/dist/bundle/bundle.d.ts +4 -0
- package/dist/bundle/bundle.js +1194 -0
- package/dist/bundle/bundle.types.d.ts +33 -0
- package/dist/bundle/bundle.types.js +1 -0
- package/dist/cli/cli.d.ts +4 -0
- package/dist/cli/cli.js +262 -0
- package/dist/cli/cli.types.d.ts +14 -0
- package/dist/cli/cli.types.js +1 -0
- package/dist/contract/audit.d.ts +50 -0
- package/dist/contract/audit.js +72 -0
- package/dist/contract/board.d.ts +150 -0
- package/dist/contract/board.js +262 -0
- package/dist/contract/bundle.d.ts +147 -0
- package/dist/contract/bundle.js +139 -0
- package/dist/contract/contract.d.ts +112 -0
- package/dist/contract/contract.js +143 -0
- package/dist/contract/feed.d.ts +126 -0
- package/dist/contract/feed.js +149 -0
- package/dist/contract/flow-run.d.ts +346 -0
- package/dist/contract/flow-run.js +194 -0
- package/dist/contract/flow.d.ts +1057 -0
- package/dist/contract/flow.js +552 -0
- package/dist/contract/node.d.ts +551 -0
- package/dist/contract/node.js +456 -0
- package/dist/contract/share.d.ts +216 -0
- package/dist/contract/share.js +134 -0
- package/dist/contract/table.d.ts +171 -0
- package/dist/contract/table.js +117 -0
- package/dist/contract/tool.d.ts +122 -0
- package/dist/contract/tool.js +172 -0
- package/dist/feed/feed.d.ts +2 -0
- package/dist/feed/feed.js +77 -0
- package/dist/feed/feed.types.d.ts +23 -0
- package/dist/feed/feed.types.js +1 -0
- package/dist/flows/flows.d.ts +41 -0
- package/dist/flows/flows.js +2216 -0
- package/dist/flows/flows.types.d.ts +339 -0
- package/dist/flows/flows.types.js +1 -0
- package/dist/http/http.d.ts +9 -0
- package/dist/http/http.js +874 -0
- package/dist/http/http.types.d.ts +22 -0
- package/dist/http/http.types.js +1 -0
- package/dist/indexing/indexing.d.ts +6 -0
- package/dist/indexing/indexing.js +239 -0
- package/dist/indexing/indexing.types.d.ts +11 -0
- package/dist/indexing/indexing.types.js +1 -0
- package/dist/intel/intel.d.ts +3 -0
- package/dist/intel/intel.js +194 -0
- package/dist/intel/intel.types.d.ts +24 -0
- package/dist/intel/intel.types.js +1 -0
- package/dist/mcp/mcp.d.ts +2 -0
- package/dist/mcp/mcp.js +1292 -0
- package/dist/mcp/mcp.types.d.ts +25 -0
- package/dist/mcp/mcp.types.js +1 -0
- package/dist/nodes/document-links/document-links.d.ts +20 -0
- package/dist/nodes/document-links/document-links.js +57 -0
- package/dist/nodes/nodes.d.ts +2 -0
- package/dist/nodes/nodes.js +1667 -0
- package/dist/nodes/nodes.types.d.ts +511 -0
- package/dist/nodes/nodes.types.js +1 -0
- package/dist/prepare/prepare.d.ts +4 -0
- package/dist/prepare/prepare.js +16 -0
- package/dist/prepare/prepare.types.d.ts +9 -0
- package/dist/prepare/prepare.types.js +1 -0
- package/dist/prompts/prompts.d.ts +2 -0
- package/dist/prompts/prompts.js +65 -0
- package/dist/prompts/prompts.types.d.ts +71 -0
- package/dist/prompts/prompts.types.js +1 -0
- package/dist/shared/callers/callers.d.ts +28 -0
- package/dist/shared/callers/callers.js +30 -0
- package/dist/shared/csv/csv.d.ts +13 -0
- package/dist/shared/csv/csv.js +85 -0
- package/dist/shared/document-text/document-text.d.ts +21 -0
- package/dist/shared/document-text/document-text.js +31 -0
- package/dist/shared/gate-authorization/gate-authorization.d.ts +5 -0
- package/dist/shared/gate-authorization/gate-authorization.js +26 -0
- package/dist/shared/grant-expiry/grant-expiry.d.ts +19 -0
- package/dist/shared/grant-expiry/grant-expiry.js +26 -0
- package/dist/shared/intel-error/intel-error.d.ts +22 -0
- package/dist/shared/intel-error/intel-error.js +27 -0
- package/dist/shared/plain-title/plain-title.d.ts +16 -0
- package/dist/shared/plain-title/plain-title.js +45 -0
- package/dist/shared/problem-details/problem-details.d.ts +30 -0
- package/dist/shared/problem-details/problem-details.js +18 -0
- package/dist/shared/report-unexpected-error/report-unexpected-error.d.ts +1 -0
- package/dist/shared/report-unexpected-error/report-unexpected-error.js +37 -0
- package/dist/shared/safe-return-path/safe-return-path.d.ts +2 -0
- package/dist/shared/safe-return-path/safe-return-path.js +11 -0
- package/dist/shared/sha256/sha256.d.ts +2 -0
- package/dist/shared/sha256/sha256.js +14 -0
- package/dist/tools/tool-servers/tool-servers.d.ts +46 -0
- package/dist/tools/tool-servers/tool-servers.js +177 -0
- package/dist/tools/tools.d.ts +2 -0
- package/dist/tools/tools.js +207 -0
- package/dist/tools/tools.types.d.ts +56 -0
- package/dist/tools/tools.types.js +1 -0
- package/examples/branding/favicon.svg +5 -0
- package/examples/branding/logo.svg +5 -0
- package/examples/branding/theme.css +16 -0
- package/examples/dev.vars.example +7 -0
- package/examples/intel.json +9 -0
- package/migrations/0000_intel_foundation.sql +203 -0
- package/migrations/0001_portal_native_tools.sql +21 -0
- package/migrations/0002_flows_in_the_knowledge_tree.sql +34 -0
- package/migrations/0003_folder_permissions.sql +211 -0
- package/migrations/0004_subflow_runs.sql +14 -0
- package/migrations/0005_flow_node_cleanup.sql +28 -0
- package/migrations/0005_tables_in_the_knowledge_tree.sql +68 -0
- package/migrations/0006_links_are_written_in_the_text.sql +20 -0
- package/migrations/0007_no_node_waits.sql +69 -0
- package/migrations/0008_three_layers.sql +130 -0
- package/migrations/0009_no_context_policy.sql +48 -0
- package/migrations/0010_no_run_waits_a_year.sql +27 -0
- package/migrations/0011_one_name_for_the_tree.sql +53 -0
- package/migrations/0012_table_snapshots.sql +29 -0
- package/migrations/0017_a_vector_per_card.sql +38 -0
- package/migrations/0018_no_context_policy_at_last.sql +97 -0
- package/migrations/0019_one_name_for_the_grants.sql +52 -0
- package/migrations/0020_cascade_purge_replay.sql +11 -0
- package/migrations/0021_a_flow_carries_its_own_grant.sql +44 -0
- package/migrations/0022_a_cursor_over_the_journal.sql +14 -0
- package/migrations/0023_a_board_and_its_tasks.sql +116 -0
- package/migrations/0024_the_archive_is_a_column.sql +33 -0
- package/migrations/0025_archiving_takes_the_subtree.sql +29 -0
- package/migrations/0026_one_feed_over_two_kinds.sql +23 -0
- package/migrations/0027_the_runs_of_every_flow.sql +27 -0
- package/migrations/0028_a_prompt_name_over_two_kinds.sql +70 -0
- package/package.json +118 -0
- package/src/contract/CLAUDE.md +152 -0
- package/src/contract/README.md +102 -0
- package/src/contract/audit.ts +85 -0
- package/src/contract/board.ts +306 -0
- package/src/contract/bundle.ts +157 -0
- package/src/contract/contract.ts +161 -0
- package/src/contract/feed.ts +165 -0
- package/src/contract/flow-run.ts +241 -0
- package/src/contract/flow.ts +675 -0
- package/src/contract/node.ts +583 -0
- package/src/contract/share.ts +196 -0
- package/src/contract/table.ts +178 -0
- package/src/contract/tool.ts +202 -0
- package/ui/README.md +110 -0
- package/ui/components.json +21 -0
- package/ui/index.html +13 -0
- package/ui/package.json +11 -0
- package/ui/scripts/lint-tokens.mjs +187 -0
- package/ui/src/access-summary/access-summary.tsx +385 -0
- package/ui/src/app/action-slot/action-slot.tsx +27 -0
- package/ui/src/app/app-sidebar/app-sidebar.tsx +71 -0
- package/ui/src/app/app-tree/app-tree.tsx +1175 -0
- package/ui/src/app/app.tsx +87 -0
- package/ui/src/app/header-search/header-search.tsx +294 -0
- package/ui/src/app/reindex-dialog/reindex-dialog.tsx +79 -0
- package/ui/src/app/settings-dialog/settings-dialog.tsx +135 -0
- package/ui/src/app/sidebar-preferences/sidebar-preferences.ts +68 -0
- package/ui/src/app/sidebar-preferences/sidebar-preferences.types.ts +15 -0
- package/ui/src/app/sidebar-resize-handle/sidebar-resize-handle.tsx +86 -0
- package/ui/src/app/tree-expansion/tree-expansion.ts +107 -0
- package/ui/src/app/tree-expansion/tree-expansion.types.ts +31 -0
- package/ui/src/app/tree-move/tree-move.tsx +427 -0
- package/ui/src/app/tree-reveal/tree-reveal.ts +64 -0
- package/ui/src/app/tree-reveal/tree-reveal.types.ts +16 -0
- package/ui/src/app/user-footer/user-footer.tsx +188 -0
- package/ui/src/app/view-menu/view-menu.tsx +115 -0
- package/ui/src/app-root/app-root.tsx +109 -0
- package/ui/src/app-root/app-root.types.ts +27 -0
- package/ui/src/archive/archive.tsx +417 -0
- package/ui/src/attachment-detail/attachment-detail.ts +52 -0
- package/ui/src/attachment-viewer/attachment-viewer.tsx +166 -0
- package/ui/src/blocknote-view/blocknote-view.tsx +30 -0
- package/ui/src/board/board-assignee/board-assignee-picker.tsx +132 -0
- package/ui/src/board/board-assignee/board-assignee.ts +48 -0
- package/ui/src/board/board-assignee/board-assignee.tsx +75 -0
- package/ui/src/board/board-chip/board-chip.tsx +46 -0
- package/ui/src/board/board-crumbs/board-crumbs.ts +56 -0
- package/ui/src/board/board-crumbs/board-crumbs.tsx +111 -0
- package/ui/src/board/board-data/board-data.ts +195 -0
- package/ui/src/board/board-data/board-data.types.ts +38 -0
- package/ui/src/board/board-dates/board-dates.ts +40 -0
- package/ui/src/board/board-dates/board-dates.tsx +105 -0
- package/ui/src/board/board-kanban/board-kanban.ts +162 -0
- package/ui/src/board/board-kanban/board-kanban.tsx +680 -0
- package/ui/src/board/board-open-task/board-open-task.ts +32 -0
- package/ui/src/board/board-panel/board-panel.tsx +259 -0
- package/ui/src/board/board-settings/board-settings.tsx +226 -0
- package/ui/src/board/board-status/board-status.tsx +60 -0
- package/ui/src/board/board-stripes/board-stripes.ts +128 -0
- package/ui/src/board/board-table/board-table.ts +53 -0
- package/ui/src/board/board-table/board-table.tsx +610 -0
- package/ui/src/board/board-task/board-task.ts +108 -0
- package/ui/src/board/board-task/board-task.tsx +335 -0
- package/ui/src/board/board-title-row/board-title-row.tsx +66 -0
- package/ui/src/branding/branding.tsx +17 -0
- package/ui/src/branding/custom-logo.ts +1 -0
- package/ui/src/branding/favicon.default.svg +5 -0
- package/ui/src/branding/favicon.svg +5 -0
- package/ui/src/components/ui/avatar.tsx +39 -0
- package/ui/src/components/ui/button.tsx +64 -0
- package/ui/src/components/ui/collapsible.tsx +20 -0
- package/ui/src/components/ui/command.tsx +160 -0
- package/ui/src/components/ui/dialog.tsx +143 -0
- package/ui/src/components/ui/dropdown-menu.tsx +187 -0
- package/ui/src/components/ui/input.tsx +21 -0
- package/ui/src/components/ui/popover.tsx +41 -0
- package/ui/src/components/ui/select.tsx +163 -0
- package/ui/src/components/ui/separator.tsx +26 -0
- package/ui/src/components/ui/sheet.tsx +136 -0
- package/ui/src/components/ui/sidebar.tsx +693 -0
- package/ui/src/components/ui/skeleton.tsx +13 -0
- package/ui/src/components/ui/switch.tsx +25 -0
- package/ui/src/components/ui/table.tsx +82 -0
- package/ui/src/components/ui/tabs.tsx +52 -0
- package/ui/src/components/ui/tooltip.tsx +51 -0
- package/ui/src/data/intel-data-provider/intel-data-provider.ts +685 -0
- package/ui/src/data/intel-data-provider/intel-data-provider.types.ts +266 -0
- package/ui/src/data/query-client.ts +18 -0
- package/ui/src/data/request-refusal/refusal-notice.tsx +36 -0
- package/ui/src/data/request-refusal/request-refusal.ts +51 -0
- package/ui/src/data/sign-in/sign-in.ts +97 -0
- package/ui/src/data/sign-in/sign-in.types.ts +15 -0
- package/ui/src/document-link/document-link.tsx +114 -0
- package/ui/src/document-markdown/document-markdown.ts +195 -0
- package/ui/src/editor-schema/editor-schema.ts +23 -0
- package/ui/src/entry-picker/entry-picker.tsx +238 -0
- package/ui/src/feed/feed.tsx +344 -0
- package/ui/src/file-preview/file-preview-view.tsx +496 -0
- package/ui/src/file-preview/file-preview.tsx +28 -0
- package/ui/src/file-preview/pdf-file-preview.tsx +5 -0
- package/ui/src/file-preview/presentation-file-preview.tsx +21 -0
- package/ui/src/file-preview/spreadsheet-file-preview.tsx +5 -0
- package/ui/src/file-preview/word-file-preview.tsx +5 -0
- package/ui/src/flow-runs/flow-runs.tsx +238 -0
- package/ui/src/flows/flows.tsx +1646 -0
- package/ui/src/flows/node-icon/node-icon.ts +34 -0
- package/ui/src/flows/node-palette/node-palette.tsx +214 -0
- package/ui/src/flows/node-palette/node-palette.types.ts +15 -0
- package/ui/src/folder-contents/folder-contents.tsx +321 -0
- package/ui/src/folder-index/folder-index.ts +55 -0
- package/ui/src/frontmatter/frontmatter.tsx +193 -0
- package/ui/src/graph-pane/graph-pane.tsx +53 -0
- package/ui/src/hooks/use-mobile.ts +19 -0
- package/ui/src/i18n/custom.json +4 -0
- package/ui/src/i18n/de.json +609 -0
- package/ui/src/i18n/en.json +609 -0
- package/ui/src/i18n/es.json +609 -0
- package/ui/src/i18n/i18n-context.tsx +65 -0
- package/ui/src/i18n/i18n-languages/i18n-languages.ts +83 -0
- package/ui/src/i18n/i18n.ts +32 -0
- package/ui/src/i18n/i18n.types.ts +49 -0
- package/ui/src/kind-icon.ts +97 -0
- package/ui/src/lib/utils.ts +6 -0
- package/ui/src/main.tsx +68 -0
- package/ui/src/modal/modal.tsx +53 -0
- package/ui/src/node-details/node-details.tsx +545 -0
- package/ui/src/node-editor/node-editor.tsx +304 -0
- package/ui/src/node-graph/graph-notice.tsx +21 -0
- package/ui/src/node-graph/node-graph.ts +214 -0
- package/ui/src/node-graph/node-graph.tsx +295 -0
- package/ui/src/node-import/node-import.tsx +418 -0
- package/ui/src/node-save-error.ts +46 -0
- package/ui/src/node-source/node-source.tsx +128 -0
- package/ui/src/node-table/node-table.tsx +107 -0
- package/ui/src/nodes/nodes.tsx +240 -0
- package/ui/src/rename-resource/rename-resource.ts +80 -0
- package/ui/src/resolved-names/resolved-names.tsx +67 -0
- package/ui/src/resource-error.ts +33 -0
- package/ui/src/resource-menu/resource-menu.tsx +1156 -0
- package/ui/src/router/router-context.ts +6 -0
- package/ui/src/router/router.tsx +67 -0
- package/ui/src/router/router.types.ts +8 -0
- package/ui/src/router/selection-search.ts +88 -0
- package/ui/src/save-button/save-button.tsx +94 -0
- package/ui/src/section-hint/section-hint.tsx +40 -0
- package/ui/src/sign-in-refused/sign-in-refused.tsx +35 -0
- package/ui/src/styles.css +189 -0
- package/ui/src/table-columns/table-columns.tsx +379 -0
- package/ui/src/theme/custom.css +1 -0
- package/ui/src/theme/theme-context.tsx +89 -0
- package/ui/src/theme/theme.ts +70 -0
- package/ui/src/time/relative-time.tsx +41 -0
- package/ui/src/time/time-context.tsx +78 -0
- package/ui/src/time/time.ts +165 -0
- package/ui/src/title-row/title-row.tsx +185 -0
- package/ui/src/tools/tools.tsx +546 -0
- package/ui/src/user-name/user-name.ts +61 -0
- package/ui/src/verbatim/verbatim.tsx +68 -0
- package/ui/tsconfig.json +17 -0
- package/ui/vite.config.ts +129 -0
|
@@ -0,0 +1,609 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$locale": "en-US",
|
|
3
|
+
"app.name": "Intel",
|
|
4
|
+
"archive.archived": "Archived",
|
|
5
|
+
"archive.description": "Everything you archived, newest first. Restoring puts an entry back where it was filed.",
|
|
6
|
+
"archive.empty": "Nothing is archived.",
|
|
7
|
+
"archive.failed": "The archive could not be read. Check your access and try again.",
|
|
8
|
+
"archive.purge": "Delete {title} for good",
|
|
9
|
+
"archive.purge.body": "“{title}” and everything belonging to it — every version, its content and its entries in the search index — will be gone. This cannot be undone.",
|
|
10
|
+
"archive.purge.cancel": "Cancel",
|
|
11
|
+
"archive.purge.confirm": "Delete for good",
|
|
12
|
+
"archive.purge.grants": "Its shares will also be deleted.",
|
|
13
|
+
"archive.purge.items": "Deleted for good in total: {count}.",
|
|
14
|
+
"archive.purge.items.more": "Not listed here: {count}.",
|
|
15
|
+
"archive.purge.links.many": "{count} other documents link to it and those links will break.",
|
|
16
|
+
"archive.purge.links.none": "No other documents link to it.",
|
|
17
|
+
"archive.purge.links.one": "One other document links to it and that link will break.",
|
|
18
|
+
"archive.purge.previewFailed": "The links could not be checked. Reload and try again before deleting.",
|
|
19
|
+
"archive.purge.previewLoading": "Checking links…",
|
|
20
|
+
"archive.purge.title": "Delete this for good?",
|
|
21
|
+
"archive.purgeFailed": "It could not be deleted completely. Reload and try again.",
|
|
22
|
+
"archive.purgeInUse": "It cannot be deleted yet, because published flows still call it.",
|
|
23
|
+
"archive.purgeInUseCallers": "Still calling it: {titles}.",
|
|
24
|
+
"archive.purgeInUseCallersHidden": "It is still called by {count} you cannot see.",
|
|
25
|
+
"archive.purgeInUseCallersMore": "And {count} more you cannot see.",
|
|
26
|
+
"archive.purgeInUseHint": "Change or unpublish them first.",
|
|
27
|
+
"archive.restore": "Restore {title}",
|
|
28
|
+
"archive.restoreAction": "Restore",
|
|
29
|
+
"archive.restoreFailed": "It was not restored. Somebody else may have changed it — reload and try again.",
|
|
30
|
+
"archive.restoring": "Restoring {title}",
|
|
31
|
+
"archive.restoringAction": "Restoring",
|
|
32
|
+
"archive.title": "Archive",
|
|
33
|
+
"attachment.details.checksum": "Checksum",
|
|
34
|
+
"attachment.details.dimensions": "Dimensions",
|
|
35
|
+
"attachment.details.format": "Format",
|
|
36
|
+
"attachment.details.mimeType": "MIME type",
|
|
37
|
+
"attachment.details.pages": "Pages",
|
|
38
|
+
"attachment.details.private": "Private",
|
|
39
|
+
"attachment.details.sections": "Sections",
|
|
40
|
+
"attachment.details.size": "Size",
|
|
41
|
+
"attachment.details.slides": "Slides",
|
|
42
|
+
"attachment.details.storage": "Storage",
|
|
43
|
+
"attachment.details.type": "Type",
|
|
44
|
+
"attachment.details.uploaded": "Uploaded",
|
|
45
|
+
"attachment.details.uploadedBy": "Uploaded by",
|
|
46
|
+
"attachment.details.version": "Version",
|
|
47
|
+
"attachment.details.worksheets": "Worksheets",
|
|
48
|
+
"attachment.empty": "No file has been uploaded yet.",
|
|
49
|
+
"attachment.kind.audio": "Audio file",
|
|
50
|
+
"attachment.kind.image": "Image",
|
|
51
|
+
"attachment.kind.pdf": "PDF document",
|
|
52
|
+
"attachment.kind.presentation": "Presentation",
|
|
53
|
+
"attachment.kind.spreadsheet": "Spreadsheet",
|
|
54
|
+
"attachment.kind.unsupported": "File",
|
|
55
|
+
"attachment.kind.video": "Video file",
|
|
56
|
+
"attachment.kind.word": "Word document",
|
|
57
|
+
"attachment.loadFailed": "The file could not be loaded. You can still export the original from the menu.",
|
|
58
|
+
"attachment.unsupported": "This file type cannot be previewed. You can still export the original from the menu.",
|
|
59
|
+
"attachment.viewer.controls": "File controls",
|
|
60
|
+
"attachment.viewer.navigation": "Show page navigation",
|
|
61
|
+
"attachment.viewer.nextPage": "Next page",
|
|
62
|
+
"attachment.viewer.nextResult": "Next search result",
|
|
63
|
+
"attachment.viewer.previousPage": "Previous page",
|
|
64
|
+
"attachment.viewer.previousResult": "Previous search result",
|
|
65
|
+
"attachment.viewer.resetZoom": "Reset zoom",
|
|
66
|
+
"attachment.viewer.rotateLeft": "Rotate left",
|
|
67
|
+
"attachment.viewer.rotateRight": "Rotate right",
|
|
68
|
+
"attachment.viewer.search": "Search document",
|
|
69
|
+
"attachment.viewer.searchNoResults": "No results",
|
|
70
|
+
"attachment.viewer.searchPlaceholder": "Search document",
|
|
71
|
+
"attachment.viewer.searchResults": "Search result {current} of {total}",
|
|
72
|
+
"attachment.viewer.zoomIn": "Zoom in",
|
|
73
|
+
"attachment.viewer.zoomOut": "Zoom out",
|
|
74
|
+
"auth.signOut": "Sign out",
|
|
75
|
+
"auth.signOutFailed": "Signing out failed. Check your connection and try again.",
|
|
76
|
+
"board.add": "Add something",
|
|
77
|
+
"board.add.due": "Due",
|
|
78
|
+
"board.add.label": "Label",
|
|
79
|
+
"board.add.start": "Start",
|
|
80
|
+
"board.addCard": "+ Task",
|
|
81
|
+
"board.addCardIn": "Add a task to {column}",
|
|
82
|
+
"board.addLabel": "Add a label",
|
|
83
|
+
"board.addLink": "Link",
|
|
84
|
+
"board.assignSomebody": "Assign to somebody",
|
|
85
|
+
"board.assignee.clear": "Remove the assignee",
|
|
86
|
+
"board.assignee.keepTyping": "Type at least two characters",
|
|
87
|
+
"board.assignee.more": "Not listed here: {count}. Type to search.",
|
|
88
|
+
"board.assignee.nobody": "Nobody with access to this board matches",
|
|
89
|
+
"board.assignee.search": "Find a person",
|
|
90
|
+
"board.backTo": "Back to {board}",
|
|
91
|
+
"board.cardLabel": "Open {title}, in {column}. Alt and an arrow key moves it.",
|
|
92
|
+
"board.changeAssignee": "Assigned to {name}, change",
|
|
93
|
+
"board.clearAssignee": "Take the assignment off {name}",
|
|
94
|
+
"board.clearDependsOn": "stop waiting for it",
|
|
95
|
+
"board.clearDue": "clear it",
|
|
96
|
+
"board.clearStart": "clear it",
|
|
97
|
+
"board.column.archive": "Archive",
|
|
98
|
+
"board.column.assignee": "Assigned to",
|
|
99
|
+
"board.column.default.backlog": "Backlog",
|
|
100
|
+
"board.column.default.doing": "In progress",
|
|
101
|
+
"board.column.default.done": "Done",
|
|
102
|
+
"board.column.default.todo": "To do",
|
|
103
|
+
"board.column.dependsOn": "Waiting for",
|
|
104
|
+
"board.column.due": "Due",
|
|
105
|
+
"board.column.labels": "Labels",
|
|
106
|
+
"board.column.start": "Start",
|
|
107
|
+
"board.column.status": "Column",
|
|
108
|
+
"board.column.title": "Title",
|
|
109
|
+
"board.createFailed": "The task could not be created.",
|
|
110
|
+
"board.crumbs": "Where this card sits",
|
|
111
|
+
"board.crumbsFolded": "Show the levels in between",
|
|
112
|
+
"board.dates.edit": "Edit the dates",
|
|
113
|
+
"board.drag.lifted": "{card} picked up",
|
|
114
|
+
"board.drag.moved": "{card} moved to {column}",
|
|
115
|
+
"board.drag.putBack": "{card} put back",
|
|
116
|
+
"board.dragInstructions": "Drag a card with the mouse to move it. Without a pointer, hold Alt and press an arrow key: left and right move the card between columns, up and down within one.",
|
|
117
|
+
"board.failed": "This board could not be loaded.",
|
|
118
|
+
"board.filter.all": "Every column",
|
|
119
|
+
"board.filter.status": "Show column",
|
|
120
|
+
"board.filterEmpty": "No card matches this filter.",
|
|
121
|
+
"board.fromDate": "from {date}",
|
|
122
|
+
"board.group.empty": "Nothing set",
|
|
123
|
+
"board.group.none": "Nothing",
|
|
124
|
+
"board.groupBy": "Group by",
|
|
125
|
+
"board.link.blocker": "Waits for",
|
|
126
|
+
"board.link.outside": "Outside this board",
|
|
127
|
+
"board.link.subtask": "Subtask",
|
|
128
|
+
"board.links": "Linked",
|
|
129
|
+
"board.moveTo": "move it to another column",
|
|
130
|
+
"board.removeLabel": "remove this label",
|
|
131
|
+
"board.settings.addColumn": "+ Column",
|
|
132
|
+
"board.settings.columnColor": "Colour of the {column} column",
|
|
133
|
+
"board.settings.columnName": "Name of the column {column}",
|
|
134
|
+
"board.settings.description": "Columns and what the board shows.",
|
|
135
|
+
"board.settings.duplicateName": "Two columns are called {column}. Names have to tell them apart.",
|
|
136
|
+
"board.settings.failed": "The settings could not be saved.",
|
|
137
|
+
"board.settings.moveDown": "Move {column} down",
|
|
138
|
+
"board.settings.moveUp": "Move {column} up",
|
|
139
|
+
"board.settings.newColumn": "New column",
|
|
140
|
+
"board.settings.open": "Board settings",
|
|
141
|
+
"board.settings.remove": "Remove {column}",
|
|
142
|
+
"board.settings.removeBlocked": "{column} is not empty. Move its cards out first.",
|
|
143
|
+
"board.settings.showArchive": "Show the archive column",
|
|
144
|
+
"board.settings.showArchiveHint": "It is on every board. Hidden, its cards are out of sight everywhere.",
|
|
145
|
+
"board.settings.title": "Board settings",
|
|
146
|
+
"board.sort.asc": "{column}, A to Z",
|
|
147
|
+
"board.sort.desc": "{column}, Z to A",
|
|
148
|
+
"board.sort.none": "Unsorted",
|
|
149
|
+
"board.sortBy": "Sort",
|
|
150
|
+
"board.stripes.root": "Level {level}, has subtasks",
|
|
151
|
+
"board.stripes.under": "Level {level} · parent in {column}",
|
|
152
|
+
"board.table.collapse": "Hide what is under {row}",
|
|
153
|
+
"board.table.columns": "Columns",
|
|
154
|
+
"board.table.expand": "Show what is under {row}",
|
|
155
|
+
"board.table.filteredBy": "only {column}",
|
|
156
|
+
"board.table.groupedBy": "grouped by {column}",
|
|
157
|
+
"board.tableEmpty": "This board has no cards yet.",
|
|
158
|
+
"board.taskGone": "This card is not on this board any more. It may have been archived, or it is gone.",
|
|
159
|
+
"board.unassigned": "Nobody yet",
|
|
160
|
+
"board.unknownColumn": "not on this board",
|
|
161
|
+
"board.untilDate": "due {date}",
|
|
162
|
+
"common.cancel": "Cancel",
|
|
163
|
+
"common.close": "Close",
|
|
164
|
+
"common.create": "Create",
|
|
165
|
+
"common.loading": "Loading…",
|
|
166
|
+
"common.noAccess": "This is not available to you. It may not exist, or it may no longer be shared with you.",
|
|
167
|
+
"common.noPermission": "You do not have permission to see this.",
|
|
168
|
+
"common.retry": "Try again",
|
|
169
|
+
"common.save": "Save",
|
|
170
|
+
"common.saveDirty": "Save unsaved changes",
|
|
171
|
+
"common.saveNothing": "Nothing to save",
|
|
172
|
+
"common.saved": "Saved",
|
|
173
|
+
"common.saving": "Saving…",
|
|
174
|
+
"common.title": "Title",
|
|
175
|
+
"common.unavailable": "Intel is currently unavailable.",
|
|
176
|
+
"common.unsavedBody": "This has changes that have not been saved. Leaving now discards them.",
|
|
177
|
+
"common.unsavedLeave": "Leave without saving",
|
|
178
|
+
"common.unsavedStay": "Stay and save",
|
|
179
|
+
"common.unsavedTitle": "Unsaved changes",
|
|
180
|
+
"details.cards": "Cards",
|
|
181
|
+
"details.columns": "Columns",
|
|
182
|
+
"details.contents": "Directly inside",
|
|
183
|
+
"details.description": "Description",
|
|
184
|
+
"details.descriptionEdit": "Edit",
|
|
185
|
+
"details.descriptionEmpty": "No description yet.",
|
|
186
|
+
"details.folderText": "Folder text",
|
|
187
|
+
"details.folderTextFailed": "The folder text could not be read.",
|
|
188
|
+
"details.folderTextOpen": "Open as a document",
|
|
189
|
+
"details.lastWritten": "Last written",
|
|
190
|
+
"details.rows": "Rows",
|
|
191
|
+
"details.title": "Details",
|
|
192
|
+
"details.versions": "Versions",
|
|
193
|
+
"feed.action.flows.archive": "{who} archived the Flow {title}",
|
|
194
|
+
"feed.action.flows.cancel": "{who} cancelled a run of the Flow {title}",
|
|
195
|
+
"feed.action.flows.complete": "{who} ran the Flow {title} to the end",
|
|
196
|
+
"feed.action.flows.create": "{who} created the Flow {title}",
|
|
197
|
+
"feed.action.flows.publish": "{who} published the Flow {title}",
|
|
198
|
+
"feed.action.flows.purge": "{who} deleted the Flow {title} for good",
|
|
199
|
+
"feed.action.flows.revoke": "{who} withdrew a share on the Flow {title}",
|
|
200
|
+
"feed.action.flows.save": "{who} changed the Flow {title}",
|
|
201
|
+
"feed.action.flows.share": "{who} shared the Flow {title}",
|
|
202
|
+
"feed.action.flows.unpublish": "{who} withdrew the Flow {title} from publication",
|
|
203
|
+
"feed.action.flows.update": "{who} renamed the Flow {title}",
|
|
204
|
+
"feed.action.node.append": "{who} appended to {title}",
|
|
205
|
+
"feed.action.node.archive": "{who} archived {title}",
|
|
206
|
+
"feed.action.node.create": "{who} created {title}",
|
|
207
|
+
"feed.action.node.purge": "{who} deleted {title} for good",
|
|
208
|
+
"feed.action.node.revoke": "{who} withdrew access to {title}",
|
|
209
|
+
"feed.action.node.save": "{who} changed {title}",
|
|
210
|
+
"feed.action.node.share": "{who} shared {title}",
|
|
211
|
+
"feed.action.node.update": "{who} renamed {title}",
|
|
212
|
+
"feed.audience.all": "Everyone",
|
|
213
|
+
"feed.audience.mine": "Only me",
|
|
214
|
+
"feed.audience.people": "Without agents",
|
|
215
|
+
"feed.description": "What happened recently, as far as your access reaches.",
|
|
216
|
+
"feed.empty": "Nothing here yet.",
|
|
217
|
+
"feed.emptyWhy": "The feed only shows what happens to nodes you may read. If you share access with nobody, only your own work appears.",
|
|
218
|
+
"feed.end": "That is everything.",
|
|
219
|
+
"feed.failed": "The feed could not be loaded.",
|
|
220
|
+
"feed.filter": "Who to show",
|
|
221
|
+
"feed.gapWhy": "If your read access to a folder was withdrawn, your own older entries from it are missing too.",
|
|
222
|
+
"feed.open": "Open {title} ({mark})",
|
|
223
|
+
"feed.title": "Feed",
|
|
224
|
+
"feed.version": "v{sequence}",
|
|
225
|
+
"feed.you": "You",
|
|
226
|
+
"flow.shareUnreadable": "This grant does not cover what this flow reads: {titles}.",
|
|
227
|
+
"flow.shareUnreadableHidden": "This grant does not cover everything this flow reads: {count} you cannot see.",
|
|
228
|
+
"flow.shareUnreadableHint": "Nothing is blocked. A run will simply stop at that step for them.",
|
|
229
|
+
"flow.shareUnreadableMore": "And {count} more you cannot see.",
|
|
230
|
+
"flow.shareUnrunnable": "This grant does not cover what this flow calls: {titles}.",
|
|
231
|
+
"flow.shareUnrunnableHidden": "This grant does not cover everything this flow calls: {count} you cannot see.",
|
|
232
|
+
"flow.shareUnrunnableHint": "A grant on one flow reaches that flow alone. Share those flows too, or share the folder they are filed in. Let them check with Validate before they run it.",
|
|
233
|
+
"flow.shareUnrunnableMore": "And {count} more you cannot see.",
|
|
234
|
+
"flow.verbHint.execute": "Start this flow",
|
|
235
|
+
"flow.verbHint.read": "Open this flow and read it",
|
|
236
|
+
"flow.verbHint.share": "Give others access to it",
|
|
237
|
+
"flow.verbHint.write": "Change this flow",
|
|
238
|
+
"flows.addNode": "Add a step",
|
|
239
|
+
"flows.closePalette": "Close the step bar",
|
|
240
|
+
"flows.inspect": "Select a node to edit its configuration.",
|
|
241
|
+
"flows.instruction": "Instruction for the AI or person",
|
|
242
|
+
"flows.instructionHint": "Conditions, checks and branches can be described here in words. You do not need a separate node for every small decision.",
|
|
243
|
+
"flows.layer.link": "Links",
|
|
244
|
+
"flows.layer.marker": "Markers",
|
|
245
|
+
"flows.layer.step": "Steps",
|
|
246
|
+
"flows.linkEmpty": "Nothing chosen yet",
|
|
247
|
+
"flows.needs": "What this flow needs",
|
|
248
|
+
"flows.needsEmpty": "This flow reads no documents and calls no tools.",
|
|
249
|
+
"flows.needsFailed": "What this flow needs could not be loaded.",
|
|
250
|
+
"flows.needsHidden": "{count} more you cannot see",
|
|
251
|
+
"flows.needsInvalid": "No longer there: {count} — replace or remove every affected step",
|
|
252
|
+
"flows.needsNodes": "Documents",
|
|
253
|
+
"flows.needsTools": "Tools",
|
|
254
|
+
"flows.node.condition": "Condition",
|
|
255
|
+
"flows.node.document": "Document",
|
|
256
|
+
"flows.node.folder": "Folder",
|
|
257
|
+
"flows.node.instruction": "Instruction",
|
|
258
|
+
"flows.node.output": "End",
|
|
259
|
+
"flows.node.subflow": "Flow",
|
|
260
|
+
"flows.node.table": "Table",
|
|
261
|
+
"flows.node.tool": "Tool",
|
|
262
|
+
"flows.node.trigger": "Start",
|
|
263
|
+
"flows.node.upload": "Upload",
|
|
264
|
+
"flows.nodeInvalid": "Gone — replace or remove this step",
|
|
265
|
+
"flows.nodePalette": "Step types",
|
|
266
|
+
"flows.operationFailed": "The flow operation failed. Reload the latest version and try again.",
|
|
267
|
+
"flows.problem.flow_execute_forbidden": "You may not run this flow",
|
|
268
|
+
"flows.problem.flow_graph_invalid": "The graph cannot be run",
|
|
269
|
+
"flows.problem.flow_node_forbidden": "Material a step reads is out of reach",
|
|
270
|
+
"flows.problem.flow_not_published": "The flow is not published",
|
|
271
|
+
"flows.problem.flow_subflow_not_published": "A called flow is not published",
|
|
272
|
+
"flows.problem.flow_subflow_unavailable": "A called flow is unavailable",
|
|
273
|
+
"flows.problem.flow_tools_unavailable": "A tool is out of reach",
|
|
274
|
+
"flows.publish": "Publish",
|
|
275
|
+
"flows.publishConfirm": "Publish",
|
|
276
|
+
"flows.publishConflict": "Not published: somebody else changed this flow first. Reload the latest version and try again.",
|
|
277
|
+
"flows.publishFailed": "Publishing failed. Try again.",
|
|
278
|
+
"flows.publishNeeded": "Publish — no run can start until you do",
|
|
279
|
+
"flows.publishNodeUnavailable": "Not published: {detail}. Ask for access to it, or point the step at something else.",
|
|
280
|
+
"flows.publishNothing": "Nothing new to publish",
|
|
281
|
+
"flows.publishPreview": "Before publishing",
|
|
282
|
+
"flows.publishPreviewEmpty": "This flow calls no other flow, so publishing freezes nothing.",
|
|
283
|
+
"flows.publishPreviewFollows": "runs along with the called flow",
|
|
284
|
+
"flows.publishPreviewFreeze": "freezes to version {sequence}",
|
|
285
|
+
"flows.publishPreviewIntro": "Publishing freezes every call marked below to the version it names. A call set to always latest stays as it is.",
|
|
286
|
+
"flows.publishPreviewPinned": "already frozen to version {sequence}",
|
|
287
|
+
"flows.publishPreviewToolAllow": "Frozen to: {functions}",
|
|
288
|
+
"flows.publishPreviewToolUnavailable": "You do not reach this server, so publishing will be refused.",
|
|
289
|
+
"flows.publishPreviewUnavailable": "The called flow has published nothing yet, so this cannot be frozen.",
|
|
290
|
+
"flows.publishRefused": "Not published: {detail}",
|
|
291
|
+
"flows.publishToolUnavailable": "Not published: {detail}. Check in the portal whether you still reach that server.",
|
|
292
|
+
"flows.saveConflict": "Not saved: somebody else changed this flow first. Reload the latest version and try again.",
|
|
293
|
+
"flows.saveFailed": "The flow was not saved. Try again.",
|
|
294
|
+
"flows.saveInvalid": "Not saved: {detail}",
|
|
295
|
+
"flows.select": "Select a flow or create one to open the visual editor.",
|
|
296
|
+
"flows.selectSubflow": "Select a flow to call",
|
|
297
|
+
"flows.selectTool": "Select a server",
|
|
298
|
+
"flows.startExists": "A flow has exactly one start, and this one already has it.",
|
|
299
|
+
"flows.subflowBadge.follows": "runs along",
|
|
300
|
+
"flows.subflowBadge.pinned": "frozen",
|
|
301
|
+
"flows.subflowRule": "A flow may call a flow in its own folder or below it, or one in a folder every user may run. Publishing names the reason if it may not.",
|
|
302
|
+
"flows.subflowTarget": "Flow to call",
|
|
303
|
+
"flows.subflowVersion": "Version to call",
|
|
304
|
+
"flows.subflowVersion.follows": "Always latest — this call runs along",
|
|
305
|
+
"flows.subflowVersion.latest": "Latest — frozen when this flow is published",
|
|
306
|
+
"flows.subflowVersion.pinned": "Frozen version",
|
|
307
|
+
"flows.subflowVersionHint.follows": "This call takes whatever the called flow has published at the moment it runs. A change there changes this flow too.",
|
|
308
|
+
"flows.subflowVersionHint.latest": "Publishing replaces this with the version the called flow has published then, so a later change to it leaves this flow alone.",
|
|
309
|
+
"flows.subflowVersionHint.pinned": "This call keeps running the version it was frozen to. Switch it back to latest to pick up the called flow's next publication.",
|
|
310
|
+
"flows.tool": "MCP server",
|
|
311
|
+
"flows.toolAllowAll": "Let the agent use any function",
|
|
312
|
+
"flows.toolAllowHint": "Intel says what a step is for; the agent chooses the call and reaches the portal with its own permissions.",
|
|
313
|
+
"flows.toolAllowNone": "No function is selected yet, so this step cannot be published.",
|
|
314
|
+
"flows.toolAllowSome": "Point the agent at specific functions",
|
|
315
|
+
"flows.toolAllowUnknown": "The selection includes what this server does not offer right now: {count}.",
|
|
316
|
+
"flows.toolFunctions": "Functions",
|
|
317
|
+
"flows.toolFunctionsFailed": "The list of functions could not be loaded, so the selection may be incomplete.",
|
|
318
|
+
"flows.toolServersDisconnected": "You are not connected to the portal, so no server can be chosen. Connect it in the tool settings first.",
|
|
319
|
+
"flows.toolServersEmpty": "You reach no MCP server through the portal yet.",
|
|
320
|
+
"flows.toolServersFailed": "The list of servers could not be loaded, so none can be chosen right now.",
|
|
321
|
+
"flows.toolStepNeedsServer": "The step “{label}” still needs a server.",
|
|
322
|
+
"flows.validate": "Check whether it would run",
|
|
323
|
+
"flows.validateReady": "This flow would start now.",
|
|
324
|
+
"flows.validateWhen": "Checked {when}. Tool access is asked with your own token each time, so this answer is a snapshot.",
|
|
325
|
+
"import.failed": "Not uploaded: {names}. Everything else was.",
|
|
326
|
+
"import.failed.all": "Nothing was uploaded: {names}.",
|
|
327
|
+
"import.failed.limit": "Files up to {limit} can be uploaded.",
|
|
328
|
+
"import.files": "Files",
|
|
329
|
+
"import.files.long": "One or more files from this machine",
|
|
330
|
+
"import.folder": "Folder",
|
|
331
|
+
"import.folder.long": "A folder with everything in it",
|
|
332
|
+
"import.notSearched": "Stored. Files over {limit} are found by their name; their contents are not searched.",
|
|
333
|
+
"import.progress": "Uploading {done} of {total}",
|
|
334
|
+
"import.title": "Import into {where}",
|
|
335
|
+
"import.zip": "Zip bundle",
|
|
336
|
+
"import.zip.long": "A bundle Intel exported earlier",
|
|
337
|
+
"nav.primary": "Primary navigation",
|
|
338
|
+
"nav.reindex": "Reindex",
|
|
339
|
+
"nav.tools": "Tools",
|
|
340
|
+
"node.access": "Access",
|
|
341
|
+
"node.accessDetails": "Show access details ({count})",
|
|
342
|
+
"node.accessInherited": "Inherited from a folder above — not withdrawable here",
|
|
343
|
+
"node.accessInheritedFrom": "Inherited from {titles} — withdraw it there",
|
|
344
|
+
"node.changed": "Changed",
|
|
345
|
+
"node.email": "Email address",
|
|
346
|
+
"node.empty": "Nothing has been added yet.",
|
|
347
|
+
"node.folderEmpty": "Nothing in this folder yet. Create something with the plus in the sidebar.",
|
|
348
|
+
"node.folderFailed": "This folder could not be read.",
|
|
349
|
+
"node.frontmatter.summary": "Metadata",
|
|
350
|
+
"node.frontmatter.toggle": "Show or hide the metadata of this document",
|
|
351
|
+
"node.graphBundled": "{count} more inside",
|
|
352
|
+
"node.graphReset": "Fit graph",
|
|
353
|
+
"node.graphZoomIn": "Zoom in",
|
|
354
|
+
"node.graphZoomOut": "Zoom out",
|
|
355
|
+
"node.kind.attachment": "Upload",
|
|
356
|
+
"node.kind.document": "Document",
|
|
357
|
+
"node.kind.flow": "Flow",
|
|
358
|
+
"node.kind.folder": "Folder",
|
|
359
|
+
"node.kind.table": "Table",
|
|
360
|
+
"node.link.group": "Documents",
|
|
361
|
+
"node.link.insert": "Link a document",
|
|
362
|
+
"node.link.noMatches": "No document of yours matches.",
|
|
363
|
+
"node.link.search": "Search documents you can see",
|
|
364
|
+
"node.link.unresolved": "Unavailable document",
|
|
365
|
+
"node.linkIncoming": "It links to this document",
|
|
366
|
+
"node.linkOutgoing": "This document links to it",
|
|
367
|
+
"node.links": "Links and backlinks",
|
|
368
|
+
"node.linksHelp": "Relationships are written in the text. Link a document from the editor with the / command; this list shows the result and who points here.",
|
|
369
|
+
"node.loadFailed": "This item could not be loaded. Check your access and try again.",
|
|
370
|
+
"node.noLinks": "No explicit relationships yet.",
|
|
371
|
+
"node.operationFailed": "The change was not saved. Reload the latest version and try again.",
|
|
372
|
+
"node.organization": "Everyone in the organization",
|
|
373
|
+
"node.organizationAccess": "Everyone in the organization has access",
|
|
374
|
+
"node.owner": "Owner",
|
|
375
|
+
"node.revokeInUse": "This access cannot be withdrawn yet, because flows outside this folder still call into it.",
|
|
376
|
+
"node.revokeInUseCallers": "Still calling into it: {titles}.",
|
|
377
|
+
"node.revokeInUseCallersHidden": "It is still called by {count} you cannot see.",
|
|
378
|
+
"node.revokeInUseCallersMore": "And {count} more you cannot see.",
|
|
379
|
+
"node.revokeInUseHint": "Change or unpublish them before narrowing the folder.",
|
|
380
|
+
"node.revokeShare": "Revoke access",
|
|
381
|
+
"node.revokeVerb": "Revoke {verb}",
|
|
382
|
+
"node.revokeVerbFor": "Revoke {verb} for {recipient}",
|
|
383
|
+
"node.rowActions": "Actions",
|
|
384
|
+
"node.saveConflict": "This document changed elsewhere. Reload it before saving again.",
|
|
385
|
+
"node.saveError": "This document could not be saved. Reload and try again.",
|
|
386
|
+
"node.saveUnsupported": "This kind of entry carries no text. What you wrote is still here — copy it somewhere that holds it.",
|
|
387
|
+
"node.select": "Select a document or folder to work with it.",
|
|
388
|
+
"node.share": "Share",
|
|
389
|
+
"node.shareAction": "Grant access",
|
|
390
|
+
"node.shareFailed": "Access was not changed. Check your permission and try again.",
|
|
391
|
+
"node.shareLibraryWarning": "Run for the whole organization makes this folder a library: flows anywhere in the tree may then call into it. Taking it back is refused while any of them still does.",
|
|
392
|
+
"node.shareOrganizationHint": "Every signed-in member of the organization gets this access, including people who join later.",
|
|
393
|
+
"node.shareUnreadable": "This grant does not cover what flows in this folder read: {titles}.",
|
|
394
|
+
"node.shareUnreadableHidden": "This grant does not cover everything flows in this folder read: {count} you cannot see.",
|
|
395
|
+
"node.shareUnreadableHint": "Nothing is blocked. A run of those flows will simply stop at that step for them.",
|
|
396
|
+
"node.shareUnreadableMore": "And {count} more you cannot see.",
|
|
397
|
+
"node.shareWith": "Who gets access",
|
|
398
|
+
"node.shareWithEmail": "One email address",
|
|
399
|
+
"node.shareWithOrganization": "Everyone in the organization",
|
|
400
|
+
"node.someUser": "A user account",
|
|
401
|
+
"node.source.label": "The document as markdown",
|
|
402
|
+
"node.table.columnAdd": "Add column",
|
|
403
|
+
"node.table.columnDrop": "Remove the column “{column}”",
|
|
404
|
+
"node.table.columnDropNew": "Remove the new column",
|
|
405
|
+
"node.table.columnName": "Name of the column “{column}”",
|
|
406
|
+
"node.table.columnNewName": "Name of the new column",
|
|
407
|
+
"node.table.columnsAtLeastOne": "A table needs at least one column.",
|
|
408
|
+
"node.table.columnsDistinct": "Two columns cannot carry the same name.",
|
|
409
|
+
"node.table.columnsDropConfirm": "Remove and save",
|
|
410
|
+
"node.table.columnsDropRows.many": "{count} rows carry content there. It stays readable in the version history and nowhere else.",
|
|
411
|
+
"node.table.columnsDropRows.none": "No row carries content there, so nothing is lost with them.",
|
|
412
|
+
"node.table.columnsDropRows.one": "One row carries content there. It stays readable in the version history and nowhere else.",
|
|
413
|
+
"node.table.columnsDropWarning.many": "These columns are removed with every cell in them: {columns}",
|
|
414
|
+
"node.table.columnsDropWarning.one": "This column is removed with every cell in it: {columns}",
|
|
415
|
+
"node.table.columnsNamed": "Every column needs a name.",
|
|
416
|
+
"node.table.columnsTitle": "Columns of {title}",
|
|
417
|
+
"node.table.columnsTooLong": "A column name can be at most 120 characters long.",
|
|
418
|
+
"node.table.columnsTooMany": "A table can have at most 64 columns.",
|
|
419
|
+
"node.table.empty": "No rows yet. Rows are appended by flows.",
|
|
420
|
+
"node.table.summary": "{rows} rows, {columns} columns",
|
|
421
|
+
"node.table.undefined": "This table has no columns yet.",
|
|
422
|
+
"node.verb.execute": "Run",
|
|
423
|
+
"node.verb.read": "Read",
|
|
424
|
+
"node.verb.share": "Share",
|
|
425
|
+
"node.verb.write": "Write",
|
|
426
|
+
"node.verbHint.execute": "Start the flows in here",
|
|
427
|
+
"node.verbHint.read": "See everything in here",
|
|
428
|
+
"node.verbHint.share": "Give others access",
|
|
429
|
+
"node.verbHint.write": "Change and add things",
|
|
430
|
+
"node.verbatim.label": "Kept exactly as it was written — the editor cannot show this part.",
|
|
431
|
+
"node.verbs": "What this grant allows",
|
|
432
|
+
"node.version": "Version {sequence}",
|
|
433
|
+
"node.versions": "Version history",
|
|
434
|
+
"picker.nothing": "Nothing here",
|
|
435
|
+
"picker.open": "Open {title}",
|
|
436
|
+
"picker.search": "Search by name",
|
|
437
|
+
"picker.top": "All folders",
|
|
438
|
+
"prompt.command": "Slash command {name}",
|
|
439
|
+
"prompt.field": "Slash command",
|
|
440
|
+
"prompt.help": "Lowercase letters, digits and hyphens. Leave it empty to stop offering this document.",
|
|
441
|
+
"prompt.invalid": "Lowercase letters, digits and hyphens only, up to 40 characters.",
|
|
442
|
+
"prompt.menu": "Prompt",
|
|
443
|
+
"prompt.taken": "/{name} is already taken. Pick another name.",
|
|
444
|
+
"prompt.title": "Prompt",
|
|
445
|
+
"reindex.cancel": "Cancel",
|
|
446
|
+
"reindex.close": "Close",
|
|
447
|
+
"reindex.confirm": "Rebuild",
|
|
448
|
+
"reindex.description": "Reads every node again and works out its search entries from scratch. Nothing is lost — the index is built from the documents themselves — but it costs time and money, and the screen looks the same afterwards.",
|
|
449
|
+
"reindex.failed": "The rebuild was not started. Check your access and try again.",
|
|
450
|
+
"reindex.queued": "Queued: {count}. The index catches up in the background; searching keeps working meanwhile.",
|
|
451
|
+
"reindex.running": "Sending…",
|
|
452
|
+
"reindex.title": "Rebuild the search index",
|
|
453
|
+
"resource.archive": "Archive",
|
|
454
|
+
"resource.columns": "Columns",
|
|
455
|
+
"resource.conflict": "It was not changed: somebody else changed this entry first. Reload it and try again.",
|
|
456
|
+
"resource.export": "Export",
|
|
457
|
+
"resource.exportFailed": "The export could not be downloaded. Check your access and try again.",
|
|
458
|
+
"resource.failed": "The change was not saved. Reload the latest version and try again.",
|
|
459
|
+
"resource.forbidden": "It was not changed: you may not change this entry.",
|
|
460
|
+
"resource.import": "Import",
|
|
461
|
+
"resource.links": "Links",
|
|
462
|
+
"resource.menu": "More actions for {title}",
|
|
463
|
+
"resource.move": "Move",
|
|
464
|
+
"resource.rename": "Rename",
|
|
465
|
+
"resource.renameTitle": "Rename {title}",
|
|
466
|
+
"resource.share": "Share",
|
|
467
|
+
"resource.validate": "Check",
|
|
468
|
+
"runs.durationMinutes": "{value} min",
|
|
469
|
+
"runs.durationMs": "{value} ms",
|
|
470
|
+
"runs.durationSeconds": "{value} s",
|
|
471
|
+
"runs.empty": "This flow has not run yet.",
|
|
472
|
+
"runs.emptyFailed": "No run of this flow has failed.",
|
|
473
|
+
"runs.failedAt": "Failed at {step}:",
|
|
474
|
+
"runs.failedToLoad": "The runs of this flow could not be loaded.",
|
|
475
|
+
"runs.more": "Show older runs",
|
|
476
|
+
"runs.onlyFailed": "Only failed runs",
|
|
477
|
+
"runs.outcome.completed": "done",
|
|
478
|
+
"runs.outcome.failed": "failed",
|
|
479
|
+
"runs.status.cancelled": "Cancelled",
|
|
480
|
+
"runs.status.completed": "Completed",
|
|
481
|
+
"runs.status.failed": "Failed",
|
|
482
|
+
"runs.status.queued": "Queued",
|
|
483
|
+
"runs.status.running": "Running",
|
|
484
|
+
"runs.status.waiting": "Waiting",
|
|
485
|
+
"runs.stepsEmpty": "This run has not completed a step yet.",
|
|
486
|
+
"runs.stepsFailedToLoad": "The steps of this run could not be loaded.",
|
|
487
|
+
"runs.stepsTitle": "Steps",
|
|
488
|
+
"runs.stillRunning": "still running",
|
|
489
|
+
"runs.title": "Runs",
|
|
490
|
+
"runs.trigger.manual": "started by hand",
|
|
491
|
+
"runs.trigger.subflow": "called by another flow",
|
|
492
|
+
"search.all": "Everything",
|
|
493
|
+
"search.description": "Find documents, flows, and tools you are allowed to see.",
|
|
494
|
+
"search.empty": "Nothing found for “{query}”.",
|
|
495
|
+
"search.failed": "The search could not be completed.",
|
|
496
|
+
"search.filter": "Filter by kind",
|
|
497
|
+
"search.hint": "Type to search.",
|
|
498
|
+
"search.kind.flow": "Flows",
|
|
499
|
+
"search.kind.node": "Intelligence",
|
|
500
|
+
"search.kind.tool": "Tools",
|
|
501
|
+
"search.open": "Search",
|
|
502
|
+
"search.placeholder": "Search documents, flows, and tools",
|
|
503
|
+
"search.searching": "Searching…",
|
|
504
|
+
"search.title": "Search Intel",
|
|
505
|
+
"settings.appearance": "Appearance",
|
|
506
|
+
"settings.appearance.dark": "Dark",
|
|
507
|
+
"settings.appearance.light": "Light",
|
|
508
|
+
"settings.appearance.system": "Follow the system",
|
|
509
|
+
"settings.description": "Language, appearance and timezone. All three take effect immediately and are remembered on this device.",
|
|
510
|
+
"settings.language": "Language",
|
|
511
|
+
"settings.timezone": "Time zone",
|
|
512
|
+
"settings.timezone.device": "This device ({zone})",
|
|
513
|
+
"settings.timezone.hint": "Times are only READ in this zone. What is stored and sent stays UTC.",
|
|
514
|
+
"settings.title": "Preferences",
|
|
515
|
+
"shell.resizeSidebar": "Sidebar width",
|
|
516
|
+
"shell.signedInUser": "Signed-in user",
|
|
517
|
+
"shell.toggleSidebar": "Collapse or expand the sidebar",
|
|
518
|
+
"shell.userMenu": "Account and tools for {name}",
|
|
519
|
+
"shell.userUnavailable": "Account unavailable",
|
|
520
|
+
"signIn.refusedBody": "Gate signed you in, and this installation did not accept the credential. You have not been sent back to the login, because that is where the loop starts.",
|
|
521
|
+
"signIn.refusedLikely": "Most often the session expired between the two steps, or the credential was issued for a different installation. Reloading is worth one try; after that, whoever runs this installation has to look.",
|
|
522
|
+
"signIn.refusedRetry": "Try again",
|
|
523
|
+
"signIn.refusedTitle": "Signed in, but not accepted",
|
|
524
|
+
"signIn.unreachable": "Intel could not be reached. Check your connection and try again.",
|
|
525
|
+
"title.descriptionLess": "Less",
|
|
526
|
+
"title.descriptionMore": "More",
|
|
527
|
+
"tools.connectExpired": "The portal sign-in took too long",
|
|
528
|
+
"tools.connectExpiredHelp": "The connection to the company MCP portal has to be completed within a few minutes, and this one ran out while the authorization screen was open. Nothing went wrong and nothing was refused — start it again and confirm the servers when the screen appears.",
|
|
529
|
+
"tools.connectFailed": "Portal sign-in failed",
|
|
530
|
+
"tools.connectFailedHelp": "The sign-in to the company MCP portal broke before it could be answered. This is a technical fault, not a decision about your access — start it again, and tell an administrator if it stays.",
|
|
531
|
+
"tools.connectRetry": "Start again",
|
|
532
|
+
"tools.connectUnknown": "Intel does not know whether you reach the portal",
|
|
533
|
+
"tools.connectUnknownHelp": "A sign-in to the company MCP portal was started in this browser session and never came back with an answer, so nothing here says you were allowed or refused. Start it again; if it keeps ending here, tell an administrator.",
|
|
534
|
+
"tools.destructiveCount": "{count} destructive",
|
|
535
|
+
"tools.destructiveShort": "Destructive",
|
|
536
|
+
"tools.empty": "No tools available to you",
|
|
537
|
+
"tools.emptyHelp": "The portal answered, and it offers your account no tools. An administrator decides in the portal which servers exist and who may reach them.",
|
|
538
|
+
"tools.inputSchema": "Input schema",
|
|
539
|
+
"tools.liveNote": "This list is a live query with your own portal access. Intel stores neither the tools nor who may use them; the portal decides both.",
|
|
540
|
+
"tools.noAccess": "No access to the company portal",
|
|
541
|
+
"tools.noAccessHelp": "Your account is not permitted to reach the company MCP portal, so there is nothing to show here. That permission is not given in Intel — ask whoever administers the accounts of your organisation to grant it.",
|
|
542
|
+
"tools.origin": "Origin",
|
|
543
|
+
"tools.originUnlisted": "Not from a listed server",
|
|
544
|
+
"tools.originUnlistedHelp": "The portal's server list names no server for these. Its own management tools sit here — the portal does not list itself — and so does anything from a server the list did not mention.",
|
|
545
|
+
"tools.outputSchema": "Result schema",
|
|
546
|
+
"tools.signingIn": "Signing you in to the company portal…",
|
|
547
|
+
"tools.toolCount": "Tools: {count}",
|
|
548
|
+
"tools.ungrouped": "Not sorted by server",
|
|
549
|
+
"tools.ungroupedHelp": "The company MCP portal did not answer which servers these tools come from, so Intel cannot say which tool belongs where. Everything you can reach is listed below; only the grouping is missing.",
|
|
550
|
+
"tools.unreachable": "Portal not reachable",
|
|
551
|
+
"tools.unreachableHelp": "The company MCP portal did not answer, so Intel cannot tell which tools you have. Nothing is stored here; try again once the portal responds.",
|
|
552
|
+
"tree.add": "Add to {title}",
|
|
553
|
+
"tree.addRoot": "Element",
|
|
554
|
+
"tree.addRoot.long": "Add at the top level",
|
|
555
|
+
"tree.calls": "Flows called by {title}",
|
|
556
|
+
"tree.collapse": "Hide what is inside {title}",
|
|
557
|
+
"tree.collapseCalls": "Hide the flows {title} calls",
|
|
558
|
+
"tree.contents": "Inside {title}",
|
|
559
|
+
"tree.createFailed": "It could not be created. Check your access and try again.",
|
|
560
|
+
"tree.empty": "Nothing here yet.",
|
|
561
|
+
"tree.expand": "Show what is inside {title}",
|
|
562
|
+
"tree.expandCalls": "Show the flows {title} calls",
|
|
563
|
+
"tree.failed": "This part of the tree could not be loaded.",
|
|
564
|
+
"tree.importFailed": "The import was not applied. Nothing was created — check the bundle and try again.",
|
|
565
|
+
"tree.importFolderInto": "Import a folder into {where}",
|
|
566
|
+
"tree.importZipInto": "Import a zip bundle into {where}",
|
|
567
|
+
"tree.kind.attachment": "File",
|
|
568
|
+
"tree.kind.document": "Document",
|
|
569
|
+
"tree.kind.flow": "Flow",
|
|
570
|
+
"tree.kind.folder": "Folder",
|
|
571
|
+
"tree.kind.table": "Table",
|
|
572
|
+
"tree.label": "Intelligence and flows",
|
|
573
|
+
"tree.move.alreadyThere": "It is already filed here.",
|
|
574
|
+
"tree.move.dropRoot": "Drop here to move to the top level",
|
|
575
|
+
"tree.move.failed.archived": "It was not moved: that destination is archived. Restore it first.",
|
|
576
|
+
"tree.move.failed.conflict": "It was not moved: somebody else changed this entry first. The tree has been reloaded — look again, then move it.",
|
|
577
|
+
"tree.move.failed.cycle": "It was not moved: a folder cannot be put inside itself or inside anything it contains.",
|
|
578
|
+
"tree.move.failed.forbidden": "It was not moved: you may not write into that folder. Ask for write access there.",
|
|
579
|
+
"tree.move.failed.gone": "It was not moved: that folder no longer exists.",
|
|
580
|
+
"tree.move.failed.notFolder": "It was not moved: only a folder can hold other entries.",
|
|
581
|
+
"tree.move.failed.other": "It could not be moved. Check your access and try again.",
|
|
582
|
+
"tree.move.here": "Move into {title}",
|
|
583
|
+
"tree.move.noFolders": "There is no folder here to move it into.",
|
|
584
|
+
"tree.move.open": "Open {title}",
|
|
585
|
+
"tree.move.pick": "Choose the folder to move it into.",
|
|
586
|
+
"tree.move.root": "Top level",
|
|
587
|
+
"tree.move.rowHint": "Movable: drag this row onto a folder, or open it and choose Move.",
|
|
588
|
+
"tree.move.title": "Move {title}",
|
|
589
|
+
"tree.move.up": "Back to the folder above",
|
|
590
|
+
"tree.new.board": "New board",
|
|
591
|
+
"tree.new.document": "New document",
|
|
592
|
+
"tree.new.flow": "New flow",
|
|
593
|
+
"tree.new.folder": "New folder",
|
|
594
|
+
"tree.new.table": "New table",
|
|
595
|
+
"tree.table.columns": "Columns",
|
|
596
|
+
"tree.table.columnsHint": "Separate the column names with commas. They are the header, and every row appended later must match it.",
|
|
597
|
+
"tree.uploadInto": "Files to upload into {where}",
|
|
598
|
+
"view.current": "View: {name}",
|
|
599
|
+
"view.graph": "Relation graph",
|
|
600
|
+
"view.graphEmpty": "Nothing here that you may see.",
|
|
601
|
+
"view.graphFailed": "The graph could not be loaded.",
|
|
602
|
+
"view.graphTruncated": "{omitted} more left out — this view draws at most {limit}.",
|
|
603
|
+
"view.name.code": "Source",
|
|
604
|
+
"view.name.editor": "Editor",
|
|
605
|
+
"view.name.graph": "Relation graph",
|
|
606
|
+
"view.name.kanban": "Kanban",
|
|
607
|
+
"view.name.runs": "Runs",
|
|
608
|
+
"view.name.table": "Table"
|
|
609
|
+
}
|