@aceshooting/lyra-ui 16.0.0 → 18.0.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/CHANGELOG.md +758 -0
- package/README.md +2 -2
- package/custom-elements.json +1 -1
- package/dist/cli/migration-contract.json +1 -1
- package/dist/components/agent-tools/browser-frame/browser-frame.class.d.ts +3 -3
- package/dist/components/agent-tools/browser-frame/browser-frame.class.js +2 -2
- package/dist/components/agent-tools/compare-panel/compare-panel.class.d.ts +2 -2
- package/dist/components/agent-tools/compare-panel/compare-panel.class.js +3 -3
- package/dist/components/agent-tools/confirm-bar/confirm-bar.class.d.ts +37 -13
- package/dist/components/agent-tools/confirm-bar/confirm-bar.class.js +2 -2
- package/dist/components/agent-tools/task-list/task-list.class.js +2 -2
- package/dist/components/agent-tools/tool-call-chip/tool-call-chip.class.d.ts +4 -0
- package/dist/components/agent-tools/tool-call-chip/tool-call-chip.class.js +2 -2
- package/dist/components/agent-tools/tool-param-form/tool-param-form.class.d.ts +3 -3
- package/dist/components/agent-tools/tool-param-form/tool-param-form.class.js +1 -1
- package/dist/components/charts/chart/chart.class.d.ts +117 -17
- package/dist/components/charts/chart/chart.class.js +3 -3
- package/dist/components/charts/chart/histogram-bin.d.ts +5 -1
- package/dist/components/charts/chart/histogram-bin.js +1 -1
- package/dist/components/charts/chart/lite-chart.class.d.ts +9 -0
- package/dist/components/conversation/code-block/code-block.styles.js +1 -1
- package/dist/components/conversation/message-actions/message-actions.styles.js +1 -1
- package/dist/components/conversation/model-select/model-select.class.d.ts +13 -4
- package/dist/components/conversation/model-select/model-select.class.js +2 -1
- package/dist/components/conversation/model-select/model-select.styles.js +1 -1
- package/dist/components/conversation/streaming-text/streaming-text-base.class.d.ts +40 -2
- package/dist/components/conversation/streaming-text/streaming-text-base.class.js +2 -2
- package/dist/components/conversation/streaming-text/streaming-text-core.class.d.ts +27 -3
- package/dist/components/conversation/streaming-text/streaming-text-core.class.js +11 -0
- package/dist/components/conversation/streaming-text/streaming-text.class.d.ts +31 -3
- package/dist/components/conversation/streaming-text/streaming-text.class.js +11 -0
- package/dist/components/conversation/suggestion-chips/suggestion-chips.class.d.ts +30 -2
- package/dist/components/conversation/suggestion-chips/suggestion-chips.class.js +4 -3
- package/dist/components/conversation/suggestion-chips/suggestion-chips.styles.js +1 -1
- package/dist/components/conversation/thread-list/thread-list.class.js +1 -1
- package/dist/components/conversation/transcript-feed/transcript-feed.class.js +1 -1
- package/dist/components/conversation/usage-badge/usage-badge-overlay-runtime.js +1 -1
- package/dist/components/conversation/usage-badge/usage-badge.class.d.ts +4 -0
- package/dist/components/conversation/voice-picker/voice-picker.class.d.ts +16 -4
- package/dist/components/conversation/voice-picker/voice-picker.class.js +2 -1
- package/dist/components/conversation/voice-picker/voice-picker.styles.js +1 -1
- package/dist/components/data/context-meter/context-meter.class.d.ts +23 -4
- package/dist/components/data/context-meter/context-meter.class.js +10 -7
- package/dist/components/data/context-meter/context-meter.styles.js +1 -1
- package/dist/components/data/data-grid/data-grid.class.d.ts +5 -2
- package/dist/components/data/data-grid/data-grid.class.js +1 -1
- package/dist/components/data/flow-canvas/flow-canvas.class.d.ts +32 -5
- package/dist/components/data/flow-canvas/flow-canvas.class.js +3 -1
- package/dist/components/data/flow-canvas/flow-canvas.styles.js +1 -1
- package/dist/components/data/flow-canvas/flow-model.js +1 -1
- package/dist/components/data/flow-canvas/flow-types.d.ts +10 -1
- package/dist/components/data/gauge/gauge.class.d.ts +15 -2
- package/dist/components/data/gauge/gauge.class.js +20 -20
- package/dist/components/data/gauge/gauge.styles.js +1 -1
- package/dist/components/data/graph-query-builder/graph-query-builder.class.d.ts +14 -5
- package/dist/components/data/graph-query-builder/graph-query-builder.class.js +2 -2
- package/dist/components/data/sequence-strip/sequence-strip.class.d.ts +28 -2
- package/dist/components/data/sequence-strip/sequence-strip.class.js +3 -2
- package/dist/components/data/sequence-strip/sequence-strip.styles.js +1 -1
- package/dist/components/data/table/table.class.d.ts +155 -30
- package/dist/components/data/table/table.class.js +6 -4
- package/dist/components/data/table/table.styles.js +1 -1
- package/dist/components/data/timeline/timeline-item.class.d.ts +9 -1
- package/dist/components/data/timeline/timeline-item.class.js +2 -2
- package/dist/components/data/word-cloud/word-cloud.class.js +1 -1
- package/dist/components/data/word-cloud/word-cloud.styles.js +1 -1
- package/dist/components/forms/button/button.class.d.ts +30 -1
- package/dist/components/forms/button/button.class.js +2 -2
- package/dist/components/forms/checkbox/checkbox.class.d.ts +8 -6
- package/dist/components/forms/checkbox/checkbox.class.js +2 -2
- package/dist/components/forms/checkbox-group/checkbox-group.class.d.ts +7 -5
- package/dist/components/forms/checkbox-group/checkbox-group.class.js +1 -1
- package/dist/components/forms/color-picker/color-picker.class.d.ts +16 -2
- package/dist/components/forms/color-picker/color-picker.class.js +2 -2
- package/dist/components/forms/color-picker/color-picker.styles.js +1 -1
- package/dist/components/forms/combobox/combobox.class.d.ts +52 -7
- package/dist/components/forms/combobox/combobox.class.js +2 -2
- package/dist/components/forms/combobox/combobox.styles.js +1 -1
- package/dist/components/forms/date-picker/date-input.class.d.ts +4 -0
- package/dist/components/forms/date-picker/date-input.class.js +1 -1
- package/dist/components/forms/icon-button/icon-button.class.d.ts +20 -3
- package/dist/components/forms/icon-button/icon-button.class.js +1 -1
- package/dist/components/forms/icon-button/icon-button.styles.js +1 -1
- package/dist/components/forms/input/input.class.d.ts +5 -2
- package/dist/components/forms/input/input.class.js +1 -1
- package/dist/components/forms/input/time-input.class.d.ts +4 -0
- package/dist/components/forms/input/time-input.class.js +1 -1
- package/dist/components/forms/locale-picker/locale-picker.class.d.ts +11 -5
- package/dist/components/forms/locale-picker/locale-picker.class.js +1 -1
- package/dist/components/forms/otp-input/otp-input.class.d.ts +7 -2
- package/dist/components/forms/otp-input/otp-input.class.js +2 -2
- package/dist/components/forms/radio/radio-button.class.d.ts +2 -1
- package/dist/components/forms/radio/radio-group.class.d.ts +9 -4
- package/dist/components/forms/radio/radio-group.class.js +1 -1
- package/dist/components/forms/radio/radio.class.d.ts +13 -7
- package/dist/components/forms/radio/radio.class.js +1 -1
- package/dist/components/forms/rubric-form/rubric-form.class.d.ts +16 -6
- package/dist/components/forms/rubric-form/rubric-form.class.js +2 -2
- package/dist/components/forms/select/select.class.d.ts +50 -13
- package/dist/components/forms/select/select.class.js +2 -2
- package/dist/components/forms/slider/slider.class.d.ts +4 -2
- package/dist/components/forms/slider/slider.class.js +1 -1
- package/dist/components/forms/switch/switch.class.d.ts +8 -6
- package/dist/components/forms/switch/switch.class.js +1 -1
- package/dist/components/forms/textarea/textarea.class.d.ts +5 -3
- package/dist/components/forms/textarea/textarea.class.js +1 -1
- package/dist/components/forms/time-range/time-range.class.d.ts +12 -7
- package/dist/components/forms/time-range/time-range.class.js +1 -1
- package/dist/components/forms/time-range/time-range.styles.js +1 -1
- package/dist/components/forms/token-input/token-input.class.d.ts +6 -4
- package/dist/components/forms/token-input/token-input.class.js +1 -1
- package/dist/components/layout/app-rail/app-rail-item.class.d.ts +109 -4
- package/dist/components/layout/app-rail/app-rail-item.class.js +34 -29
- package/dist/components/layout/app-rail/app-rail-item.styles.js +1 -1
- package/dist/components/layout/app-rail/app-rail.class.d.ts +25 -3
- package/dist/components/layout/app-rail/app-rail.styles.js +1 -1
- package/dist/components/layout/app-rail-group/app-rail-group.class.d.ts +2 -2
- package/dist/components/layout/app-rail-group/app-rail-group.class.js +2 -2
- package/dist/components/layout/carousel/carousel.class.d.ts +1 -1
- package/dist/components/layout/carousel/carousel.class.js +1 -1
- package/dist/components/layout/details/accordion.class.d.ts +2 -2
- package/dist/components/layout/details/accordion.class.js +2 -2
- package/dist/components/layout/filter-bar/filter-bar-register.d.ts +1 -0
- package/dist/components/layout/filter-bar/filter-bar-register.js +1 -0
- package/dist/components/layout/filter-bar/filter-bar.class.d.ts +153 -16
- package/dist/components/layout/filter-bar/filter-bar.class.js +8 -5
- package/dist/components/layout/menu/menu-item.class.d.ts +3 -3
- package/dist/components/layout/menu/menu-item.class.js +3 -3
- package/dist/components/layout/menu/menu.class.d.ts +5 -1
- package/dist/components/layout/menu/menu.class.js +2 -2
- package/dist/components/layout/reorder-list/reorder-item.styles.js +1 -1
- package/dist/components/layout/reorder-list/reorder-list.class.js +1 -1
- package/dist/components/layout/virtual-list/virtual-list.class.d.ts +107 -2
- package/dist/components/layout/virtual-list/virtual-list.class.js +12 -7
- package/dist/components/media/attachment-trigger/attachment-trigger.styles.js +1 -1
- package/dist/components/media/avatar-group/avatar-group.class.d.ts +12 -1
- package/dist/components/media/avatar-group/avatar-group.class.js +2 -2
- package/dist/components/media/drop-zone/drop-zone.class.d.ts +32 -11
- package/dist/components/media/drop-zone/drop-zone.class.js +2 -2
- package/dist/components/media/file-input/file-input.class.d.ts +40 -19
- package/dist/components/media/file-input/file-input.class.js +2 -2
- package/dist/components/media/map/map.class.d.ts +138 -12
- package/dist/components/media/map/map.class.js +25 -20
- package/dist/components/media/map/map.styles.js +1 -1
- package/dist/components/overlays/callout/callout.styles.js +1 -1
- package/dist/components/overlays/dialog/dialog.styles.js +1 -1
- package/dist/components/overlays/overlay/dropdown.class.d.ts +13 -3
- package/dist/components/overlays/overlay/dropdown.class.js +2 -2
- package/dist/components/overlays/overlay/popover.class.d.ts +12 -3
- package/dist/components/overlays/overlay/popover.class.js +2 -2
- package/dist/components/overlays/rating/rating.class.d.ts +9 -7
- package/dist/components/overlays/rating/rating.class.js +1 -1
- package/dist/components/retrieval/citation-badge/citation-badge.class.d.ts +5 -1
- package/dist/components/retrieval/citation-badge/citation-badge.class.js +1 -1
- package/dist/components/retrieval/embedding-explorer/embedding-explorer.styles.js +1 -1
- package/dist/components/retrieval/entity-chip/entity-chip.class.d.ts +5 -1
- package/dist/components/retrieval/entity-chip/entity-chip.class.js +1 -1
- package/dist/components/retrieval/graph-legend/graph-legend.styles.js +1 -1
- package/dist/components/retrieval/retrieval-value-format.js +1 -1
- package/dist/components/retrieval/source-list/source-list.styles.js +1 -1
- package/dist/components/utility/copy-button/copy-button.class.d.ts +23 -11
- package/dist/components/utility/copy-button/copy-button.class.js +2 -2
- package/dist/components/utility/copy-button/copy-button.styles.js +1 -1
- package/dist/components/utility/diff-view/diff-view.styles.js +1 -1
- package/dist/components/utility/export-button/export-button.class.d.ts +4 -0
- package/dist/components/utility/export-button/export-button.class.js +1 -1
- package/dist/components/utility/json-viewer/json-viewer.styles.js +1 -1
- package/dist/components/utility/known-date/known-date.class.js +1 -1
- package/dist/components/utility/mention-popover/mention-popover.class.d.ts +38 -3
- package/dist/components/utility/mention-popover/mention-popover.class.js +2 -1
- package/dist/components/utility/mention-popover/mention-popover.styles.js +1 -1
- package/dist/components/utility/poll-status/poll-status.styles.js +1 -1
- package/dist/components/utility/tour/tour.class.d.ts +4 -0
- package/dist/components/utility/tour/tour.class.js +1 -1
- package/dist/components/utility/tour/tour.styles.js +1 -1
- package/dist/components/viewers/document-preview/document-preview.class.js +2 -2
- package/dist/components/viewers/docx-viewer/docx-viewer.class.js +2 -2
- package/dist/components/viewers/ebook-viewer/ebook-viewer.class.js +2 -2
- package/dist/components/viewers/highlight-layer/highlight-layer.class.js +2 -2
- package/dist/components/viewers/notebook-viewer/notebook-viewer.class.js +2 -2
- package/dist/components/viewers/pdf-viewer/pdf-viewer.class.js +2 -2
- package/dist/components/viewers/pptx-viewer/pptx-viewer.class.js +2 -2
- package/dist/components/viewers/xml-viewer/xml-viewer.class.js +2 -2
- package/dist/custom-elements-jsx.d.ts +2 -2
- package/dist/events.d.ts +20 -13
- package/dist/internal/aggregate-file-limits.d.ts +33 -0
- package/dist/internal/aggregate-file-limits.js +1 -0
- package/dist/internal/catalog-picker.d.ts +15 -2
- package/dist/internal/catalog-picker.js +1 -1
- package/dist/internal/debounce-controller.d.ts +14 -0
- package/dist/internal/debounce-controller.js +1 -1
- package/dist/internal/default-strings.generated.d.ts +1 -1
- package/dist/internal/default-strings.generated.js +2 -2
- package/dist/internal/focus-navigation.d.ts +45 -0
- package/dist/internal/focus-navigation.js +1 -1
- package/dist/internal/form-associated.js +1 -1
- package/dist/internal/initial-slot-collection.d.ts +30 -0
- package/dist/internal/initial-slot-collection.js +1 -0
- package/dist/internal/intl-cache.js +1 -1
- package/dist/internal/invalid-event-alias.d.ts +46 -0
- package/dist/internal/invalid-event-alias.js +1 -1
- package/dist/internal/localization-runtime.d.ts +24 -0
- package/dist/internal/localization-runtime.js +1 -1
- package/dist/internal/localization-types.d.ts +1 -1
- package/dist/internal/localization.js +1 -1
- package/dist/internal/package-metadata.d.ts +1 -1
- package/dist/internal/package-metadata.js +1 -1
- package/dist/internal/positioning-strategy.d.ts +3 -1
- package/dist/internal/state-part.d.ts +49 -0
- package/dist/internal/state-part.js +1 -0
- package/dist/internal/variants.styles.js +1 -1
- package/dist/lyra.d.ts +1 -1
- package/dist/lyra.js +1 -1
- package/dist/svelte.d.ts +2 -2
- package/dist/testing/index.d.ts +1 -1
- package/dist/testing/index.js +1 -1
- package/dist/testing/lyra-tag-event-map.d.ts +2 -2
- package/dist/testing/lyra-tag-event-map.js +1 -1
- package/dist/testing/wait-for-mount.d.ts +46 -0
- package/dist/testing/wait-for-mount.js +1 -0
- package/dist/theme/theme-bootstrap.js +1 -1
- package/dist/theme/theme.d.ts +11 -2
- package/dist/theme/theme.js +1 -1
- package/dist/translations/ar/layout.js +1 -1
- package/dist/translations/ar/retrieval.js +1 -1
- package/dist/translations/ar/shared.js +1 -1
- package/dist/translations/de/layout.js +1 -1
- package/dist/translations/de/retrieval.js +1 -1
- package/dist/translations/de/shared.js +1 -1
- package/dist/translations/es/layout.js +1 -1
- package/dist/translations/es/retrieval.js +1 -1
- package/dist/translations/es/shared.js +1 -1
- package/dist/translations/fa/layout.js +1 -1
- package/dist/translations/fa/retrieval.js +1 -1
- package/dist/translations/fa/shared.js +1 -1
- package/dist/translations/fr/layout.js +1 -1
- package/dist/translations/fr/retrieval.js +1 -1
- package/dist/translations/fr/shared.js +1 -1
- package/dist/translations/he/layout.js +1 -1
- package/dist/translations/he/retrieval.js +1 -1
- package/dist/translations/he/shared.js +1 -1
- package/dist/translations/it/layout.js +1 -1
- package/dist/translations/it/retrieval.js +1 -1
- package/dist/translations/it/shared.js +1 -1
- package/dist/translations/ja/layout.js +1 -1
- package/dist/translations/ja/retrieval.js +1 -1
- package/dist/translations/ja/shared.js +1 -1
- package/dist/translations/pt-BR/layout.js +1 -1
- package/dist/translations/pt-BR/retrieval.js +1 -1
- package/dist/translations/pt-BR/shared.js +1 -1
- package/dist/translations/ro/agent-tools.d.ts +1 -0
- package/dist/translations/ro/agent-tools.js +1 -0
- package/dist/translations/ro/charts.d.ts +1 -0
- package/dist/translations/ro/charts.js +1 -0
- package/dist/translations/ro/conversation.d.ts +1 -0
- package/dist/translations/ro/conversation.js +1 -0
- package/dist/translations/ro/data.d.ts +1 -0
- package/dist/translations/ro/data.js +1 -0
- package/dist/translations/ro/forms.d.ts +1 -0
- package/dist/translations/ro/forms.js +1 -0
- package/dist/translations/ro/layout.d.ts +1 -0
- package/dist/translations/ro/layout.js +1 -0
- package/dist/translations/ro/media.d.ts +1 -0
- package/dist/translations/ro/media.js +1 -0
- package/dist/translations/ro/overlays.d.ts +1 -0
- package/dist/translations/ro/overlays.js +1 -0
- package/dist/translations/ro/retrieval.d.ts +1 -0
- package/dist/translations/ro/retrieval.js +1 -0
- package/dist/translations/ro/shared.d.ts +1 -0
- package/dist/translations/ro/shared.js +1 -0
- package/dist/translations/ro/utility.d.ts +1 -0
- package/dist/translations/ro/utility.js +1 -0
- package/dist/translations/ro/viewers.d.ts +1 -0
- package/dist/translations/ro/viewers.js +5 -0
- package/dist/translations/ro.d.ts +1 -0
- package/dist/translations/ro.js +1 -0
- package/dist/translations/ru/layout.js +1 -1
- package/dist/translations/ru/retrieval.js +1 -1
- package/dist/translations/ru/shared.js +1 -1
- package/dist/translations/zh-CN/layout.js +1 -1
- package/dist/translations/zh-CN/retrieval.js +1 -1
- package/dist/translations/zh-CN/shared.js +1 -1
- package/dist/utilities/format.d.ts +17 -0
- package/dist/utilities/format.js +1 -1
- package/dist/vue.d.ts +2 -2
- package/llms/components/lr-app-rail-group.md +87 -10
- package/llms/components/lr-app-rail-item.md +88 -11
- package/llms/components/lr-app-rail.md +88 -11
- package/llms/components/lr-attachment-trigger.md +21 -0
- package/llms/components/lr-bar-chart.md +3 -2
- package/llms/components/lr-bubble-chart.md +3 -2
- package/llms/components/lr-button.md +5 -4
- package/llms/components/lr-callout.md +10 -0
- package/llms/components/lr-card.md +2 -1
- package/llms/components/lr-chart.md +43 -12
- package/llms/components/lr-citation-badge.md +7 -1
- package/llms/components/lr-code-block.md +21 -0
- package/llms/components/lr-color-picker.md +12 -7
- package/llms/components/lr-combobox.md +20 -1
- package/llms/components/lr-confirm-bar.md +36 -7
- package/llms/components/lr-context-meter.md +17 -4
- package/llms/components/lr-date-input.md +7 -1
- package/llms/components/lr-date-picker.md +6 -0
- package/llms/components/lr-dialog.md +21 -0
- package/llms/components/lr-doughnut-chart.md +3 -2
- package/llms/components/lr-drawer.md +10 -0
- package/llms/components/lr-drop-zone.md +16 -7
- package/llms/components/lr-dropdown-item.md +7 -0
- package/llms/components/lr-entity-chip.md +7 -1
- package/llms/components/lr-export-button.md +7 -1
- package/llms/components/lr-file-input.md +21 -10
- package/llms/components/lr-filter-bar.md +177 -18
- package/llms/components/lr-flow-canvas.md +16 -9
- package/llms/components/lr-gauge.md +22 -2
- package/llms/components/lr-histogram.md +7 -2
- package/llms/components/lr-icon-button.md +17 -8
- package/llms/components/lr-input.md +3 -1
- package/llms/components/lr-line-chart.md +3 -2
- package/llms/components/lr-lite-chart.md +13 -0
- package/llms/components/lr-locale-picker.md +7 -1
- package/llms/components/lr-map.md +63 -6
- package/llms/components/lr-mention-popover.md +16 -3
- package/llms/components/lr-menu-item.md +7 -0
- package/llms/components/lr-menu.md +8 -1
- package/llms/components/lr-message-actions.md +10 -0
- package/llms/components/lr-model-select.md +8 -3
- package/llms/components/lr-native-time-input.md +8 -1
- package/llms/components/lr-number-input.md +8 -1
- package/llms/components/lr-option.md +19 -0
- package/llms/components/lr-otp-input.md +6 -0
- package/llms/components/lr-pie-chart.md +3 -2
- package/llms/components/lr-polar-area-chart.md +3 -2
- package/llms/components/lr-prompt-input.md +2 -2
- package/llms/components/lr-radar-chart.md +3 -2
- package/llms/components/lr-reorder-item.md +12 -0
- package/llms/components/lr-reorder-list.md +12 -0
- package/llms/components/lr-scatter-chart.md +3 -2
- package/llms/components/lr-select.md +19 -2
- package/llms/components/lr-sequence-strip.md +10 -4
- package/llms/components/lr-streaming-text-core.md +28 -11
- package/llms/components/lr-streaming-text.md +41 -6
- package/llms/components/lr-suggestion-chips.md +8 -4
- package/llms/components/lr-table.md +47 -10
- package/llms/components/lr-textarea.md +1 -1
- package/llms/components/lr-time-input.md +7 -1
- package/llms/components/lr-tool-call-chip.md +7 -1
- package/llms/components/lr-tour.md +7 -1
- package/llms/components/lr-usage-badge.md +7 -1
- package/llms/components/lr-virtual-list.md +53 -0
- package/llms/components/lr-voice-picker.md +7 -3
- package/llms/shared.md +175 -19
- package/llms/tokens.md +17 -1
- package/llms-full.txt +1214 -169
- package/package.json +43 -3
- package/registrations.json +1 -1
- package/vscode-css-data.json +1 -1
- package/vscode-html-data.json +1 -1
- package/web-types.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
import{registerLyraLocale}from"../../internal/localization-runtime.js";const strings={graphLegendLabel:"Graph-Legende",
|
|
1
|
+
import{registerLyraLocale}from"../../internal/localization-runtime.js";const strings={graphLegendLabel:"Graph-Legende",entityChipWithType:"{label}, {type}",showMore:"Mehr anzeigen",untitledSource:"Unbenannte Quelle",sourcePageSuffix:"{base} — S. {page}",citationHighConfidence:"Hohe Konfidenz",citationMediumConfidence:"Mittlere Konfidenz",citationLowConfidence:"Geringe Konfidenz",citationVerified:"Verifiziert",citationUnverified:"Nicht verifiziert",graphDataList:"Graphdaten",graphItemAnnouncement:"{item} ({index} von {total})",citation:"Quellenangabe {index}",citationWithStatus:"Quellenangabe {index}, {status}",citationWithCustomLabel:"Quellenangabe {index}, {label}",graphNode:"Knoten {label}",graphLink:"Verbindung von {source} zu {target}",graphDiagram:"Knoten-Kanten-Diagramm mit {nodeCount} Knoten und {linkCount} Verbindungen",graphTypedNode:"{label} ({type})",graphExpandableItem:"{item}, ausklappbar",graphNodeFocused:"Zentriert auf {label}",graphSelectionCount:"{count} ausgewählt",graphNodesHidden:"{hidden} von {total} Knoten ausgeblendet",graphCommunity:"Community {label}, {count} Knoten",ragAnswerLabel:"Fundierte Antwort",ragAnswerCitations:"Quellenangaben",ragAnswerSources:"Quellen",ragAnswerRetry:"Antwort erneut generieren",embeddingExplorerLabel:"Embedding-Explorer",embeddingExplorerEmpty:"Keine Embedding-Punkte",embeddingExplorerPoint:"{label}, Embedding-Punkt {index}",knowledgeBaseAdminLabel:"Verwaltung der Wissensdatenbank",knowledgeBaseAdminSourcesTab:"Quellen",knowledgeBaseAdminIngestionTab:"Erfassung",graphMissingLibrary:"Für diese Komponente muss das optionale Paket „d3“ installiert sein, um den Graphen darzustellen.",mindMapLabel:"Mindmap",mindMapTopicStatus:"{label}, Ebene {level}, {count} Unterthemen",mindMapLeafStatus:"{label}, Ebene {level}",mindMapExpanded:"{label} ausgeklappt",mindMapCollapsed:"{label} eingeklappt",entityDegree:"Verbindungen",entityCommunity:"Community",focusInGraph:"Im Graphen fokussieren",untitledEntity:"Unbenannte Entität",untitledCommunity:"Unbenannte Community",communityMemberCount:"{count} Mitglieder",communityDrillIn:"Community erkunden",selectAllSources:"Alle Quellen auswählen",sourcePickerSelection:"{selected} von {total} ausgewählt",provenancePanelLabel:"Fundierung",provenanceRelationships:"Beziehungen",provenanceCommunities:"Communities",provenanceChunks:"Textabschnitte",provenanceEmpty:"Keine Fundierungsdaten für diese Antwort",chunkInspectorLabel:"Abgerufene Abschnitte",chunkScore:"Relevanz {percent} %",scoreTierHigh:"Hohe Relevanz",scoreTierMedium:"Mittlere Relevanz",scoreTierLow:"Geringe Relevanz",chunkInspectorEmpty:"Keine Abschnitte abgerufen",nodePaletteLabel:"Knotenpalette",nodePalettePlaceholder:"Knoten suchen…",nodePaletteEmpty:"Keine passenden Knoten.",nodePaletteDragHint:"Auf die Arbeitsfläche ziehen oder mit der Eingabetaste platzieren",nodePaletteResultCount:{one:"{count} Element",other:"{count} Elemente"},retrievalResultsSelectRow:"{label} auswählen",pathStripLabel:"Pfad",pathNodeStatus:"{label}, Knoten {position} von {total}",pathRelationStatus:"{relation}, Beziehung",neighborListLabel:"Beziehungen",neighborRowLabel:"{label}, {relation}, {direction}",neighborExpand:"{label} im Graphen ausklappen",neighborListEmpty:"Keine Beziehungen",neighborGroupHeader:"{relation} ({count})",memoryPanelLabel:"Gedächtnis",memoryPanelShortTermHeading:"Kurzzeitkontext",memoryPanelLongTermHeading:"Langzeitgedächtnis",memoryPanelAdd:"Zum Langzeitgedächtnis hinzufügen",memoryPanelAddWithContext:"„{label}“ zum Langzeitgedächtnis hinzufügen",memoryPanelForgetAll:"Alles vergessen",memoryPanelConfirmAddHeading:"Dies zum Langzeitgedächtnis hinzufügen?",memoryPanelConfirmRemoveHeading:"Dieses Element entfernen?",memoryPanelConfirmForgetHeading:"Das gesamte Langzeitgedächtnis vergessen?",memoryPanelConfirmForgetBody:"Dadurch werden alle {count} Langzeit-Erinnerungen dauerhaft vergessen.",graphExplorerLabel:"Wissensgraph-Explorer",graphExplorerSearchPlaceholder:"Entitäten suchen…",graphExplorerSearchResultsLabel:"Suchergebnisse",graphExplorerPin:"Anheften",graphExplorerUnpin:"Anheften aufheben",graphExplorerPinned:"{label} angeheftet",graphExplorerUnpinned:"{label} nicht mehr angeheftet",graphExplorerPinnedHeading:"Angeheftet",graphExplorerFindPath:"Pfad finden",retrievalModeVector:"Vektor",retrievalModeKeyword:"Stichwort",retrievalModeHybrid:"Hybrid",retrievalSearchLabel:"Abrufsuche",retrievalModeLabel:"Suchmodus",retrievalFiltersLabel:"Aktive Filter",groundingSummaryLabel:"Fundierungsübersicht",groundingSummaryEmpty:"Keine Fundierungsbewertung verfügbar",groundingSummarySupportedLabel:"Belegte Aussagen",groundingSummaryUnsupportedLabel:"Unbelegte Aussagen",groundingSummaryCoverageLabel:"Quellenabdeckung",groundingSummaryConfidenceLabel:"Konfidenz",groundingSummaryWarningsHeading:"Warnungen",groundingSummaryEvidenceHeading:"Belege",claimEvidenceLabel:"Belege für Aussagen",claimEvidenceEmpty:"Keine Belege auf Aussagenebene verfügbar",claimEvidenceSupported:"Belegt",claimEvidencePartiallySupported:"Teilweise belegt",claimEvidenceUnsupported:"Unbelegt",claimEvidenceContradicted:"Widerlegt",claimEvidenceConfidence:"{percent} Konfidenz",retrievalCompareLabel:"Abrufvergleich",retrievalCompareEmpty:"Keine Abrufergebnisse zum Vergleichen",retrievalCompareOverlap:"Top-k-Überschneidung zwischen {left} und {right}: {percent}",retrievalCompareRank:"Rang {rank}",retrievalCompareDenseScore:"Dense",retrievalCompareSparseScore:"Sparse",retrievalCompareRerankScore:"Rerank",retrievalCompareFinalScore:"Final",ragEvalDashboardLabel:"RAG-Evaluierungs-Dashboard",ragEvalDashboardEmpty:"Keine Evaluierungsläufe verfügbar",ragEvalDashboardRuns:"Evaluierungsläufe",ragEvalDashboardSlices:"Evaluierungssegmente",ragEvalDashboardAllSlices:"Alle",ragEvalDashboardSliceUnavailable:"Für {slice} sind keine Evaluierungsläufe verfügbar.",knowledgeBaseSyncIdle:"Inaktiv",knowledgeBaseSyncSyncing:"Wird synchronisiert",knowledgeBaseSyncPaused:"Pausiert",knowledgeBaseSyncSynced:"Synchronisiert",knowledgeBaseSyncError:"Fehler",knowledgeBaseHealthHealthy:"Fehlerfrei",knowledgeBaseHealthDegraded:"Beeinträchtigt",knowledgeBaseHealthFailed:"Fehlgeschlagen",knowledgeBaseHealthUnknown:"Unbekannt",knowledgeBasePermissionOwner:"Eigentümer",knowledgeBasePermissionEditor:"Bearbeiter",knowledgeBasePermissionViewer:"Betrachter",knowledgeBasePermissionRestricted:"Eingeschränkt",knowledgeBaseNeverSynced:"Nie synchronisiert",knowledgeBaseSyncAction:"Jetzt synchronisieren",knowledgeBasePauseAction:"Synchronisierung pausieren",knowledgeBaseDeleteAction:"Quelle löschen",knowledgeBaseNameColumn:"Quelle",knowledgeBaseSyncColumn:"Synchronisierungsstatus",knowledgeBaseHealthColumn:"Indexierungszustand",knowledgeBasePermissionColumn:"Berechtigung",knowledgeBaseActionsColumn:"Aktionen",knowledgeBaseTotalSources:"Quellen",knowledgeBaseSyncedSources:"Synchronisiert",knowledgeBaseSyncingSources:"In Synchronisierung",knowledgeBaseNeedsAttention:"Benötigt Aufmerksamkeit",knowledgeBaseHeading:"Wissensdatenbank",knowledgeBaseCreateSource:"Quelle hinzufügen",knowledgeBaseEmptyHeading:"Noch keine Wissensquellen",ingestionStageQueued:"In Warteschlange",ingestionStageUploading:"Wird hochgeladen",ingestionStageExtracting:"Text wird extrahiert",ingestionStageChunking:"Wird in Abschnitte geteilt",ingestionStageEmbedding:"Wird eingebettet",ingestionStageIndexing:"Wird indexiert",ingestionStageDone:"Fertig",ingestionStageFailed:"Fehlgeschlagen",ingestionStageCancelled:"Abgebrochen",ingestionStageUnknown:"Unbekannte Phase",ingestionQueueLabel:"Erfassungs-Warteschlange",ingestionQueueEmpty:"Keine Dokumente in der Warteschlange",retrievalFilterChipLabel:"{key}: {value}",retrievalSearchEmptyDescription:"Versuchen Sie einen anderen Suchbegriff oder andere Filter.",groundingSummaryEvidenceSpan:"Zeichen {start}–{end}",knowledgeBaseDocumentCount:"{count} indexiert",knowledgeBaseRowActionsLabel:"Aktionen für {name}",knowledgeBaseEmptyDescription:"Fügen Sie eine Quelle hinzu, um Inhalte zu indexieren.",ingestionChunkCount:{one:"{count} Abschnitt",other:"{count} Abschnitte"},ingestionItemProgressLabel:"{name} — {stage}",ingestionEmbeddedOfTotal:"{embedded} von {total} Abschnitten eingebettet",ingestionAttemptCount:"Versuch {count}",ingestionRetryWithContext:"{label} erneut versuchen",ingestionCancelWithContext:"{label} abbrechen",retrievalStageQueryRewrite:"Anfrage-Umschreibung",retrievalStageEmbed:"Einbettung",retrievalStageRetrieve:"Abruf",retrievalStageRerank:"Rerank",retrievalStageFilter:"Filter",retrievalTraceEvidenceToggle:"Belege zu {label}"};registerLyraLocale("de",strings);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{registerLyraLocale}from"../../internal/localization-runtime.js";const strings={noData:"Keine Daten",jumpToLatest:"Zum Neuesten springen",loadMore:"Mehr laden",viewerSearchMatchCount:{one:"{count} Treffer",other:"{count} Treffer"},viewerSearchNoMatches:"Keine Treffer",viewerSearchActiveMatch:"Treffer {current} von {total}",tableLoadFailed:"Daten konnten nicht geladen werden",zoomOut:"Verkleinern",zoomIn:"Vergrößern",clear:"Löschen",open:"Öffnen",close:"Schließen",resizeValuePixels:"{value} Pixel",copy:"Kopieren",copied:"Kopiert!",expand:"Ausklappen",collapse:"Einklappen",showMoreCount:"{count} weitere anzeigen",showLess:"Weniger anzeigen",retry:"Erneut versuchen",remove:"Entfernen",removeWithContext:"{label} entfernen",loading:"Wird geladen…",noMatches:"Keine Treffer",previous:"Zurück",next:"Weiter",paginationLabel:"Seitennavigation",paginationSummary:"{start}–{end} von {total} {itemLabel}",cancel:"Abbrechen",search:"Suchen",items:"Elemente",item:"Element",notInCatalog:"nicht im Katalog",fileSizeUnitB:"B",fileSizeUnitKb:"KB",fileSizeUnitMb:"MB",fileSizeUnitGb:"GB",fileSizeUnitTb:"TB",resetZoom:"Zoom zurücksetzen",showMoreCollapsed:"+{count}",statusPending:"Ausstehend",statusRunning:"Läuft",statusSuccess:"Erfolgreich",statusError:"Fehler",statusDenied:"Abgelehnt",restore:"Wiederherstellen",navigation:"Navigation",attachmentUntitledFile:"Unbenannte Datei",chart:"Diagramm",chartValueLabel:"{label}: {value}",date:"Datum",dateInputMinMessage:"Das Datum muss am oder nach {min} liegen.",dateInputMaxMessage:"Das Datum muss am oder vor {max} liegen.",dateInputInvalid:"Bitte geben Sie ein gültiges Datum ein.",documentPreviewEmpty:"{type} nicht vorhanden.",documentPreviewTypeImage:"Bild",download:"Herunterladen",progress:"Fortschritt",popover:"Popover",details:"Details",map:"Karte",select:"Auswählen",sourceListDefaultLabel:"Quellen",thinkingPanelLabel:"Denkprozess",handoffToAgent:"An {agent} übergeben",handoffFromToAgent:"Von {from} an {to} übergeben",thinking:"Denkt nach…",deny:"Ablehnen",approve:"Genehmigen",fieldRequired:"Dieses Feld ist erforderlich.",unsupportedFieldType:"Nicht unterstützter Feldtyp „{type}“.",valueInvalid:"Der Wert ist ungültig.",copyFailed:"Kopieren fehlgeschlagen",durationMilliseconds:"{value} ms",durationSeconds:"{value} s",menuLabel:"Menü",pdfViewerCurrentZoom:"{percent} %",anchorJumped:"Zur hervorgehobenen Passage gesprungen.",anchorJumpedToPage:"Zu Seite {page} gesprungen.",anchorNotFound:"Die Passage wurde in diesem Dokument nicht gefunden.",highlightWithLabel:"Hervorhebung: {label}",tokensIn:"Eingabe-Token",tokensOut:"Ausgabe-Token",comparePanel:"Vergleich",treeNodeMoved:"{label} an Position {index} von {total} verschoben",gitStatusAdded:"Hinzugefügt",gitStatusModified:"Geändert",gitStatusDeleted:"Gelöscht",gitStatusRenamed:"Umbenannt",gitStatusUntracked:"Nicht verfolgt",gitStatusConflicted:"Konflikt",gitStatusIgnored:"Ignoriert",envListValueHidden:"Wert ausgeblendet",provenanceEntities:"Entitäten",flowItemAnnouncement:"{item} ({index} von {total})",neighborDirectionIn:"Eingehend",neighborDirectionOut:"Ausgehend",neighborDirectionBoth:"Bidirektional",promptStudioRoleSystem:"System",promptStudioRoleUser:"Benutzer",promptStudioRoleAssistant:"Assistent",moveUp:"Nach oben verschieben",moveDown:"Nach unten verschieben",reorderItemMoved:"An Position {index} von {total} verschoben"};registerLyraLocale("de",strings);
|
|
1
|
+
import{registerLyraLocale}from"../../internal/localization-runtime.js";const strings={noData:"Keine Daten",legendTypeShown:"{label} eingeblendet",legendTypeHidden:"{label} ausgeblendet",jumpToLatest:"Zum Neuesten springen",loadMore:"Mehr laden",viewerSearchMatchCount:{one:"{count} Treffer",other:"{count} Treffer"},viewerSearchNoMatches:"Keine Treffer",viewerSearchActiveMatch:"Treffer {current} von {total}",tableLoadFailed:"Daten konnten nicht geladen werden",zoomOut:"Verkleinern",zoomIn:"Vergrößern",clear:"Löschen",open:"Öffnen",close:"Schließen",resizeValuePixels:"{value} Pixel",copy:"Kopieren",copied:"Kopiert!",expand:"Ausklappen",collapse:"Einklappen",showMoreCount:"{count} weitere anzeigen",showLess:"Weniger anzeigen",retry:"Erneut versuchen",remove:"Entfernen",removeWithContext:"{label} entfernen",loading:"Wird geladen…",noMatches:"Keine Treffer",previous:"Zurück",next:"Weiter",paginationLabel:"Seitennavigation",paginationSummary:"{start}–{end} von {total} {itemLabel}",cancel:"Abbrechen",search:"Suchen",items:"Elemente",item:"Element",notInCatalog:"nicht im Katalog",fileSizeUnitB:"B",fileSizeUnitKb:"KB",fileSizeUnitMb:"MB",fileSizeUnitGb:"GB",fileSizeUnitTb:"TB",resetZoom:"Zoom zurücksetzen",showMoreCollapsed:"+{count}",statusPending:"Ausstehend",statusRunning:"Läuft",statusSuccess:"Erfolgreich",statusError:"Fehler",statusDenied:"Abgelehnt",restore:"Wiederherstellen",navigation:"Navigation",attachmentUntitledFile:"Unbenannte Datei",chart:"Diagramm",chartValueLabel:"{label}: {value}",date:"Datum",dateInputMinMessage:"Das Datum muss am oder nach {min} liegen.",dateInputMaxMessage:"Das Datum muss am oder vor {max} liegen.",dateInputInvalid:"Bitte geben Sie ein gültiges Datum ein.",documentPreviewEmpty:"{type} nicht vorhanden.",documentPreviewTypeImage:"Bild",download:"Herunterladen",progress:"Fortschritt",popover:"Popover",details:"Details",map:"Karte",select:"Auswählen",sourceListDefaultLabel:"Quellen",thinkingPanelLabel:"Denkprozess",handoffToAgent:"An {agent} übergeben",handoffFromToAgent:"Von {from} an {to} übergeben",thinking:"Denkt nach…",deny:"Ablehnen",approve:"Genehmigen",fieldRequired:"Dieses Feld ist erforderlich.",unsupportedFieldType:"Nicht unterstützter Feldtyp „{type}“.",valueInvalid:"Der Wert ist ungültig.",copyFailed:"Kopieren fehlgeschlagen",durationMilliseconds:"{value} ms",durationSeconds:"{value} s",menuLabel:"Menü",pdfViewerCurrentZoom:"{percent} %",anchorJumped:"Zur hervorgehobenen Passage gesprungen.",anchorJumpedToPage:"Zu Seite {page} gesprungen.",anchorNotFound:"Die Passage wurde in diesem Dokument nicht gefunden.",highlightWithLabel:"Hervorhebung: {label}",tokensIn:"Eingabe-Token",tokensOut:"Ausgabe-Token",comparePanel:"Vergleich",treeNodeMoved:"{label} an Position {index} von {total} verschoben",gitStatusAdded:"Hinzugefügt",gitStatusModified:"Geändert",gitStatusDeleted:"Gelöscht",gitStatusRenamed:"Umbenannt",gitStatusUntracked:"Nicht verfolgt",gitStatusConflicted:"Konflikt",gitStatusIgnored:"Ignoriert",envListValueHidden:"Wert ausgeblendet",provenanceEntities:"Entitäten",flowItemAnnouncement:"{item} ({index} von {total})",neighborDirectionIn:"Eingehend",neighborDirectionOut:"Ausgehend",neighborDirectionBoth:"Bidirektional",promptStudioRoleSystem:"System",promptStudioRoleUser:"Benutzer",promptStudioRoleAssistant:"Assistent",moveUp:"Nach oben verschieben",moveDown:"Nach unten verschieben",reorderItemMoved:"An Position {index} von {total} verschoben"};registerLyraLocale("de",strings);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{registerLyraLocale}from"../../internal/localization-runtime.js";const strings={carousel:"carrusel",carouselLabel:"Carrusel",carouselSlide:"diapositiva",carouselSlidePosition:"Diapositiva {index} de {total}",carouselSlideAnnouncement:"{position}: {content}",carouselSlideAnnouncementSeparator:". ",carouselIndicators:"Diapositivas del carrusel",carouselGoTo:"Ir a la diapositiva {index}",scrollerLabel:"Contenido desplazable",scrollPrevious:"Desplazar hacia atrás",scrollNext:"Desplazar hacia delante",closeNavigation:"Cerrar la navegación",openNavigation:"Abrir la navegación",resizeNavigation:"Redimensionar la navegación",appRailCollapse:"Contraer la navegación",appRailExpand:"Expandir la navegación",resizeValuePercent:"{value} por ciento",commandPaletteLabel:"Paleta de comandos",commandPalettePlaceholder:"Buscar comandos…",commandPaletteEmpty:"No hay comandos que coincidan.",commandPaletteResults:"Comandos",dockPanelCollapse:"Contraer el panel",dockPanelExpand:"Expandir el panel",dockPanelResize:"Redimensionar el panel",responsivePanel:"Panel",breadcrumb:"Ruta de navegación",resizeDivider:"Redimensionar el divisor entre el panel {a} y el panel {b}",widgetFullscreenPanel:"Panel en pantalla completa",widgetViewGroup:"Vista del panel",widgetExitFullscreen:"Salir de la pantalla completa",widgetExpandToFullscreen:"Expandir a pantalla completa",widgetCollapse:"Contraer el panel",widgetExpand:"Expandir el panel",skipToContent:"Ir al contenido",dashboardGridLabel:"Cuadrícula del panel",dashboardCellCollisionRejected:"{label} no se puede colocar ahí porque se solapa con otra celda.",dashboardCellMoved:"{label} se ha movido a la columna {x}, fila {y}.",dashboardCellResized:"{label} se ha redimensionado a {w} de ancho y {h} de alto.",filterBarReset:"Restablecer los filtros",filterBarActiveFilters:"Filtros activos",drilldownDocuments:"Documentos",drilldownRuns:"Ejecuciones del agente",drilldownEmpty:"No hay ningún elemento seleccionado",drilldownUntitledNode:"Paso sin título",reorderMovePending:"Reordenación pendiente.",reorderMoveCancelled:"Reordenación cancelada."};registerLyraLocale("es",strings);
|
|
1
|
+
import{registerLyraLocale}from"../../internal/localization-runtime.js";const strings={carousel:"carrusel",carouselLabel:"Carrusel",carouselSlide:"diapositiva",carouselSlidePosition:"Diapositiva {index} de {total}",carouselSlideAnnouncement:"{position}: {content}",carouselSlideAnnouncementSeparator:". ",carouselIndicators:"Diapositivas del carrusel",carouselGoTo:"Ir a la diapositiva {index}",scrollerLabel:"Contenido desplazable",scrollPrevious:"Desplazar hacia atrás",scrollNext:"Desplazar hacia delante",closeNavigation:"Cerrar la navegación",openNavigation:"Abrir la navegación",resizeNavigation:"Redimensionar la navegación",appRailCollapse:"Contraer la navegación",appRailExpand:"Expandir la navegación",appRailItemCollapse:"Contraer {label}",appRailItemExpand:"Expandir {label}",resizeValuePercent:"{value} por ciento",commandPaletteLabel:"Paleta de comandos",commandPalettePlaceholder:"Buscar comandos…",commandPaletteEmpty:"No hay comandos que coincidan.",commandPaletteResults:"Comandos",dockPanelCollapse:"Contraer el panel",dockPanelExpand:"Expandir el panel",dockPanelResize:"Redimensionar el panel",responsivePanel:"Panel",breadcrumb:"Ruta de navegación",resizeDivider:"Redimensionar el divisor entre el panel {a} y el panel {b}",widgetFullscreenPanel:"Panel en pantalla completa",widgetViewGroup:"Vista del panel",widgetExitFullscreen:"Salir de la pantalla completa",widgetExpandToFullscreen:"Expandir a pantalla completa",widgetCollapse:"Contraer el panel",widgetExpand:"Expandir el panel",skipToContent:"Ir al contenido",dashboardGridLabel:"Cuadrícula del panel",dashboardCellCollisionRejected:"{label} no se puede colocar ahí porque se solapa con otra celda.",dashboardCellMoved:"{label} se ha movido a la columna {x}, fila {y}.",dashboardCellResized:"{label} se ha redimensionado a {w} de ancho y {h} de alto.",filterBarReset:"Restablecer los filtros",filterBarActiveFilters:"Filtros activos",drilldownDocuments:"Documentos",drilldownRuns:"Ejecuciones del agente",drilldownEmpty:"No hay ningún elemento seleccionado",drilldownUntitledNode:"Paso sin título",reorderMovePending:"Reordenación pendiente.",reorderMoveCancelled:"Reordenación cancelada."};registerLyraLocale("es",strings);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{registerLyraLocale}from"../../internal/localization-runtime.js";const strings={graphLegendLabel:"Leyenda del grafo",
|
|
1
|
+
import{registerLyraLocale}from"../../internal/localization-runtime.js";const strings={graphLegendLabel:"Leyenda del grafo",entityChipWithType:"{label}, {type}",showMore:"Mostrar más",untitledSource:"Fuente sin título",sourcePageSuffix:"{base} — p. {page}",citationHighConfidence:"Confianza alta",citationMediumConfidence:"Confianza media",citationLowConfidence:"Confianza baja",citationVerified:"Verificada",citationUnverified:"Sin verificar",graphDataList:"Datos del grafo",graphItemAnnouncement:"{item} ({index} de {total})",citation:"Cita {index}",citationWithStatus:"Cita {index}, {status}",citationWithCustomLabel:"Cita {index}, {label}",graphNode:"Nodo {label}",graphLink:"Enlace de {source} a {target}",graphDiagram:"Diagrama de nodos y enlaces con {nodeCount} nodos y {linkCount} enlaces",graphTypedNode:"{label} ({type})",graphExpandableItem:"{item}, se puede expandir",graphNodeFocused:"Centrado en {label}",graphSelectionCount:"{count} seleccionados",graphNodesHidden:"{hidden} de {total} nodos ocultos",graphCommunity:"Comunidad {label}, {count} nodos",ragAnswerLabel:"Respuesta fundamentada",ragAnswerCitations:"Citas",ragAnswerSources:"Fuentes",ragAnswerRetry:"Reintentar la respuesta",embeddingExplorerLabel:"Explorador de embeddings",embeddingExplorerEmpty:"No hay puntos de embedding",embeddingExplorerPoint:"{label}, punto de embedding {index}",knowledgeBaseAdminLabel:"Administración de la base de conocimiento",knowledgeBaseAdminSourcesTab:"Fuentes",knowledgeBaseAdminIngestionTab:"Ingesta",graphMissingLibrary:'Este componente necesita el paquete opcional "d3" instalado para representar el grafo.',mindMapLabel:"Mapa mental",mindMapTopicStatus:"{label}, nivel {level}, {count} subtemas",mindMapLeafStatus:"{label}, nivel {level}",mindMapExpanded:"{label} se ha expandido",mindMapCollapsed:"{label} se ha contraído",entityDegree:"Conexiones",entityCommunity:"Comunidad",focusInGraph:"Centrar en el grafo",untitledEntity:"Entidad sin título",untitledCommunity:"Comunidad sin título",communityMemberCount:"{count} miembros",communityDrillIn:"Explorar la comunidad",selectAllSources:"Seleccionar todas las fuentes",sourcePickerSelection:"{selected} de {total} seleccionadas",provenancePanelLabel:"Fundamentación",provenanceRelationships:"Relaciones",provenanceCommunities:"Comunidades",provenanceChunks:"Fragmentos de texto",provenanceEmpty:"No hay datos de fundamentación para esta respuesta",chunkInspectorLabel:"Fragmentos recuperados",chunkScore:"Relevancia {percent}%",scoreTierHigh:"Relevancia alta",scoreTierMedium:"Relevancia media",scoreTierLow:"Relevancia baja",chunkInspectorEmpty:"No se ha recuperado ningún fragmento",nodePaletteLabel:"Paleta de nodos",nodePalettePlaceholder:"Buscar nodos…",nodePaletteEmpty:"No hay nodos que coincidan.",nodePaletteDragHint:"Arrastrar al lienzo o pulsar Intro para colocarlo",nodePaletteResultCount:{one:"{count} elemento",many:"{count} de elementos",other:"{count} elementos"},retrievalResultsSelectRow:"Seleccionar {label}",pathStripLabel:"Ruta",pathNodeStatus:"{label}, nodo {position} de {total}",pathRelationStatus:"{relation}, relación",neighborListLabel:"Relaciones",neighborRowLabel:"{label}, {relation}, {direction}",neighborExpand:"Expandir {label} en el grafo",neighborListEmpty:"No hay relaciones",neighborGroupHeader:"{relation} ({count})",memoryPanelLabel:"Memoria",memoryPanelShortTermHeading:"Contexto a corto plazo",memoryPanelLongTermHeading:"Recuerdos a largo plazo",memoryPanelAdd:"Añadir a la memoria a largo plazo",memoryPanelAddWithContext:'Añadir "{label}" a la memoria a largo plazo',memoryPanelForgetAll:"Olvidar todo",memoryPanelConfirmAddHeading:"¿Añadir esto a la memoria a largo plazo?",memoryPanelConfirmRemoveHeading:"¿Quitar este elemento?",memoryPanelConfirmForgetHeading:"¿Olvidar todos los recuerdos a largo plazo?",memoryPanelConfirmForgetBody:"Esto olvida de forma permanente los {count} recuerdos a largo plazo.",graphExplorerLabel:"Explorador del grafo de conocimiento",graphExplorerSearchPlaceholder:"Buscar entidades…",graphExplorerSearchResultsLabel:"Resultados de la búsqueda",graphExplorerPin:"Anclar",graphExplorerUnpin:"Desanclar",graphExplorerPinned:"{label} se ha anclado",graphExplorerUnpinned:"{label} se ha desanclado",graphExplorerPinnedHeading:"Anclados",graphExplorerFindPath:"Buscar una ruta",retrievalModeVector:"Vectorial",retrievalModeKeyword:"Palabras clave",retrievalModeHybrid:"Híbrida",retrievalSearchLabel:"Búsqueda de recuperación",retrievalModeLabel:"Modo de búsqueda",retrievalFiltersLabel:"Filtros activos",groundingSummaryLabel:"Resumen de la fundamentación",groundingSummaryEmpty:"No hay ninguna evaluación de fundamentación disponible",groundingSummarySupportedLabel:"Afirmaciones respaldadas",groundingSummaryUnsupportedLabel:"Afirmaciones sin respaldo",groundingSummaryCoverageLabel:"Cobertura de citas",groundingSummaryConfidenceLabel:"Confianza",groundingSummaryWarningsHeading:"Advertencias",groundingSummaryEvidenceHeading:"Evidencias",claimEvidenceLabel:"Evidencias de la afirmación",claimEvidenceEmpty:"No hay evidencias por afirmación disponibles",claimEvidenceSupported:"Respaldada",claimEvidencePartiallySupported:"Parcialmente respaldada",claimEvidenceUnsupported:"Sin respaldo",claimEvidenceContradicted:"Contradicha",claimEvidenceConfidence:"{percent} de confianza",retrievalCompareLabel:"Comparación de recuperaciones",retrievalCompareEmpty:"No hay conjuntos de resultados que comparar",retrievalCompareOverlap:"Solapamiento de los k primeros entre {left} y {right}: {percent}",retrievalCompareRank:"Posición {rank}",retrievalCompareDenseScore:"Densa",retrievalCompareSparseScore:"Dispersa",retrievalCompareRerankScore:"Reordenación",retrievalCompareFinalScore:"Final",ragEvalDashboardLabel:"Panel de evaluación de RAG",ragEvalDashboardEmpty:"No hay ejecuciones de evaluación disponibles",ragEvalDashboardRuns:"Ejecuciones de evaluación",ragEvalDashboardSlices:"Segmentos de evaluación",ragEvalDashboardAllSlices:"Todos",ragEvalDashboardSliceUnavailable:"No hay ejecuciones de evaluación disponibles para {slice}.",knowledgeBaseSyncIdle:"Inactivo",knowledgeBaseSyncSyncing:"Sincronizando",knowledgeBaseSyncPaused:"En pausa",knowledgeBaseSyncSynced:"Sincronizado",knowledgeBaseSyncError:"Error",knowledgeBaseHealthHealthy:"Correcto",knowledgeBaseHealthDegraded:"Degradado",knowledgeBaseHealthFailed:"Fallido",knowledgeBaseHealthUnknown:"Desconocido",knowledgeBasePermissionOwner:"Propietario",knowledgeBasePermissionEditor:"Editor",knowledgeBasePermissionViewer:"Lector",knowledgeBasePermissionRestricted:"Restringido",knowledgeBaseNeverSynced:"Nunca sincronizado",knowledgeBaseSyncAction:"Sincronizar ahora",knowledgeBasePauseAction:"Pausar la sincronización",knowledgeBaseDeleteAction:"Eliminar la fuente",knowledgeBaseNameColumn:"Fuente",knowledgeBaseSyncColumn:"Estado de sincronización",knowledgeBaseHealthColumn:"Estado de la indexación",knowledgeBasePermissionColumn:"Permiso",knowledgeBaseActionsColumn:"Acciones",knowledgeBaseTotalSources:"Fuentes",knowledgeBaseSyncedSources:"Sincronizadas",knowledgeBaseSyncingSources:"Sincronizando",knowledgeBaseNeedsAttention:"Requieren atención",knowledgeBaseHeading:"Base de conocimiento",knowledgeBaseCreateSource:"Añadir una fuente",knowledgeBaseEmptyHeading:"Todavía no hay fuentes de conocimiento",ingestionStageQueued:"En cola",ingestionStageUploading:"Subiendo",ingestionStageExtracting:"Extrayendo el texto",ingestionStageChunking:"Fragmentando",ingestionStageEmbedding:"Generando embeddings",ingestionStageIndexing:"Indexando",ingestionStageDone:"Completado",ingestionStageFailed:"Fallido",ingestionStageCancelled:"Cancelado",ingestionStageUnknown:"Etapa desconocida",ingestionQueueLabel:"Cola de ingesta",ingestionQueueEmpty:"No hay documentos en cola",retrievalFilterChipLabel:"{key}: {value}",retrievalSearchEmptyDescription:"Pruebe con otro término de búsqueda u otros filtros.",groundingSummaryEvidenceSpan:"Caracteres {start}–{end}",knowledgeBaseDocumentCount:"{count} indexados",knowledgeBaseRowActionsLabel:"Acciones de {name}",knowledgeBaseEmptyDescription:"Añada una fuente para empezar a indexar contenido.",ingestionChunkCount:{one:"{count} fragmento",many:"{count} de fragmentos",other:"{count} fragmentos"},ingestionItemProgressLabel:"{name} — {stage}",ingestionEmbeddedOfTotal:"{embedded} de {total} fragmentos con embedding",ingestionAttemptCount:"Intento {count}",ingestionRetryWithContext:"Reintentar {label}",ingestionCancelWithContext:"Cancelar {label}",retrievalStageQueryRewrite:"Reescritura de la consulta",retrievalStageEmbed:"Embedding",retrievalStageRetrieve:"Recuperación",retrievalStageRerank:"Reordenación",retrievalStageFilter:"Filtrado",retrievalTraceEvidenceToggle:"Evidencias de {label}"};registerLyraLocale("es",strings);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{registerLyraLocale}from"../../internal/localization-runtime.js";const strings={noData:"Sin datos",jumpToLatest:"Ir a lo más reciente",loadMore:"Cargar más",viewerSearchMatchCount:{one:"{count} coincidencia",many:"{count} de coincidencias",other:"{count} coincidencias"},viewerSearchNoMatches:"Sin coincidencias",viewerSearchActiveMatch:"Coincidencia {current} de {total}",tableLoadFailed:"No se pudieron cargar los datos",zoomOut:"Alejar",zoomIn:"Acercar",clear:"Borrar",open:"Abrir",close:"Cerrar",resizeValuePixels:"{value} píxeles",copy:"Copiar",copied:"¡Copiado!",expand:"Expandir",collapse:"Contraer",showMoreCount:"Mostrar {count} más",showLess:"Mostrar menos",retry:"Reintentar",remove:"Quitar",removeWithContext:"Quitar {label}",loading:"Cargando…",noMatches:"Sin coincidencias",previous:"Anterior",next:"Siguiente",paginationLabel:"Paginación",paginationSummary:"{start}–{end} de {total} {itemLabel}",cancel:"Cancelar",search:"Buscar",items:"elementos",item:"elemento",notInCatalog:"no está en el catálogo",fileSizeUnitB:"B",fileSizeUnitKb:"KB",fileSizeUnitMb:"MB",fileSizeUnitGb:"GB",fileSizeUnitTb:"TB",resetZoom:"Restablecer el zoom",showMoreCollapsed:"+{count}",statusPending:"Pendiente",statusRunning:"En ejecución",statusSuccess:"Correcto",statusError:"Error",statusDenied:"Denegado",restore:"Restaurar",navigation:"Navegación",attachmentUntitledFile:"Archivo sin título",chart:"Gráfico",chartValueLabel:"{label}: {value}",date:"Fecha",dateInputMinMessage:"La fecha debe ser igual o posterior a {min}.",dateInputMaxMessage:"La fecha debe ser igual o anterior a {max}.",dateInputInvalid:"Introduzca una fecha válida.",documentPreviewEmpty:"No hay {type} que mostrar.",documentPreviewTypeImage:"imagen",download:"Descargar",progress:"Progreso",popover:"Elemento emergente",details:"Detalles",map:"Mapa",select:"Seleccionar",sourceListDefaultLabel:"Fuentes",thinkingPanelLabel:"Razonamiento",handoffToAgent:"Transferido a {agent}",handoffFromToAgent:"Transferido de {from} a {to}",thinking:"Razonando…",deny:"Denegar",approve:"Aprobar",fieldRequired:"Este campo es obligatorio.",unsupportedFieldType:'Tipo de campo no admitido: "{type}".',valueInvalid:"El valor no es válido.",copyFailed:"Error al copiar",durationMilliseconds:"{value}ms",durationSeconds:"{value}s",menuLabel:"Menú",pdfViewerCurrentZoom:"{percent}%",anchorJumped:"Se ha saltado al pasaje resaltado.",anchorJumpedToPage:"Se ha saltado a la página {page}.",anchorNotFound:"No se ha encontrado el pasaje en este documento.",highlightWithLabel:"Resaltado: {label}",tokensIn:"Tokens de entrada",tokensOut:"Tokens de salida",comparePanel:"Comparación",treeNodeMoved:"{label} se ha movido a la posición {index} de {total}",gitStatusAdded:"Añadido",gitStatusModified:"Modificado",gitStatusDeleted:"Eliminado",gitStatusRenamed:"Renombrado",gitStatusUntracked:"Sin seguimiento",gitStatusConflicted:"En conflicto",gitStatusIgnored:"Ignorado",envListValueHidden:"Valor oculto",provenanceEntities:"Entidades",flowItemAnnouncement:"{item} ({index} de {total})",neighborDirectionIn:"Entrante",neighborDirectionOut:"Saliente",neighborDirectionBoth:"Bidireccional",promptStudioRoleSystem:"Sistema",promptStudioRoleUser:"Usuario",promptStudioRoleAssistant:"Asistente",moveUp:"Subir",moveDown:"Bajar",reorderItemMoved:"Se ha movido a la posición {index} de {total}"};registerLyraLocale("es",strings);
|
|
1
|
+
import{registerLyraLocale}from"../../internal/localization-runtime.js";const strings={noData:"Sin datos",legendTypeShown:"{label} se muestra",legendTypeHidden:"{label} se oculta",jumpToLatest:"Ir a lo más reciente",loadMore:"Cargar más",viewerSearchMatchCount:{one:"{count} coincidencia",many:"{count} de coincidencias",other:"{count} coincidencias"},viewerSearchNoMatches:"Sin coincidencias",viewerSearchActiveMatch:"Coincidencia {current} de {total}",tableLoadFailed:"No se pudieron cargar los datos",zoomOut:"Alejar",zoomIn:"Acercar",clear:"Borrar",open:"Abrir",close:"Cerrar",resizeValuePixels:"{value} píxeles",copy:"Copiar",copied:"¡Copiado!",expand:"Expandir",collapse:"Contraer",showMoreCount:"Mostrar {count} más",showLess:"Mostrar menos",retry:"Reintentar",remove:"Quitar",removeWithContext:"Quitar {label}",loading:"Cargando…",noMatches:"Sin coincidencias",previous:"Anterior",next:"Siguiente",paginationLabel:"Paginación",paginationSummary:"{start}–{end} de {total} {itemLabel}",cancel:"Cancelar",search:"Buscar",items:"elementos",item:"elemento",notInCatalog:"no está en el catálogo",fileSizeUnitB:"B",fileSizeUnitKb:"KB",fileSizeUnitMb:"MB",fileSizeUnitGb:"GB",fileSizeUnitTb:"TB",resetZoom:"Restablecer el zoom",showMoreCollapsed:"+{count}",statusPending:"Pendiente",statusRunning:"En ejecución",statusSuccess:"Correcto",statusError:"Error",statusDenied:"Denegado",restore:"Restaurar",navigation:"Navegación",attachmentUntitledFile:"Archivo sin título",chart:"Gráfico",chartValueLabel:"{label}: {value}",date:"Fecha",dateInputMinMessage:"La fecha debe ser igual o posterior a {min}.",dateInputMaxMessage:"La fecha debe ser igual o anterior a {max}.",dateInputInvalid:"Introduzca una fecha válida.",documentPreviewEmpty:"No hay {type} que mostrar.",documentPreviewTypeImage:"imagen",download:"Descargar",progress:"Progreso",popover:"Elemento emergente",details:"Detalles",map:"Mapa",select:"Seleccionar",sourceListDefaultLabel:"Fuentes",thinkingPanelLabel:"Razonamiento",handoffToAgent:"Transferido a {agent}",handoffFromToAgent:"Transferido de {from} a {to}",thinking:"Razonando…",deny:"Denegar",approve:"Aprobar",fieldRequired:"Este campo es obligatorio.",unsupportedFieldType:'Tipo de campo no admitido: "{type}".',valueInvalid:"El valor no es válido.",copyFailed:"Error al copiar",durationMilliseconds:"{value}ms",durationSeconds:"{value}s",menuLabel:"Menú",pdfViewerCurrentZoom:"{percent}%",anchorJumped:"Se ha saltado al pasaje resaltado.",anchorJumpedToPage:"Se ha saltado a la página {page}.",anchorNotFound:"No se ha encontrado el pasaje en este documento.",highlightWithLabel:"Resaltado: {label}",tokensIn:"Tokens de entrada",tokensOut:"Tokens de salida",comparePanel:"Comparación",treeNodeMoved:"{label} se ha movido a la posición {index} de {total}",gitStatusAdded:"Añadido",gitStatusModified:"Modificado",gitStatusDeleted:"Eliminado",gitStatusRenamed:"Renombrado",gitStatusUntracked:"Sin seguimiento",gitStatusConflicted:"En conflicto",gitStatusIgnored:"Ignorado",envListValueHidden:"Valor oculto",provenanceEntities:"Entidades",flowItemAnnouncement:"{item} ({index} de {total})",neighborDirectionIn:"Entrante",neighborDirectionOut:"Saliente",neighborDirectionBoth:"Bidireccional",promptStudioRoleSystem:"Sistema",promptStudioRoleUser:"Usuario",promptStudioRoleAssistant:"Asistente",moveUp:"Subir",moveDown:"Bajar",reorderItemMoved:"Se ha movido a la posición {index} de {total}"};registerLyraLocale("es",strings);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{registerLyraLocale}from"../../internal/localization-runtime.js";const strings={carousel:"چرخوفلک",carouselLabel:"چرخوفلک",carouselSlide:"اسلاید",carouselSlidePosition:"اسلاید {index} از {total}",carouselSlideAnnouncement:"{position}: {content}",carouselSlideAnnouncementSeparator:". ",carouselIndicators:"اسلایدهای چرخوفلک",carouselGoTo:"رفتن به اسلاید {index}",scrollerLabel:"محتوای قابل پیمایش",scrollPrevious:"پیمایش به عقب",scrollNext:"پیمایش به جلو",closeNavigation:"بستن بخش پیمایش",openNavigation:"باز کردن بخش پیمایش",resizeNavigation:"تغییر اندازهٔ بخش پیمایش",appRailCollapse:"جمع کردن بخش پیمایش",appRailExpand:"گسترش بخش پیمایش",resizeValuePercent:"{value} درصد",commandPaletteLabel:"پالت فرمان",commandPalettePlaceholder:"جستوجوی فرمانها…",commandPaletteEmpty:"فرمان منطبقی وجود ندارد.",commandPaletteResults:"فرمانها",dockPanelCollapse:"جمع کردن پنل",dockPanelExpand:"گسترش پنل",dockPanelResize:"تغییر اندازهٔ پنل",responsivePanel:"پنل",breadcrumb:"مسیر راهنما",resizeDivider:"تغییر اندازهٔ جداکنندهٔ پنل {a} و پنل {b}",widgetFullscreenPanel:"پنل تمامصفحه",widgetViewGroup:"نمای پنل",widgetExitFullscreen:"خروج از حالت تمامصفحه",widgetExpandToFullscreen:"گسترش به حالت تمامصفحه",widgetCollapse:"جمع کردن پنل",widgetExpand:"گسترش پنل",skipToContent:"پرش به محتوا",dashboardGridLabel:"شبکهٔ داشبورد",dashboardCellCollisionRejected:"{label} را نمیتوان در آنجا قرار داد، زیرا با سلول دیگری همپوشانی دارد.",dashboardCellMoved:"{label} به ستون {x}، ردیف {y} منتقل شد.",dashboardCellResized:"اندازهٔ {label} به عرض {w} و ارتفاع {h} تغییر کرد.",filterBarReset:"بازنشانی فیلترها",filterBarActiveFilters:"فیلترهای فعال",drilldownDocuments:"اسناد",drilldownRuns:"اجراهای عامل",drilldownEmpty:"هیچ موردی انتخاب نشده است",drilldownUntitledNode:"مرحله بدون عنوان",reorderMovePending:"مرتبسازی مجدد در انتظار است.",reorderMoveCancelled:"مرتبسازی مجدد لغو شد."};registerLyraLocale("fa",strings,{dir:"rtl",name:"فارسی"});
|
|
1
|
+
import{registerLyraLocale}from"../../internal/localization-runtime.js";const strings={carousel:"چرخوفلک",carouselLabel:"چرخوفلک",carouselSlide:"اسلاید",carouselSlidePosition:"اسلاید {index} از {total}",carouselSlideAnnouncement:"{position}: {content}",carouselSlideAnnouncementSeparator:". ",carouselIndicators:"اسلایدهای چرخوفلک",carouselGoTo:"رفتن به اسلاید {index}",scrollerLabel:"محتوای قابل پیمایش",scrollPrevious:"پیمایش به عقب",scrollNext:"پیمایش به جلو",closeNavigation:"بستن بخش پیمایش",openNavigation:"باز کردن بخش پیمایش",resizeNavigation:"تغییر اندازهٔ بخش پیمایش",appRailCollapse:"جمع کردن بخش پیمایش",appRailExpand:"گسترش بخش پیمایش",appRailItemCollapse:"جمع کردن {label}",appRailItemExpand:"گسترش {label}",resizeValuePercent:"{value} درصد",commandPaletteLabel:"پالت فرمان",commandPalettePlaceholder:"جستوجوی فرمانها…",commandPaletteEmpty:"فرمان منطبقی وجود ندارد.",commandPaletteResults:"فرمانها",dockPanelCollapse:"جمع کردن پنل",dockPanelExpand:"گسترش پنل",dockPanelResize:"تغییر اندازهٔ پنل",responsivePanel:"پنل",breadcrumb:"مسیر راهنما",resizeDivider:"تغییر اندازهٔ جداکنندهٔ پنل {a} و پنل {b}",widgetFullscreenPanel:"پنل تمامصفحه",widgetViewGroup:"نمای پنل",widgetExitFullscreen:"خروج از حالت تمامصفحه",widgetExpandToFullscreen:"گسترش به حالت تمامصفحه",widgetCollapse:"جمع کردن پنل",widgetExpand:"گسترش پنل",skipToContent:"پرش به محتوا",dashboardGridLabel:"شبکهٔ داشبورد",dashboardCellCollisionRejected:"{label} را نمیتوان در آنجا قرار داد، زیرا با سلول دیگری همپوشانی دارد.",dashboardCellMoved:"{label} به ستون {x}، ردیف {y} منتقل شد.",dashboardCellResized:"اندازهٔ {label} به عرض {w} و ارتفاع {h} تغییر کرد.",filterBarReset:"بازنشانی فیلترها",filterBarActiveFilters:"فیلترهای فعال",drilldownDocuments:"اسناد",drilldownRuns:"اجراهای عامل",drilldownEmpty:"هیچ موردی انتخاب نشده است",drilldownUntitledNode:"مرحله بدون عنوان",reorderMovePending:"مرتبسازی مجدد در انتظار است.",reorderMoveCancelled:"مرتبسازی مجدد لغو شد."};registerLyraLocale("fa",strings,{dir:"rtl",name:"فارسی"});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{registerLyraLocale}from"../../internal/localization-runtime.js";const strings={graphLegendLabel:"راهنمای نمودار",
|
|
1
|
+
import{registerLyraLocale}from"../../internal/localization-runtime.js";const strings={graphLegendLabel:"راهنمای نمودار",entityChipWithType:"{label}، {type}",showMore:"نمایش بیشتر",untitledSource:"منبع بدون عنوان",sourcePageSuffix:"{base} - ص. {page}",citationHighConfidence:"اطمینان بالا",citationMediumConfidence:"اطمینان متوسط",citationLowConfidence:"اطمینان پایین",citationVerified:"تأییدشده",citationUnverified:"تأییدنشده",graphDataList:"دادههای نمودار",graphItemAnnouncement:"{item} ({index} از {total})",citation:"استناد {index}",citationWithStatus:"استناد {index}، {status}",citationWithCustomLabel:"استناد {index}، {label}",graphNode:"گره {label}",graphLink:"پیوند از {source} به {target}",graphDiagram:"نمودار گره و پیوند با {nodeCount} گره و {linkCount} پیوند",graphTypedNode:"{label} ({type})",graphExpandableItem:"{item}، قابل گسترش",graphNodeFocused:"روی {label} در مرکز قرار گرفت",graphSelectionCount:"{count} مورد انتخاب شده است",graphNodesHidden:"{hidden} گره از {total} گره پنهان است",graphCommunity:"انجمن {label}، {count} گره",ragAnswerLabel:"پاسخ مستدل",ragAnswerCitations:"استنادها",ragAnswerSources:"منابع",ragAnswerRetry:"تلاش دوباره برای پاسخ",embeddingExplorerLabel:"کاوشگر تعبیهها",embeddingExplorerEmpty:"هیچ نقطهٔ تعبیهای وجود ندارد",embeddingExplorerPoint:"{label}، نقطهٔ تعبیهٔ {index}",knowledgeBaseAdminLabel:"مدیریت پایگاه دانش",knowledgeBaseAdminSourcesTab:"منابع",knowledgeBaseAdminIngestionTab:"ورود داده",graphMissingLibrary:"برای نمایش گراف، باید بستهٔ اختیاری «d3» را نصب کنید.",mindMapLabel:"نقشهٔ ذهنی",mindMapTopicStatus:"{label}، سطح {level}، {count} زیرموضوع",mindMapLeafStatus:"{label}، سطح {level}",mindMapExpanded:"{label} گسترش یافت",mindMapCollapsed:"{label} جمع شد",entityDegree:"اتصالات",entityCommunity:"جامعه",focusInGraph:"تمرکز در نمودار",untitledEntity:"موجودیت بدون عنوان",untitledCommunity:"انجمن بدون عنوان",communityMemberCount:"{count} عضو",communityDrillIn:"کاوش انجمن",selectAllSources:"همه منابع را انتخاب کنید",sourcePickerSelection:"{selected} از {total} انتخاب شده است",provenancePanelLabel:"پشتوانهسازی",provenanceRelationships:"روابط",provenanceCommunities:"جوامع",provenanceChunks:"قطعههای متن",provenanceEmpty:"برای این پاسخ دادهای دربارهٔ پشتوانهسازی وجود ندارد",chunkInspectorLabel:"قطعههای بازیابیشده",chunkScore:"میزان ارتباط {percent}٪",scoreTierHigh:"ارتباط زیاد",scoreTierMedium:"ارتباط متوسط",scoreTierLow:"ارتباط کم",chunkInspectorEmpty:"هیچ قطعهای بازیابی نشد",nodePaletteLabel:"پالت گره",nodePalettePlaceholder:"جستوجوی گرهها…",nodePaletteEmpty:"هیچ گره منطبقی وجود ندارد.",nodePaletteDragHint:"روی بوم بکشید یا Enter را برای قرار دادن فشار دهید",nodePaletteResultCount:{one:"{count} مورد",other:"{count} مورد"},retrievalResultsSelectRow:"{label} را انتخاب کنید",pathStripLabel:"مسیر",pathNodeStatus:"{label}، گره {position} از {total}",pathRelationStatus:"{relation}، رابطه",neighborListLabel:"روابط",neighborRowLabel:"{label}، {relation}، {direction}",neighborExpand:"گسترش {label} در گراف",neighborListEmpty:"رابطهای وجود ندارد",neighborGroupHeader:"{relation} ({count})",memoryPanelLabel:"حافظه",memoryPanelShortTermHeading:"زمینهٔ کوتاهمدت",memoryPanelLongTermHeading:"خاطرههای بلندمدت",memoryPanelAdd:"افزودن به حافظهٔ بلندمدت",memoryPanelAddWithContext:"افزودن «{label}» به حافظهٔ بلندمدت",memoryPanelForgetAll:"فراموش کردن همه",memoryPanelConfirmAddHeading:"این مورد به حافظهٔ بلندمدت افزوده شود؟",memoryPanelConfirmRemoveHeading:"این مورد حذف شود؟",memoryPanelConfirmForgetHeading:"همهٔ خاطرههای بلندمدت فراموش شوند؟",memoryPanelConfirmForgetBody:"با این کار، همهٔ {count} خاطرهٔ بلندمدت برای همیشه فراموش میشوند.",graphExplorerLabel:"کاوشگر گراف دانش",graphExplorerSearchPlaceholder:"جستوجوی موجودیتها…",graphExplorerSearchResultsLabel:"نتایج جستوجو",graphExplorerPin:"سنجاق",graphExplorerUnpin:"برداشتن سنجاق",graphExplorerPinned:"{label} سنجاق شد",graphExplorerUnpinned:"سنجاق {label} برداشته شد",graphExplorerPinnedHeading:"سنجاقشده",graphExplorerFindPath:"یافتن مسیر",retrievalModeVector:"بردار",retrievalModeKeyword:"کلمهٔ کلیدی",retrievalModeHybrid:"ترکیبی",retrievalSearchLabel:"جستوجوی بازیابی",retrievalModeLabel:"حالت جستوجو",retrievalFiltersLabel:"فیلترهای فعال",groundingSummaryLabel:"خلاصهٔ پشتوانهسازی",groundingSummaryEmpty:"ارزیابی پشتوانهسازی در دسترس نیست",groundingSummarySupportedLabel:"ادعاهای دارای پشتوانه",groundingSummaryUnsupportedLabel:"ادعاهای بدون پشتوانه",groundingSummaryCoverageLabel:"پوشش استنادی",groundingSummaryConfidenceLabel:"اطمینان",groundingSummaryWarningsHeading:"هشدارها",groundingSummaryEvidenceHeading:"شواهد",claimEvidenceLabel:"شواهد ادعا",claimEvidenceEmpty:"هیچ شاهدی در سطح ادعا در دسترس نیست",claimEvidenceSupported:"دارای پشتوانه",claimEvidencePartiallySupported:"تا حدی دارای پشتوانه",claimEvidenceUnsupported:"بدون پشتوانه",claimEvidenceContradicted:"نقضشده",claimEvidenceConfidence:"اطمینان {percent}",retrievalCompareLabel:"مقایسهٔ بازیابی",retrievalCompareEmpty:"هیچ مجموعهای از نتایج بازیابی برای مقایسه وجود ندارد",retrievalCompareOverlap:"همپوشانی Top-k بین {left} و {right}: {percent}",retrievalCompareRank:"رتبه {rank}",retrievalCompareDenseScore:"چگال",retrievalCompareSparseScore:"پراکنده",retrievalCompareRerankScore:"رتبهبندی مجدد",retrievalCompareFinalScore:"نهایی",ragEvalDashboardLabel:"داشبورد ارزیابی RAG",ragEvalDashboardEmpty:"هیچ اجرای ارزیابی در دسترس نیست",ragEvalDashboardRuns:"اجراهای ارزیابی",ragEvalDashboardSlices:"بخشهای ارزیابی",ragEvalDashboardAllSlices:"همه",ragEvalDashboardSliceUnavailable:"هیچ اجرای ارزیابی برای {slice} در دسترس نیست.",knowledgeBaseSyncIdle:"غیرفعال",knowledgeBaseSyncSyncing:"در حال همگامسازی",knowledgeBaseSyncPaused:"در حالت مکث",knowledgeBaseSyncSynced:"همگامشده",knowledgeBaseSyncError:"خطا",knowledgeBaseHealthHealthy:"سالم",knowledgeBaseHealthDegraded:"افتکرده",knowledgeBaseHealthFailed:"ناموفق",knowledgeBaseHealthUnknown:"ناشناس",knowledgeBasePermissionOwner:"مالک",knowledgeBasePermissionEditor:"ویرایشگر",knowledgeBasePermissionViewer:"مشاهدهگر",knowledgeBasePermissionRestricted:"محدود",knowledgeBaseNeverSynced:"هرگز همگام نشده",knowledgeBaseSyncAction:"همگامسازی اکنون",knowledgeBasePauseAction:"مکث همگامسازی",knowledgeBaseDeleteAction:"حذف منبع",knowledgeBaseNameColumn:"منبع",knowledgeBaseSyncColumn:"وضعیت همگامسازی",knowledgeBaseHealthColumn:"سلامت نمایهسازی",knowledgeBasePermissionColumn:"اجازه",knowledgeBaseActionsColumn:"اقدامات",knowledgeBaseTotalSources:"منابع",knowledgeBaseSyncedSources:"همگامشده",knowledgeBaseSyncingSources:"در حال همگامسازی",knowledgeBaseNeedsAttention:"نیاز به توجه دارد",knowledgeBaseHeading:"پایگاه دانش",knowledgeBaseCreateSource:"افزودن منبع",knowledgeBaseEmptyHeading:"هنوز هیچ منبع دانشی وجود ندارد",ingestionStageQueued:"در صف",ingestionStageUploading:"در حال بارگذاری",ingestionStageExtracting:"در حال استخراج متن",ingestionStageChunking:"در حال قطعهبندی",ingestionStageEmbedding:"در حال تعبیه",ingestionStageIndexing:"در حال نمایهسازی",ingestionStageDone:"انجام شد",ingestionStageFailed:"ناموفق",ingestionStageCancelled:"لغو شد",ingestionStageUnknown:"مرحله ناشناخته",ingestionQueueLabel:"صف ورود داده",ingestionQueueEmpty:"هیچ سندی در صف نیست",retrievalFilterChipLabel:"{key}: {value}",retrievalSearchEmptyDescription:"عبارت جستوجو یا فیلترهای دیگری را امتحان کنید.",groundingSummaryEvidenceSpan:"نویسههای {start}–{end}",knowledgeBaseDocumentCount:"{count} مورد نمایهشده",knowledgeBaseRowActionsLabel:"اقدامات برای {name}",knowledgeBaseEmptyDescription:"برای آغاز نمایهسازی محتوا، یک منبع اضافه کنید.",ingestionChunkCount:{one:"{count} قطعه",other:"{count} قطعه"},ingestionItemProgressLabel:"{name} — {stage}",ingestionEmbeddedOfTotal:"{embedded} قطعه از {total} قطعه تعبیه شده است",ingestionAttemptCount:"تلاش {count}",ingestionRetryWithContext:"تلاش دوباره برای {label}",ingestionCancelWithContext:"لغو {label}",retrievalStageQueryRewrite:"بازنویسی پرسوجو",retrievalStageEmbed:"تعبیه",retrievalStageRetrieve:"بازیابی",retrievalStageRerank:"رتبهبندی مجدد",retrievalStageFilter:"فیلتر",retrievalTraceEvidenceToggle:"شواهد {label}"};registerLyraLocale("fa",strings,{dir:"rtl",name:"فارسی"});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{registerLyraLocale}from"../../internal/localization-runtime.js";const strings={noData:"دادهای وجود ندارد",jumpToLatest:"رفتن به جدیدترین",loadMore:"بارگیری بیشتر",viewerSearchMatchCount:{one:"{count} تطابق",other:"{count} تطابق"},viewerSearchNoMatches:"هیچ تطابقی یافت نشد",viewerSearchActiveMatch:"تطابق {current} از {total}",tableLoadFailed:"بارگیری دادهها ممکن نشد",zoomOut:"کوچکنمایی",zoomIn:"بزرگنمایی",clear:"پاک کردن",open:"باز کردن",close:"بستن",resizeValuePixels:"{value} پیکسل",copy:"کپی",copied:"کپی شد!",expand:"گسترش",collapse:"جمع کردن",showMoreCount:"نمایش {count} مورد دیگر",showLess:"نمایش کمتر",retry:"تلاش دوباره",remove:"حذف",removeWithContext:"حذف {label}",loading:"در حال بارگیری…",noMatches:"هیچ تطابقی یافت نشد",previous:"قبلی",next:"بعدی",paginationLabel:"صفحهبندی",paginationSummary:"{start}–{end} از {total} {itemLabel}",cancel:"لغو",search:"جستوجو",items:"موارد",item:"مورد",notInCatalog:"در کاتالوگ نیست",fileSizeUnitB:"B",fileSizeUnitKb:"KB",fileSizeUnitMb:"MB",fileSizeUnitGb:"GB",fileSizeUnitTb:"TB",resetZoom:"بازنشانی بزرگنمایی",showMoreCollapsed:"+{count}",statusPending:"در انتظار",statusRunning:"در حال اجرا",statusSuccess:"موفق",statusError:"خطا",statusDenied:"ردشده",restore:"بازیابی",navigation:"ناوبری",attachmentUntitledFile:"فایل بدون عنوان",chart:"نمودار",chartValueLabel:"{label}: {value}",date:"تاریخ",dateInputMinMessage:"تاریخ نباید پیش از {min} باشد.",dateInputMaxMessage:"تاریخ نباید پس از {max} باشد.",dateInputInvalid:"تاریخ معتبری وارد کنید.",documentPreviewEmpty:"برای نمایش {type} وجود ندارد.",documentPreviewTypeImage:"تصویر",download:"دانلود",progress:"پیشرفت",popover:"پاپاور",details:"جزئیات",map:"نقشه",select:"انتخاب",sourceListDefaultLabel:"منابع",thinkingPanelLabel:"در حال فکر کردن",handoffToAgent:"به {agent} منتقل شد",handoffFromToAgent:"انتقال از {from} به {to}",thinking:"در حال فکر کردن…",deny:"رد کردن",approve:"تأیید",fieldRequired:"این فیلد الزامی است.",unsupportedFieldType:"نوع فیلد «{type}» پشتیبانی نمیشود.",valueInvalid:"مقدار نامعتبر است.",copyFailed:"کپی ناموفق بود",durationMilliseconds:"{value} میلیثانیه",durationSeconds:"{value} ثانیه",menuLabel:"منو",pdfViewerCurrentZoom:"{percent}%",anchorJumped:"به بخش برجستهشده رفت.",anchorJumpedToPage:"به صفحهٔ {page} رفت.",anchorNotFound:"بخش موردنظر در این سند یافت نشد.",highlightWithLabel:"مورد برجسته: {label}",tokensIn:"توکنهای ورودی",tokensOut:"توکنهای خروجی",comparePanel:"مقایسه",treeNodeMoved:"{label} به موقعیت {index} از {total} منتقل شد",gitStatusAdded:"افزودهشده",gitStatusModified:"تغییریافته",gitStatusDeleted:"حذفشده",gitStatusRenamed:"تغییرنامیافته",gitStatusUntracked:"ردیابینشده",gitStatusConflicted:"دارای تداخل",gitStatusIgnored:"نادیدهگرفتهشده",envListValueHidden:"مقدار پنهان است",provenanceEntities:"موجودیتها",flowItemAnnouncement:"{item} ({index} از {total})",neighborDirectionIn:"ورودی",neighborDirectionOut:"خروجی",neighborDirectionBoth:"دوجهته",promptStudioRoleSystem:"سیستم",promptStudioRoleUser:"کاربر",promptStudioRoleAssistant:"دستیار",moveUp:"حرکت به بالا",moveDown:"حرکت به پایین",reorderItemMoved:"به موقعیت {index} از {total} منتقل شد"};registerLyraLocale("fa",strings,{dir:"rtl",name:"فارسی"});
|
|
1
|
+
import{registerLyraLocale}from"../../internal/localization-runtime.js";const strings={noData:"دادهای وجود ندارد",legendTypeShown:"{label} نشان داده شده است",legendTypeHidden:"{label} پنهان است",jumpToLatest:"رفتن به جدیدترین",loadMore:"بارگیری بیشتر",viewerSearchMatchCount:{one:"{count} تطابق",other:"{count} تطابق"},viewerSearchNoMatches:"هیچ تطابقی یافت نشد",viewerSearchActiveMatch:"تطابق {current} از {total}",tableLoadFailed:"بارگیری دادهها ممکن نشد",zoomOut:"کوچکنمایی",zoomIn:"بزرگنمایی",clear:"پاک کردن",open:"باز کردن",close:"بستن",resizeValuePixels:"{value} پیکسل",copy:"کپی",copied:"کپی شد!",expand:"گسترش",collapse:"جمع کردن",showMoreCount:"نمایش {count} مورد دیگر",showLess:"نمایش کمتر",retry:"تلاش دوباره",remove:"حذف",removeWithContext:"حذف {label}",loading:"در حال بارگیری…",noMatches:"هیچ تطابقی یافت نشد",previous:"قبلی",next:"بعدی",paginationLabel:"صفحهبندی",paginationSummary:"{start}–{end} از {total} {itemLabel}",cancel:"لغو",search:"جستوجو",items:"موارد",item:"مورد",notInCatalog:"در کاتالوگ نیست",fileSizeUnitB:"B",fileSizeUnitKb:"KB",fileSizeUnitMb:"MB",fileSizeUnitGb:"GB",fileSizeUnitTb:"TB",resetZoom:"بازنشانی بزرگنمایی",showMoreCollapsed:"+{count}",statusPending:"در انتظار",statusRunning:"در حال اجرا",statusSuccess:"موفق",statusError:"خطا",statusDenied:"ردشده",restore:"بازیابی",navigation:"ناوبری",attachmentUntitledFile:"فایل بدون عنوان",chart:"نمودار",chartValueLabel:"{label}: {value}",date:"تاریخ",dateInputMinMessage:"تاریخ نباید پیش از {min} باشد.",dateInputMaxMessage:"تاریخ نباید پس از {max} باشد.",dateInputInvalid:"تاریخ معتبری وارد کنید.",documentPreviewEmpty:"برای نمایش {type} وجود ندارد.",documentPreviewTypeImage:"تصویر",download:"دانلود",progress:"پیشرفت",popover:"پاپاور",details:"جزئیات",map:"نقشه",select:"انتخاب",sourceListDefaultLabel:"منابع",thinkingPanelLabel:"در حال فکر کردن",handoffToAgent:"به {agent} منتقل شد",handoffFromToAgent:"انتقال از {from} به {to}",thinking:"در حال فکر کردن…",deny:"رد کردن",approve:"تأیید",fieldRequired:"این فیلد الزامی است.",unsupportedFieldType:"نوع فیلد «{type}» پشتیبانی نمیشود.",valueInvalid:"مقدار نامعتبر است.",copyFailed:"کپی ناموفق بود",durationMilliseconds:"{value} میلیثانیه",durationSeconds:"{value} ثانیه",menuLabel:"منو",pdfViewerCurrentZoom:"{percent}%",anchorJumped:"به بخش برجستهشده رفت.",anchorJumpedToPage:"به صفحهٔ {page} رفت.",anchorNotFound:"بخش موردنظر در این سند یافت نشد.",highlightWithLabel:"مورد برجسته: {label}",tokensIn:"توکنهای ورودی",tokensOut:"توکنهای خروجی",comparePanel:"مقایسه",treeNodeMoved:"{label} به موقعیت {index} از {total} منتقل شد",gitStatusAdded:"افزودهشده",gitStatusModified:"تغییریافته",gitStatusDeleted:"حذفشده",gitStatusRenamed:"تغییرنامیافته",gitStatusUntracked:"ردیابینشده",gitStatusConflicted:"دارای تداخل",gitStatusIgnored:"نادیدهگرفتهشده",envListValueHidden:"مقدار پنهان است",provenanceEntities:"موجودیتها",flowItemAnnouncement:"{item} ({index} از {total})",neighborDirectionIn:"ورودی",neighborDirectionOut:"خروجی",neighborDirectionBoth:"دوجهته",promptStudioRoleSystem:"سیستم",promptStudioRoleUser:"کاربر",promptStudioRoleAssistant:"دستیار",moveUp:"حرکت به بالا",moveDown:"حرکت به پایین",reorderItemMoved:"به موقعیت {index} از {total} منتقل شد"};registerLyraLocale("fa",strings,{dir:"rtl",name:"فارسی"});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{registerLyraLocale}from"../../internal/localization-runtime.js";const strings={carousel:"carrousel",carouselLabel:"Carrousel",carouselSlide:"diapositive",carouselSlidePosition:"Diapositive {index} sur {total}",carouselSlideAnnouncement:"{position} : {content}",carouselSlideAnnouncementSeparator:". ",carouselIndicators:"Diapositives du carrousel",carouselGoTo:"Aller à la diapositive {index}",scrollerLabel:"Contenu défilant",scrollPrevious:"Défiler vers l’arrière",scrollNext:"Défiler vers l’avant",closeNavigation:"Fermer la navigation",openNavigation:"Ouvrir la navigation",resizeNavigation:"Redimensionner la navigation",appRailCollapse:"Réduire la navigation",appRailExpand:"Développer la navigation",resizeValuePercent:"{value} pour cent",commandPaletteLabel:"Palette de commandes",commandPalettePlaceholder:"Rechercher des commandes…",commandPaletteEmpty:"Aucune commande correspondante.",commandPaletteResults:"Commandes",dockPanelCollapse:"Réduire le panneau",dockPanelExpand:"Développer le panneau",dockPanelResize:"Redimensionner le panneau",responsivePanel:"Panneau",breadcrumb:"Fil d’Ariane",resizeDivider:"Redimensionner le séparateur entre le panneau {a} et le panneau {b}",widgetFullscreenPanel:"Panneau plein écran",widgetViewGroup:"Vue du panneau",widgetExitFullscreen:"Quitter le plein écran",widgetExpandToFullscreen:"Passer en plein écran",widgetCollapse:"Réduire le panneau",widgetExpand:"Développer le panneau",skipToContent:"Aller au contenu",dashboardGridLabel:"Grille du tableau de bord",dashboardCellCollisionRejected:"{label} ne peut pas être placé ici car il chevauche une autre cellule.",dashboardCellMoved:"{label} déplacé vers la colonne {x}, ligne {y}.",dashboardCellResized:"{label} redimensionné à {w} de largeur et {h} de hauteur.",filterBarReset:"Réinitialiser les filtres",filterBarActiveFilters:"Filtres actifs",drilldownDocuments:"Documents",drilldownRuns:"Exécutions d’agent",drilldownEmpty:"Aucun élément sélectionné",drilldownUntitledNode:"Étape sans titre",reorderMovePending:"Réorganisation en attente.",reorderMoveCancelled:"Réorganisation annulée."};registerLyraLocale("fr",strings);
|
|
1
|
+
import{registerLyraLocale}from"../../internal/localization-runtime.js";const strings={carousel:"carrousel",carouselLabel:"Carrousel",carouselSlide:"diapositive",carouselSlidePosition:"Diapositive {index} sur {total}",carouselSlideAnnouncement:"{position} : {content}",carouselSlideAnnouncementSeparator:". ",carouselIndicators:"Diapositives du carrousel",carouselGoTo:"Aller à la diapositive {index}",scrollerLabel:"Contenu défilant",scrollPrevious:"Défiler vers l’arrière",scrollNext:"Défiler vers l’avant",closeNavigation:"Fermer la navigation",openNavigation:"Ouvrir la navigation",resizeNavigation:"Redimensionner la navigation",appRailCollapse:"Réduire la navigation",appRailExpand:"Développer la navigation",appRailItemCollapse:"Réduire {label}",appRailItemExpand:"Développer {label}",resizeValuePercent:"{value} pour cent",commandPaletteLabel:"Palette de commandes",commandPalettePlaceholder:"Rechercher des commandes…",commandPaletteEmpty:"Aucune commande correspondante.",commandPaletteResults:"Commandes",dockPanelCollapse:"Réduire le panneau",dockPanelExpand:"Développer le panneau",dockPanelResize:"Redimensionner le panneau",responsivePanel:"Panneau",breadcrumb:"Fil d’Ariane",resizeDivider:"Redimensionner le séparateur entre le panneau {a} et le panneau {b}",widgetFullscreenPanel:"Panneau plein écran",widgetViewGroup:"Vue du panneau",widgetExitFullscreen:"Quitter le plein écran",widgetExpandToFullscreen:"Passer en plein écran",widgetCollapse:"Réduire le panneau",widgetExpand:"Développer le panneau",skipToContent:"Aller au contenu",dashboardGridLabel:"Grille du tableau de bord",dashboardCellCollisionRejected:"{label} ne peut pas être placé ici car il chevauche une autre cellule.",dashboardCellMoved:"{label} déplacé vers la colonne {x}, ligne {y}.",dashboardCellResized:"{label} redimensionné à {w} de largeur et {h} de hauteur.",filterBarReset:"Réinitialiser les filtres",filterBarActiveFilters:"Filtres actifs",drilldownDocuments:"Documents",drilldownRuns:"Exécutions d’agent",drilldownEmpty:"Aucun élément sélectionné",drilldownUntitledNode:"Étape sans titre",reorderMovePending:"Réorganisation en attente.",reorderMoveCancelled:"Réorganisation annulée."};registerLyraLocale("fr",strings);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{registerLyraLocale}from"../../internal/localization-runtime.js";const strings={graphLegendLabel:"Légende du graphe",
|
|
1
|
+
import{registerLyraLocale}from"../../internal/localization-runtime.js";const strings={graphLegendLabel:"Légende du graphe",entityChipWithType:"{label}, {type}",showMore:"Afficher plus",untitledSource:"Source sans titre",sourcePageSuffix:"{base} — p. {page}",citationHighConfidence:"Confiance élevée",citationMediumConfidence:"Confiance moyenne",citationLowConfidence:"Confiance faible",citationVerified:"Vérifiée",citationUnverified:"Non vérifiée",graphDataList:"Données du graphe",graphItemAnnouncement:"{item} ({index} sur {total})",citation:"Citation {index}",citationWithStatus:"Citation {index}, {status}",citationWithCustomLabel:"Citation {index}, {label}",graphNode:"Nœud {label}",graphLink:"Lien de {source} à {target}",graphDiagram:"Diagramme nœuds-liens comportant {nodeCount} nœuds et {linkCount} liens",graphTypedNode:"{label} ({type})",graphExpandableItem:"{item}, développable",graphNodeFocused:"Centré sur {label}",graphSelectionCount:"{count} sélectionnés",graphNodesHidden:"{hidden} nœuds sur {total} masqués",graphCommunity:"Communauté {label}, {count} nœuds",ragAnswerLabel:"Réponse étayée",ragAnswerCitations:"Citations",ragAnswerSources:"Sources",ragAnswerRetry:"Réessayer la réponse",embeddingExplorerLabel:"Explorateur d’embeddings",embeddingExplorerEmpty:"Aucun point d’embedding",embeddingExplorerPoint:"{label}, point d’embedding {index}",knowledgeBaseAdminLabel:"Administration de la base de connaissances",knowledgeBaseAdminSourcesTab:"Sources",knowledgeBaseAdminIngestionTab:"Ingestion",graphMissingLibrary:'Ce composant nécessite le paquet optionnel "d3" pour afficher le graphe.',mindMapLabel:"Carte mentale",mindMapTopicStatus:"{label}, niveau {level}, {count} sous-thèmes",mindMapLeafStatus:"{label}, niveau {level}",mindMapExpanded:"{label} développé",mindMapCollapsed:"{label} réduit",entityDegree:"Connexions",entityCommunity:"Communauté",focusInGraph:"Centrer dans le graphe",untitledEntity:"Entité sans titre",untitledCommunity:"Communauté sans titre",communityMemberCount:"{count} membres",communityDrillIn:"Explorer la communauté",selectAllSources:"Sélectionner toutes les sources",sourcePickerSelection:"{selected} sur {total} sélectionnées",provenancePanelLabel:"Ancrage",provenanceRelationships:"Relations",provenanceCommunities:"Communautés",provenanceChunks:"Segments de texte",provenanceEmpty:"Aucune donnée d’ancrage pour cette réponse",chunkInspectorLabel:"Segments récupérés",chunkScore:"Pertinence {percent} %",scoreTierHigh:"Pertinence élevée",scoreTierMedium:"Pertinence moyenne",scoreTierLow:"Pertinence faible",chunkInspectorEmpty:"Aucun segment récupéré",nodePaletteLabel:"Palette de nœuds",nodePalettePlaceholder:"Rechercher des nœuds…",nodePaletteEmpty:"Aucun nœud correspondant.",nodePaletteDragHint:"Faites glisser vers le canevas ou appuyez sur Entrée pour placer",nodePaletteResultCount:{one:"{count} élément",many:"{count} éléments",other:"{count} éléments"},retrievalResultsSelectRow:"Sélectionner {label}",pathStripLabel:"Chemin",pathNodeStatus:"{label}, nœud {position} sur {total}",pathRelationStatus:"{relation}, relation",neighborListLabel:"Relations",neighborRowLabel:"{label}, {relation}, {direction}",neighborExpand:"Développer {label} dans le graphe",neighborListEmpty:"Aucune relation",neighborGroupHeader:"{relation} ({count})",memoryPanelLabel:"Mémoire",memoryPanelShortTermHeading:"Contexte à court terme",memoryPanelLongTermHeading:"Mémoires à long terme",memoryPanelAdd:"Ajouter à la mémoire à long terme",memoryPanelAddWithContext:"Ajouter « {label} » à la mémoire à long terme",memoryPanelForgetAll:"Tout oublier",memoryPanelConfirmAddHeading:"Ajouter cet élément à la mémoire à long terme ?",memoryPanelConfirmRemoveHeading:"Retirer cet élément ?",memoryPanelConfirmForgetHeading:"Oublier toutes les mémoires à long terme ?",memoryPanelConfirmForgetBody:"Cette action oublie définitivement les {count} mémoires à long terme.",graphExplorerLabel:"Explorateur du graphe de connaissances",graphExplorerSearchPlaceholder:"Rechercher des entités…",graphExplorerSearchResultsLabel:"Résultats de recherche",graphExplorerPin:"Épingler",graphExplorerUnpin:"Désépingler",graphExplorerPinned:"{label} épinglé",graphExplorerUnpinned:"{label} désépinglé",graphExplorerPinnedHeading:"Épinglés",graphExplorerFindPath:"Trouver un chemin",retrievalModeVector:"Vectoriel",retrievalModeKeyword:"Mots-clés",retrievalModeHybrid:"Hybride",retrievalSearchLabel:"Recherche documentaire",retrievalModeLabel:"Mode de recherche",retrievalFiltersLabel:"Filtres actifs",groundingSummaryLabel:"Résumé de l’ancrage",groundingSummaryEmpty:"Aucune évaluation d’ancrage disponible",groundingSummarySupportedLabel:"Affirmations étayées",groundingSummaryUnsupportedLabel:"Affirmations non étayées",groundingSummaryCoverageLabel:"Couverture des citations",groundingSummaryConfidenceLabel:"Confiance",groundingSummaryWarningsHeading:"Avertissements",groundingSummaryEvidenceHeading:"Preuves",claimEvidenceLabel:"Preuves des affirmations",claimEvidenceEmpty:"Aucune preuve disponible au niveau des affirmations",claimEvidenceSupported:"Étayée",claimEvidencePartiallySupported:"Partiellement étayée",claimEvidenceUnsupported:"Non étayée",claimEvidenceContradicted:"Contredite",claimEvidenceConfidence:"Confiance de {percent}",retrievalCompareLabel:"Comparaison des récupérations",retrievalCompareEmpty:"Aucun ensemble de résultats à comparer",retrievalCompareOverlap:"Recouvrement du top-k entre {left} et {right} : {percent}",retrievalCompareRank:"Rang {rank}",retrievalCompareDenseScore:"Dense",retrievalCompareSparseScore:"Creux",retrievalCompareRerankScore:"Reclassement",retrievalCompareFinalScore:"Final",ragEvalDashboardLabel:"Tableau de bord d’évaluation RAG",ragEvalDashboardEmpty:"Aucune exécution d’évaluation disponible",ragEvalDashboardRuns:"Exécutions d’évaluation",ragEvalDashboardSlices:"Sous-ensembles d’évaluation",ragEvalDashboardAllSlices:"Tous",ragEvalDashboardSliceUnavailable:"Aucune exécution d’évaluation n’est disponible pour {slice}.",knowledgeBaseSyncIdle:"Inactif",knowledgeBaseSyncSyncing:"Synchronisation",knowledgeBaseSyncPaused:"En pause",knowledgeBaseSyncSynced:"Synchronisé",knowledgeBaseSyncError:"Erreur",knowledgeBaseHealthHealthy:"Sain",knowledgeBaseHealthDegraded:"Dégradé",knowledgeBaseHealthFailed:"En échec",knowledgeBaseHealthUnknown:"Inconnu",knowledgeBasePermissionOwner:"Propriétaire",knowledgeBasePermissionEditor:"Éditeur",knowledgeBasePermissionViewer:"Lecteur",knowledgeBasePermissionRestricted:"Restreint",knowledgeBaseNeverSynced:"Jamais synchronisé",knowledgeBaseSyncAction:"Synchroniser maintenant",knowledgeBasePauseAction:"Suspendre la synchronisation",knowledgeBaseDeleteAction:"Supprimer la source",knowledgeBaseNameColumn:"Source",knowledgeBaseSyncColumn:"État de synchronisation",knowledgeBaseHealthColumn:"Santé de l’indexation",knowledgeBasePermissionColumn:"Permission",knowledgeBaseActionsColumn:"Actions",knowledgeBaseTotalSources:"Sources",knowledgeBaseSyncedSources:"Synchronisées",knowledgeBaseSyncingSources:"En cours de synchronisation",knowledgeBaseNeedsAttention:"Nécessite une attention",knowledgeBaseHeading:"Base de connaissances",knowledgeBaseCreateSource:"Ajouter une source",knowledgeBaseEmptyHeading:"Aucune source de connaissances pour l’instant",ingestionStageQueued:"En file d’attente",ingestionStageUploading:"Import",ingestionStageExtracting:"Extraction du texte",ingestionStageChunking:"Découpage",ingestionStageEmbedding:"Vectorisation",ingestionStageIndexing:"Indexation",ingestionStageDone:"Terminé",ingestionStageFailed:"Échec",ingestionStageCancelled:"Annulé",ingestionStageUnknown:"Étape inconnue",ingestionQueueLabel:"File d’ingestion",ingestionQueueEmpty:"Aucun document en file d’attente",retrievalFilterChipLabel:"{key} : {value}",retrievalSearchEmptyDescription:"Essayez un autre terme de recherche ou d’autres filtres.",groundingSummaryEvidenceSpan:"Caractères {start}–{end}",knowledgeBaseDocumentCount:"{count} indexés",knowledgeBaseRowActionsLabel:"Actions pour {name}",knowledgeBaseEmptyDescription:"Ajoutez une source pour commencer à indexer du contenu.",ingestionChunkCount:{one:"{count} segment",many:"{count} segments",other:"{count} segments"},ingestionItemProgressLabel:"{name} — {stage}",ingestionEmbeddedOfTotal:"{embedded} segments sur {total} vectorisés",ingestionAttemptCount:"Tentative {count}",ingestionRetryWithContext:"Réessayer {label}",ingestionCancelWithContext:"Annuler {label}",retrievalStageQueryRewrite:"Réécriture de la requête",retrievalStageEmbed:"Vectorisation",retrievalStageRetrieve:"Récupération",retrievalStageRerank:"Reclassement",retrievalStageFilter:"Filtrage",retrievalTraceEvidenceToggle:"Preuves de {label}"};registerLyraLocale("fr",strings);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{registerLyraLocale}from"../../internal/localization-runtime.js";const strings={noData:"Aucune donnée",jumpToLatest:"Aller au plus récent",loadMore:"Charger plus",viewerSearchMatchCount:{one:"{count} correspondance",many:"{count} correspondances",other:"{count} correspondances"},viewerSearchNoMatches:"Aucune correspondance",viewerSearchActiveMatch:"Correspondance {current} sur {total}",tableLoadFailed:"Impossible de charger les données",zoomOut:"Zoom arrière",zoomIn:"Zoom avant",clear:"Effacer",open:"Ouvrir",close:"Fermer",resizeValuePixels:"{value} pixels",copy:"Copier",copied:"Copié !",expand:"Développer",collapse:"Réduire",showMoreCount:"Afficher {count} de plus",showLess:"Afficher moins",retry:"Réessayer",remove:"Retirer",removeWithContext:"Retirer {label}",loading:"Chargement…",noMatches:"Aucune correspondance",previous:"Précédent",next:"Suivant",paginationLabel:"Pagination",paginationSummary:"{start}–{end} sur {total} {itemLabel}",cancel:"Annuler",search:"Rechercher",items:"éléments",item:"élément",notInCatalog:"absent du catalogue",fileSizeUnitB:"o",fileSizeUnitKb:"Ko",fileSizeUnitMb:"Mo",fileSizeUnitGb:"Go",fileSizeUnitTb:"To",resetZoom:"Réinitialiser le zoom",showMoreCollapsed:"+{count}",statusPending:"En attente",statusRunning:"En cours",statusSuccess:"Réussi",statusError:"Erreur",statusDenied:"Refusé",restore:"Restaurer",navigation:"Navigation",attachmentUntitledFile:"Fichier sans titre",chart:"Graphique",chartValueLabel:"{label} : {value}",date:"Date",dateInputMinMessage:"La date doit être postérieure ou égale au {min}.",dateInputMaxMessage:"La date doit être antérieure ou égale au {max}.",dateInputInvalid:"Saisissez une date valide.",documentPreviewEmpty:"Aucun contenu de type {type} à afficher.",documentPreviewTypeImage:"image",download:"Télécharger",progress:"Progression",popover:"Fenêtre contextuelle",details:"Détails",map:"Carte",select:"Sélectionner",sourceListDefaultLabel:"Sources",thinkingPanelLabel:"Réflexion",handoffToAgent:"Transféré à {agent}",handoffFromToAgent:"Transféré de {from} à {to}",thinking:"Réflexion…",deny:"Refuser",approve:"Approuver",fieldRequired:"Ce champ est obligatoire.",unsupportedFieldType:"Type de champ non pris en charge : « {type} ».",valueInvalid:"La valeur n’est pas valide.",copyFailed:"Échec de la copie",durationMilliseconds:"{value} ms",durationSeconds:"{value} s",menuLabel:"Menu",pdfViewerCurrentZoom:"{percent} %",anchorJumped:"Accès au passage surligné.",anchorJumpedToPage:"Accès à la page {page}.",anchorNotFound:"Passage introuvable dans ce document.",highlightWithLabel:"Surlignage : {label}",tokensIn:"Tokens en entrée",tokensOut:"Tokens en sortie",comparePanel:"Comparaison",treeNodeMoved:"{label} déplacé en position {index} sur {total}",gitStatusAdded:"Ajouté",gitStatusModified:"Modifié",gitStatusDeleted:"Supprimé",gitStatusRenamed:"Renommé",gitStatusUntracked:"Non suivi",gitStatusConflicted:"En conflit",gitStatusIgnored:"Ignoré",envListValueHidden:"Valeur masquée",provenanceEntities:"Entités",flowItemAnnouncement:"{item} ({index} sur {total})",neighborDirectionIn:"Entrante",neighborDirectionOut:"Sortante",neighborDirectionBoth:"Bidirectionnelle",promptStudioRoleSystem:"Système",promptStudioRoleUser:"Utilisateur",promptStudioRoleAssistant:"Assistant",moveUp:"Déplacer vers le haut",moveDown:"Déplacer vers le bas",reorderItemMoved:"Déplacé en position {index} sur {total}"};registerLyraLocale("fr",strings);
|
|
1
|
+
import{registerLyraLocale}from"../../internal/localization-runtime.js";const strings={noData:"Aucune donnée",legendTypeShown:"{label} affiché",legendTypeHidden:"{label} masqué",jumpToLatest:"Aller au plus récent",loadMore:"Charger plus",viewerSearchMatchCount:{one:"{count} correspondance",many:"{count} correspondances",other:"{count} correspondances"},viewerSearchNoMatches:"Aucune correspondance",viewerSearchActiveMatch:"Correspondance {current} sur {total}",tableLoadFailed:"Impossible de charger les données",zoomOut:"Zoom arrière",zoomIn:"Zoom avant",clear:"Effacer",open:"Ouvrir",close:"Fermer",resizeValuePixels:"{value} pixels",copy:"Copier",copied:"Copié !",expand:"Développer",collapse:"Réduire",showMoreCount:"Afficher {count} de plus",showLess:"Afficher moins",retry:"Réessayer",remove:"Retirer",removeWithContext:"Retirer {label}",loading:"Chargement…",noMatches:"Aucune correspondance",previous:"Précédent",next:"Suivant",paginationLabel:"Pagination",paginationSummary:"{start}–{end} sur {total} {itemLabel}",cancel:"Annuler",search:"Rechercher",items:"éléments",item:"élément",notInCatalog:"absent du catalogue",fileSizeUnitB:"o",fileSizeUnitKb:"Ko",fileSizeUnitMb:"Mo",fileSizeUnitGb:"Go",fileSizeUnitTb:"To",resetZoom:"Réinitialiser le zoom",showMoreCollapsed:"+{count}",statusPending:"En attente",statusRunning:"En cours",statusSuccess:"Réussi",statusError:"Erreur",statusDenied:"Refusé",restore:"Restaurer",navigation:"Navigation",attachmentUntitledFile:"Fichier sans titre",chart:"Graphique",chartValueLabel:"{label} : {value}",date:"Date",dateInputMinMessage:"La date doit être postérieure ou égale au {min}.",dateInputMaxMessage:"La date doit être antérieure ou égale au {max}.",dateInputInvalid:"Saisissez une date valide.",documentPreviewEmpty:"Aucun contenu de type {type} à afficher.",documentPreviewTypeImage:"image",download:"Télécharger",progress:"Progression",popover:"Fenêtre contextuelle",details:"Détails",map:"Carte",select:"Sélectionner",sourceListDefaultLabel:"Sources",thinkingPanelLabel:"Réflexion",handoffToAgent:"Transféré à {agent}",handoffFromToAgent:"Transféré de {from} à {to}",thinking:"Réflexion…",deny:"Refuser",approve:"Approuver",fieldRequired:"Ce champ est obligatoire.",unsupportedFieldType:"Type de champ non pris en charge : « {type} ».",valueInvalid:"La valeur n’est pas valide.",copyFailed:"Échec de la copie",durationMilliseconds:"{value} ms",durationSeconds:"{value} s",menuLabel:"Menu",pdfViewerCurrentZoom:"{percent} %",anchorJumped:"Accès au passage surligné.",anchorJumpedToPage:"Accès à la page {page}.",anchorNotFound:"Passage introuvable dans ce document.",highlightWithLabel:"Surlignage : {label}",tokensIn:"Tokens en entrée",tokensOut:"Tokens en sortie",comparePanel:"Comparaison",treeNodeMoved:"{label} déplacé en position {index} sur {total}",gitStatusAdded:"Ajouté",gitStatusModified:"Modifié",gitStatusDeleted:"Supprimé",gitStatusRenamed:"Renommé",gitStatusUntracked:"Non suivi",gitStatusConflicted:"En conflit",gitStatusIgnored:"Ignoré",envListValueHidden:"Valeur masquée",provenanceEntities:"Entités",flowItemAnnouncement:"{item} ({index} sur {total})",neighborDirectionIn:"Entrante",neighborDirectionOut:"Sortante",neighborDirectionBoth:"Bidirectionnelle",promptStudioRoleSystem:"Système",promptStudioRoleUser:"Utilisateur",promptStudioRoleAssistant:"Assistant",moveUp:"Déplacer vers le haut",moveDown:"Déplacer vers le bas",reorderItemMoved:"Déplacé en position {index} sur {total}"};registerLyraLocale("fr",strings);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{registerLyraLocale}from"../../internal/localization-runtime.js";const strings={carousel:"קרוסלה",carouselLabel:"קרוסלה",carouselSlide:"שקופית",carouselSlidePosition:"שקופית {index} מתוך {total}",carouselSlideAnnouncement:"{position}: {content}",carouselSlideAnnouncementSeparator:". ",carouselIndicators:"שקופיות הקרוסלה",carouselGoTo:"עבור לשקופית {index}",scrollerLabel:"תוכן שניתן לגלול",scrollPrevious:"גלול אחורה",scrollNext:"גלול קדימה",closeNavigation:"סגור ניווט",openNavigation:"פתח את הניווט",resizeNavigation:"שנה את גודל הניווט",appRailCollapse:"כווץ את הניווט",appRailExpand:"הרחב את הניווט",resizeValuePercent:"{value} אחוזים",commandPaletteLabel:"לוח פקודות",commandPalettePlaceholder:"חפש פקודות…",commandPaletteEmpty:"אין פקודות תואמות.",commandPaletteResults:"פקודות",dockPanelCollapse:"כווץ לוח",dockPanelExpand:"הרחב את הלוח",dockPanelResize:"שנה את גודל הלוח",responsivePanel:"חלונית",breadcrumb:"פירורי לחם",resizeDivider:"שנה את גודל המפריד בין הלוח {a} ללוח {b}",widgetFullscreenPanel:"פאנל מסך מלא",widgetViewGroup:"תצוגת פאנל",widgetExitFullscreen:"צא ממסך מלא",widgetExpandToFullscreen:"הרחב למסך מלא",widgetCollapse:"כווץ לוח",widgetExpand:"הרחב את הלוח",skipToContent:"דלג לתוכן",dashboardGridLabel:"רשת לוח המחוונים",dashboardCellCollisionRejected:"לא ניתן למקם שם {label} כי הוא חופף לתא אחר.",dashboardCellMoved:"{label} הועבר לעמודה {x}, שורה {y}.",dashboardCellResized:"{label} השתנה לרוחב {w}, גובה {h}.",filterBarReset:"אפס מסננים",filterBarActiveFilters:"מסננים פעילים",drilldownDocuments:"מסמכים",drilldownRuns:"הרצות סוכן",drilldownEmpty:"לא נבחר פריט",drilldownUntitledNode:"שלב ללא כותרת",reorderMovePending:"שינוי הסדר בהמתנה.",reorderMoveCancelled:"הסידור מחדש בוטל."};registerLyraLocale("he",strings,{dir:"rtl",name:"עברית"});
|
|
1
|
+
import{registerLyraLocale}from"../../internal/localization-runtime.js";const strings={carousel:"קרוסלה",carouselLabel:"קרוסלה",carouselSlide:"שקופית",carouselSlidePosition:"שקופית {index} מתוך {total}",carouselSlideAnnouncement:"{position}: {content}",carouselSlideAnnouncementSeparator:". ",carouselIndicators:"שקופיות הקרוסלה",carouselGoTo:"עבור לשקופית {index}",scrollerLabel:"תוכן שניתן לגלול",scrollPrevious:"גלול אחורה",scrollNext:"גלול קדימה",closeNavigation:"סגור ניווט",openNavigation:"פתח את הניווט",resizeNavigation:"שנה את גודל הניווט",appRailCollapse:"כווץ את הניווט",appRailExpand:"הרחב את הניווט",appRailItemCollapse:"כווץ {label}",appRailItemExpand:"הרחב את {label}",resizeValuePercent:"{value} אחוזים",commandPaletteLabel:"לוח פקודות",commandPalettePlaceholder:"חפש פקודות…",commandPaletteEmpty:"אין פקודות תואמות.",commandPaletteResults:"פקודות",dockPanelCollapse:"כווץ לוח",dockPanelExpand:"הרחב את הלוח",dockPanelResize:"שנה את גודל הלוח",responsivePanel:"חלונית",breadcrumb:"פירורי לחם",resizeDivider:"שנה את גודל המפריד בין הלוח {a} ללוח {b}",widgetFullscreenPanel:"פאנל מסך מלא",widgetViewGroup:"תצוגת פאנל",widgetExitFullscreen:"צא ממסך מלא",widgetExpandToFullscreen:"הרחב למסך מלא",widgetCollapse:"כווץ לוח",widgetExpand:"הרחב את הלוח",skipToContent:"דלג לתוכן",dashboardGridLabel:"רשת לוח המחוונים",dashboardCellCollisionRejected:"לא ניתן למקם שם {label} כי הוא חופף לתא אחר.",dashboardCellMoved:"{label} הועבר לעמודה {x}, שורה {y}.",dashboardCellResized:"{label} השתנה לרוחב {w}, גובה {h}.",filterBarReset:"אפס מסננים",filterBarActiveFilters:"מסננים פעילים",drilldownDocuments:"מסמכים",drilldownRuns:"הרצות סוכן",drilldownEmpty:"לא נבחר פריט",drilldownUntitledNode:"שלב ללא כותרת",reorderMovePending:"שינוי הסדר בהמתנה.",reorderMoveCancelled:"הסידור מחדש בוטל."};registerLyraLocale("he",strings,{dir:"rtl",name:"עברית"});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{registerLyraLocale}from"../../internal/localization-runtime.js";const strings={graphLegendLabel:"מקרא הגרף",
|
|
1
|
+
import{registerLyraLocale}from"../../internal/localization-runtime.js";const strings={graphLegendLabel:"מקרא הגרף",entityChipWithType:"{label}, {type}",showMore:"הצג עוד",untitledSource:"מקור ללא כותרת",sourcePageSuffix:"{base} — עמ׳ {page}",citationHighConfidence:"ודאות גבוהה",citationMediumConfidence:"ודאות בינונית",citationLowConfidence:"ודאות נמוכה",citationVerified:"מאומת",citationUnverified:"לא מאומת",graphDataList:"גרף נתונים",graphItemAnnouncement:"{item} ({index} מתוך {total})",citation:"ציטוט {index}",citationWithStatus:"ציטוט {index}, {status}",citationWithCustomLabel:"ציטוט {index}, {label}",graphNode:"צומת {label}",graphLink:"קישור מ-{source} ל-{target}",graphDiagram:"דיאגרמת צמתים וקישורים הכוללת {nodeCount} צמתים ו-{linkCount} קישורים",graphTypedNode:"{label} ({type})",graphExpandableItem:"{item}, ניתן להרחבה",graphNodeFocused:"ממוקד על {label}",graphSelectionCount:"נבחרו: {count}",graphNodesHidden:"{hidden} מתוך {total} צמתים מוסתרים",graphCommunity:"קהילה {label}, {count} צמתים",ragAnswerLabel:"תשובה מבוססת",ragAnswerCitations:"ציטוטים",ragAnswerSources:"מקורות",ragAnswerRetry:"נסה לענות שוב",embeddingExplorerLabel:"סייר הטמעות",embeddingExplorerEmpty:"אין נקודות הטבעה",embeddingExplorerPoint:"{label}, נקודת הטבעה {index}",knowledgeBaseAdminLabel:"ניהול מאגר ידע",knowledgeBaseAdminSourcesTab:"מקורות",knowledgeBaseAdminIngestionTab:"קליטה",graphMissingLibrary:'כדי להציג את הגרף, יש להתקין את החבילה האופציונלית "d3".',mindMapLabel:"מפת חשיבה",mindMapTopicStatus:"{label}, רמה {level}, {count} נושאי משנה",mindMapLeafStatus:"{label}, רמה {level}",mindMapExpanded:"{label} מורחב",mindMapCollapsed:"{label} מכווץ",entityDegree:"חיבורים",entityCommunity:"קהילה",focusInGraph:"התמקד בגרף",untitledEntity:"ישות ללא כותרת",untitledCommunity:"קהילה ללא שם",communityMemberCount:"{count} חברים",communityDrillIn:"חקור את הקהילה",selectAllSources:"בחר את כל המקורות",sourcePickerSelection:"נבחרו {selected} מתוך {total}",provenancePanelLabel:"ביסוס",provenanceRelationships:"קשרים",provenanceCommunities:"קהילות",provenanceChunks:"מקטעי טקסט",provenanceEmpty:"אין נתוני ביסוס לתשובה זו",chunkInspectorLabel:"מקטעים שאוחזרו",chunkScore:"רלוונטיות {percent}%",scoreTierHigh:"רלוונטיות גבוהה",scoreTierMedium:"רלוונטיות בינונית",scoreTierLow:"רלוונטיות נמוכה",chunkInspectorEmpty:"לא אוחזרו נתחים",nodePaletteLabel:"פלטת צמתים",nodePalettePlaceholder:"חפש צמתים…",nodePaletteEmpty:"אין צמתים תואמים.",nodePaletteDragHint:"גרור אל משטח העבודה, או הקש Enter כדי למקם",nodePaletteResultCount:{one:"{count} פריט",two:"{count} פריטים",other:"{count} פריטים"},retrievalResultsSelectRow:"בחר {label}",pathStripLabel:"נתיב",pathNodeStatus:"{label}, צומת {position} מתוך {total}",pathRelationStatus:"{relation}, יחס",neighborListLabel:"קשרים",neighborRowLabel:"{label}, {relation}, {direction}",neighborExpand:"הרחב את {label} בגרף",neighborListEmpty:"אין קשרים",neighborGroupHeader:"{relation} ({count})",memoryPanelLabel:"זיכרון",memoryPanelShortTermHeading:"הקשר לטווח קצר",memoryPanelLongTermHeading:"זיכרונות לטווח ארוך",memoryPanelAdd:"הוסף לזיכרון לטווח ארוך",memoryPanelAddWithContext:'הוסף "{label}" לזיכרון לטווח ארוך',memoryPanelForgetAll:"שכח הכול",memoryPanelConfirmAddHeading:"להוסיף את זה לזיכרון לטווח ארוך?",memoryPanelConfirmRemoveHeading:"להסיר את הפריט הזה?",memoryPanelConfirmForgetHeading:"לשכוח את כל הזיכרונות לטווח ארוך?",memoryPanelConfirmForgetBody:"פעולה זו מוחקת לצמיתות את כל {count} הזיכרונות לטווח ארוך.",graphExplorerLabel:"סייר גרף הידע",graphExplorerSearchPlaceholder:"חפש ישויות…",graphExplorerSearchResultsLabel:"תוצאות חיפוש",graphExplorerPin:"הצמד",graphExplorerUnpin:"בטל הצמדה",graphExplorerPinned:"{label} מוצמד",graphExplorerUnpinned:"בוטלה ההצמדה של {label}",graphExplorerPinnedHeading:"מוצמד",graphExplorerFindPath:"מצא נתיב",retrievalModeVector:"וקטור",retrievalModeKeyword:"מילת מפתח",retrievalModeHybrid:"היברידי",retrievalSearchLabel:"חיפוש אחזור",retrievalModeLabel:"מצב חיפוש",retrievalFiltersLabel:"מסננים פעילים",groundingSummaryLabel:"סיכום הביסוס",groundingSummaryEmpty:"אין הערכת ביסוס זמינה",groundingSummarySupportedLabel:"טענות נתמכות",groundingSummaryUnsupportedLabel:"טענות לא נתמכות",groundingSummaryCoverageLabel:"כיסוי ציטוטים",groundingSummaryConfidenceLabel:"רמת ודאות",groundingSummaryWarningsHeading:"אזהרות",groundingSummaryEvidenceHeading:"ראיות",claimEvidenceLabel:"ראיות לטענה",claimEvidenceEmpty:"אין ראיות ברמת הטענה",claimEvidenceSupported:"נתמכת",claimEvidencePartiallySupported:"נתמכת חלקית",claimEvidenceUnsupported:"לא נתמכת",claimEvidenceContradicted:"נסתרת",claimEvidenceConfidence:"{percent} ודאות",retrievalCompareLabel:"השוואת אחזור",retrievalCompareEmpty:"אין ערכות תוצאות אחזור להשוואה",retrievalCompareOverlap:"חפיפה בין {left} ל־{right} בתוצאות ה־k המובילות: {percent}",retrievalCompareRank:"דירוג {rank}",retrievalCompareDenseScore:"צפוף",retrievalCompareSparseScore:"דליל",retrievalCompareRerankScore:"דירוג מחדש",retrievalCompareFinalScore:"סופי",ragEvalDashboardLabel:"לוח המחוונים להערכת RAG",ragEvalDashboardEmpty:"אין ריצות הערכה זמינות",ragEvalDashboardRuns:"ריצות הערכה",ragEvalDashboardSlices:"פרוסות הערכה",ragEvalDashboardAllSlices:"כל",ragEvalDashboardSliceUnavailable:"אין ריצות הערכה זמינות עבור {slice}.",knowledgeBaseSyncIdle:"לא פעיל",knowledgeBaseSyncSyncing:"מסנכרן",knowledgeBaseSyncPaused:"מושהה",knowledgeBaseSyncSynced:"מסונכרן",knowledgeBaseSyncError:"שגיאה",knowledgeBaseHealthHealthy:"בריא",knowledgeBaseHealthDegraded:"מצב ירוד",knowledgeBaseHealthFailed:"נכשל",knowledgeBaseHealthUnknown:"לא ידוע",knowledgeBasePermissionOwner:"בעלים",knowledgeBasePermissionEditor:"עורך",knowledgeBasePermissionViewer:"צופה",knowledgeBasePermissionRestricted:"מוגבל",knowledgeBaseNeverSynced:"מעולם לא סונכרן",knowledgeBaseSyncAction:"סנכרן עכשיו",knowledgeBasePauseAction:"השהה את הסנכרון",knowledgeBaseDeleteAction:"מחק מקור",knowledgeBaseNameColumn:"מקור",knowledgeBaseSyncColumn:"סטטוס סנכרון",knowledgeBaseHealthColumn:"תקינות האינדוקס",knowledgeBasePermissionColumn:"הרשאה",knowledgeBaseActionsColumn:"פעולות",knowledgeBaseTotalSources:"מקורות",knowledgeBaseSyncedSources:"מסונכרנים",knowledgeBaseSyncingSources:"מסתנכרנים",knowledgeBaseNeedsAttention:"דורשים טיפול",knowledgeBaseHeading:"מאגר ידע",knowledgeBaseCreateSource:"הוסף מקור",knowledgeBaseEmptyHeading:"עדיין אין מקורות ידע",ingestionStageQueued:"בתור",ingestionStageUploading:"מעלה",ingestionStageExtracting:"חילוץ טקסט",ingestionStageChunking:"חלוקה למקטעים",ingestionStageEmbedding:"יצירת הטמעות",ingestionStageIndexing:"יצירת אינדקס",ingestionStageDone:"הושלם",ingestionStageFailed:"נכשל",ingestionStageCancelled:"בוטל",ingestionStageUnknown:"שלב לא ידוע",ingestionQueueLabel:"תור קליטה",ingestionQueueEmpty:"אין מסמכים בתור",retrievalFilterChipLabel:"{key}: {value}",retrievalSearchEmptyDescription:"נסה מונח חיפוש או מסננים אחרים.",groundingSummaryEvidenceSpan:"תווים {start}–{end}",knowledgeBaseDocumentCount:"{count} באינדקס",knowledgeBaseRowActionsLabel:"פעולות עבור {name}",knowledgeBaseEmptyDescription:"הוסף מקור כדי להתחיל להוסיף תוכן לאינדקס.",ingestionChunkCount:{one:"{count} מקטע",two:"{count} מקטעים",other:"{count} מקטעים"},ingestionItemProgressLabel:"{name} — {stage}",ingestionEmbeddedOfTotal:"הוטמעו {embedded} מתוך {total} מקטעים",ingestionAttemptCount:"ניסיון {count}",ingestionRetryWithContext:"נסה שוב {label}",ingestionCancelWithContext:"בטל {label}",retrievalStageQueryRewrite:"שכתוב שאילתה",retrievalStageEmbed:"הטמעה",retrievalStageRetrieve:"אחזור",retrievalStageRerank:"דירוג מחדש",retrievalStageFilter:"סינון",retrievalTraceEvidenceToggle:"ראיות עבור {label}"};registerLyraLocale("he",strings,{dir:"rtl",name:"עברית"});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{registerLyraLocale}from"../../internal/localization-runtime.js";const strings={noData:"אין נתונים",jumpToLatest:"עבור אל העדכנית ביותר",loadMore:"טען עוד",viewerSearchMatchCount:{one:"{count} התאמה",two:"{count} התאמות",other:"{count} התאמות"},viewerSearchNoMatches:"אין התאמות",viewerSearchActiveMatch:"התאמה {current} מתוך {total}",tableLoadFailed:"לא ניתן לטעון את הנתונים",zoomOut:"הקטנה",zoomIn:"הגדלה",clear:"נקה",open:"פתח",close:"סגור",resizeValuePixels:"{value} פיקסלים",copy:"העתק",copied:"הועתק!",expand:"הרחב",collapse:"כווץ",showMoreCount:"הצג עוד {count}",showLess:"הצג פחות",retry:"נסה שוב",remove:"הסר",removeWithContext:"הסר את {label}",loading:"טוען…",noMatches:"אין התאמות",previous:"הקודם",next:"הבא",paginationLabel:"עימוד",paginationSummary:"{start}–{end} מתוך {total} {itemLabel}",cancel:"בטל",search:"חפש",items:"פריטים",item:"פריט",notInCatalog:"לא בקטלוג",fileSizeUnitB:"B",fileSizeUnitKb:"KB",fileSizeUnitMb:"MB",fileSizeUnitGb:"GB",fileSizeUnitTb:"TB",resetZoom:"אפס זום",showMoreCollapsed:"+{count}",statusPending:"ממתין",statusRunning:"פועל",statusSuccess:"הצלחה",statusError:"שגיאה",statusDenied:"נדחה",restore:"שחזר",navigation:"ניווט",attachmentUntitledFile:"קובץ ללא שם",chart:"תרשים",chartValueLabel:"{label}: {value}",date:"תאריך",dateInputMinMessage:"התאריך חייב להיות בתאריך {min} או אחריו.",dateInputMaxMessage:"התאריך חייב להיות בתאריך {max} או לפניו.",dateInputInvalid:"הזן תאריך חוקי.",documentPreviewEmpty:"אין {type} לתצוגה.",documentPreviewTypeImage:"תמונה",download:"הורד",progress:"התקדמות",popover:"פופ-אובר",details:"פרטים",map:"מפה",select:"בחר",sourceListDefaultLabel:"מקורות",thinkingPanelLabel:"חשיבה",handoffToAgent:"הועבר אל {agent}",handoffFromToAgent:"הועבר מ-{from} ל-{to}",thinking:"חשיבה…",deny:"דחה",approve:"אשר",fieldRequired:"שדה זה חובה.",unsupportedFieldType:'סוג שדה לא נתמך "{type}".',valueInvalid:"הערך לא חוקי.",copyFailed:"ההעתקה נכשלה",durationMilliseconds:"{value} מילישניות",durationSeconds:"{value} שניות",menuLabel:"תפריט",pdfViewerCurrentZoom:"{percent}%",anchorJumped:"בוצע מעבר לקטע המודגש.",anchorJumpedToPage:"בוצע מעבר לעמוד {page}.",anchorNotFound:"הקטע לא נמצא במסמך זה.",highlightWithLabel:"הדגשה: {label}",tokensIn:"אסימוני קלט",tokensOut:"אסימוני פלט",comparePanel:"השוואה",treeNodeMoved:"הפריט {label} הועבר למיקום {index} מתוך {total}",gitStatusAdded:"נוסף",gitStatusModified:"שונה",gitStatusDeleted:"נמחק",gitStatusRenamed:"השם שונה",gitStatusUntracked:"ללא מעקב",gitStatusConflicted:"מסוכסך",gitStatusIgnored:"התעלמות",envListValueHidden:"ערך מוסתר",provenanceEntities:"ישויות",flowItemAnnouncement:"{item} ({index} מתוך {total})",neighborDirectionIn:"נכנס",neighborDirectionOut:"יוצא",neighborDirectionBoth:"דו-כיווני",promptStudioRoleSystem:"מערכת",promptStudioRoleUser:"משתמש",promptStudioRoleAssistant:"עוזר",moveUp:"העבר למעלה",moveDown:"העבר למטה",reorderItemMoved:"הועבר למיקום {index} מתוך {total}"};registerLyraLocale("he",strings,{dir:"rtl",name:"עברית"});
|
|
1
|
+
import{registerLyraLocale}from"../../internal/localization-runtime.js";const strings={noData:"אין נתונים",legendTypeShown:"{label} מוצג",legendTypeHidden:"{label} מוסתר",jumpToLatest:"עבור אל העדכנית ביותר",loadMore:"טען עוד",viewerSearchMatchCount:{one:"{count} התאמה",two:"{count} התאמות",other:"{count} התאמות"},viewerSearchNoMatches:"אין התאמות",viewerSearchActiveMatch:"התאמה {current} מתוך {total}",tableLoadFailed:"לא ניתן לטעון את הנתונים",zoomOut:"הקטנה",zoomIn:"הגדלה",clear:"נקה",open:"פתח",close:"סגור",resizeValuePixels:"{value} פיקסלים",copy:"העתק",copied:"הועתק!",expand:"הרחב",collapse:"כווץ",showMoreCount:"הצג עוד {count}",showLess:"הצג פחות",retry:"נסה שוב",remove:"הסר",removeWithContext:"הסר את {label}",loading:"טוען…",noMatches:"אין התאמות",previous:"הקודם",next:"הבא",paginationLabel:"עימוד",paginationSummary:"{start}–{end} מתוך {total} {itemLabel}",cancel:"בטל",search:"חפש",items:"פריטים",item:"פריט",notInCatalog:"לא בקטלוג",fileSizeUnitB:"B",fileSizeUnitKb:"KB",fileSizeUnitMb:"MB",fileSizeUnitGb:"GB",fileSizeUnitTb:"TB",resetZoom:"אפס זום",showMoreCollapsed:"+{count}",statusPending:"ממתין",statusRunning:"פועל",statusSuccess:"הצלחה",statusError:"שגיאה",statusDenied:"נדחה",restore:"שחזר",navigation:"ניווט",attachmentUntitledFile:"קובץ ללא שם",chart:"תרשים",chartValueLabel:"{label}: {value}",date:"תאריך",dateInputMinMessage:"התאריך חייב להיות בתאריך {min} או אחריו.",dateInputMaxMessage:"התאריך חייב להיות בתאריך {max} או לפניו.",dateInputInvalid:"הזן תאריך חוקי.",documentPreviewEmpty:"אין {type} לתצוגה.",documentPreviewTypeImage:"תמונה",download:"הורד",progress:"התקדמות",popover:"פופ-אובר",details:"פרטים",map:"מפה",select:"בחר",sourceListDefaultLabel:"מקורות",thinkingPanelLabel:"חשיבה",handoffToAgent:"הועבר אל {agent}",handoffFromToAgent:"הועבר מ-{from} ל-{to}",thinking:"חשיבה…",deny:"דחה",approve:"אשר",fieldRequired:"שדה זה חובה.",unsupportedFieldType:'סוג שדה לא נתמך "{type}".',valueInvalid:"הערך לא חוקי.",copyFailed:"ההעתקה נכשלה",durationMilliseconds:"{value} מילישניות",durationSeconds:"{value} שניות",menuLabel:"תפריט",pdfViewerCurrentZoom:"{percent}%",anchorJumped:"בוצע מעבר לקטע המודגש.",anchorJumpedToPage:"בוצע מעבר לעמוד {page}.",anchorNotFound:"הקטע לא נמצא במסמך זה.",highlightWithLabel:"הדגשה: {label}",tokensIn:"אסימוני קלט",tokensOut:"אסימוני פלט",comparePanel:"השוואה",treeNodeMoved:"הפריט {label} הועבר למיקום {index} מתוך {total}",gitStatusAdded:"נוסף",gitStatusModified:"שונה",gitStatusDeleted:"נמחק",gitStatusRenamed:"השם שונה",gitStatusUntracked:"ללא מעקב",gitStatusConflicted:"מסוכסך",gitStatusIgnored:"התעלמות",envListValueHidden:"ערך מוסתר",provenanceEntities:"ישויות",flowItemAnnouncement:"{item} ({index} מתוך {total})",neighborDirectionIn:"נכנס",neighborDirectionOut:"יוצא",neighborDirectionBoth:"דו-כיווני",promptStudioRoleSystem:"מערכת",promptStudioRoleUser:"משתמש",promptStudioRoleAssistant:"עוזר",moveUp:"העבר למעלה",moveDown:"העבר למטה",reorderItemMoved:"הועבר למיקום {index} מתוך {total}"};registerLyraLocale("he",strings,{dir:"rtl",name:"עברית"});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{registerLyraLocale}from"../../internal/localization-runtime.js";const strings={carousel:"carosello",carouselLabel:"Carosello",carouselSlide:"diapositiva",carouselSlidePosition:"Diapositiva {index} di {total}",carouselSlideAnnouncement:"{position}: {content}",carouselSlideAnnouncementSeparator:". ",carouselIndicators:"Diapositive del carosello",carouselGoTo:"Vai alla diapositiva {index}",scrollerLabel:"Contenuto scorrevole",scrollPrevious:"Scorri indietro",scrollNext:"Scorri avanti",closeNavigation:"Chiudi la navigazione",openNavigation:"Apri la navigazione",resizeNavigation:"Ridimensiona la navigazione",appRailCollapse:"Comprimi la navigazione",appRailExpand:"Espandi la navigazione",resizeValuePercent:"{value} percento",commandPaletteLabel:"Tavolozza dei comandi",commandPalettePlaceholder:"Cerca comandi…",commandPaletteEmpty:"Nessun comando corrispondente.",commandPaletteResults:"Comandi",dockPanelCollapse:"Comprimi il pannello",dockPanelExpand:"Espandi il pannello",dockPanelResize:"Ridimensiona il pannello",responsivePanel:"Pannello",breadcrumb:"Percorso di navigazione",resizeDivider:"Ridimensiona il divisore tra il pannello {a} e il pannello {b}",widgetFullscreenPanel:"Pannello a schermo intero",widgetViewGroup:"Vista del pannello",widgetExitFullscreen:"Esci dallo schermo intero",widgetExpandToFullscreen:"Espandi a schermo intero",widgetCollapse:"Comprimi il pannello",widgetExpand:"Espandi il pannello",skipToContent:"Vai al contenuto",dashboardGridLabel:"Griglia della dashboard",dashboardCellCollisionRejected:"{label} non può essere posizionato qui perché si sovrappone a un’altra cella.",dashboardCellMoved:"{label} spostato nella colonna {x}, riga {y}.",dashboardCellResized:"{label} ridimensionato a larghezza {w}, altezza {h}.",filterBarReset:"Ripristina i filtri",filterBarActiveFilters:"Filtri attivi",drilldownDocuments:"Documenti",drilldownRuns:"Esecuzioni agente",drilldownEmpty:"Nessun elemento selezionato",drilldownUntitledNode:"Passaggio senza titolo",reorderMovePending:"Riordinamento in corso.",reorderMoveCancelled:"Riordinamento annullato."};registerLyraLocale("it",strings);
|
|
1
|
+
import{registerLyraLocale}from"../../internal/localization-runtime.js";const strings={carousel:"carosello",carouselLabel:"Carosello",carouselSlide:"diapositiva",carouselSlidePosition:"Diapositiva {index} di {total}",carouselSlideAnnouncement:"{position}: {content}",carouselSlideAnnouncementSeparator:". ",carouselIndicators:"Diapositive del carosello",carouselGoTo:"Vai alla diapositiva {index}",scrollerLabel:"Contenuto scorrevole",scrollPrevious:"Scorri indietro",scrollNext:"Scorri avanti",closeNavigation:"Chiudi la navigazione",openNavigation:"Apri la navigazione",resizeNavigation:"Ridimensiona la navigazione",appRailCollapse:"Comprimi la navigazione",appRailExpand:"Espandi la navigazione",appRailItemCollapse:"Comprimi {label}",appRailItemExpand:"Espandi {label}",resizeValuePercent:"{value} percento",commandPaletteLabel:"Tavolozza dei comandi",commandPalettePlaceholder:"Cerca comandi…",commandPaletteEmpty:"Nessun comando corrispondente.",commandPaletteResults:"Comandi",dockPanelCollapse:"Comprimi il pannello",dockPanelExpand:"Espandi il pannello",dockPanelResize:"Ridimensiona il pannello",responsivePanel:"Pannello",breadcrumb:"Percorso di navigazione",resizeDivider:"Ridimensiona il divisore tra il pannello {a} e il pannello {b}",widgetFullscreenPanel:"Pannello a schermo intero",widgetViewGroup:"Vista del pannello",widgetExitFullscreen:"Esci dallo schermo intero",widgetExpandToFullscreen:"Espandi a schermo intero",widgetCollapse:"Comprimi il pannello",widgetExpand:"Espandi il pannello",skipToContent:"Vai al contenuto",dashboardGridLabel:"Griglia della dashboard",dashboardCellCollisionRejected:"{label} non può essere posizionato qui perché si sovrappone a un’altra cella.",dashboardCellMoved:"{label} spostato nella colonna {x}, riga {y}.",dashboardCellResized:"{label} ridimensionato a larghezza {w}, altezza {h}.",filterBarReset:"Ripristina i filtri",filterBarActiveFilters:"Filtri attivi",drilldownDocuments:"Documenti",drilldownRuns:"Esecuzioni agente",drilldownEmpty:"Nessun elemento selezionato",drilldownUntitledNode:"Passaggio senza titolo",reorderMovePending:"Riordinamento in corso.",reorderMoveCancelled:"Riordinamento annullato."};registerLyraLocale("it",strings);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{registerLyraLocale}from"../../internal/localization-runtime.js";const strings={graphLegendLabel:"Legenda del grafo",
|
|
1
|
+
import{registerLyraLocale}from"../../internal/localization-runtime.js";const strings={graphLegendLabel:"Legenda del grafo",entityChipWithType:"{label}, {type}",showMore:"Mostra altro",untitledSource:"Fonte senza titolo",sourcePageSuffix:"{base} — p. {page}",citationHighConfidence:"Affidabilità alta",citationMediumConfidence:"Affidabilità media",citationLowConfidence:"Affidabilità bassa",citationVerified:"Verificata",citationUnverified:"Non verificata",graphDataList:"Dati del grafo",graphItemAnnouncement:"{item} ({index} di {total})",citation:"Citazione {index}",citationWithStatus:"Citazione {index}, {status}",citationWithCustomLabel:"Citazione {index}, {label}",graphNode:"Nodo {label}",graphLink:"Collegamento da {source} a {target}",graphDiagram:"Diagramma nodi-collegamenti con {nodeCount} nodi e {linkCount} collegamenti",graphTypedNode:"{label} ({type})",graphExpandableItem:"{item}, espandibile",graphNodeFocused:"Centrato su {label}",graphSelectionCount:"{count} selezionati",graphNodesHidden:"{hidden} di {total} nodi nascosti",graphCommunity:"Comunità {label}, {count} nodi",ragAnswerLabel:"Risposta basata su fonti",ragAnswerCitations:"Citazioni",ragAnswerSources:"Fonti",ragAnswerRetry:"Riprova risposta",embeddingExplorerLabel:"Esploratore di embedding",embeddingExplorerEmpty:"Nessun punto di embedding",embeddingExplorerPoint:"{label}, punto di embedding {index}",knowledgeBaseAdminLabel:"Amministrazione base di conoscenza",knowledgeBaseAdminSourcesTab:"Fonti",knowledgeBaseAdminIngestionTab:"Acquisizione",graphMissingLibrary:'Questo componente richiede il pacchetto opzionale "d3" installato per visualizzare il grafo.',mindMapLabel:"Mappa mentale",mindMapTopicStatus:"{label}, livello {level}, {count} sottoargomenti",mindMapLeafStatus:"{label}, livello {level}",mindMapExpanded:"{label} espanso",mindMapCollapsed:"{label} compresso",entityDegree:"Connessioni",entityCommunity:"Comunità",focusInGraph:"Centra nel grafo",untitledEntity:"Entità senza titolo",untitledCommunity:"Comunità senza titolo",communityMemberCount:"{count} membri",communityDrillIn:"Esplora comunità",selectAllSources:"Seleziona tutte le fonti",sourcePickerSelection:"{selected} di {total} selezionate",provenancePanelLabel:"Verifica delle fonti",provenanceRelationships:"Relazioni",provenanceCommunities:"Comunità",provenanceChunks:"Blocchi di testo",provenanceEmpty:"Nessun dato di verifica per questa risposta",chunkInspectorLabel:"Blocchi recuperati",chunkScore:"Rilevanza {percent}%",scoreTierHigh:"Rilevanza alta",scoreTierMedium:"Rilevanza media",scoreTierLow:"Rilevanza bassa",chunkInspectorEmpty:"Nessun blocco recuperato",nodePaletteLabel:"Tavolozza dei nodi",nodePalettePlaceholder:"Cerca nodi…",nodePaletteEmpty:"Nessun nodo corrispondente.",nodePaletteDragHint:"Trascina sull’area di lavoro oppure premi Invio per posizionare",nodePaletteResultCount:{one:"{count} elemento",many:"{count} elementi",other:"{count} elementi"},retrievalResultsSelectRow:"Seleziona {label}",pathStripLabel:"Percorso",pathNodeStatus:"{label}, nodo {position} di {total}",pathRelationStatus:"{relation}, relazione",neighborListLabel:"Relazioni",neighborRowLabel:"{label}, {relation}, {direction}",neighborExpand:"Espandi {label} nel grafo",neighborListEmpty:"Nessuna relazione",neighborGroupHeader:"{relation} ({count})",memoryPanelLabel:"Memoria",memoryPanelShortTermHeading:"Contesto a breve termine",memoryPanelLongTermHeading:"Memorie a lungo termine",memoryPanelAdd:"Aggiungi alla memoria a lungo termine",memoryPanelAddWithContext:'Aggiungi "{label}" alla memoria a lungo termine',memoryPanelForgetAll:"Elimina tutto",memoryPanelConfirmAddHeading:"Aggiungere questo alla memoria a lungo termine?",memoryPanelConfirmRemoveHeading:"Rimuovere questo elemento?",memoryPanelConfirmForgetHeading:"Eliminare tutte le memorie a lungo termine?",memoryPanelConfirmForgetBody:"Questo elimina definitivamente tutte le {count} memorie a lungo termine.",graphExplorerLabel:"Esploratore del grafo di conoscenza",graphExplorerSearchPlaceholder:"Cerca entità…",graphExplorerSearchResultsLabel:"Risultati della ricerca",graphExplorerPin:"Blocca",graphExplorerUnpin:"Sblocca",graphExplorerPinned:"{label} bloccato",graphExplorerUnpinned:"{label} sbloccato",graphExplorerPinnedHeading:"Bloccati",graphExplorerFindPath:"Trova percorso",retrievalModeVector:"Vettoriale",retrievalModeKeyword:"Parola chiave",retrievalModeHybrid:"Ibrida",retrievalSearchLabel:"Ricerca di recupero",retrievalModeLabel:"Modalità di ricerca",retrievalFiltersLabel:"Filtri attivi",groundingSummaryLabel:"Riepilogo verifica delle fonti",groundingSummaryEmpty:"Nessuna valutazione di verifica disponibile",groundingSummarySupportedLabel:"Affermazioni supportate",groundingSummaryUnsupportedLabel:"Affermazioni non supportate",groundingSummaryCoverageLabel:"Copertura delle citazioni",groundingSummaryConfidenceLabel:"Affidabilità",groundingSummaryWarningsHeading:"Avvisi",groundingSummaryEvidenceHeading:"Prove",claimEvidenceLabel:"Prove dell’affermazione",claimEvidenceEmpty:"Nessuna prova disponibile a livello di affermazione",claimEvidenceSupported:"Supportata",claimEvidencePartiallySupported:"Parzialmente supportata",claimEvidenceUnsupported:"Non supportata",claimEvidenceContradicted:"Contraddetta",claimEvidenceConfidence:"Affidabilità {percent}",retrievalCompareLabel:"Confronto di recupero",retrievalCompareEmpty:"Nessun set di risultati di recupero da confrontare",retrievalCompareOverlap:"Sovrapposizione top-k tra {left} e {right}: {percent}",retrievalCompareRank:"Posizione {rank}",retrievalCompareDenseScore:"Denso",retrievalCompareSparseScore:"Sparso",retrievalCompareRerankScore:"Riordinamento",retrievalCompareFinalScore:"Finale",ragEvalDashboardLabel:"Dashboard di valutazione RAG",ragEvalDashboardEmpty:"Nessuna esecuzione di valutazione disponibile",ragEvalDashboardRuns:"Esecuzioni di valutazione",ragEvalDashboardSlices:"Segmenti di valutazione",ragEvalDashboardAllSlices:"Tutti",ragEvalDashboardSliceUnavailable:"Nessuna esecuzione di valutazione disponibile per {slice}.",knowledgeBaseSyncIdle:"Inattiva",knowledgeBaseSyncSyncing:"Sincronizzazione",knowledgeBaseSyncPaused:"In pausa",knowledgeBaseSyncSynced:"Sincronizzata",knowledgeBaseSyncError:"Errore",knowledgeBaseHealthHealthy:"Integra",knowledgeBaseHealthDegraded:"Degradata",knowledgeBaseHealthFailed:"Non riuscita",knowledgeBaseHealthUnknown:"Sconosciuta",knowledgeBasePermissionOwner:"Proprietario",knowledgeBasePermissionEditor:"Editor",knowledgeBasePermissionViewer:"Visualizzatore",knowledgeBasePermissionRestricted:"Limitato",knowledgeBaseNeverSynced:"Mai sincronizzata",knowledgeBaseSyncAction:"Sincronizza ora",knowledgeBasePauseAction:"Sospendi sincronizzazione",knowledgeBaseDeleteAction:"Elimina fonte",knowledgeBaseNameColumn:"Fonte",knowledgeBaseSyncColumn:"Stato sincronizzazione",knowledgeBaseHealthColumn:"Integrità indicizzazione",knowledgeBasePermissionColumn:"Permesso",knowledgeBaseActionsColumn:"Azioni",knowledgeBaseTotalSources:"Fonti",knowledgeBaseSyncedSources:"Sincronizzate",knowledgeBaseSyncingSources:"In sincronizzazione",knowledgeBaseNeedsAttention:"Richiede attenzione",knowledgeBaseHeading:"Base di conoscenza",knowledgeBaseCreateSource:"Aggiungi fonte",knowledgeBaseEmptyHeading:"Ancora nessuna fonte di conoscenza",ingestionStageQueued:"In coda",ingestionStageUploading:"Caricamento",ingestionStageExtracting:"Estrazione testo",ingestionStageChunking:"Suddivisione in blocchi",ingestionStageEmbedding:"Calcolo embedding",ingestionStageIndexing:"Indicizzazione",ingestionStageDone:"Completato",ingestionStageFailed:"Non riuscita",ingestionStageCancelled:"Annullata",ingestionStageUnknown:"Fase sconosciuta",ingestionQueueLabel:"Coda di acquisizione",ingestionQueueEmpty:"Nessun documento in coda",retrievalFilterChipLabel:"{key}: {value}",retrievalSearchEmptyDescription:"Prova un termine di ricerca o filtri diversi.",groundingSummaryEvidenceSpan:"Caratteri {start}–{end}",knowledgeBaseDocumentCount:"{count} indicizzati",knowledgeBaseRowActionsLabel:"Azioni per {name}",knowledgeBaseEmptyDescription:"Aggiungi una fonte per iniziare a indicizzare i contenuti.",ingestionChunkCount:{one:"{count} blocco",many:"{count} blocchi",other:"{count} blocchi"},ingestionItemProgressLabel:"{name} — {stage}",ingestionEmbeddedOfTotal:"{embedded} di {total} blocchi calcolati",ingestionAttemptCount:"Tentativo {count}",ingestionRetryWithContext:"Riprova {label}",ingestionCancelWithContext:"Annulla {label}",retrievalStageQueryRewrite:"Riscrittura query",retrievalStageEmbed:"Embedding",retrievalStageRetrieve:"Recupero",retrievalStageRerank:"Riordinamento",retrievalStageFilter:"Filtro",retrievalTraceEvidenceToggle:"{label} prove"};registerLyraLocale("it",strings);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{registerLyraLocale}from"../../internal/localization-runtime.js";const strings={noData:"Nessun dato",jumpToLatest:"Vai all’ultimo",loadMore:"Carica altro",viewerSearchMatchCount:{one:"{count} corrispondenza",many:"{count} corrispondenze",other:"{count} corrispondenze"},viewerSearchNoMatches:"Nessuna corrispondenza",viewerSearchActiveMatch:"Corrispondenza {current} di {total}",tableLoadFailed:"Impossibile caricare i dati",zoomOut:"Rimpicciolisci",zoomIn:"Ingrandisci",clear:"Cancella",open:"Apri",close:"Chiudi",resizeValuePixels:"{value} pixel",copy:"Copia",copied:"Copiato!",expand:"Espandi",collapse:"Comprimi",showMoreCount:"Mostra altri {count}",showLess:"Mostra meno",retry:"Riprova",remove:"Rimuovi",removeWithContext:"Rimuovi {label}",loading:"Caricamento…",noMatches:"Nessuna corrispondenza",previous:"Precedente",next:"Successivo",paginationLabel:"Paginazione",paginationSummary:"{start}–{end} di {total} {itemLabel}",cancel:"Annulla",search:"Cerca",items:"elementi",item:"elemento",notInCatalog:"non nel catalogo",fileSizeUnitB:"B",fileSizeUnitKb:"KB",fileSizeUnitMb:"MB",fileSizeUnitGb:"GB",fileSizeUnitTb:"TB",resetZoom:"Ripristina zoom",showMoreCollapsed:"+{count}",statusPending:"In attesa",statusRunning:"In corso",statusSuccess:"Riuscito",statusError:"Errore",statusDenied:"Negato",restore:"Ripristina",navigation:"Navigazione",attachmentUntitledFile:"File senza nome",chart:"Grafico",chartValueLabel:"{label}: {value}",date:"Data",dateInputMinMessage:"La data deve essere pari o successiva a {min}.",dateInputMaxMessage:"La data deve essere pari o precedente a {max}.",dateInputInvalid:"Inserisci una data valida.",documentPreviewEmpty:"Nessun {type} da visualizzare.",documentPreviewTypeImage:"immagine",download:"Scarica",progress:"Avanzamento",popover:"Popover",details:"Dettagli",map:"Mappa",select:"Seleziona",sourceListDefaultLabel:"Fonti",thinkingPanelLabel:"Ragionamento",handoffToAgent:"Trasferito a {agent}",handoffFromToAgent:"Trasferito da {from} a {to}",thinking:"Sto ragionando…",deny:"Nega",approve:"Approva",fieldRequired:"Questo campo è obbligatorio.",unsupportedFieldType:'Tipo di campo non supportato "{type}".',valueInvalid:"Il valore non è valido.",copyFailed:"Copia non riuscita",durationMilliseconds:"{value}ms",durationSeconds:"{value}s",menuLabel:"Menu",pdfViewerCurrentZoom:"{percent}%",anchorJumped:"Passato al passaggio evidenziato.",anchorJumpedToPage:"Passato alla pagina {page}.",anchorNotFound:"Passaggio non trovato in questo documento.",highlightWithLabel:"Evidenziazione: {label}",tokensIn:"Token in ingresso",tokensOut:"Token in uscita",comparePanel:"Confronto",treeNodeMoved:"{label} spostato in posizione {index} di {total}",gitStatusAdded:"Aggiunto",gitStatusModified:"Modificato",gitStatusDeleted:"Eliminato",gitStatusRenamed:"Rinominato",gitStatusUntracked:"Non tracciato",gitStatusConflicted:"In conflitto",gitStatusIgnored:"Ignorato",envListValueHidden:"Valore nascosto",provenanceEntities:"Entità",flowItemAnnouncement:"{item} ({index} di {total})",neighborDirectionIn:"Entrante",neighborDirectionOut:"Uscente",neighborDirectionBoth:"Bidirezionale",promptStudioRoleSystem:"Sistema",promptStudioRoleUser:"Utente",promptStudioRoleAssistant:"Assistente",moveUp:"Sposta su",moveDown:"Sposta giù",reorderItemMoved:"Spostato in posizione {index} di {total}"};registerLyraLocale("it",strings);
|
|
1
|
+
import{registerLyraLocale}from"../../internal/localization-runtime.js";const strings={noData:"Nessun dato",legendTypeShown:"{label} mostrato",legendTypeHidden:"{label} nascosto",jumpToLatest:"Vai all’ultimo",loadMore:"Carica altro",viewerSearchMatchCount:{one:"{count} corrispondenza",many:"{count} corrispondenze",other:"{count} corrispondenze"},viewerSearchNoMatches:"Nessuna corrispondenza",viewerSearchActiveMatch:"Corrispondenza {current} di {total}",tableLoadFailed:"Impossibile caricare i dati",zoomOut:"Rimpicciolisci",zoomIn:"Ingrandisci",clear:"Cancella",open:"Apri",close:"Chiudi",resizeValuePixels:"{value} pixel",copy:"Copia",copied:"Copiato!",expand:"Espandi",collapse:"Comprimi",showMoreCount:"Mostra altri {count}",showLess:"Mostra meno",retry:"Riprova",remove:"Rimuovi",removeWithContext:"Rimuovi {label}",loading:"Caricamento…",noMatches:"Nessuna corrispondenza",previous:"Precedente",next:"Successivo",paginationLabel:"Paginazione",paginationSummary:"{start}–{end} di {total} {itemLabel}",cancel:"Annulla",search:"Cerca",items:"elementi",item:"elemento",notInCatalog:"non nel catalogo",fileSizeUnitB:"B",fileSizeUnitKb:"KB",fileSizeUnitMb:"MB",fileSizeUnitGb:"GB",fileSizeUnitTb:"TB",resetZoom:"Ripristina zoom",showMoreCollapsed:"+{count}",statusPending:"In attesa",statusRunning:"In corso",statusSuccess:"Riuscito",statusError:"Errore",statusDenied:"Negato",restore:"Ripristina",navigation:"Navigazione",attachmentUntitledFile:"File senza nome",chart:"Grafico",chartValueLabel:"{label}: {value}",date:"Data",dateInputMinMessage:"La data deve essere pari o successiva a {min}.",dateInputMaxMessage:"La data deve essere pari o precedente a {max}.",dateInputInvalid:"Inserisci una data valida.",documentPreviewEmpty:"Nessun {type} da visualizzare.",documentPreviewTypeImage:"immagine",download:"Scarica",progress:"Avanzamento",popover:"Popover",details:"Dettagli",map:"Mappa",select:"Seleziona",sourceListDefaultLabel:"Fonti",thinkingPanelLabel:"Ragionamento",handoffToAgent:"Trasferito a {agent}",handoffFromToAgent:"Trasferito da {from} a {to}",thinking:"Sto ragionando…",deny:"Nega",approve:"Approva",fieldRequired:"Questo campo è obbligatorio.",unsupportedFieldType:'Tipo di campo non supportato "{type}".',valueInvalid:"Il valore non è valido.",copyFailed:"Copia non riuscita",durationMilliseconds:"{value}ms",durationSeconds:"{value}s",menuLabel:"Menu",pdfViewerCurrentZoom:"{percent}%",anchorJumped:"Passato al passaggio evidenziato.",anchorJumpedToPage:"Passato alla pagina {page}.",anchorNotFound:"Passaggio non trovato in questo documento.",highlightWithLabel:"Evidenziazione: {label}",tokensIn:"Token in ingresso",tokensOut:"Token in uscita",comparePanel:"Confronto",treeNodeMoved:"{label} spostato in posizione {index} di {total}",gitStatusAdded:"Aggiunto",gitStatusModified:"Modificato",gitStatusDeleted:"Eliminato",gitStatusRenamed:"Rinominato",gitStatusUntracked:"Non tracciato",gitStatusConflicted:"In conflitto",gitStatusIgnored:"Ignorato",envListValueHidden:"Valore nascosto",provenanceEntities:"Entità",flowItemAnnouncement:"{item} ({index} di {total})",neighborDirectionIn:"Entrante",neighborDirectionOut:"Uscente",neighborDirectionBoth:"Bidirezionale",promptStudioRoleSystem:"Sistema",promptStudioRoleUser:"Utente",promptStudioRoleAssistant:"Assistente",moveUp:"Sposta su",moveDown:"Sposta giù",reorderItemMoved:"Spostato in posizione {index} di {total}"};registerLyraLocale("it",strings);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{registerLyraLocale}from"../../internal/localization-runtime.js";const strings={carousel:"カルーセル",carouselLabel:"カルーセル",carouselSlide:"スライド",carouselSlidePosition:"{total} 枚中 {index} 枚目のスライド",carouselSlideAnnouncement:"{position}:{content}",carouselSlideAnnouncementSeparator:"。",carouselIndicators:"カルーセルのスライド",carouselGoTo:"スライド {index} へ移動",scrollerLabel:"スクロール可能なコンテンツ",scrollPrevious:"前へスクロール",scrollNext:"次へスクロール",closeNavigation:"ナビゲーションを閉じる",openNavigation:"ナビゲーションを開く",resizeNavigation:"ナビゲーションのサイズを変更",appRailCollapse:"ナビゲーションを折りたたむ",appRailExpand:"ナビゲーションを展開",resizeValuePercent:"{value} パーセント",commandPaletteLabel:"コマンドパレット",commandPalettePlaceholder:"コマンドを検索…",commandPaletteEmpty:"一致するコマンドがありません。",commandPaletteResults:"コマンド",dockPanelCollapse:"パネルを折りたたむ",dockPanelExpand:"パネルを展開",dockPanelResize:"パネルのサイズを変更",responsivePanel:"パネル",breadcrumb:"パンくずリスト",resizeDivider:"パネル {a} とパネル {b} の間の仕切りをサイズ変更",widgetFullscreenPanel:"全画面パネル",widgetViewGroup:"パネルの表示",widgetExitFullscreen:"全画面表示を終了",widgetExpandToFullscreen:"全画面表示にする",widgetCollapse:"パネルを折りたたむ",widgetExpand:"パネルを展開",skipToContent:"本文へスキップ",dashboardGridLabel:"ダッシュボードグリッド",dashboardCellCollisionRejected:"{label} は他のセルと重なるため、そこには配置できません。",dashboardCellMoved:"{label} を {x} 列 {y} 行へ移動しました。",dashboardCellResized:"{label} のサイズを幅 {w}、高さ {h} に変更しました。",filterBarReset:"フィルターをリセット",filterBarActiveFilters:"適用中のフィルター",drilldownDocuments:"ドキュメント",drilldownRuns:"エージェントの実行",drilldownEmpty:"項目が選択されていません",drilldownUntitledNode:"無題のステップ",reorderMovePending:"並べ替えを保留しています。",reorderMoveCancelled:"並べ替えをキャンセルしました。"};registerLyraLocale("ja",strings);
|
|
1
|
+
import{registerLyraLocale}from"../../internal/localization-runtime.js";const strings={carousel:"カルーセル",carouselLabel:"カルーセル",carouselSlide:"スライド",carouselSlidePosition:"{total} 枚中 {index} 枚目のスライド",carouselSlideAnnouncement:"{position}:{content}",carouselSlideAnnouncementSeparator:"。",carouselIndicators:"カルーセルのスライド",carouselGoTo:"スライド {index} へ移動",scrollerLabel:"スクロール可能なコンテンツ",scrollPrevious:"前へスクロール",scrollNext:"次へスクロール",closeNavigation:"ナビゲーションを閉じる",openNavigation:"ナビゲーションを開く",resizeNavigation:"ナビゲーションのサイズを変更",appRailCollapse:"ナビゲーションを折りたたむ",appRailExpand:"ナビゲーションを展開",appRailItemCollapse:"{label} を折りたたむ",appRailItemExpand:"{label} を展開",resizeValuePercent:"{value} パーセント",commandPaletteLabel:"コマンドパレット",commandPalettePlaceholder:"コマンドを検索…",commandPaletteEmpty:"一致するコマンドがありません。",commandPaletteResults:"コマンド",dockPanelCollapse:"パネルを折りたたむ",dockPanelExpand:"パネルを展開",dockPanelResize:"パネルのサイズを変更",responsivePanel:"パネル",breadcrumb:"パンくずリスト",resizeDivider:"パネル {a} とパネル {b} の間の仕切りをサイズ変更",widgetFullscreenPanel:"全画面パネル",widgetViewGroup:"パネルの表示",widgetExitFullscreen:"全画面表示を終了",widgetExpandToFullscreen:"全画面表示にする",widgetCollapse:"パネルを折りたたむ",widgetExpand:"パネルを展開",skipToContent:"本文へスキップ",dashboardGridLabel:"ダッシュボードグリッド",dashboardCellCollisionRejected:"{label} は他のセルと重なるため、そこには配置できません。",dashboardCellMoved:"{label} を {x} 列 {y} 行へ移動しました。",dashboardCellResized:"{label} のサイズを幅 {w}、高さ {h} に変更しました。",filterBarReset:"フィルターをリセット",filterBarActiveFilters:"適用中のフィルター",drilldownDocuments:"ドキュメント",drilldownRuns:"エージェントの実行",drilldownEmpty:"項目が選択されていません",drilldownUntitledNode:"無題のステップ",reorderMovePending:"並べ替えを保留しています。",reorderMoveCancelled:"並べ替えをキャンセルしました。"};registerLyraLocale("ja",strings);
|