@semiont/react-ui 0.5.26 → 0.5.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +28 -4
- package/dist/{PdfAnnotationCanvas.client-6ZSF6ZTJ.js → PdfAnnotationCanvas.client-C2IGG4SW.js} +33 -6
- package/dist/{PdfAnnotationCanvas.client-JCJMXWWJ.css → PdfAnnotationCanvas.client-TGDPPGXJ.css} +6 -1
- package/dist/{ar-YTUUGK2O.js → ar-FABPTJVB.js} +88 -26
- package/dist/{bn-ASGNGPMD.js → bn-LKP6BDMH.js} +88 -26
- package/dist/{chunk-L3WKRWP3.js → chunk-2GOHTTHW.js} +88 -26
- package/dist/{chunk-OBQOZCJE.js → chunk-2YHEE63S.js} +31 -31
- package/dist/{cs-WMYVAOZY.js → cs-YQYNWHRG.js} +88 -26
- package/dist/{da-FSHHN4D6.js → da-QHZOYKRY.js} +88 -26
- package/dist/{de-FJFO3TPT.js → de-GKA7RD7J.js} +88 -26
- package/dist/{el-XOH4QIAG.js → el-45T257AL.js} +88 -26
- package/dist/{en-3FCBW3YD.js → en-RVW5EQ66.js} +4 -2
- package/dist/{es-HDX4QI7E.js → es-AVER7RU4.js} +88 -26
- package/dist/{fa-DJ6WTFTJ.js → fa-K3VPK3O2.js} +88 -26
- package/dist/{fi-4S7H7W7U.js → fi-5NEKF7EB.js} +88 -26
- package/dist/{fr-6UJSYHXC.js → fr-FUMNDLBZ.js} +88 -26
- package/dist/{he-ZZJOHJX2.js → he-3JGNA3PR.js} +88 -26
- package/dist/{hi-HZJTAW7U.js → hi-IJY375DF.js} +88 -26
- package/dist/{id-E3I6ILEM.js → id-LWHKJ7ZD.js} +88 -26
- package/dist/index.css +380 -524
- package/dist/index.d.ts +318 -192
- package/dist/index.js +2960 -2421
- package/dist/integrations/css-modules-helper.js +1 -3
- package/dist/{it-ULAPAD7U.js → it-EBVOV4RW.js} +88 -26
- package/dist/{ja-SAHZQ4CZ.js → ja-KWRIX2NF.js} +88 -26
- package/dist/{ko-DFU2ADQ4.js → ko-L5CJMFDS.js} +88 -26
- package/dist/{ms-NWL76XNT.js → ms-LSNMJDR2.js} +88 -26
- package/dist/{nl-ATCM76WN.js → nl-ZB32MB7U.js} +88 -26
- package/dist/{no-UIAQ5RJF.js → no-4GTNY7M5.js} +88 -26
- package/dist/{pl-NOECQDXD.js → pl-LUHBLTHB.js} +88 -26
- package/dist/{pt-SVWIIUPC.js → pt-C4H3UNQ6.js} +88 -26
- package/dist/{ro-NR2DRTZG.js → ro-GGITS5V4.js} +88 -26
- package/dist/{sv-STVJ37JP.js → sv-T56RTLBP.js} +88 -26
- package/dist/test-utils.css +1 -1
- package/dist/test-utils.d.ts +1 -1
- package/dist/test-utils.js +2 -2
- package/dist/{th-UWQR4K54.js → th-22X2IWCB.js} +88 -26
- package/dist/{tr-WNXZSD27.js → tr-77TFG62H.js} +88 -26
- package/dist/{uk-SJRMB47Y.js → uk-MIIL6NXT.js} +88 -26
- package/dist/{vi-TMRQFES2.js → vi-7JYOIGNV.js} +88 -26
- package/dist/{zh-QOL3LYEM.js → zh-ID6DRYU4.js} +88 -26
- package/package.json +11 -10
- package/src/components/AssistProgress.tsx +178 -134
- package/src/components/CodeMirrorRenderer.tsx +8 -8
- package/src/components/{EntityFoundLog.tsx → ItemFoundLog.tsx} +12 -7
- package/src/components/ProtectedErrorBoundary.css +3 -1
- package/src/components/StatusDisplay.css +1 -1
- package/src/components/Toast.css +3 -1
- package/src/components/__tests__/AssistProgress.test.tsx +268 -141
- package/src/components/annotation/annotation-entries.css +0 -4
- package/src/components/annotation/references.css +0 -4
- package/src/components/image-annotation/AnnotationOverlay.tsx +6 -6
- package/src/components/image-annotation/SvgDrawingCanvas.tsx +1 -1
- package/src/components/image-annotation/__tests__/AnnotationOverlay.click.test.tsx +7 -9
- package/src/components/image-annotation/__tests__/SvgDrawingCanvas.click.test.tsx +1 -2
- package/src/components/layout/Header.css +0 -4
- package/src/components/layout/LeftSidebar.css +0 -4
- package/src/components/modals/ComposeStep.tsx +218 -0
- package/src/components/modals/ConfigureGatherStep.tsx +10 -18
- package/src/components/modals/ConfigureGenerationStep.tsx +131 -54
- package/src/components/modals/ConfigureSearchStep.tsx +42 -40
- package/src/components/modals/ContextSummary.tsx +185 -72
- package/src/components/modals/CorpusPane.tsx +75 -0
- package/src/components/modals/DiscardPrompt.tsx +38 -0
- package/src/components/modals/GatherContextStep.tsx +237 -107
- package/src/components/modals/ReferenceWizardModal.tsx +287 -60
- package/src/components/modals/ResourceGenerateModal.tsx +233 -109
- package/src/components/modals/SearchModal.css +335 -111
- package/src/components/modals/SearchModal.tsx +1 -1
- package/src/components/modals/SearchResultsStep.tsx +63 -88
- package/src/components/modals/WizardFooter.tsx +69 -0
- package/src/components/modals/__tests__/ComposeStep.test.tsx +152 -0
- package/src/components/modals/__tests__/ConfigureGatherStep.test.tsx +14 -26
- package/src/components/modals/__tests__/ConfigureGenerationStep.test.tsx +290 -0
- package/src/components/modals/__tests__/ConfigureSearchStep.test.tsx +95 -0
- package/src/components/modals/__tests__/GatherContextStep.resource.test.tsx +463 -25
- package/src/components/modals/__tests__/ReferenceWizardModal.test.tsx +635 -0
- package/src/components/modals/__tests__/ResourceGenerateModal.test.tsx +277 -85
- package/src/components/modals/__tests__/SearchModal.search-wiring.test.tsx +6 -2
- package/src/components/modals/__tests__/SearchResultsStep.test.tsx +61 -0
- package/src/components/modals/__tests__/WizardFooter.test.tsx +344 -0
- package/src/components/modals/modals.css +16 -42
- package/src/components/navigation/NavigationTabs.css +0 -20
- package/src/components/pdf-annotation/PdfAnnotationCanvas.css +21 -2
- package/src/components/pdf-annotation/PdfAnnotationCanvas.tsx +36 -3
- package/src/components/pdf-annotation/__tests__/PdfAnnotationCanvas.test.tsx +41 -6
- package/src/components/resource/AnnotateView.tsx +19 -8
- package/src/components/resource/AnnotationHistory.tsx +2 -0
- package/src/components/resource/BrowseView.tsx +20 -9
- package/src/components/resource/ResourceViewer.tsx +27 -28
- package/src/components/resource/__tests__/AnnotateView.embeddable.test.tsx +1 -1
- package/src/components/resource/__tests__/AnnotateView.focus.test.tsx +50 -0
- package/src/components/resource/__tests__/AnnotationHistory.test.tsx +2 -0
- package/src/components/resource/__tests__/BrowseView.embeddable.test.tsx +1 -1
- package/src/components/resource/__tests__/BrowseView.test.tsx +38 -12
- package/src/components/resource/__tests__/ResourceViewer.embeddable.test.tsx +47 -3
- package/src/components/resource/annotate-renderers.tsx +3 -3
- package/src/components/resource/event-formatting.ts +0 -3
- package/src/components/resource/panels/AssessmentEntry.tsx +1 -1
- package/src/components/resource/panels/AssessmentPanel.css +5 -6
- package/src/components/resource/panels/AssistSection.css +95 -263
- package/src/components/resource/panels/AssistSection.tsx +4 -4
- package/src/components/resource/panels/AssistShell.tsx +12 -4
- package/src/components/resource/panels/CollaborationPanel.css +47 -22
- package/src/components/resource/panels/CollaborationPanel.tsx +93 -2
- package/src/components/resource/panels/CommentEntry.tsx +1 -1
- package/src/components/resource/panels/CommentsPanel.css +0 -16
- package/src/components/resource/panels/HighlightEntry.tsx +1 -1
- package/src/components/resource/panels/HighlightPanel.css +0 -7
- package/src/components/resource/panels/JsonLdPanel.css +0 -4
- package/src/components/resource/panels/ReferenceEntry.tsx +10 -3
- package/src/components/resource/panels/ReferencesPanel.css +0 -12
- package/src/components/resource/panels/ReferencesPanel.tsx +16 -20
- package/src/components/resource/panels/ResourceInfoPanel.css +0 -32
- package/src/components/resource/panels/ResourceInfoPanel.tsx +89 -20
- package/src/components/resource/panels/StatisticsPanel.css +0 -20
- package/src/components/resource/panels/TagEntry.tsx +1 -1
- package/src/components/resource/panels/TaggingPanel.css +0 -4
- package/src/components/resource/panels/TaggingPanel.tsx +2 -10
- package/src/components/resource/panels/UnifiedAnnotationsPanel.css +0 -4
- package/src/components/resource/panels/UnifiedAnnotationsPanel.tsx +7 -2
- package/src/components/resource/panels/__tests__/AssessmentEntry.test.tsx +0 -1
- package/src/components/resource/panels/__tests__/AssistSection.test.tsx +48 -50
- package/src/components/resource/panels/__tests__/AssistShell.test.tsx +11 -6
- package/src/components/resource/panels/__tests__/CollaborationPanel.test.tsx +89 -0
- package/src/components/resource/panels/__tests__/CommentEntry.test.tsx +1 -2
- package/src/components/resource/panels/__tests__/HighlightEntry.test.tsx +0 -1
- package/src/components/resource/panels/__tests__/HighlightPanel.annotationProgress.test.tsx +44 -36
- package/src/components/resource/panels/__tests__/ReferenceEntry.test.tsx +41 -1
- package/src/components/resource/panels/__tests__/ReferencesPanel.headless.test.tsx +1 -1
- package/src/components/resource/panels/__tests__/ReferencesPanel.test.tsx +67 -54
- package/src/components/resource/panels/__tests__/ResourceInfoPanel.test.tsx +185 -7
- package/src/components/resource/panels/__tests__/TagEntry.test.tsx +0 -1
- package/src/components/settings/SettingsPanel.css +0 -4
- package/src/features/auth/auth.css +2 -26
- package/src/features/resource-compose/__tests__/ResourceComposePage.test.tsx +0 -65
- package/src/features/resource-compose/components/ResourceComposePage.tsx +17 -130
- package/src/features/resource-compose/state/__tests__/compose-page-state-unit.test.ts +1 -76
- package/src/features/resource-compose/state/compose-page-state-unit.ts +5 -48
- package/src/features/resource-discovery/__tests__/ResourceDiscoveryPage.test.tsx +55 -0
- package/src/features/resource-discovery/components/ResourceDiscoveryPage.tsx +29 -0
- package/src/features/resource-discovery/state/__tests__/discover-state-unit.test.ts +53 -3
- package/src/features/resource-discovery/state/discover-state-unit.ts +29 -8
- package/src/features/resource-viewer/__tests__/ResourceViewerPage.test.tsx +71 -15
- package/src/features/resource-viewer/components/ResourceViewerPage.tsx +166 -71
- package/src/features/resource-viewer/hooks/__tests__/useResourceViewedReport.test.tsx +63 -0
- package/src/features/resource-viewer/hooks/useResourceViewedReport.ts +33 -0
- package/src/features/resource-viewer/state/__tests__/resource-viewer-page-state-unit.test.ts +2 -2
- package/src/features/resource-viewer/state/resource-viewer-page-state-unit.ts +1 -1
- package/src/styles/core/buttons.css +3 -1
- package/src/styles/core/forms.css +35 -29
- package/src/styles/core/indicators.css +0 -4
- package/src/styles/core/inputs.css +0 -4
- package/src/styles/core/progress.css +2 -34
- package/src/styles/core/sliders.css +0 -4
- package/src/styles/core/toggles.css +0 -4
- package/src/styles/features/resource-discovery.css +13 -0
- package/src/styles/features/resource-viewer.css +0 -42
- package/src/styles/features/resource.css +0 -4
- package/src/styles/motivations/motivation-assessment.css +2 -2
- package/src/styles/panels/history-panel.css +0 -40
- package/src/styles/panels/user-panel.css +0 -3
- package/src/styles/patterns/panel-helpers.css +0 -27
- package/src/styles/patterns/panel-sections.css +0 -59
- package/src/styles/patterns/panels-base.css +0 -32
- package/translations/ar.json +84 -24
- package/translations/bn.json +84 -24
- package/translations/cs.json +84 -24
- package/translations/da.json +84 -24
- package/translations/de.json +84 -24
- package/translations/el.json +84 -24
- package/translations/en.json +84 -24
- package/translations/es.json +84 -24
- package/translations/fa.json +84 -24
- package/translations/fi.json +84 -24
- package/translations/fr.json +84 -24
- package/translations/he.json +84 -24
- package/translations/hi.json +84 -24
- package/translations/id.json +84 -24
- package/translations/it.json +84 -24
- package/translations/ja.json +84 -24
- package/translations/ko.json +84 -24
- package/translations/ms.json +84 -24
- package/translations/nl.json +84 -24
- package/translations/no.json +84 -24
- package/translations/pl.json +84 -24
- package/translations/pt.json +84 -24
- package/translations/ro.json +84 -24
- package/translations/sv.json +84 -24
- package/translations/th.json +84 -24
- package/translations/tr.json +84 -24
- package/translations/uk.json +84 -24
- package/translations/vi.json +84 -24
- package/translations/zh.json +84 -24
- package/dist/PdfAnnotationCanvas.client-6ZSF6ZTJ.js.map +0 -1
- package/dist/PdfAnnotationCanvas.client-JCJMXWWJ.css.map +0 -1
- package/dist/ar-YTUUGK2O.js.map +0 -1
- package/dist/bn-ASGNGPMD.js.map +0 -1
- package/dist/chunk-BTUG3VJJ.js.map +0 -1
- package/dist/chunk-L3WKRWP3.js.map +0 -1
- package/dist/chunk-O23TLLXW.js.map +0 -1
- package/dist/chunk-OBQOZCJE.js.map +0 -1
- package/dist/chunk-QT7LYM72.js.map +0 -1
- package/dist/chunk-VXASXU4K.js.map +0 -1
- package/dist/chunk-XUDKYAVC.js +0 -21
- package/dist/chunk-XUDKYAVC.js.map +0 -1
- package/dist/cs-WMYVAOZY.js.map +0 -1
- package/dist/da-FSHHN4D6.js.map +0 -1
- package/dist/de-FJFO3TPT.js.map +0 -1
- package/dist/el-XOH4QIAG.js.map +0 -1
- package/dist/en-3FCBW3YD.js.map +0 -1
- package/dist/es-HDX4QI7E.js.map +0 -1
- package/dist/fa-DJ6WTFTJ.js.map +0 -1
- package/dist/fi-4S7H7W7U.js.map +0 -1
- package/dist/fr-6UJSYHXC.js.map +0 -1
- package/dist/he-ZZJOHJX2.js.map +0 -1
- package/dist/hi-HZJTAW7U.js.map +0 -1
- package/dist/id-E3I6ILEM.js.map +0 -1
- package/dist/index.css.map +0 -1
- package/dist/index.js.map +0 -1
- package/dist/integrations/css-modules-helper.js.map +0 -1
- package/dist/integrations/styled-components-theme.js.map +0 -1
- package/dist/it-ULAPAD7U.js.map +0 -1
- package/dist/ja-SAHZQ4CZ.js.map +0 -1
- package/dist/ko-DFU2ADQ4.js.map +0 -1
- package/dist/ms-NWL76XNT.js.map +0 -1
- package/dist/nl-ATCM76WN.js.map +0 -1
- package/dist/no-UIAQ5RJF.js.map +0 -1
- package/dist/pl-NOECQDXD.js.map +0 -1
- package/dist/pt-SVWIIUPC.js.map +0 -1
- package/dist/ro-NR2DRTZG.js.map +0 -1
- package/dist/sv-STVJ37JP.js.map +0 -1
- package/dist/test-utils.css.map +0 -1
- package/dist/test-utils.js.map +0 -1
- package/dist/th-UWQR4K54.js.map +0 -1
- package/dist/tr-WNXZSD27.js.map +0 -1
- package/dist/uk-SJRMB47Y.js.map +0 -1
- package/dist/vi-TMRQFES2.js.map +0 -1
- package/dist/zh-QOL3LYEM.js.map +0 -1
- package/src/components/modals/ResourceSearchModal.tsx +0 -224
- package/src/components/modals/__tests__/ResourceSearchModal.test.tsx +0 -159
- package/src/integrations/tailwind-plugin.cjs +0 -224
package/translations/en.json
CHANGED
|
@@ -1,8 +1,32 @@
|
|
|
1
1
|
{
|
|
2
2
|
"AssistProgress": {
|
|
3
3
|
"close": "Close",
|
|
4
|
-
"
|
|
5
|
-
"
|
|
4
|
+
"codeLoading": "Loading…",
|
|
5
|
+
"codeAnalyzing": "Marking…",
|
|
6
|
+
"codeAnalyzingTags": "Marking tags…",
|
|
7
|
+
"codeDetectingEntities": "Marking…",
|
|
8
|
+
"codeCreatingAnnotations": "Creating {{count}} annotations…",
|
|
9
|
+
"codeCreatingTagAnnotations": "Creating {{count}} tags…",
|
|
10
|
+
"codeCompleteCreated": "Created {{count}} {{kind}}",
|
|
11
|
+
"codeGeneratingResource": "Generating…",
|
|
12
|
+
"codeCreatingResource": "Creating the resource…",
|
|
13
|
+
"codeCompleteGenerated": "Created the resource",
|
|
14
|
+
"codeCompleteGeneratedTruncated": "Created the resource — cut off at the length limit",
|
|
15
|
+
"kindHighlight": "highlights",
|
|
16
|
+
"kindComment": "comments",
|
|
17
|
+
"kindAssessment": "assessments",
|
|
18
|
+
"kindReference": "references",
|
|
19
|
+
"kindTag": "tags",
|
|
20
|
+
"subject": "{{kind}}: {{label}}",
|
|
21
|
+
"subjectWithPosition": "{{kind}}: {{label}} ({{done}} of {{total}})",
|
|
22
|
+
"paramEntityTypes": "Entity Types",
|
|
23
|
+
"paramInstructions": "Instructions",
|
|
24
|
+
"paramTone": "Tone",
|
|
25
|
+
"paramDensity": "Density",
|
|
26
|
+
"subjectKindEntityType": "Entity type",
|
|
27
|
+
"subjectKindCategory": "Category",
|
|
28
|
+
"cancel": "Cancel",
|
|
29
|
+
"inProgress": "Annotating..."
|
|
6
30
|
},
|
|
7
31
|
"PdfViewer": {
|
|
8
32
|
"loadFailed": "Failed to load PDF",
|
|
@@ -63,7 +87,10 @@
|
|
|
63
87
|
"realtimeActive": "Real-time updates are active",
|
|
64
88
|
"reconnecting": "Reconnecting to server...",
|
|
65
89
|
"sharing": "Sharing",
|
|
66
|
-
"collaborationComingSoon": "Collaboration features coming soon"
|
|
90
|
+
"collaborationComingSoon": "Collaboration features coming soon",
|
|
91
|
+
"collaborators": "Collaborators",
|
|
92
|
+
"ceilings": "{{contextTokens}} in / {{maxOutputTokens}} out",
|
|
93
|
+
"sharedWindow": "{{contextTokens}} window"
|
|
67
94
|
},
|
|
68
95
|
"AnnotationHistory": {
|
|
69
96
|
"history": "History",
|
|
@@ -219,6 +246,7 @@
|
|
|
219
246
|
"noIncomingReferences": "No incoming references",
|
|
220
247
|
"stub": "Stub reference (not linked)",
|
|
221
248
|
"resolved": "Resolved reference (linked)",
|
|
249
|
+
"derived": "Derived",
|
|
222
250
|
"open": "Open",
|
|
223
251
|
"unlink": "Unlink",
|
|
224
252
|
"resolve": "Resolve Reference",
|
|
@@ -226,7 +254,6 @@
|
|
|
226
254
|
"createReference": "Create Reference",
|
|
227
255
|
"entityTypesOptional": "Entity Types (Optional)",
|
|
228
256
|
"fragmentSelected": "Fragment selected",
|
|
229
|
-
"imageRegionSelected": "Image region selected",
|
|
230
257
|
"annotateReferences": "Annotate References",
|
|
231
258
|
"selectEntityTypes": "Entity types:",
|
|
232
259
|
"select": "Select",
|
|
@@ -237,8 +264,6 @@
|
|
|
237
264
|
"annotating": "Annotating...",
|
|
238
265
|
"includeDescriptiveReferences": "Include descriptive references",
|
|
239
266
|
"descriptiveReferencesTooltip": "Also find phrases like 'the CEO', 'the tech giant', 'the physicist' (in addition to names)",
|
|
240
|
-
"annotationProgressTitle": "Annotating Entity References",
|
|
241
|
-
"cancelAnnotation": "Cancel annotation",
|
|
242
267
|
"found": "{{count}} found",
|
|
243
268
|
"complete": "Annotation complete!",
|
|
244
269
|
"failed": "Annotation failed",
|
|
@@ -353,19 +378,14 @@
|
|
|
353
378
|
},
|
|
354
379
|
"AnnotateView": {},
|
|
355
380
|
"ResourceGenerate": {
|
|
356
|
-
"gatherTitle": "Configure Gather",
|
|
357
|
-
"reviewTitle": "Review Context",
|
|
358
|
-
"configureTitle": "Configure Generation",
|
|
359
|
-
"next": "Next",
|
|
360
|
-
"back": "Back",
|
|
361
|
-
"cancel": "Cancel",
|
|
362
381
|
"gatherIntro": "Choose what to include in the gathered context.",
|
|
363
382
|
"includeContent": "Include resource content",
|
|
364
383
|
"includeSummary": "Include summary",
|
|
365
384
|
"gatherDepth": "Depth",
|
|
366
385
|
"gatherMaxResources": "Max resources",
|
|
367
386
|
"gatherButton": "Gather",
|
|
368
|
-
"
|
|
387
|
+
"editGather": "Change gather settings",
|
|
388
|
+
"recallLabel": "Included in recall — deselect to exclude",
|
|
369
389
|
"loadingContext": "Gathering context...",
|
|
370
390
|
"failedContext": "Failed to gather context",
|
|
371
391
|
"sourceContextLabel": "Resource",
|
|
@@ -383,17 +403,22 @@
|
|
|
383
403
|
"maxLength": "Max Length",
|
|
384
404
|
"maxLengthHelp": "Maximum number of tokens",
|
|
385
405
|
"generate": "Generate",
|
|
386
|
-
"
|
|
387
|
-
"
|
|
388
|
-
"
|
|
389
|
-
"
|
|
390
|
-
"
|
|
406
|
+
"maxLengthCeiling": "Limited to {{maxOutputTokens}} tokens by {{model}}.",
|
|
407
|
+
"graphPaneTitle": "Neighborhood",
|
|
408
|
+
"graphEmpty": "No links yet.",
|
|
409
|
+
"resourceLinkLabel": "Resource link",
|
|
410
|
+
"corpusPaneTitle": "Similar passages",
|
|
411
|
+
"corpusEmpty": "No similar passages found.",
|
|
412
|
+
"excludedReceipt": "{{types}} excluded from this recall",
|
|
413
|
+
"machineRead": "OCR",
|
|
414
|
+
"score": "Score",
|
|
415
|
+
"saveLocation": "Save location",
|
|
416
|
+
"discardDraftPrompt": "Discard this draft?",
|
|
417
|
+
"discardDraft": "Discard",
|
|
418
|
+
"keepEditing": "Keep editing",
|
|
419
|
+
"title": "Generate from this Resource"
|
|
391
420
|
},
|
|
392
421
|
"ReferenceWizard": {
|
|
393
|
-
"gatherTitle": "Gathered Context",
|
|
394
|
-
"configureGenerationTitle": "Configure Generation",
|
|
395
|
-
"configureSearchTitle": "Configure Search",
|
|
396
|
-
"searchResultsTitle": "Search Results",
|
|
397
422
|
"sourceContextLabel": "Annotation context in resource",
|
|
398
423
|
"connectionsLabel": "Peer Annotations",
|
|
399
424
|
"citedByLabel": "Resource Cited By",
|
|
@@ -401,7 +426,6 @@
|
|
|
401
426
|
"userHintPlaceholder": "Describe what this annotation refers to...",
|
|
402
427
|
"loadingContext": "Gathering context...",
|
|
403
428
|
"failedContext": "Failed to gather context",
|
|
404
|
-
"cancel": "Cancel",
|
|
405
429
|
"generate": "Generate",
|
|
406
430
|
"compose": "Compose",
|
|
407
431
|
"resolutionStrategyLabel": "Resolution Strategy",
|
|
@@ -424,6 +448,42 @@
|
|
|
424
448
|
"semanticScoring": "Semantic Scoring",
|
|
425
449
|
"semanticScoringHelp": "Use AI to score results by semantic relevance",
|
|
426
450
|
"searching": "Searching...",
|
|
427
|
-
"
|
|
451
|
+
"searchFailed": "Search failed",
|
|
452
|
+
"search": "Search",
|
|
453
|
+
"maxLengthCeiling": "Limited to {{maxOutputTokens}} tokens by {{model}}.",
|
|
454
|
+
"graphPaneTitle": "Neighborhood",
|
|
455
|
+
"graphEmpty": "No links yet — resolving this reference creates the first.",
|
|
456
|
+
"resourceLinkLabel": "Resource link",
|
|
457
|
+
"corpusPaneTitle": "Similar passages",
|
|
458
|
+
"corpusEmpty": "No similar passages found — Search is unlikely to land.",
|
|
459
|
+
"excludedReceipt": "{{types}} excluded from this recall",
|
|
460
|
+
"machineRead": "OCR",
|
|
461
|
+
"userHintEffect": "steers Search and Generate",
|
|
462
|
+
"saveLocation": "Save location",
|
|
463
|
+
"entityTypes": "Entity types",
|
|
464
|
+
"contentLabel": "Content",
|
|
465
|
+
"createAndLink": "Create & Link",
|
|
466
|
+
"creatingAndLinking": "Creating & linking…",
|
|
467
|
+
"discardDraftPrompt": "Discard this draft?",
|
|
468
|
+
"discardDraft": "Discard",
|
|
469
|
+
"keepEditing": "Keep editing",
|
|
470
|
+
"resolveTitle": "Resolve Reference"
|
|
471
|
+
},
|
|
472
|
+
"OutcomeToasts": {
|
|
473
|
+
"createFailed": "Couldn’t create the annotation: {{detail}}",
|
|
474
|
+
"deleteFailed": "Couldn’t delete the annotation: {{detail}}",
|
|
475
|
+
"referenceUpdateFailed": "Couldn’t update the reference: {{detail}}",
|
|
476
|
+
"unknownError": "unknown error",
|
|
477
|
+
"assistQuiet": "Still working — no update from the annotation job for a few minutes",
|
|
478
|
+
"resourceCreatedNamed": "Created “{{name}}”",
|
|
479
|
+
"resourceCreated": "Resource created",
|
|
480
|
+
"annotationComplete": "Annotation complete",
|
|
481
|
+
"annotationFailed": "Annotation failed",
|
|
482
|
+
"generationFailed": "Generation failed: {{detail}}",
|
|
483
|
+
"decline_no-text-layer": "This PDF is a scan whose text couldn’t be recognized, so there’s nothing to annotate.",
|
|
484
|
+
"decline_encrypted": "This PDF is password-protected, so its text can’t be read.",
|
|
485
|
+
"decline_corrupt": "This PDF couldn’t be read — the file may be damaged.",
|
|
486
|
+
"decline_too-large": "This document is too large to extract text from.",
|
|
487
|
+
"decline_empty": "This document has no text to annotate."
|
|
428
488
|
}
|
|
429
489
|
}
|
package/translations/es.json
CHANGED
|
@@ -1,8 +1,32 @@
|
|
|
1
1
|
{
|
|
2
2
|
"AssistProgress": {
|
|
3
3
|
"close": "Cerrar",
|
|
4
|
-
"
|
|
5
|
-
"
|
|
4
|
+
"codeLoading": "Cargando…",
|
|
5
|
+
"codeAnalyzing": "Marcando…",
|
|
6
|
+
"codeAnalyzingTags": "Marcando etiquetas…",
|
|
7
|
+
"codeDetectingEntities": "Marcando…",
|
|
8
|
+
"codeCreatingAnnotations": "Creando {{count}} anotaciones…",
|
|
9
|
+
"codeCreatingTagAnnotations": "Creando {{count}} etiquetas…",
|
|
10
|
+
"codeCompleteCreated": "Se crearon {{count}} {{kind}}",
|
|
11
|
+
"codeGeneratingResource": "Generando…",
|
|
12
|
+
"codeCreatingResource": "Creando el recurso…",
|
|
13
|
+
"codeCompleteGenerated": "Se creó el recurso",
|
|
14
|
+
"codeCompleteGeneratedTruncated": "Se creó el recurso — cortado en el límite de longitud",
|
|
15
|
+
"kindHighlight": "resaltados",
|
|
16
|
+
"kindComment": "comentarios",
|
|
17
|
+
"kindAssessment": "valoraciones",
|
|
18
|
+
"kindReference": "referencias",
|
|
19
|
+
"kindTag": "etiquetas",
|
|
20
|
+
"subject": "{{kind}}: {{label}}",
|
|
21
|
+
"subjectWithPosition": "{{kind}}: {{label}} ({{done}} de {{total}})",
|
|
22
|
+
"paramEntityTypes": "Tipos de Entidad",
|
|
23
|
+
"paramInstructions": "Instrucciones",
|
|
24
|
+
"paramTone": "Tono",
|
|
25
|
+
"paramDensity": "Densidad",
|
|
26
|
+
"subjectKindEntityType": "Tipo de entidad",
|
|
27
|
+
"subjectKindCategory": "Categoría",
|
|
28
|
+
"cancel": "Cancelar",
|
|
29
|
+
"inProgress": "Anotando..."
|
|
6
30
|
},
|
|
7
31
|
"PdfViewer": {
|
|
8
32
|
"loadFailed": "No se pudo cargar el PDF",
|
|
@@ -63,7 +87,10 @@
|
|
|
63
87
|
"realtimeActive": "Actualizaciones en tiempo real activas",
|
|
64
88
|
"reconnecting": "Reconectando al servidor...",
|
|
65
89
|
"sharing": "Compartir",
|
|
66
|
-
"collaborationComingSoon": "Funciones de colaboración próximamente"
|
|
90
|
+
"collaborationComingSoon": "Funciones de colaboración próximamente",
|
|
91
|
+
"collaborators": "Colaboradores",
|
|
92
|
+
"ceilings": "{{contextTokens}} entrada / {{maxOutputTokens}} salida",
|
|
93
|
+
"sharedWindow": "Ventana de {{contextTokens}}"
|
|
67
94
|
},
|
|
68
95
|
"AnnotationHistory": {
|
|
69
96
|
"history": "Historial",
|
|
@@ -219,6 +246,7 @@
|
|
|
219
246
|
"noIncomingReferences": "Sin referencias entrantes",
|
|
220
247
|
"stub": "Referencia pendiente (sin vincular)",
|
|
221
248
|
"resolved": "Referencia resuelta (vinculada)",
|
|
249
|
+
"derived": "Derivado",
|
|
222
250
|
"open": "Abrir",
|
|
223
251
|
"unlink": "Desvincular",
|
|
224
252
|
"resolve": "Resolver referencia",
|
|
@@ -226,7 +254,6 @@
|
|
|
226
254
|
"createReference": "Crear Referencia",
|
|
227
255
|
"entityTypesOptional": "Tipos de Entidad (Opcional)",
|
|
228
256
|
"fragmentSelected": "Fragmento seleccionado",
|
|
229
|
-
"imageRegionSelected": "Región de imagen seleccionada",
|
|
230
257
|
"annotateReferences": "Anotar Referencias",
|
|
231
258
|
"selectEntityTypes": "Tipos de entidad:",
|
|
232
259
|
"select": "Seleccionar",
|
|
@@ -237,8 +264,6 @@
|
|
|
237
264
|
"annotating": "Anotando...",
|
|
238
265
|
"includeDescriptiveReferences": "Incluir referencias descriptivas",
|
|
239
266
|
"descriptiveReferencesTooltip": "También encontrar frases como 'el CEO', 'el gigante tecnológico', 'el físico' (además de nombres)",
|
|
240
|
-
"annotationProgressTitle": "Anotando Referencias de Entidad",
|
|
241
|
-
"cancelAnnotation": "Cancelar anotación",
|
|
242
267
|
"found": "{{count}} encontrados",
|
|
243
268
|
"complete": "¡Anotación completa!",
|
|
244
269
|
"failed": "Anotación fallida",
|
|
@@ -353,19 +378,14 @@
|
|
|
353
378
|
},
|
|
354
379
|
"AnnotateView": {},
|
|
355
380
|
"ResourceGenerate": {
|
|
356
|
-
"gatherTitle": "Configurar Recopilación",
|
|
357
|
-
"reviewTitle": "Revisar Contexto",
|
|
358
|
-
"configureTitle": "Configurar Generación",
|
|
359
|
-
"next": "Siguiente",
|
|
360
|
-
"back": "Atrás",
|
|
361
|
-
"cancel": "Cancelar",
|
|
362
381
|
"gatherIntro": "Elija qué incluir en el contexto recopilado.",
|
|
363
382
|
"includeContent": "Incluir contenido del recurso",
|
|
364
383
|
"includeSummary": "Incluir resumen",
|
|
365
384
|
"gatherDepth": "Profundidad",
|
|
366
385
|
"gatherMaxResources": "Recursos Máximos",
|
|
367
386
|
"gatherButton": "Recopilar",
|
|
368
|
-
"
|
|
387
|
+
"editGather": "Cambiar la configuración de recopilación",
|
|
388
|
+
"recallLabel": "Incluidos en la recuperación — deselecciona para excluir",
|
|
369
389
|
"loadingContext": "Recopilando contexto...",
|
|
370
390
|
"failedContext": "Error al recopilar contexto",
|
|
371
391
|
"sourceContextLabel": "Recurso",
|
|
@@ -383,17 +403,22 @@
|
|
|
383
403
|
"maxLength": "Longitud Máxima",
|
|
384
404
|
"maxLengthHelp": "Número máximo de tokens",
|
|
385
405
|
"generate": "Generar",
|
|
386
|
-
"
|
|
387
|
-
"
|
|
388
|
-
"
|
|
389
|
-
"
|
|
390
|
-
"
|
|
406
|
+
"maxLengthCeiling": "Limitado a {{maxOutputTokens}} tokens por {{model}}.",
|
|
407
|
+
"graphPaneTitle": "Entorno",
|
|
408
|
+
"graphEmpty": "Aún sin enlaces.",
|
|
409
|
+
"resourceLinkLabel": "Enlace de recurso",
|
|
410
|
+
"corpusPaneTitle": "Pasajes similares",
|
|
411
|
+
"corpusEmpty": "No se encontraron pasajes similares.",
|
|
412
|
+
"excludedReceipt": "{{types}} excluidos de esta recuperación",
|
|
413
|
+
"machineRead": "OCR",
|
|
414
|
+
"score": "Puntuación",
|
|
415
|
+
"saveLocation": "Ubicación de guardado",
|
|
416
|
+
"discardDraftPrompt": "¿Descartar este borrador?",
|
|
417
|
+
"discardDraft": "Descartar",
|
|
418
|
+
"keepEditing": "Seguir editando",
|
|
419
|
+
"title": "Generar desde este recurso"
|
|
391
420
|
},
|
|
392
421
|
"ReferenceWizard": {
|
|
393
|
-
"gatherTitle": "Contexto Recopilado",
|
|
394
|
-
"configureGenerationTitle": "Configurar Generación",
|
|
395
|
-
"configureSearchTitle": "Configurar búsqueda",
|
|
396
|
-
"searchResultsTitle": "Resultados de búsqueda",
|
|
397
422
|
"sourceContextLabel": "Contexto de la anotación en el recurso",
|
|
398
423
|
"connectionsLabel": "Anotaciones de pares",
|
|
399
424
|
"citedByLabel": "Recurso citado por",
|
|
@@ -401,7 +426,6 @@
|
|
|
401
426
|
"userHintPlaceholder": "Describa a qué se refiere esta anotación...",
|
|
402
427
|
"loadingContext": "Recopilando contexto...",
|
|
403
428
|
"failedContext": "Error al recopilar contexto",
|
|
404
|
-
"cancel": "Cancelar",
|
|
405
429
|
"generate": "Generar",
|
|
406
430
|
"compose": "Componer",
|
|
407
431
|
"resolutionStrategyLabel": "Estrategia de resolución",
|
|
@@ -424,6 +448,42 @@
|
|
|
424
448
|
"semanticScoring": "Puntuación Semántica",
|
|
425
449
|
"semanticScoringHelp": "Usar IA para puntuar resultados por relevancia semántica",
|
|
426
450
|
"searching": "Buscando...",
|
|
427
|
-
"
|
|
451
|
+
"searchFailed": "Error en la búsqueda",
|
|
452
|
+
"search": "Buscar",
|
|
453
|
+
"maxLengthCeiling": "Limitado a {{maxOutputTokens}} tokens por {{model}}.",
|
|
454
|
+
"graphPaneTitle": "Entorno",
|
|
455
|
+
"graphEmpty": "Aún sin enlaces — resolver esta referencia crea el primero.",
|
|
456
|
+
"resourceLinkLabel": "Enlace de recurso",
|
|
457
|
+
"corpusPaneTitle": "Pasajes similares",
|
|
458
|
+
"corpusEmpty": "No se encontraron pasajes similares — es poco probable que la búsqueda dé resultado.",
|
|
459
|
+
"excludedReceipt": "{{types}} excluidos de esta recuperación",
|
|
460
|
+
"machineRead": "OCR",
|
|
461
|
+
"userHintEffect": "guía la búsqueda y la generación",
|
|
462
|
+
"saveLocation": "Ubicación de guardado",
|
|
463
|
+
"entityTypes": "Tipos de entidad",
|
|
464
|
+
"contentLabel": "Contenido",
|
|
465
|
+
"createAndLink": "Crear y vincular",
|
|
466
|
+
"creatingAndLinking": "Creando y vinculando…",
|
|
467
|
+
"discardDraftPrompt": "¿Descartar este borrador?",
|
|
468
|
+
"discardDraft": "Descartar",
|
|
469
|
+
"keepEditing": "Seguir editando",
|
|
470
|
+
"resolveTitle": "Resolver referencia"
|
|
471
|
+
},
|
|
472
|
+
"OutcomeToasts": {
|
|
473
|
+
"createFailed": "No se pudo crear la anotación: {{detail}}",
|
|
474
|
+
"deleteFailed": "No se pudo eliminar la anotación: {{detail}}",
|
|
475
|
+
"referenceUpdateFailed": "No se pudo actualizar la referencia: {{detail}}",
|
|
476
|
+
"unknownError": "error desconocido",
|
|
477
|
+
"assistQuiet": "Sigue en curso: sin novedades desde hace unos minutos",
|
|
478
|
+
"resourceCreatedNamed": "«{{name}}» creado",
|
|
479
|
+
"resourceCreated": "Recurso creado",
|
|
480
|
+
"annotationComplete": "Anotación completada",
|
|
481
|
+
"annotationFailed": "La anotación falló",
|
|
482
|
+
"generationFailed": "La generación falló: {{detail}}",
|
|
483
|
+
"decline_no-text-layer": "Este PDF es un escaneo cuyo texto no se pudo reconocer.",
|
|
484
|
+
"decline_encrypted": "Este PDF está protegido con contraseña y su texto no se puede leer.",
|
|
485
|
+
"decline_corrupt": "No se pudo leer este PDF; el archivo puede estar dañado.",
|
|
486
|
+
"decline_too-large": "Este documento es demasiado grande para extraer su texto.",
|
|
487
|
+
"decline_empty": "Este documento no tiene texto que anotar."
|
|
428
488
|
}
|
|
429
489
|
}
|
package/translations/fa.json
CHANGED
|
@@ -1,8 +1,32 @@
|
|
|
1
1
|
{
|
|
2
2
|
"AssistProgress": {
|
|
3
3
|
"close": "بستن",
|
|
4
|
-
"
|
|
5
|
-
"
|
|
4
|
+
"codeLoading": "در حال بارگذاری…",
|
|
5
|
+
"codeAnalyzing": "در حال نشانهگذاری…",
|
|
6
|
+
"codeAnalyzingTags": "نشانهگذاری برچسبها…",
|
|
7
|
+
"codeDetectingEntities": "در حال نشانهگذاری…",
|
|
8
|
+
"codeCreatingAnnotations": "ایجاد {{count}} حاشیهنویسی…",
|
|
9
|
+
"codeCreatingTagAnnotations": "ایجاد {{count}} برچسب…",
|
|
10
|
+
"codeCompleteCreated": "{{count}} {{kind}} ایجاد شد",
|
|
11
|
+
"codeGeneratingResource": "در حال تولید…",
|
|
12
|
+
"codeCreatingResource": "ایجاد منبع…",
|
|
13
|
+
"codeCompleteGenerated": "منبع ایجاد شد",
|
|
14
|
+
"codeCompleteGeneratedTruncated": "منبع ایجاد شد — در حد طول بریده شد",
|
|
15
|
+
"kindHighlight": "برجستهسازی",
|
|
16
|
+
"kindComment": "دیدگاه",
|
|
17
|
+
"kindAssessment": "ارزیابی",
|
|
18
|
+
"kindReference": "ارجاع",
|
|
19
|
+
"kindTag": "برچسب",
|
|
20
|
+
"subject": "{{kind}}: {{label}}",
|
|
21
|
+
"subjectWithPosition": "{{kind}}: {{label}} ({{done}} از {{total}})",
|
|
22
|
+
"paramEntityTypes": "انواع موجودیت",
|
|
23
|
+
"paramInstructions": "دستورالعملها",
|
|
24
|
+
"paramTone": "لحن",
|
|
25
|
+
"paramDensity": "تراکم",
|
|
26
|
+
"subjectKindEntityType": "نوع موجودیت",
|
|
27
|
+
"subjectKindCategory": "دستهبندی",
|
|
28
|
+
"cancel": "انصراف",
|
|
29
|
+
"inProgress": "در حال حاشیهنویسی..."
|
|
6
30
|
},
|
|
7
31
|
"PdfViewer": {
|
|
8
32
|
"loadFailed": "بارگذاری PDF ناموفق بود",
|
|
@@ -63,7 +87,10 @@
|
|
|
63
87
|
"realtimeActive": "بهروزرسانیهای بلادرنگ فعال هستند",
|
|
64
88
|
"reconnecting": "در حال اتصال مجدد به سرور...",
|
|
65
89
|
"sharing": "اشتراکگذاری",
|
|
66
|
-
"collaborationComingSoon": "ویژگیهای همکاری بهزودی ارائه خواهند شد"
|
|
90
|
+
"collaborationComingSoon": "ویژگیهای همکاری بهزودی ارائه خواهند شد",
|
|
91
|
+
"collaborators": "همکاران",
|
|
92
|
+
"ceilings": "{{contextTokens}} ورودی / {{maxOutputTokens}} خروجی",
|
|
93
|
+
"sharedWindow": "پنجره {{contextTokens}}"
|
|
67
94
|
},
|
|
68
95
|
"AnnotationHistory": {
|
|
69
96
|
"history": "تاریخچه",
|
|
@@ -219,6 +246,7 @@
|
|
|
219
246
|
"noIncomingReferences": "ارجاع ورودی وجود ندارد",
|
|
220
247
|
"stub": "ارجاع ناتمام (بدون پیوند)",
|
|
221
248
|
"resolved": "ارجاع حلشده (پیوندشده)",
|
|
249
|
+
"derived": "مشتق",
|
|
222
250
|
"open": "باز کردن",
|
|
223
251
|
"unlink": "قطع پیوند",
|
|
224
252
|
"resolve": "حل مرجع",
|
|
@@ -226,7 +254,6 @@
|
|
|
226
254
|
"createReference": "ایجاد ارجاع",
|
|
227
255
|
"entityTypesOptional": "انواع موجودیت (اختیاری)",
|
|
228
256
|
"fragmentSelected": "قطعه انتخاب شد",
|
|
229
|
-
"imageRegionSelected": "ناحیه تصویر انتخاب شد",
|
|
230
257
|
"annotateReferences": "حاشیهنویسی ارجاعات",
|
|
231
258
|
"selectEntityTypes": "انواع موجودیت:",
|
|
232
259
|
"select": "انتخاب",
|
|
@@ -237,8 +264,6 @@
|
|
|
237
264
|
"annotating": "در حال حاشیهنویسی...",
|
|
238
265
|
"includeDescriptiveReferences": "شامل ارجاعات توصیفی",
|
|
239
266
|
"descriptiveReferencesTooltip": "همچنین عباراتی مانند «مدیرعامل»، «غول فناوری»، «فیزیکدان» را بیابید (علاوه بر نامها)",
|
|
240
|
-
"annotationProgressTitle": "حاشیهنویسی ارجاعات موجودیت",
|
|
241
|
-
"cancelAnnotation": "لغو حاشیهنویسی",
|
|
242
267
|
"found": "{{count}} یافت شد",
|
|
243
268
|
"complete": "حاشیهنویسی تکمیل شد!",
|
|
244
269
|
"failed": "حاشیهنویسی ناموفق بود",
|
|
@@ -353,19 +378,14 @@
|
|
|
353
378
|
},
|
|
354
379
|
"AnnotateView": {},
|
|
355
380
|
"ResourceGenerate": {
|
|
356
|
-
"gatherTitle": "پیکربندی جمعآوری",
|
|
357
|
-
"reviewTitle": "بازبینی زمینه",
|
|
358
|
-
"configureTitle": "پیکربندی تولید",
|
|
359
|
-
"next": "بعدی",
|
|
360
|
-
"back": "بازگشت",
|
|
361
|
-
"cancel": "انصراف",
|
|
362
381
|
"gatherIntro": "آنچه را که باید در زمینه جمعآوریشده گنجانده شود انتخاب کنید.",
|
|
363
382
|
"includeContent": "شامل محتوای منبع",
|
|
364
383
|
"includeSummary": "شامل خلاصه",
|
|
365
384
|
"gatherDepth": "عمق",
|
|
366
385
|
"gatherMaxResources": "حداکثر منابع",
|
|
367
386
|
"gatherButton": "جمعآوری",
|
|
368
|
-
"
|
|
387
|
+
"editGather": "تغییر تنظیمات گردآوری",
|
|
388
|
+
"recallLabel": "شامل در فراخوانی — برای حذف از انتخاب خارج کنید",
|
|
369
389
|
"loadingContext": "در حال جمعآوری زمینه...",
|
|
370
390
|
"failedContext": "جمعآوری زمینه ناموفق بود",
|
|
371
391
|
"sourceContextLabel": "منبع",
|
|
@@ -383,17 +403,22 @@
|
|
|
383
403
|
"maxLength": "حداکثر طول",
|
|
384
404
|
"maxLengthHelp": "حداکثر تعداد توکنها",
|
|
385
405
|
"generate": "تولید",
|
|
386
|
-
"
|
|
387
|
-
"
|
|
388
|
-
"
|
|
389
|
-
"
|
|
390
|
-
"
|
|
406
|
+
"maxLengthCeiling": "محدود به {{maxOutputTokens}} توکن توسط {{model}}.",
|
|
407
|
+
"graphPaneTitle": "پیرامون",
|
|
408
|
+
"graphEmpty": "هنوز پیوندی نیست.",
|
|
409
|
+
"resourceLinkLabel": "پیوند منبع",
|
|
410
|
+
"corpusPaneTitle": "بخشهای مشابه",
|
|
411
|
+
"corpusEmpty": "بخش مشابهی یافت نشد.",
|
|
412
|
+
"excludedReceipt": "{{types}} از این بازیابی کنار گذاشته شد",
|
|
413
|
+
"machineRead": "OCR",
|
|
414
|
+
"score": "امتیاز",
|
|
415
|
+
"saveLocation": "محل ذخیره",
|
|
416
|
+
"discardDraftPrompt": "این پیشنویس دور انداخته شود؟",
|
|
417
|
+
"discardDraft": "دور انداختن",
|
|
418
|
+
"keepEditing": "ادامه ویرایش",
|
|
419
|
+
"title": "تولید از این منبع"
|
|
391
420
|
},
|
|
392
421
|
"ReferenceWizard": {
|
|
393
|
-
"gatherTitle": "زمینه جمعآوریشده",
|
|
394
|
-
"configureGenerationTitle": "پیکربندی تولید",
|
|
395
|
-
"configureSearchTitle": "پیکربندی جستجو",
|
|
396
|
-
"searchResultsTitle": "نتایج جستجو",
|
|
397
422
|
"sourceContextLabel": "زمینه حاشیهنویسی در منبع",
|
|
398
423
|
"connectionsLabel": "حاشیهنویسیهای همتا",
|
|
399
424
|
"citedByLabel": "منبع ارجاع شده توسط",
|
|
@@ -401,7 +426,6 @@
|
|
|
401
426
|
"userHintPlaceholder": "توضیح دهید این حاشیه به چه چیزی اشاره دارد...",
|
|
402
427
|
"loadingContext": "در حال جمعآوری زمینه...",
|
|
403
428
|
"failedContext": "جمعآوری زمینه ناموفق بود",
|
|
404
|
-
"cancel": "انصراف",
|
|
405
429
|
"generate": "تولید",
|
|
406
430
|
"compose": "نگارش",
|
|
407
431
|
"resolutionStrategyLabel": "راهبرد حل",
|
|
@@ -424,6 +448,42 @@
|
|
|
424
448
|
"semanticScoring": "امتیازدهی معنایی",
|
|
425
449
|
"semanticScoringHelp": "استفاده از هوش مصنوعی برای امتیازدهی نتایج بر اساس ارتباط معنایی",
|
|
426
450
|
"searching": "در حال جستجو...",
|
|
427
|
-
"
|
|
451
|
+
"searchFailed": "جستجو ناموفق بود",
|
|
452
|
+
"search": "جستجو",
|
|
453
|
+
"maxLengthCeiling": "محدود به {{maxOutputTokens}} توکن توسط {{model}}.",
|
|
454
|
+
"graphPaneTitle": "پیرامون",
|
|
455
|
+
"graphEmpty": "هنوز پیوندی نیست — حل این ارجاع نخستین پیوند را میسازد.",
|
|
456
|
+
"resourceLinkLabel": "پیوند منبع",
|
|
457
|
+
"corpusPaneTitle": "بخشهای مشابه",
|
|
458
|
+
"corpusEmpty": "بخش مشابهی یافت نشد — جستجو احتمالاً نتیجهای نخواهد داشت.",
|
|
459
|
+
"excludedReceipt": "{{types}} از این بازیابی کنار گذاشته شد",
|
|
460
|
+
"machineRead": "OCR",
|
|
461
|
+
"userHintEffect": "جستوجو و تولید را هدایت میکند",
|
|
462
|
+
"saveLocation": "محل ذخیره",
|
|
463
|
+
"entityTypes": "انواع موجودیت",
|
|
464
|
+
"contentLabel": "محتوا",
|
|
465
|
+
"createAndLink": "ایجاد و پیوند",
|
|
466
|
+
"creatingAndLinking": "در حال ایجاد و پیوند…",
|
|
467
|
+
"discardDraftPrompt": "این پیشنویس دور انداخته شود؟",
|
|
468
|
+
"discardDraft": "دور انداختن",
|
|
469
|
+
"keepEditing": "ادامه ویرایش",
|
|
470
|
+
"resolveTitle": "حل ارجاع"
|
|
471
|
+
},
|
|
472
|
+
"OutcomeToasts": {
|
|
473
|
+
"createFailed": "ایجاد حاشیهنویسی ممکن نشد: {{detail}}",
|
|
474
|
+
"deleteFailed": "حذف حاشیهنویسی ممکن نشد: {{detail}}",
|
|
475
|
+
"referenceUpdateFailed": "بهروزرسانی ارجاع ممکن نشد: {{detail}}",
|
|
476
|
+
"unknownError": "خطای ناشناخته",
|
|
477
|
+
"assistQuiet": "هنوز در حال کار — چند دقیقه است خبری نیست",
|
|
478
|
+
"resourceCreatedNamed": "«{{name}}» ایجاد شد",
|
|
479
|
+
"resourceCreated": "منبع ایجاد شد",
|
|
480
|
+
"annotationComplete": "حاشیهنویسی کامل شد",
|
|
481
|
+
"annotationFailed": "حاشیهنویسی ناموفق بود",
|
|
482
|
+
"generationFailed": "تولید ناموفق بود: {{detail}}",
|
|
483
|
+
"decline_no-text-layer": "این PDF یک اسکن است که متن آن شناسایی نشد.",
|
|
484
|
+
"decline_encrypted": "این PDF با رمز محافظت شده و متن آن خوانده نمیشود.",
|
|
485
|
+
"decline_corrupt": "این PDF خوانده نشد — ممکن است فایل آسیب دیده باشد.",
|
|
486
|
+
"decline_too-large": "این سند برای استخراج متن بسیار بزرگ است.",
|
|
487
|
+
"decline_empty": "این سند متنی برای حاشیهنویسی ندارد."
|
|
428
488
|
}
|
|
429
489
|
}
|